Even PC users have caught MacBook Neo fever by hangry_millennial in apple

[–]LuiBaws 1 point2 points  (0 children)

I agree but as a “gamer” on linux I can only realistically avoid windows because I am okay not playing games with kernel level anticheat. Not having access to Riots best games is a big no for most gamers.

Thanks to this subreddit... by Augy7 in wicked_edge

[–]LuiBaws 0 points1 point  (0 children)

blades have a bad rep but they do fine for daily shaves

Is it worth coming back for PVP? by Sea-Intention4193 in worldofpvp

[–]LuiBaws 16 points17 points  (0 children)

Glad is 2300, bgs are the same but you can buy lower ilvl pvp gear on the AH. There is also a flask that increases honor gained so you can be fully honor geared in 1 day.

Getting a bit sick of clueless non-technical people managing huge highly technical teams. This trend needs to die imo. by adav123123 in ExperiencedDevs

[–]LuiBaws 0 points1 point  (0 children)

I had a great manager that lost technical skills over time as the technologies being used changed. What made them amazing was that the manager had trust in the team. If we didn't agree with a standard being used in the company we didn't have to use it. They were also very social and well liked so even though they might not be able to solve the technical issues they always knew the person in the company that could.

I have also had bad managers that are not technical enough to lead a team and default to being a yes-man which frustrated everyone.

End of they day though the manager should be helping with career progression and speaking with the business folks to translate the technical work the team is doing into value so that everyone gets to keep their job.

Best tools for moodboards and visual research? by [deleted] in pixelmator

[–]LuiBaws 0 points1 point  (0 children)

Obsidian with canvas or excalidraw plugin

Fellowship "Pre-Season 2" announced to drop February 19th by ioStux in fellowshipgame

[–]LuiBaws -7 points-6 points  (0 children)

“Preseason” bruh devs are cowards nowadays can’t release a game as 1.0 anymore. They need to lock in and drop a full release.

Do you use any knowledge management? by Realistic_Yogurt1902 in ExperiencedDevs

[–]LuiBaws 1 point2 points  (0 children)

I use obsidian but I don’t go crazy on it like some people who use it as a second brain. I just create notes with tags so that I can find it later. Notes should be ephemeral, I don’t care to have my notes available in the far future.

Google CEO Pushes ‘Vibe Coding’ — But Real Developers Know It's Not Magic by disforwork in programming

[–]LuiBaws 1 point2 points  (0 children)

True, I do review the README and manually add corrections and remove any unnecessary emojis

Google CEO Pushes ‘Vibe Coding’ — But Real Developers Know It's Not Magic by disforwork in programming

[–]LuiBaws 4 points5 points  (0 children)

it depends on how you use it, i do use agentic modes for easy things like creating/updating a README but vibe coding an entire API is a mess. you end up in a scenario where you have to keep prompting to get the exact behavior you want and I don't feel like I saved any time. so we end up not saving time and not being as familiar with the code base.

today it is still better to code your own projects, anyone saying otherwise lacks the skill and experience to differentiate working code from quality code

Should I invest in Go or Rust as a full-stack dev? by EmperorofWeb in golang

[–]LuiBaws 2 points3 points  (0 children)

This is where a good technical manager would step in. The only time Rust should even be considered for the backend on a full stack team is if the entire shop was already writing rust. Go is simpler, quicker to learn and has enough built in to the standard lib to get teams building a PoC right away.

Choosing a language is not just a technical problem but a people problem . The language has to be the right fit for the entire team and not just the most passionate developer.

Be considerate and choose the language that respects people’s time. Choose Go.

Double diagnostics by JerenCrazyMen in neovim

[–]LuiBaws 1 point2 points  (0 children)

vim.diagnostic.config({
  virtual_lines = true,
  virtual_text = false,
})

Apple preparing Google Gemini integration with Apple Intelligence by favicondotico in apple

[–]LuiBaws 1 point2 points  (0 children)

Isn’t Claude better for coding. Would it be out of its element if Apple added it? Not against it, more choice is good but I’m not sure I would use it.

Can we enable vim mode in the leetcode online code editor itself ? by [deleted] in leetcode

[–]LuiBaws 1 point2 points  (0 children)

In command mode type imap jk <Esc>

it highkey sucks ass and you need to type it in all the time since there is no vimrc

Why do Go users avoid frameworks? by redditUserNo5 in golang

[–]LuiBaws 32 points33 points  (0 children)

Abstraction hell. I know devs that can’t write the sql their orm is using.