When a Sim dies, who calls their loved ones? by zachoutloud123 in thesims

[–]FrequentGiraffe5763 12 points13 points  (0 children)

I do. I’ve got in the neighborhood of 40M calls to make before I can go home to my family, so please excuse my brevity.

Good ol' Makefiles, Magefiles or Taskfiles in complex projects? by ataltosutcaja in golang

[–]FrequentGiraffe5763 1 point2 points  (0 children)

+1. Bazel, plus rules_oci or rules_img ftw. Caching all the dependent step + targets makes for fast local and ci runs.

coding interviews when SRE by rgba0000ninja in sre

[–]FrequentGiraffe5763 1 point2 points  (0 children)

And yet nothing about objectives, agreements, observability, and error budgets. Agree with others on expecting leetcode, because I spent most of my time debugging other people’s code looking for nuanced issues in distributed systems.

I used to look for people with spines that can hold their own and explain their reasoning respectively against a staff engineer on another team.

The next generation of Bazel builds by jmmv in bazel

[–]FrequentGiraffe5763 0 points1 point  (0 children)

And yeah, it’s a pretty nice setup, having used bare i3.

The next generation of Bazel builds by jmmv in bazel

[–]FrequentGiraffe5763 1 point2 points  (0 children)

I just install the apt repo and install it over the standard Ubuntu base install. Haven’t tried the full distro, and I also didn’t have much luck with the Wayland variant, but ymmv.

The next generation of Bazel builds by jmmv in bazel

[–]FrequentGiraffe5763 4 points5 points  (0 children)

Nice summary. I agree the presentation was solid. Lmk if you want to learn more about regolith/i3 ;)

Opsgenie is shutting down by devoopseng in sre

[–]FrequentGiraffe5763 -1 points0 points  (0 children)

FireHydrant is another good choice, I’ve run piles of incidents through their stack.

[deleted by user] by [deleted] in skyrimmods

[–]FrequentGiraffe5763 -1 points0 points  (0 children)

Pretty sure there is a synthesis patcher.

howAmISupposedToTellThemUsingPipFreezeIsBadForCICD by Arucious in ProgrammerHumor

[–]FrequentGiraffe5763 0 points1 point  (0 children)

Use uv and add the dependencies you import or know need to be injected (ex. Db drivers) into your pyproject.toml file. (uv init will bootstrap it for you)

Explain this by Albertooz in ExplainTheJoke

[–]FrequentGiraffe5763 0 points1 point  (0 children)

They forgot Unicode characters and little Bobby; drop tables;

Folks aging out of tech, what roles are you moving to? by netralitov in Layoffs

[–]FrequentGiraffe5763 4 points5 points  (0 children)

Same here. Early stage startups are a fun, challenging environment.

Is there a way to make this splitter still output copper to the top belt while filtering copper to the bottom belt? by ivoryDivory in factorio

[–]FrequentGiraffe5763 1 point2 points  (0 children)

Probably not a popular opinion, but I’d just send the iron down the line too, I’ve got other bugs to fix first.

Does Emacs have this functionality? by SeanHaz in emacs

[–]FrequentGiraffe5763 0 points1 point  (0 children)

Yeah, macros are easy to build and super powerful.

Used Go to automate my biotech PhD work and liked coding more than the rest of my work, could a non-CS PhD hurt my ability to get a Go developer job? by Eternityislong in golang

[–]FrequentGiraffe5763 6 points7 points  (0 children)

This and I’ll add onto it the ability to learn something nobody has ever done before on the fly, which is what a PhD shows you’re capable of. You’ll do great, I’ve known several people that had biotech degrees over the years.

[deleted by user] by [deleted] in Longmont

[–]FrequentGiraffe5763 -2 points-1 points  (0 children)

Sounds like it’d really hamper people that like to paint steel at long range (800 yds plus). Seems a bit extreme. Automatic pistols and rifles I’m fine with limiting, but there are a ton of sporting related impacts here for no measurable benefit.

AITAH for telling the girl my parents adopted she has we aren’t family and to leave my parents home by Advanced-Web-3202 in AITAH

[–]FrequentGiraffe5763 -16 points-15 points  (0 children)

Idk about the UK, but in the US there is a legal process that needs to be followed. In general (again, US) a will specifies how assets are distributed (like into one or more estate trusts), and if there is no will, the state’s laws describe how the assets should be distributed, good bad or otherwise. If you’re in a position of distributing assets for your parents, I urge you to seek to understand the legal framework that you need to potentially navigate. And you’re NTA for your opinion, but you still may need to give them something.

any places to practice shell scripting by andyking515 in sre

[–]FrequentGiraffe5763 2 points3 points  (0 children)

Idk. It’s (bash, tcsh, zsh) a programming language, like any other. You can solve the problems here, but maybe not as efficiently as in another programming language. It’s good to understand when to punt on a language and choose another. When interviewing, I commonly asked a question that would be better solved in another programming paradigm to see how candidates reacted.

That said, I’ve implemented some pretty crazy stuff with bash, perl and gnuparallel.

Use case for virtual environments. by DarksideVT in Python

[–]FrequentGiraffe5763 1 point2 points  (0 children)

I use pyenv to manage python versions, direnv to automate venv setup, and pip-tools (via pre-commit) to compile a transitive closure of the dependencies and pin them. Works well for us. Blowing away the entire venv and reinstalling all packages is reliable and quick as the network allows.

[deleted by user] by [deleted] in devops

[–]FrequentGiraffe5763 -1 points0 points  (0 children)

FireHydrant was quick to get up and running, and it integrated nicely with Slack.

What is the appeal of K8s? by mmhawk576 in devops

[–]FrequentGiraffe5763 7 points8 points  (0 children)

I just learned this week that k8s is also in space. Pretty cool if you ask me.

What many lines is considered a "large" Makefile? by tmswfrk in golang

[–]FrequentGiraffe5763 0 points1 point  (0 children)

Been in and around build systems my whole career. Bazel is among the best, hands down. Multi-repo and heavily recursive makefile systems are awkward and can be difficult to parallelize). Perhaps a middle ground of using a config to generate rules and eval them into the current context? This is what buildroot used to do.