HN user

jensenbox

361 karma

https://jensenbox.at.hn/ meet.hn/city/48.425454208,-123.534816212/

Socials: - github.com/jensenbox - https://www.jensenbox.com/

---

Posts27
Comments210
View on HN
www.theregister.com 10mo ago

Slack hikes price for non-profit group

jensenbox
5pts1
medium.com 12mo ago

What does it mean to be smart?

jensenbox
2pts0
medium.com 12mo ago

Local Dev Environment Is a Product. Treat It Like One

jensenbox
5pts0
medium.com 1y ago

What If the Real Power of MRI Isn't in the Image at All?

jensenbox
15pts3
medium.com 1y ago

Quantum Won't Replace Your Computer

jensenbox
18pts18
medium.com 1y ago

You Probably Need Both: Orchestration and Choreography

jensenbox
2pts0
medium.com 1y ago

Make things that are easy to delete

jensenbox
7pts0
medium.com 1y ago

The Boom Is in Data

jensenbox
2pts0
medium.com 1y ago

The Interview Question That Tells Me Everything

jensenbox
12pts4
www.luminaprobiotic.com 2y ago

Mouth Biome Update – BCS3-L1 Bacterial Culture

jensenbox
2pts1
www.stride.build 2y ago

Powerful New Codegen AI

jensenbox
1pts0
www.orbik.com 5y ago

Show HN: Customers are your best advertisers

jensenbox
9pts13
news.ycombinator.com 7y ago

Ask HN: Auth by Phone Instead of Email?

jensenbox
2pts2
truecrypt.ch 9y ago

Truecrypt site cert is invalid

jensenbox
3pts0
www.closient.com 9y ago

Show HN: A new search engine – for local stuff

jensenbox
1pts0
tengine.taobao.org 12y ago

Http upstream check

jensenbox
32pts9
www.digitaloceanstatus.com 13y ago

Digital Ocean was down on the West Coast

jensenbox
11pts30
translate.google.com 13y ago

Free translation service for .po files at Google

jensenbox
2pts0
news.ycombinator.com 13y ago

Sendhub sending unsolicited SMS

jensenbox
1pts0
www.phoronix.com 13y ago

Steam Linux on the decline

jensenbox
1pts0
trickynumber.com 13y ago

Does anyone have a clue what this site is for?

jensenbox
2pts2
jensenbox.github.com 13y ago

Google products/services timeline - help fill please.

jensenbox
2pts0
news.ycombinator.com 13y ago

Ask HN: Google Product Timeline?

jensenbox
1pts0
status.hipchat.com 13y ago

Is hipchat owned by Twilio? Check the footer.

jensenbox
1pts3
www.wired.com 13y ago

The JJ-ification of Star Wars

jensenbox
1pts0
www.change.org 13y ago

Java Bloatware Petition

jensenbox
1pts0
list.valvesoftware.com 13y ago

Steam for Linux Mailing List

jensenbox
5pts0

We use Datadog and Sentry because their mechanism of interaction and retention are different - if Datadog changed their process to be closer to the way Sentry aggregates errors over time I can see us never needing Sentry again.

I love Sentry but it has become a bit over-the-top complicated as of late (for my taste).

Glad to see one more on the market. I only knew about GlitchTip prior to today.

I had a chuckle when I looked at the source code and could not find a Dockerfile in there. I want to kick the tires on it and the easiest way would be to run it as a Docker container against an existing file and alas, I cannot.

It might be something to target businesses that are interested in advertising themselves or perhaps as a means to circulate that they are hiring.

Cheap compared to marketing costs really.

The one thing that converted us from Taskfile to Justfile is how it handle parameters injected at instantiation.

https://just.systems/man/en/recipe-parameters.html just works better for us than https://taskfile.dev/usage/#forwarding-cli-arguments-to-comm...

We use Docker Compose for our dev environment and were trying to do something like (notice the extra dash dash for separating the arguments out):

    task poetry -- add requests django
It was not working as we expected for some of the users due to the argument dash dash stuff - they were forgetting due to muscle memory but the following does:
    just poetry add requests django
under the hood it was just calling (the equivalent):
    docker compose run --rm --build poetry poetry "$@"
Just arguments are more ergonomic.

This is how just does it:

    poetry +command:

        docker compose run --rm --build poetry poetry {{command}}

I have been using this for months now - way easier than Taskfile.

The parameter injection and passing to commands was the thing that converted me.