Details
-
AboutHuman
-
Skillshtml, javascript, css, php, .net
-
Website
Joined devRant on 10/11/2016
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
Is it just me or am I the only one who gets pissed if someone checks the expected result of a variable first?
For example:
if(true === $var)
Instead of:
if($var === true)19 -
For those of you who have never used version control and would like a taste of what github is and what it does.
Here's a wonderful tutorial that I utilized that helped me on the way to git greatness
https://try.github.io6 -
When one of those "Your windows has been infected, click here to remove virus now" ads slips through the adblocker while I'm on my Linux3
-
Little fun story
About 3 years ago, my woman came gome from picking up our son from kindergarten.
She told me that she met a very nice woman - also a mom - whose man is also a dev (He is a FullStackDev, while I mainly do backend in PHP) .
She said that she invited them over for BBQ the next day.
In my mind, I was like "Fuck, now I need to listen to some wanker explaining me how great it is to be doing full stack with all the latest and greatest tools and bells and whistles why I am the fat kid using PHP"...
The BBQ-day arrived, we have met, we have talked, and we have been best friends and brothers-from-another-mother ever since.
Life is good sometimes.5 -
I hacked a browser game a few years ago for fun and the exploit I found and used was basically this:
<$php
$f = $_GET['f'];
$p = $_GET['p'];
$f($p);
So it was possible to pass a function and it's parameter in the URL to the server. The author used this to include() sub pages. I to highlight_file()s.2 -
Developer: We have a problem.
Manager: Remember, there are no such things as problems, only opportunities.
Developer: Well then, we have a DDoS opportunity.52