HackerLangs
TopNewTrendsCommentsPastAskShowJobs

usrme

no profile record

Submissions

A Love Story

pudding.cool
4 points·by usrme·الشهر الماضي·0 comments

Comparisons as Predictable as the Sunrise

pudding.cool
2 points·by usrme·قبل شهرين·0 comments

I'm Suing Anthropic for Unauthorized Use of My Personality

lesswrong.com
5 points·by usrme·قبل 3 أشهر·2 comments

How to Make Sense of AI

commoncog.com
3 points·by usrme·قبل 4 أشهر·1 comments

Border0 Is Joining Tailscale

tailscale.com
5 points·by usrme·قبل 4 أشهر·0 comments

Minions: Stripe's one-shot, end-to-end coding agents

stripe.dev
1 points·by usrme·قبل 5 أشهر·0 comments

The Missing GitHub Status Page

mrshu.github.io
2 points·by usrme·قبل 5 أشهر·2 comments

Hypergrowth isn’t always easy

tailscale.com
140 points·by usrme·قبل 5 أشهر·48 comments

The engineering behind GitHub Copilot CLI's animated ASCII banner

github.blog
2 points·by usrme·قبل 5 أشهر·0 comments

Hypergrowth isn't always easy

tailscale.com
3 points·by usrme·قبل 6 أشهر·2 comments

Code and Let Live

fly.io
508 points·by usrme·قبل 6 أشهر·189 comments

comments

usrme
·قبل 16 يومًا·discuss
Thanks for creating this, this is really fun to play around with! Is the code for this out in the open if someone would want to peek under the hood?
usrme
·قبل 22 يومًا·discuss
Same question here!
usrme
·قبل 30 يومًا·discuss
I'm right in the target audience for this as I'm about to embark on a Kubernetes certificate. What is the proportion of official K8S documentation and your own notes and how could someone differentiate between them on that site?
usrme
·قبل 30 يومًا·discuss
This is described here (https://docs.brew.sh/Tap-Trust) if you scroll down a bit.
usrme
·قبل 3 أشهر·discuss
I'd love to get a link to that comment/post!
usrme
·قبل 5 أشهر·discuss
This is actually addressed at the bottom of the page, somewhat: https://mrshu.github.io/github-statuses/#about
usrme
·قبل 5 أشهر·discuss
Agreed. If that would be too cumbersome to add, then a simple counter showing how many times a book has been recommended would help guide, me at least, a little better than just categories.
usrme
·قبل 6 أشهر·discuss
This sounds interesting. Would you be able to share more information about this style of running? I'm having a hard time imagining how this plays out in real life.
usrme
·قبل 6 أشهر·discuss
An incredible undertaking! How much testing have you done with regards to harvesting a manual configuration into Ansible, creating a new machine and then applying that to see whether the machine is a functional representation of the old machine?

The reason I'm asking is because I'm interested in how much confidence could be lent to this tool with regards to more old and obscure machines that have been running for years.
usrme
·قبل 7 أشهر·discuss
Like my guy 'diarrhea' already echoed: using CUE absolutely does not make sense at a small scale; just write your YAML and get on with your day. We were using it to generate dozens upon dozens of GitHub Actions workflows from what was essentially a single source of truth, and because CUE can export to JSON too then that single source of truth could then easily be leveraged to provide other input files to be used elsewhere.
usrme
·قبل 7 أشهر·discuss
When I got started it was much more difficult as you had to do a lot of manual work to get things started, and you really had to believe the promises that CUE offered (which I did...), but nowadays they've made so many steps in the right direction that getting something going is far quicker!

Here are a few links to whet your appetite:

- https://cue.dev/docs/getting-started-with-github-actions-cue...

- https://cue.dev/docs/drying-up-github-actions-workflows/

- https://cue.dev/docs/spotting-errors-earlier-github-actions-...

Definitely read through the CUE documentation (https://cuelang.org/docs/), watch their YouTube videos (https://www.youtube.com/@cuelang/videos), and join the community Slack channel (https://cuelang.org/community/). I've gotten a lot of help in the Slack from both enthusiastic community members and from the developers themselves whenever I've gotten stuck.
usrme
·قبل 7 أشهر·discuss
Dagger was something I looked into two or so years ago before they got consumed by the LLM and AI agent hype, and while the promise of being able to run the exact CI workflows locally seemed excellent, it seemed that there's basically no way be a Dagger user without buying into their Dagger Cloud product.

I ended up opting for CUE and GitHub Actions, and I'm glad I did as it made everything much, much simpler.
usrme
·قبل 7 أشهر·discuss
I wasn't able to see some example images or a demo video. That would be great to have before setting things up.
usrme
·قبل 9 أشهر·discuss
I've been wanting to create a similar holiday optimizer tool myself, but what you've done is marvelous! Do you take requests for new countries? I see that you're using https://date.nager.at/ as the source and country is listed, so perhaps it's easily doable?
usrme
·قبل 10 أشهر·discuss
Seconded. I've had huge success with generating workflows with CUE. Would definitely recommend it to anyone struggling with YAML.
usrme
·قبل 11 شهرًا·discuss
There was actually a really terrible brown-out by Poetry (a Python dependency management and packaging tool) where they introduced sporadic failures to people's CI/CD systems: https://github.com/python-poetry/poetry/pull/6297
usrme
·قبل 11 شهرًا·discuss
Thanks for mentioning these! Do you know what are the official channels they're doing the announcements in? In the post they just mention the word "usual" with no clarification.
usrme
·قبل 11 شهرًا·discuss
This is covered in the official GitHub issue: https://github.com/bitnami/charts/issues/35164

Q: What will happen to the existing OCI Helm charts? A: The already packaged Helm charts will remain available at docker.io/bitnamicharts as OCI artifacts, but they will no longer receive updates. Deploying these charts will not work out-of-the-box unless you override the bundled images with valid ones. *except for the BSI images included in the free community-tier subset.
usrme
·قبل 4 سنوات·discuss
I always thought this was an iPhone feature, not strictly WhatsApp. Back when I used WhatsApp I tried this with my Android phone and couldn't get it to work. Definitely possible that I overlooked something crucial though.
usrme
·قبل 5 سنوات·discuss
It's a damn shame it took until this article for me (and it appears some others) to learn about the console and the debugger; those seem like massive time savers! My own biggest helper has been to use "ANSIBLE_STDOUT_CALLBACK=yaml" wherever "ansible-playbook" is called (https://jpmens.net/2021/03/12/alter-ansible-s-output-on-debu...). It makes the verbose output much more readable and is especially handy for tasks that can spew thousands of lines at ones (e.g. "apt update/upgrade").