Details
-
AboutYou know who.
-
SkillsYou know what.
-
LocationSome nice park.
-
Website
-
Github
Joined devRant on 7/20/2025
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
-
Chrome. Hit F12 and start typing. Those keystrokes used to go into the console, right? I'm not imagining things...
And then some giant free-standing penis decided that instead, the initial focus should be in the search box.
So you type, nothing appears in the console, you focus the console, and carry on.
Then you're wondering why your api calls aren't in the network tab. Caching issues? Event handler crapping out? No, it's because that command you tried to enter ten minutes ago is still in the search box and being used as a filter.
Because someone decided to change the default focus.
As a wise man once said: "who the fuck was that? Who's the slimy little communist shit twinkle-toed cocksucker who just signed his own death warrant?"
Why didn't anyone stop him? In the meeting where he suggested that, why didn't his colleagues grab him by the testicles and drag him out of the building?
Why?
Fuckers.8 -
Nothing makes me laugh more, than knowing that Apple, the iPhone company Apple, the TRILLIONAIRE company Apple,
messed up the UI of the Tahoe.
It's unreal to me, how they can do that. Like, how? just how?3 -
!dev Applying to jobs is like solving those ground trap puzzles in videogames. lmao. Carefully make sure you solve each tile correctly... and from there you can apply the framework to vacancies.1
-
I'm so screwed
I don't speak French so I only qualify for remote jobs
bf keeps saying I'm better than I think I am
this one job post is like, "a history of delivering high quality software" uh no one ever has that?
my best bet is to go back to crypto trading. or just run out of money and go be homeless somewhere
doubt I could even solve logic puzzles because my brain is still fucked lol. need to get fat so I can go fasting again because that helped... fucking microglia inflammation for 3 years. but I'm already underweight and now people are skinny shaming me for it even -.-
and I'm coming off the tail-end of someone committing me to a fucking asylum cuz haha crazy people jokes. I'm so mad at that girl. still undergoing withdrawal from the pills which gave me "morbid depression" as I realized lmao. the withdrawal is nothing like my health issues so I don't think I should've even been given those things... inflammation hyperness, tenseness, lack of sleep =\= mania which is just happiness
at least I figured out I'm dependent on eating beef liver every week and that's how I stopped degrading back in January. I'm so tired of being sick and being stuck. I'll die of old age before I endure my way out of all this garbage at this rate
at least my sense of meaning came back. so at least that can comfort me now
really gives me perspective on people who are depressed. I've never in my life been depressed and I can officially say that now, having experienced it from those pills. it's wild to me most people are depressed. they just live like that. without meaning or hope or optimism. no humour 😬
interestingly I now suspect I'm depressed but only in regards to making income for myself. I wonder how that happened. growing up I tried to destroy my optimism because it got me repeatedly into toxic social situations. I gave people more hope than would be rational and the kicker is that I was logically aware of my mistake but I couldn't train myself to have a different personality. I had to catch myself to get out of those situations but I could never be not optimistic, naturally. I could never train the optimism out of myself
but when it comes to income I don't have that same optimism. how did that happen?
everywhere else I feel ok, but in income I'm depressed in my personality
how lol13 -
I don't know why but vendoring a dependency locally so I can change whatever I want feels so powerful
Oh, you made all fields private? How about screw you, now they are all public! hehe6 -
I'm honestly tempted to buy an M4 Apple Silicon computer mainly for their ability to run local LLM models with unified ram.
overall I think they are too expensive for the offering, but being able to play around will LLMs without shelling out RTX5090 kinds of money is tipping the balance.
I wonder what apple people experiencies have been?28 -
I know you won't like it but the world is actually divided between idiotland and normal-land.
Normal-land is between the maas river and the rhine. Everything else is stupid.19 -
hoop: – "masterkey" is not okay. Please replace all instances of "master" immediately #WeValueInclusivity
cprn: – Just to clarify, "master" in this context is standard (as in "master key" in databases). It's not intended to be offensive. Replacing could affect functionality. Call to talk more?
hoop: – STOP overthinking, just change it. I DON’T CARE, JUST DO WHAT I SAY. #DoItForTheCulture
cprn: – Got it. You want me to replace every instance of "master" in the codebase, including comments and variable names. Just confirming?
hoop: – YES. NO EXCEPTIONS. #MoveForward
PR Update: Replacing all instances of "master" as requested. Please, verify before accepting.
hoop: – Perfect. Now we’re on the right track. 👏
After 2 failed attempts at explaining, I blindly replaced all instances of "master" with "boss", and hand-delivered my letter of resignation. I left them with "complied with your request, have fun figuring it out". It was 2 years ago, and I was the last coder who knew that system after a big merger.18 -
PM is on his period, and since I'm leaving, anyone have any "fun" recommendations to leave in the code?14
-
🚀 “I Wanted GitHub Copilot in My Pocket — So I Built It Myself”
For years, I’ve had this weird habit of coding from random places — cafés, buses, hospital waiting rooms, you name it. But every time inspiration hit, I found myself thinking the same thing:
“Man, I wish I could just use Copilot on my phone.”
It’s 2025. We’ve got AI writing novels, generating music, and summarizing 500-page research papers in 2 seconds — yet somehow, GitHub Copilot still refuses to leave the comfort of VS Code on desktop.
So I decided to fix that.
💡 The Idea
It started as frustration — a “wouldn’t it be cool if” moment. I was halfway through an idea for a small project on a train, and my brain screamed:
“Why can’t I just ask Copilot to finish this function right now?”
VS Code was sitting at home, my laptop was dead, and all I had was my phone.
That night, I scribbled this into my notes app:
“Bridge Copilot from VS Code → phone → secure channel → no cloud.”
At the time, it sounded insane. Who even wants to make their life harder by reverse-engineering Copilot responses and piping them into React Native?
Apparently — me.
🧩 The Architecture (aka “How to Lose Sleep in 4 Easy Steps”)
The system ended up like this:
VS Code Extension <-> WebSocket <-> Discovery API (Go + Redis) <-> React Native App
Here’s how it works:
The VS Code extension runs locally, listening to Copilot’s output stream.
A Go backend acts as a matchmaker — helping my phone and PC find each other securely.
The mobile app connects via WebSocket and authenticates with a 6-digit pairing code.
Once paired, they talk directly. No repo data leaves your machine.
It’s like a tiny encrypted tunnel between your phone and VS Code — only it’s not VPN magic, just some careful WebSocket dancing and token rotation.
🛠️ The Stack
Frontend (Mobile): React Native (Expo)
Backend: Go + Redis for connection brokering
VS Code Extension: TypeScript
Security: JWT + rotating session keys
AI Layer: GitHub Copilot (local interface)
🧠 The Challenges
There’s a difference between an “idea” and a “12-hour debugging nightmare that makes you question your life choices.”
Cross-Network Discovery:
How to connect phone and desktop on different networks?
→ A lightweight Redis broker that just handles handshakes.
Security:
I wasn’t making a mini TeamViewer for hackers.
→ Added expiring pairing codes, user-approval dialogs, and local-only token storage.
Copilot Response Streaming:
Copilot doesn’t have a nice public API.
→ Hooked into VS Code’s Copilot output and streamed it over WebSocket.
(Yes, 2% genius and 98% madness.)
UX:
The first version had a 10-second delay.
After optimizing WebSocket batching and Redis latency, it’s now near-instant.
🤯 The “Holy Sh*t, It Works” Moment
The first time my phone sent a prompt — and my VS Code actually answered with Copilot’s suggestion — I legit screamed.
Like, full-on victory dance in the middle of the night.
There’s something surreal about watching your phone chat with your desktop like they’re old coding buddies.
Now I can literally say:
“Copilot, write me a REST API,”
and my phone responds with fully generated code pulled from my local VS Code instance.
No VPN. No cloud syncing. Just pure, geeky magic.
⚡ The Lessons
The hardest problems aren’t technical — they’re psychological.
Fighting “this is impossible” is the real challenge.
Speed matters more than perfection.
Devs don’t want beauty; they want responsiveness. Anything over 1s feels broken.
Security must never be an afterthought.
I treated this like a bank tunnel between devices, not a toy.
Build for yourself first.
I didn’t make this for investors or glory — I made it because I wanted it.
That’s the best reason to build anything.
🧭 The Future
Now that it’s working, I’m turning this experiment into something shareable.
The dream: an app that lets every developer carry Copilot wherever they go — safely and instantly.
Imagine debugging on your couch, or editing code in bed, or just whispering to your AI assistant while waiting for coffee.
Phones today are more powerful than early NASA computers.
Why shouldn’t they also be your code editor sidekick?
So yeah, that’s my story.
I built VSCoder Copilot — because I wanted to code from anywhere, and I refused to wait for permission.
If you’ve ever built something just to scratch your own itch, you already know this feeling.
That mix of frustration, caffeine, and late-night triumph that reminds you why you fell in love with coding in the first place.
Because at the end of the day, that’s what we do:
We make ideas real — one ridiculous hack at a time. 💻🔥9 -
I would like to share this beta, and I will add that I am super grateful for devRant, but I wanted to have an online platform where I can live out my creativity and that I can use as a lifeboat at times when devrant loads in 5 minutes.
I have few things to complete before open sourcing it.
https://my.devplace.net/23 -
+ "Has someone tried to use AI to write code for a mod for this game?"
- "My stance is AI is a tool, to help you, don't expect to write the whole thing."
- "AI is very useful if you know how to code... I recommend learning coding."
??? How come I always find this kind of guys? Is this even being pedantic if they didn't even answer the question?
Makes me remember when I was younger and had to say "Java & ECMAScript" because saying Java & JavaScript in the same sentence would make unsolicited and misguided "corrections".
Fortunately there were some people that actually answered (before them, so they actually saw the question solved and still went to post that), but I still felt I had to clarify I'm a freaking software engineer, I don't have time to learn how to code for this specific engine for a shitpost mod. And what if I had time but still wanted to use AI? Rude, entitled... dummies.7 -
"AI can code" is like "my dog can play piano". Yes, I have proof, look it's hitting the keys and we can hear a sound. Dogs can play piano. AI can code.7
-
It's still so amusing to me the amount of projects that are posted on /r/react, /r/angular or /r/sideprojects that are blatantly AI written and others that have their LLM API key exposed.12
-
Missed some of you. A lot of you really.
Anything exciting happen while I was gone?
I heard some of you formed a mob, dragged a spammer out behind the wood shed and beat em bloody.
Sad to say I missed that.
I'm currently eeking by financially, but got my plans for the fall winter and spring. Gym membership, rock climbing, prepping for a 5k. Weathers perfect for all of it.
I'm in a competition right now for some serious prize money and in the lead.
Enough to start that AI lab and finish my game.
Also, not everything is sunshine and roses. I sleep 3-6 hours a night average, (5-6 if I'm lucky), and horrible mood swings, with or without sleep. And isolation, damn the isolation is terrible, but my schedule is so hectic I basically have no room for any real-world contacts. I can barely make time for myself, let alone my family.
But I'm still writing poetry and music at least, and got my eye on some land for a cabin or other uses like for an office.
Whats going good/bad in your life?
I haven't heard from so many of you for so long.11 -
It's amazing just how bad Visual Studio/.NET is .. and the way this shop does stuff.
I was just copying existing projects and renaming/modifying everything for new tasks, but this time I tried to create a new project from scratch. No matter what I get:
Could not load type 'System.Runtime.CompilerServices.RequiredMemberAttribute' from assembly 'NJsonSchema, Version=11.3.2.0, Culture=neutral
Everything has the right .NET framework. Dependencies look mostly identical to other projects. No one in the work chat has seen it before. I'm about to move this project to a tmp dir, copy and existing project, search and replace all the name, empty it out and copy my source into it. What you want to bet it will "just work."
I hate everything about Windows/.NET .. I'm glad I have a job again, but .NET is just so fucking painful. How has Visual Studio remained this bad for this many decades? I swear VS 2022 is just like VS6 with a fucking dark theme.8 -
Programmers of today have replaced customly designed algorithms with off-the-shelf heuristics. They wander through packages and libraries and end up making something that is in no way viable to run in production.
(Paraphrasing Tesla)
Seriously, how many dependencies do a data science stack for some internal process needs? It would be fine of it was just an image compilation issue, but every other library nowadays needs a fucking subscription.
It makes sense when vendors want to bill you for using their neat library. It takes a lot of effort to develop those things.
But you better deliver something great and have a fucking good reason to make it an API instead of a self hosted or locally installed library.
Because it doesn't matter how much you've optimized your hardware to run your library, the network latency makes it much more expensive (in processor time alone!) to call an API and await a gRPC response. Oh, I can do async? No shit, Sherlock. Your fucking server cannot handle my load. Not without significant investment on a dedicated host and then we're back to square one.
Shit, its cheaper to run the thing on my side. "Oh, you can do self-hosted! We just need to make sure we have our digital rights management bloatware ruining the performance of everything!"
Just to make things worse, every other data science library nowadays is just a fucking distilled LLM. Those pieces of crap manage to be more unreliable than politicians.
Fuuuuck, the world is burning already and we're pouring fuel all over it with those fucking get-rich-quick "advanced API tools". Can't we just hire talented people instead of licensing a dozen vendors? But noooooo, everybody gotta be their own fucking boss because companies hate when their employees are happy and sabotage it all with RTO mandates.
Fuck, I need a drink. The enshittyfication has come for us, at last. May our end be quick as `sudo shutdown 0`.3 -
We have a no AI use policy at the company.
I had a contract developer added onto my team. I start to see AI generated comments in his code all the time. Point out that the code being contributed is def AI nonsense. I brought it up with my boss which reports to the CTO. Response: “As long as he doesn’t get caught I guess.”
He did get caught. This is me catching him and telling you.22 -
After 3 months after leaving my previous company, I'm still getting SMS because someone included my telephone number in their automated test flow.8
-
What’s your take on building a community-led devRant overhaul?
Looks like @dfox and @trogus aren’t maintaining this anymore and despite my efforts, I haven’t heard back from them.
Maybe an open-source devRant reboot without the pitfalls of existing platforms would be welcomed? Let me know and let’s band together to make it happen if at all.2 -
they added decorators to JavaScript ಠ_ಠ
that shit is why python made no sense to me, and why I wanted to avoid spring in java
guess my standards are zilch now though. you say jump I say how high
let's make JavaScript look like java. thanks nestjs. I guess since people are using it. the hosting options / fees for these suck. ew lol
gonna just make something stupid with it, that won't be hosted anywhere because heroku banned me ages ago for having actually useful websites8 -
Weird error message from webpage: "Hello, my name is Inigo Montoya. You killed my webpage. Prepare to die".
It's a Princess Bride parody...
Developers get creative (or bored) these days with error messages.. Yes, one of those again.5 -
github u absolute piece of shit let me see the exact day a version was tagged , i dont want to see 3 weeks ago, hovering and clicking doesnt do shit https://github.com/aws/...5
-
https://youtube.com/watch/... 🪦
I've been in rust-land too long
maybe I'm not incapable. I hear another language mentioned and I'm like "oh that's so easy" where before I had the energy to argue that I just didn't like it. now my spirit is broken and tattered and I've yet to even finish anything of any significant size or feature-list in rust, at least not to the degree my standards would've been at somewhere else. I wasn't an incapable programmer before =-=... so maybe it's all because of this quest
imperative. imperative. spell out every insignificant detail. you can never abstract away actually duplicate logic. but you'll find you'll have to duplicate concepts in code that never needed duplication before. over and over and over again.
by this point I have the vision to see what all the operations I need done are the same no matter the way I structure my code. be it a process / operating system, a slotmaps, something linear and basic, or this events system I made up... the domain logic is all the same. I don't optimize the domain logic anymore. I just want the most basic thing to work and it's sad. it doesn't solve any problems. it just gives me new ones. to the point where I'm not doing anything fancy anymore. I'm not doing anything majestic. I just don't have the energy. I just want it to work and I can't get anything that isn't super simple to, without becoming very ugly and having lots of cringe edge cases. fuck I loved the beauty of capturing all the edge cases with a super simple line in JavaScript: it was fucking elegant.
I think everybody is just lying to themselves. I've not seen a person start and finish a rust project. I've seen them get stuck in refactoring / rewrite hells worse than every other language though. you assume it's normal but in rust it really isn't. it's so so so much worse. it feels normal but that's a lie. it's exponentially worse -- other languages maybe 2-3 rewrites (the third because you're picky). rust it's normal to be on the 6th and you've barely moved wtf. I've not seen a single person make it out. hell even established libraries are full of rot, regularly rewriting parts of themselves. he's right. they're just powered by slogans. how is this a serious language? reinvent the baseline. reinvent the baseline.11