Details
-
AboutI'm not a robot;
-
SkillsRust, Python, HTML/CSS, PHP, Java
-
LocationBerlin
-
Github
Joined devRant on 12/14/2021
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
-
Doubt. Doubt is what makes us free. A cog spinning inside the mechanism has no doubt. I can't call a person who is always certain, always knows what to do and never has any doubts a free person.5
-
oftentimes I believe we are in simulation because of the unique fingerprints. It's like a uuid. Or a PK.6
-
You know who is pathetic? People who turn off comments after they get negative feedback on something they posted10
-
I have to translate (read copy paste) a website in 8 different languages. Already busy with this for four weeks and building a doc with all parts missing. Fml3
-
"I need the login credentials for the CMS service"
*sends the email confirmation email*
"No, I can't confirm your email for you. In plain English: send me the email and password to login."
"Ohhhhhhhhh"
Literally what the fuck is wrong with these people.
I swear we're all fucking doomed.5 -
OK! NOBODY MOVE! 🙅
I finally have a candidate for the laptop I want to buy. 😁
MSI modern 15 A5M
Anybody used it? Anybody got something against it?11 -
Once when a friend asked "how did you make PH product of the day in three hours", I legit replied with "The only problem with being faster than light is that you can only live in darkness".2
-
I know a guy who writes everything in Haskell.
He started learning it because his parents got him into a math school (and math schools in Russia use either Python or Haskell), he liked it, but later he dropped out. Today, apart from Haskell, he only really knows HTML and CSS, and maybe some JavaScript.
He writes backend AND frontend in Haskell and uses some kind of JRPC stuff to manage all that. He told me that his life is a pure heaven. He IS RELEVANT (!!!!!!), his apps always run without bugs (because in Haskell you can mathematically prove that there are no bugs), they are performant, faster than C (because you can't write a complex enough app in C that will be as efficient as compiled Haskell, because it's you vs compiler). He doesn't have any problems in life whatsoever. He never got burned out, he never got anxiety or depression. He doesn't act pretentiously and stuff, he's just a normal person who rarely even mentions that he can program.
Science says it can't be done! You can't only know Haskell and be a relevant software engineer! You know what, he didn't _know_ it was impossible. He's like that grandpa from a meme, he got Alzheimers, but because of it he forgot that he had Alzheimers, and now remembers everything.
The fun thing is that he looks like a typical gopnik, with adidas suits and stuff.
What a gem of a person.26 -
Hey Python, why in the ever loving readability universe I can't break the following command across multiple lines?
df.replace(...).apply(...).reset_index().drop(...)
Oh, but I hear you say "Hitko, why you can break it into multiple lines if you break within brackets!"
To which I ask you, does this shit look any more readable?
df.replace(...
).apply(...
).reset_index(
).drop(...)15