Hacker News new | past | comments | ask | show | jobs | submit | jcalabro's comments login

What's next? Vingegaard: secure your wine online with this one simple app!

I grew up in the town next door to Norwell and I play the drums. I drove by many times and would have loved to have gone in and seen if they might have given a high school student a quick tour of the less-secret parts of the factory, but I never did.

There was definitely a strong drumming community in the area; there were some fantastic players and teachers around (i.e. Steve Smith from Journey was born in Whitman). Not sure if that's because of Zildjian, but it was a fun place to grow up and play music. It might just be that there are so many strong music universities in the area.


[2012] it took me a second when they said "Mayor Thomas M. Menino" rather than "former Mayor Thomas M. Menino"


I'm still having issues. I can't push, it just hangs forever.


The logo is quite similar to Roc?

[0] https://www.roc-lang.org/


I'm in the exact same boat right now. I'm too lazy to fix it, so this is basically the only reason I still have my FB account.


Sounds like a win from a product perspective, higher retention! Clearly a feature, not a bug. The metrics don’t lie! /s


I've been using just at work and in personal projects for almost a year, and I like it a lot. In particular, its self documentation with `just --list` makes onboarding new folks easy. It's also just a nicer syntax than make.


Agreed. Is it that different than Make with `.PHONY` targets? Yes — it is Designed To Do Exactly What It Does, And It Does It Well. That counts for something in my book.

All my Justfiles start with this prelude to enable positional arguments, and a "default" target to print all the possible commands when you run `just` with no target name:

    # this setting will allow passing arguments through to tasks, see the docs here
    # https://just.systems/man/en/chapter_24.html#positional-arguments
    set positional-arguments

    # print all available commands by default
    default:
      @just --list


in mise you wouldn't need that preamble. `set positional-arguments` is just how it behaves normally and `mise run` doesn't just show available commands—it's also a selector UI


That's nice, but I don't have any interest in switching because Just does everything I want. I legitimately have zero feature requests regarding Just.


Maybe worth reminding the self-documenting Makefile [0] discussed here.

[0] https://news.ycombinator.com/item?id=30137254


I've been using this for years; love it


I don't have my work laptop to hand to compare, but I usually run "just" to get a list of commands and what they do, rather than "just --list". Hope that saves you 7 key presses going forwards.


Running `just` will invoke the first recipe, so you need to add one that invokes `just --list` for this to work — see https://just.systems/man/en/listing-available-recipes.html and my sibling comment.


That seems like the most useless pattern to take from make, especially when you name your tool ”just”.

Just what?


> Just what?

"Oh... come on! Just... <waving hands angrily>"

Pretty clear to me :).


The same applies to make without arguments though, make what? Grammar / word meaning aside, unknown / missing commands printing the help file or suggestions is a good pattern.


I think it's less grammatically ambiguous with make. It implicitly means "make <the project>". For most projects that's pretty well defined (and also grammatically correct since 'make' is a verb and 'just' is not).

But even so it would have been a better design for `make` to list top level targets or something.


Just execute.


Hmm. Maybe the dev that set it up made the first recipe run `just --list`


Yeah, I've been adding `just help` as an alias for `just --list` and making it the first recipe for this reason.


Not as much as 7, you can just type `just -l`.


Total agree. It constrains the chaos in my projects, and its easy to refactor bits into more sustainable cicd, if or when that is ever needed.

The self documenting aspect is what puts jt above a folder of shell scripts for me


"A man who sits for something stands for nothing"

https://www.youtube.com/watch?v=WqjUlmkYr2g


Agreed. As much as I want it to be simpler to build C++ programs from source, it's pretty much always _possible_ in my experience, it can just a PITA frequently.

I think that tests are a sure-fire way to improve the quality of your code, but I'd throw another piece in to the ring: sanitizers [0]. Projects that have good tests and run them regularly with TSan/ASan/UBSan in my experience are much better to work on because it means that it's much less likely there's deep seeded issues that are lurking. It gives you increased confidence that you're not introducing hard-to-detect issues as you go.

These tools aren't just exclusive to C++. I've said the same thing about C, Go, Zig, Odin, etc. Projects that use them (and have good automated tests) tend to be in good shape, and projects that don't tend to take a long time to make any progress on.

[0] https://github.com/google/sanitizers


I'm a heavy Zwift user myself and I saw think this is genius and now I want to replicate it. I even ride a Cannondale and use a ZSA keyboard haha


Join us for AI Startup School this June 16-17 in San Francisco!

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: