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.
So all the misery in the world is related to webdevs trying to parse html with regex?
You bastards.
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!
Fuck detailed work logging. Best I can do is tell you how much time I spent per client in increments of 30mins.
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
p = 1
x = ++p
// x = 2
// p = 2
p = 1
x = p++
// x = 1
// p = 2
++p
will increase the value and return the new value
p++
will increase the value and return the old value
I think p = p + 1
is the same as p++
and not as ++p
.
No?
That would’ve helped to add in the original message. I dont think I’ve ever heard of “ubi” servers.
You can try installing the deb file I guess? If you google it I’m sure you can find it somewhere.
Same. Although the simplelogin integration seems nice.
I like the timer and the error icon on a fail. I can’t recall how often I think: damn this is taking too long. I should’ve timed the command