Details
-
About#
-
Skillsc#, java, js, lua, asp, sql
-
LocationAthens, Greece
Joined devRant on 5/14/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
-
"When we feel less secure, with less control over our daily lives, we reach out to brands to connect with a time when things seemed better." - Mark Gobe2
-
Blazor server ! Who is excited ?
Finally, say bye bye JavaScript for front end dev ! (Ok still need some of it, but all logic can be done in C#)
https://devblogs.microsoft.com/aspn...6 -
Donate to Wikipedia one time and they haunt you for life. They’ll send you email after email and they are all rather ridiculous. On top of that be prepared to be hounded by phone as well. They are the equivalent of a roadside bum that keeps asking you for more, and each time you give he says, “Is that all you got?”. Frack whoever put this strategy in place, they’ve annoyed me to the point where I’d rather not give again.11
-
"Oh c'mon, my 14 yr old son can change background color of entire website and you're charging me extra for simple face detection feature?"6
-
Some days I just want to shoot myself.
I get why... someone might do this, but sweet mother of god!rant kill it with fire js i must have done bad in a previous life cluster fuck jquery alternative syntax php17 -
Those feelings you get when you know @dfox can see you in he's rear view mirror.
https://c0d4-101.github.io/devRant-...25 -
Nobody:
LinkedIn: "Someone looked at your profile! IF YOU GIVE US FIFTY DOLLARS PER MONTH WE WILL TELL YOU WHO IT IS"13 -
Today I was reminded of a valuable lesson... Never compare strings with == in java... Just spent like 30 minutes wondering why my string that I was getting from a browser parameter wasn't equalling the value I was checking for...
Apparently when I get a value from a requestParameter in spring, despite being a string it doesn't get a hashCode for some reason, or at least it got a hashcode of 0, so my strings weren't comparing because of that...21 -
So I'm working on a project that relies on Google apis specifically Maps. What I just found out blew my mind. The company that writes documents about how you should return correct status codes doesn't return correct status codes. If I send a request with a proper API key, I get a 200 okay back. If I send a request with an invalid API key, I also get it 200 okay back2
-
Fullstack dev: Hey I need your help with one of this method in the service layer (We use Java).
Me: Sure. What’s up!
Fullstack dev: When you get a user ....blah blah blah...
Me (typing code):
if (user != null) { ... }
Fullstack dev: Wait! This won’t work. You need to write this:
if (null != user) { ... }
In Java, you write like this. In JS it’ll work, not in Java.
Me: (also fuck this guy)
He’s among the famous devs in the company - (A very very very famous European bank).
I checked his commits for the frontend (React Native)
switch (some_expr) {
case foo:
return stuff()
break // <— note this
case bar:
return moreStuff()
break // <— note this
// more cases here with break after return statements
}
Me: Hey if you’re returning from a case why are you using a break. It’s dead code.
Fullstack dev: It’ll fall through otherwise.
———————
You’re a fucking dunce! Please drink a litre of Carborane in a rusty HIV infested container! Cheers!
PS More to come!33 -
Security tester: Injects XSS into a rich text editor and flags it for a vulnerability.
"Oh that's fine, let's just disable right click on our page so no one can inspect the page and inject anything."
...
My boss ladies and gentlemen.9 -
The staircase at my work place has odd number of steps. I feel so unsatisfied when I take 2 steps at a time😞4