I think you’re reacting to the wrong person as I didn’t make the NIH claim, but merely explained its meaning. :)
I think you’re reacting to the wrong person as I didn’t make the NIH claim, but merely explained its meaning. :)
I think “Not Invented Here”. Meaning he wants to build everything himself from scratch despite there being alternatives he can use instead.
E.g.: Building your own httprequest library rather than using the existing one which is good enough.
I prefer the one where you randomly sort the array until all elements are in order. ( Bogosort )
I looked into that at one point, but 15$/month is quite steep just for that ( imo )
So all the misery in the world is related to webdevs trying to parse html with regex?
You bastards.
The .htaccess file does nothing on nginx though.
This is the reason why I only play cs2 with 5 or 4 people in the team. I suck, usually, but CBA dealing with salty tryhard teammates. At least the people I play with are just there for a good time.
I swear one of them should be in the 20k rating region if he wasn’t constantly dragged down by us losers. :D
Its a plague in online games. If its anything like real life I assume that people just get a kick out of doing it and getting away with it. Stomping people and being elitist about it. I guess that’s the reason why people smurf too.
Like a rich kid feeling better than the rest because dad=rich and your dad is not.
People can do whatever they want in single player games. Run with infinite ammo, god mode, flying, unlock all skills at lvl 1, increase stats/or resources on demand. I dont care. Maybe it takes the edge off or maybe they want to go through the campaign story without all the grinding after a long day at work or school.
I’m not complaining. I won’t lose any sleep over it. If it fulfills your power fantasy or whatever. Go for it. You’re not hurting anyone.
But the people who cheat in online games can piss right off. They’re ruining of for everyone on multiple levels ( kernel AC, online enjoyment, … ).
I recently saw a documentary clip on how people cheat nowadays with arduinos and PIs to circumvent kernel anti cheat and stuff. It was fucking depressing.
If you get joy from ruining other people their day you need to go outside, touch some grass and contemplate your life’s choices.
The same goes for smurfs. If you want to stomp on something then go stomp on very easy bots while they aren’t sentient yet.
Tabs for indenting and spaces for aligning. There. Everybody wins and loses.
This way the code always looks aligned and if you prefer 4 spaces for a tab instead of 2 or 3 or 8 you can just set it in your IDE.
Crisis averted!
Have a gander at project 2025 if you want to know what that future looks like.
Fuck detailed work logging. Best I can do is tell you how much time I spent per client in increments of 30mins.
Talk about a reverse UNO card.
There’s also the option of setting up a cloudflare tunnel and only exposing immich over that tunnel. The HTTPS certificate is handled by cloudflare and you’d need to use the cloudflare DNS name servers as your domains name servers.
Note that the means cloudflare will proxy to you and essentially become a man-in-the-middle. You – HTTPS --> cloudflare --http–> homelab-immich. The connection between you and cloudflare could be encrypted as well, but cloudflare remains the man-in-the-middle and can see all data that passes by.
Tell me in the old days there were other things that could happen. Like feathering somebody after tar pitting. I dont know what that would’ve meant. Maybe servers ridiculing an attacker or something.
Tar pitting sounds way more fun than rate limiting >.>
Oh I thought the cloud game pass wasn’t Xbox games only. But that is entirely possible.
So this is basically Xbox game pass ultimate, the cloud gaming part?
Because at one point they mention if you have to rebuy games you already own and they said you can just link your library.
At one point it sounds like they’re renting out hardware and are able to stream your library to you ( you own the game ). Other times it sounds like they have a catalog and you just pay for the streaming to your device ( you don’t own the game ).
Edit: do not mean this in a negative way. I’m just confused trying to find the answer :D
Right. So i had them the other way around. :D
Thanks for clarifying.
Yes.
p++
== p+= 1
== p = p + 1
are all the same if you use it in an assignment.
++p
is different if you use it in an assignment.
If it’s in its own line it won’t make much difference.
That’s the point I was trying to make.
What I meant was:
In the screenshot it said x = *(++p)
and iirc that is not the same as saying x = *(p++)
or x = *(p += 1)
As in my example using ++p will return the new value after increment and p++ or p+=1 will return the value before the increment happens, and then increment the variable.
Or at least that is how I remember it working based on other languages.
I’m not sure what the * does, but I’m assuming it might be a pointer reference? I’ve never really learned how to code in c or c++ specifically. Though in other languages ( like PHP which is based on C ) there is a distinct difference between ++p
and (p++
or p+= 1
)
The last two behave the same. Though it has been years since I did a lot of coding. Which is why I asked.
I’ll install the latest PHP runtime tonight and give it a try xD
deleted by creator