HackerTrans
TopNewTrendsCommentsPastAskShowJobs

relistan

no profile record

Submissions

A Mermaid Planning Tool for AI

relistan.com
1 points·by relistan·4 bulan yang lalu·0 comments

comments

relistan
·bulan lalu·discuss
Are you in middle school?
relistan
·bulan lalu·discuss
Yep a bunch of people who often exhibit swarm behavior.
relistan
·bulan lalu·discuss
Sure, but you cannot deny the hypocritical swarm behavior, which is the point.
relistan
·bulan lalu·discuss
Hacker News: “It’s unfair the burden put on maintainers of the core pillars of open source software. Show some respect for the maintainers, and do your best to contribute.”

… little changes …

Also Hacker News: “I have the right to tell you how to manage the project that you created and have maintained for 30+ years, because I feel very self-righteous about AI and code quality!”
relistan
·bulan lalu·discuss
This is now the word
relistan
·bulan lalu·discuss
They did say "everything I can find" which, while not citing references, you would also have found it you tried to Google this at all. Here's one

https://www.nytimes.com/2026/05/24/business/what-is-naphtha....

here's another one:

https://www.irishtimes.com/world/asia-pacific/2026/05/19/ple...

It's wider than Japan, it's in other countries in Asia. It's directly tied to the war and the closure of the Strait of Hormuz. But it's pretty clear you have your own axe to grind.
relistan
·2 bulan yang lalu·discuss
Having built two production, scaled evented systems over the last decade, I don’t see the need for this. Properly designed events flatten to a table schema in a regular DB quite easily. Tools like Trino/Presto and therefore Athena, let you deep query on a JSON field, as well (e.g. against a Parquet-based event store on block storage), so if you use a standard envelope, the bodies are all still available without having to provide the schema for every event. This works to quite huge amounts of data given that you do rollups and/or snapshots.
relistan
·2 bulan yang lalu·discuss
I am a Go dev, too. I consider Go my main language. The BEAM has a very, very similar architecture to the M:N scheduler in Go. Goroutines are not dissimilar to BEAM processes. You can similarly run thousands of processes on the BEAM. But Go does not have a real Phoenix equivalent and there are reasons to use Elixir and BEAM, especially on the web side, including some of what I already mentioned above.
relistan
·2 bulan yang lalu·discuss
At least they can patch all of them to fix it at once. 16 year old new drivers are harder to patch.
relistan
·2 bulan yang lalu·discuss
Elixir and Phoenix is a better production platform than Django.. I’m not throwing shade on Django, many production systems use it happily. I’m saying that Phoenix/Elixir is better, partly because of the BEAM and OTP and partly because of the language and the framework. Real concurrency. Better performance. Far more robust in production. The language is pre-compiled, and while not statically typed, that alone provides one more safety layer. It’s functional, which avoids a lot of the ugly patterns in both Rails and Django. It has a built-in fast and reliable KV store. It has distribution between the nodes if you want it (e.g. for a distributed cache). It enables you to debug with a remote shell connected live to the running system. There’s a lot more than I can add here.
relistan
·2 bulan yang lalu·discuss
Contrast that with my personal experience of items from the UK (specifically the UK, my experience is different elsewhere) where “untested” almost always means “I tested it and I know it’s broken but I want to try to get a better price anyway”. Especially when testing would involve plugging it in with the adapter it comes with and seeing that it doesn’t light up, for example.
relistan
·3 bulan yang lalu·discuss
And, thank you for that! Still my favorite site on the internet.
relistan
·4 bulan yang lalu·discuss
I found a similar (though much smaller! 1GB) Kingston drive from about 2008 that had been in storage since I moved overseas. 14 years later it still had all the data on it.
relistan
·5 bulan yang lalu·discuss
It’s not clear to me from this, but I hope that the “removability” component of this means the end of “disposable” vapes with a fixed lithium battery installed. I can’t even count the number of these I’ve seen littering the roadside. Ideally this raises the cost of that business model enough to also eliminate some vendors from that product category (“disposable” vapes), which is primarily aimed at/used by children anyway.
relistan
·5 bulan yang lalu·discuss
While some things are doing great, there's a not insignificant amount of inertia in government for the last decade. This is actively being discussed in the Irish press. And Ireland has a long history of cronyism. I suspected (author clarified below) that is what was leading to the cynicism in the original post.
relistan
·5 bulan yang lalu·discuss
Alternatively, it's successful and is expanded to support more artists in the future. Cynicism with governance not unjustified in Ireland, but here we are looking at some actual progress.
relistan
·7 bulan yang lalu·discuss
These things work well on the extremely limited task impetus that we give them. Even if we sidestep the question of whether or not LLMs are actually on the path to AGI, Imagine instead the amount of computing and electrical power required with current computing methods and hardware in order to respond to and process all the input handled by a person at every moment of the day. Somewhere in between current inputs and handling the full load of inputs the brain handles may lie “AGI” but it’s not clear there is anything like that on the near horizon, if only because of computing power constraints.
relistan
·7 bulan yang lalu·discuss
Way back, Perl got off the ground really because, in contrast to the C compilers of the era, code written on one Unix ran on the others, usually unmodified. In my first jobs, where we had heterogeneous mixes of commercial Unixes, this was unbeatable. It also wrote like higher level shell, which made it easy to learn for systems people, who really were the only ones that cared about running things on multiple platforms most of the time anyway.

As things became more homogeneous, and furthermore as other languages also could do that “one weird trick” of cross platform support, the shortcomings of both Perl and its community came to the fore.
relistan
·tahun lalu·discuss
In case anyone asks, yes I did also test the Go version on a single core. It was slower than on multi-core.
relistan
·tahun lalu·discuss
Have been using it in production for years for small projects. But also have a current, larger project in it that is going well. A few years ago I built a high throughput (20k shortens/s) link shortener for work, in Go. I later rewrote the main path in Crystal to test it for performance. It was a bit faster than the Go version (22k/s) on the same infrastructure… but running on a single core! We did not finish/ ship it, but it was revealing.