HackerTrans
TopNewTrendsCommentsPastAskShowJobs

lemming

no profile record

Submissions

Tau – Learn how coding agents are built

twotimespi.dev
7 points·by lemming·hace 12 días·0 comments

Tilling the Garden: Use AI differently to make interesting and useful apps

mikecaulfield.substack.com
5 points·by lemming·el mes pasado·0 comments

[untitled]

1 points·by lemming·hace 2 meses·0 comments

From One AI to Any AI: JetBrains rethinks the approach to AI tooling [video]

youtube.com
3 points·by lemming·hace 2 meses·1 comments

Slopaganda: AI images posted by the White House and what they teach us

theguardian.com
105 points·by lemming·hace 5 meses·14 comments

Davos 2026: Special Address by Mark Carney, Prime Minister of Canada

weforum.org
11 points·by lemming·hace 6 meses·1 comments

Mq – jq-like command-line tool for Markdown processing

github.com
6 points·by lemming·hace 7 meses·0 comments

comments

lemming
·hace 10 días·discuss
The always excellent Oatmeal:

We need to have a conversation about wombats

https://theoatmeal.com/comics/wombats

Possibly NSFW, depending on your W.
lemming
·hace 15 días·discuss
...parents are also responsible to lock their alcohol, drugs or guns...

No they're not - all those things are illegal for children nearly everywhere.
lemming
·hace 21 días·discuss
One thing that would be useful in the readme is instructions on how to install the built app on a phone, for those of us who don’t do iOS development.
lemming
·hace 24 días·discuss
I agree, some of the examples look very nice, but some have small-scale vortices that really don't look realistic.

That said though, lovely site and project!
lemming
·hace 28 días·discuss
Or if the code is really important, sometimes even “please make no mistakes” is necessary.
lemming
·hace 30 días·discuss
Perhaps not in that one, but in plenty more: https://www.972mag.com/lavender-ai-israeli-army-gaza/
lemming
·el mes pasado·discuss
Because just firing up Claude and let it rip

Based on Tridge’s post, this seems an unfair characterisation of how he used Claude.

Did Claude increase bugs in rsync?

TFA answered this, the answer is “no”.
lemming
·el mes pasado·discuss
Tridge in his blog post describes people as "foaming at the mouth"?!

Did you see the picture in the article where the user posted a picture of them strangling the maintainer? I think “foaming at the mouth” is probably gentler than how I would characterise that.
lemming
·el mes pasado·discuss
I always remember when, as a young geek writing games for my C64, I was thrilled when I saw the Terminator and a lot of the code scrolling past in its HUD was 6502 assembly code!
lemming
·hace 2 meses·discuss
That is really interesting, and very clever - thanks for the details! What you describe is indeed what I meant by whole world, I'm not sure if there's a better term of art for it.
lemming
·hace 2 meses·discuss
I can't speak for the core team, but from memory invokedynamic took a long time to become performant. So if you still want to support older JVM versions, the performance will be pretty terrible on those older systems if invokedynamic is used for something as integral as var lookups.
lemming
·hace 2 meses·discuss
That is very cool indeed. Are there limitations that this imposes? Is Julia a whole world compiler or does it support partial compilation?
lemming
·hace 2 meses·discuss
Clojure (AFAIK) does not use invokedynamic, except perhaps in the latest version for some of the new interop stuff. It still officially supports JVM 1.8 bytecode. It’s a language which greatly values stability and backwards compatibility, so it’s been very slow to adopt newer JVM features.
lemming
·hace 2 meses·discuss
No, it doesn't. In JVM Clojure's case, the vars are usually compiled to the moral equivalent of a global variable holding a pointer to a function. This allows you to update the function if the developer redefines it in the REPL, but it comes at a performance cost (the JVM can't inline it or otherwise optimise it). Clojure also allows you to compile with "direct linking", e.g. for production deployments, where you know you're unlikely to be wanting to dynamically update the code. In those cases defns are compiled down to static methods which call each other - much faster since the JVM can perform its magic with them, but you can't update them at the REPL.

I'm unsure exactly how jank works WRT this tradeoff, but the article makes it sound like it's closer to the direct linking version, but with the inlining etc being done by jank rather than the JVM. I don't know if this is only for AOT or also in JIT cases.
lemming
·hace 2 meses·discuss
Great article, as always.

There is one thing that I think is important to bear in mind when discussing inlining, especially in the context of Clojure. This is that once a function has been inlined, you can no longer update the definition of that function in the REPL and have that update the behaviour of functions which use it, unless you recompile those as well. This is not a criticism of course, it’s just part of the natural tension between dynamism and performance.
lemming
·hace 2 meses·discuss
When I was in NYC a while back, I met a woman at a friend's dinner party. She sounded totally American, but was in fact Brazilian. She worked as a lawyer, and said that she'd had to get extensive voice training in order to sound American so that people would take her more seriously professionally. I have no idea if the professional part worked, but the accent, mannerisms etc was amazing - I would never have guessed.
lemming
·hace 2 meses·discuss
Sure, but the article talks about flourishing populations of deer, elk, and bison. I assume that means we’re talking about herds of each, all in the same space. And they have to survive over winter, which sounds pretty cold there - presumably they don’t migrate, which I guess they usually would? It’s definitely not ideal conditions.

Obviously it’s possible, but I was surprised.
lemming
·hace 3 meses·discuss
What's amazing to me is how little space is required to have a completely self-sustaining ecosystem. A 60km diameter circle just doesn't seem like a very big space to have enough plants to support "flourishing" numbers of multiple types of large herbivores, without migration, as well as all the different prey species required to keep things in balance.

Regardless of the arguments about radiation, it seems pretty clear that lack of humans is really the most important thing for animals to flourish.
lemming
·hace 3 meses·discuss
Thanks! Yes, I get on really well with everyone in the community - the community in general is perhaps my favourite thing about Clojure!
lemming
·hace 3 meses·discuss
Hehe, Lisp Emacs Myopia is indeed a real thing. Cursive users have been not starting REPLs for over a decade now!

j/k of course, and no offence taken :-)