Details
-
AboutWeb developer. Worked on ton of projects. Jamstack is my jam right now!
-
Skillsjsx, tsx, mdx
Joined devRant on 6/28/2018
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
-
Remember when I told you that American idioms are always about the money? Well:
- Normal languages: “I’ll remember this”
- Americans: “It will live in my head rent-free”9 -
Because of all the injustice done to a regular folk by the banks and megacorporations, as well as the parts of government that value those two higher than doing the right thing for the regular people, piracy is all but justified.
For me, piracy is the default option. When it comes to stuff made by a megacorp, the first thing I do is see if I can pirate that. I would argue that piracy should be the default option for everyone.
No, you're not depriving corpo staff/hires of their salaries by pirating. If a megacorp is not paying them, it's not your fault.
I only pay for content if I want to support the creators. I was pirating since I got my first computer, I do pirate right now, and I will pirate in the future. I will advocate for piracy.5 -
I vibecoded ransomware that replaced files with their hashes instead of encrypting them and now Raytheon begs me to accept $12M ransom help3
-
nee rule in office: if you are taking leave on a wfo day, you must come to work on wfh day in the same week. even if your whole team is working remotely.
wtf!?
I am being punished to take an emergency leave because i was in a er room taking breaths off an Oxygen cylinder?
what is the point of this rule? just day Directly that its 5 days a week. why even give a fake illusion of 3 days office
if i try to reject this rule, i need to take double leaves... leave on wfo as well on wfh day
i am tired of being in such an exploiting company. If only my country wasn't in the middle of war and I wasn't getting any worse in terms of health, i would have quit even without a job offer in hand7 -
One day you'll go hiking and find a house built by no one. It will be then that you'll realize you can't go back home.2
-
My brain vehemently rejects every piece of knowledge related to inductance and inductors. Every time I try to learn something about those things, the knowledge just leaks out as if it was being erased by an external force. Oh how I want to understand how inductors work, but I can't!4
-
mechanical keyboard proponents be talking about longevity... I never ever had a membrane keyboard fail on me. they're indestructible. but I had a mechanical keyboard with kailh red switches fail on me, and I had to constantly spray it with wd-40 to make it work again. ugh.22
-
- The speaker that is giving a talk about the thing wears a beard, hand-spun linen pants and weilds a thinkpad
- Docs website is XHTML 1.0-compliant and features an extensive table of clients for the thing
- Most of those clients are dead
- Three most popular living ones are under GPL
- The thing itself was written in APL but was rewritten in Common Lisp
- Weird hotkeys and outdated conventions
- IRC chatrooms2 -
VSCode is a good, fast editor that has great flexibility and an extensive feature set out of the box. Sorry Sublime, but VSCode is just better.
I used Sublime since 2015, and after using VSCode for several months, I realized I’m not going back to Sublime. Their plugins ecosystem is totally broken, every plugin is abandoned.
Vim and other bigoted editors can go fuck themselves. Unlike Vim users, I have actual work to do, so I don’t have time to polish my configs. I want things working out of the box.21 -
Every line of code you write, every variable you name, all should be soaked in 100% testosterone. Every decision — a big dick move. Your code should give raytheon exec a stiffy. pussies say memory safety, patterns, yada yada, this and that… I say weaklings die. big deal.2
-
If you want to know how bad the job market is in India, a colleague told me that he got offered a job from an employer, where the condition is he has to give 20% of his paycheck back to the employer in their other bank account.10
-
A coworker just died. He wasn't even 50.
Everyone make sure you're keeping your stress in check, and prioritizing your health. Go get that thing checked out you've been putting off.
This career is lucrative but it has its toll. Make sure you're taking time away.31 -
I really want this whole industry to die. I want it to happen from the bottom of my soul!
Their whole job ad was about web technologies where they were asking for a 7-10 years Symfony developer.
One would think being a programmer for 10 years should superseed your shitty LLM prompt crafting requirements.
Truly, there never was a better time for global EMP to happen..13 -
Got to stage 3 of 5 of an inteview and just discovered the person at stage 4 decides who is qualified to continue, interviews are crazy this days, am lucky i got a job and am not desperate else i would be screwed by this assholes 😡.12
-
It's fucking incredible how boring work can be.
There is literally nothing exciting or new or challenging whatsoever.
I swear if we don't get any interesting projects soon I'm bailing after I finish my training, no matter what they offer me.
I can't work like this. It's only tickets, tickets, tickets, tickets, tickets...15 -
In CSS, never ever enlarge anything by hover. There will exist a set of cursed cursor positions somewhere on the edge of fully zoomed out and fully zoomed in states, which will make your UI element twitch between two states at 60+ FPS.
If you want this effect, wrap the element you want to enlarge in a wrapper whose size won't change. Add :hover state on the wrapper, not the element, and change the element in that selector. It will make the curse go away.
wrong:
.zoom:hover { transform: scale(1.1) }
right:
.zoom-wrapper:hover .zoom { transform: scale(1.1) }8