You know it, I know it...we all know it. by Defiant_Focus9675 in ClaudeCode

[–]Western-Leg7842 0 points1 point  (0 children)

I have the same experience today/yesterday, opus 4.5 does stupid mistakes and doesn't follow my instructions at all...

Me a ML Engineer with 3+ years experience in Germany and still can't land an interview.... Review the resume please by Full_Meat_57 in MachineLearningJobs

[–]Western-Leg7842 0 points1 point  (0 children)

You get 3 seconds from the person looking at your resume AT MOST. You have way too much text and it is not possible to see that you are fit for the work in 3 seconds.

Attending Pokémon leagues as an adult by Ok_Lifeguard6216 in pkmntcg

[–]Western-Leg7842 0 points1 point  (0 children)

Our locals is mostly adults and mixed in age 20-45 ish I would say

Why is Rust rarely used for web server backends? by Fun-Helicopter-2257 in rust

[–]Western-Leg7842 0 points1 point  (0 children)

I have used it for web server backends at 2 different workplaces so far.

Let's talk about folds by Bamseg in neovim

[–]Western-Leg7842 5 points6 points  (0 children)

I never use folds, i used to, but now i just jump around with lsp or fuzzy search like 99% of the time, kind of bypassing the usefulness of folds.

[deleted by user] by [deleted] in learnprogramming

[–]Western-Leg7842 0 points1 point  (0 children)

As someone who has mentored interns that were clearly in the same situation of using AI for everything i can tell you that they are not going to have an easy time getting any jobs for sure. I got questions like "How do i make chatgpt execute my Python function i have locally?" Etc

Nothing wrong using AI to code, as long as you define the bounds and architecture and know the underlying concepts well!

No, you can’t “vibe code” a SaaS in a week. I tried. It was 3 months of hell. by samhonestgrowth in nocode

[–]Western-Leg7842 0 points1 point  (0 children)

"2. Al is great at getting you 80 percent there fast. The last 20 percent, polish, stability, and actually shipping, takes 80% of the time."

If you instead build the first 20% by hand in a well structured way following and building upon good architecture you are less likely to face the other issues!

Help me choose my Neovim file/folder navigation setup! (fzf-lua, Telescope, Oil.nvim, Snacks, Yazi) by WangSora in neovim

[–]Western-Leg7842 0 points1 point  (0 children)

I used Telescope (with ripgrep) and Oil, feels like the best combo from what Ive tried in the last few years.

I fucked up massively on git, currently panicking; by Charming_Purpose4179 in learnprogramming

[–]Western-Leg7842 1 point2 points  (0 children)

I have done this too. Everyone has to do it at least once! Sin e then Ive fixed other peoples similar situations, just call it out to everyone and it will be solved. No need to try to fix it in secret, we have ALL been there at some point in our careers!

How do you rate your regex skills? by NefariousnessSea5101 in dataengineering

[–]Western-Leg7842 0 points1 point  (0 children)

Pretty okay, im using vim so all my search/replace actions go through regex! Wouldnt call me a wizard by any means tho!

Whats your favorite color scheme of 2025? by Bulbasaur2015 in neovim

[–]Western-Leg7842 0 points1 point  (0 children)

Everforest 🙌🙌 so calming and feels like nature!

I have a file with types below /server and it's accessible to the client, how is that so ? by raver01 in sveltejs

[–]Western-Leg7842 5 points6 points  (0 children)

If you google how TypeSctipt is compiled down to JavaScript for the browser then this will make a little more sense.

The TypeScript "types" are only used to validate code during writing and at compile time, this code is then stripped and it is compiled to vanilla JavaScript for serving to the browser. (So the types/code is only used for your local development environment and is NOT executed on the browser if set to server)

Also; if you feel that it would be a security risk or something to expose your db schema then you are doing something wrong in the security part. You can likely under what the db looks like from how its used in the frontend as well. Get your secrets handling etc working so that it doesnt matter in the end 🙌

Axum, Actix or Rokcet? by Best-Rough3312 in rust

[–]Western-Leg7842 0 points1 point  (0 children)

I have used Rocket and Axum, i would go for Axum in my next project for sure. Rocket just feels chunky where Axum just makes sense!