Details
-
AboutSlacker
Joined devRant on 6/10/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
-
That feeling when you start being really productive without checking the documentation all the time.
-
PM ordered me to not use encryption for customer authentication links because we want to be able so send same link if the user loose it. "we have to prioritize usability over security". At least I can tell future hackers it's not my fault..10
-
I started learning php at age 15, copying code from tutorials, changing stuff until it worked. Now 10 years later I still copy code from tutorials and change stuff until it works...3
-
Had a dream that I was attacked by Apple fan boys while eating lunch because I had a dell laptop 😨1
-
Spent an hour debugging a super simple ajax post. Was 100% sure that everything was correct, I could echo the id that I wanted to delete, got no error but still the little shit was in the database. Turns out it was no echo, it was an die() right before the query...
-
My girlfriend has no idea what I do at work, but apparently she thinks I'm the best "computer guy" ever when I can plug in a Chromecast to her TV2
-
*pointing on IE icon* but does it work on the internet?
Setting my lovely grandma's new router since she now got fiber. Opening Firefox and pages load fast, still had to show that is also worked on "internet" to make her happy2 -
Being in a situation at work where 50% of my time I can work on really exciting new Laravel projects where I got free hands on everything technical. Enjoying this very much. The other 50% is fixing existing broken wordpress sites with like 5 billion plugins. Want to shoot my fucking head off doing this shit, need to convince my boss to hire someone else just for the wp shit
-
When I was fresh out of school at my first job, we worked with an external consultant that refused to answer my emails directly since I was only a lite shit kid. Had to send all my emails thru my boss to get a reply.
-
As a developer with adhd, some days are just wasted and ends with the brain getting stack overflow from to much unorganized code and infinite callbacks 😂
$brain = new adhdBrain;
while($brain.energy > 0) {
$brain->checkSocialMedia();
$brain->work();
$brain->readNews();
$brain->getAngryWithSoundsInTheOffice();
$brain.energy--;
}
public function work() {
$brain->getAngryWithSoundsInTheOffice();
$brain->readNews();
$brain->code();
$brain->readEmail();
$brain.energy--;
}
public function getAngryWithSoundsInTheOffice() {
$brain->readEmail();
$brain->angry++;
$brain.energy--;
}
public function readEmail() {
$brain->work();
$brain->readNews();
$brain.energy--;
}
public function readNews() {
$brain->work();
$brain->getAngryWithSoundsInTheOffice();
$brain.energy--;
}