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
-
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.14 -
PM is on his period, and since I'm leaving, anyone have any "fun" recommendations to leave in the code?9
-
🚀 “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. 💻🔥8 -
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/22 -
+ "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.11
-
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`.2 -
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.15 -
After 3 months after leaving my previous company, I'm still getting SMS because someone included my telephone number in their automated test flow.6
-
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.9 -
Week: 108 (Year 3)
First weekend of the month. How are you gonna spend this awesome weekend?
Question: Where do you get the motivation from to do something you wanted?
last Weekend : https://devrant.com/rants/1925426316 -
"Yeah, I woke up on a red-velvet couch, a coked-up slut licking on my cock, everyone passed the fuck out on crystal shit, hoes with them fucking tits and ass out atop piles of empty bottles and used condoms, and at first I thought: *Ugh, Tuesday.* But then I turned to my right, and saw that my best friend was dead. And *that* changed me, not the anal probe. So don't get it twisted."
- Eddy Cuddles, Metropolis (1986)2 -
PRO TIP: Always save the user password client side, validate it there and send a boolean to the server. It reduces backend load times and unnecessary calculations/computations.12
-
They discovered that they can put features behind a beta toggle and now everything is half-assed and hidden behind beta ffs.6
-
Apparently Guillermo Rauch, creator of NextJS and CEO of Vercel, and a fellow citizen of Argentina, is fascist. :( So much for the pride he inspired.31
-
Nothing worse than having to wrangle multiple coordinate systems for model files and your engine. Extra points when one is left handed and one right handed
I actually want to die5 -
Horror Story Time:
Acouple thousand years ago, before the great plage and the rise of the machines I met the founders of a startup , they visited silico valey, one of them worked in san francisco, but they were struggling, So they fired the senior engineer who built their system, and decided to contract out their development.
Their system relied heavily on Location data, it was very central for their business and they used Google APIs, so a few months after they let go of the dude, google starts billing them. Founders did not want to pay so they contracted out a junior dev to fix the issue... And he fixed it.
On that same weekend they attended a big convention, invested a good chunk of money there, registration numbers skyrocketed, huge success. Come monday morning they call me on Skype.
There was no location data in the new accounts, zero, zilch, nada. The "fix" the freelancer did was disabling Google integration altogether, They never tested the stuff properly, just accepted the changes and went with it.
I don't know if they went under because of this, or if this was just the a part of the issue. But sure enought the company lasted less then a Year after that.5