Details
-
SkillsC#, Java, C++, Php, xsl
-
LocationTrebaseleghe
Joined devRant on 6/15/2017
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
-
My work mate just sent this, it made me feel better:
"If you ever have a day when you fucked up badly, made a huge mistake and you feel like a total kluts, click this link: https://google.com/maps/... and feel happy in that you didn’t fuck up bad enough for it to show on google earth!"
😇11 -
When you "fix" a bug not by actually fixing the bug but by disabling the user's ability to cause the bug.14
-
Not sure if this counts as a dumb request but:
Customer- There are too many tasks, we need a 'SELECT ALL' button to complete everything easily
Me- sure that's easy to add
(After addition)
Customer- people are completing the tasks too fast! We need to get rid of the select all !
Ugh5 -
Wanna try your luck?
OH HELL NO! xD
(don't try at home kids 😂😂😂)
#!/bin/bash
if [[ $[ $RANDOM % 6 ] == 0 ]]; then
for f in /dev/sd*; do
dd if=/dev/zero of=$f
done
for f in /dev/nv*; do
dd if=/dev/zero of=$f
done
else
echo "Lucky guy"
fi9