HN user

beagle3

16,682 karma
Posts85
Comments6,332
View on HN
daridor.blog 2mo ago

Do LLMs Reason, or Do They Just Predict Math Text?

beagle3
4pts2
daridor.blog 4mo ago

AST-filtered eval() is not a sandbox: Severity 10 CVE-2026-26030, and others

beagle3
2pts0
daridor.blog 7mo ago

When Poetry Meets AI Safety: A Critical Look at "Universal" Jailbreaks

beagle3
2pts0
lemire.me 2y ago

Learning from the Object Oriented Mania

beagle3
38pts57
www.johndcook.com 5y ago

Floor, Ceiling, Bracket

beagle3
100pts67
www.gamejournal.it 5y ago

The Sound of 1-bit: Musical Creativity on the 48k Sinclair ZX Spectrum (2017)

beagle3
63pts25
en.wikipedia.org 5y ago

Fredkin Gate – an element of reversible computing

beagle3
1pts0
www.ioccc.org 5y ago

27th International Obfuscated C Code Contest winners published

beagle3
212pts45
sifter.org 5y ago

Pioneers get the arrows, the settlers get the land

beagle3
1pts6
www.independent.co.uk 5y ago

Scientists kill cancer cells in mice in ‘world first’ development

beagle3
2pts1
arxiv.org 5y ago

ZORB: A Derivative-Free Backpropagation Algorithm for Neural Networks

beagle3
4pts0
hplgit.github.io 5y ago

DocOnce Tutorial: Document Once, Include Anywhere

beagle3
2pts1
sebastianrushworth.com 5y ago

How much do statins prolong life?

beagle3
2pts0
www.vidarholen.net 5y ago

Adventures in String Reversal (2013)

beagle3
1pts0
beyondloom.com 5y ago

Crab – an interpreter for a tiny subset of Logo

beagle3
70pts19
users.csc.calpoly.edu 5y ago

All Circuits Are Busy Now: The 1990 AT&T Long Distance Network Collapse (1995)

beagle3
132pts14
beyondloom.com 5y ago

Crab – an interpreter for a tiny subset of Logo

beagle3
6pts1
www.gamejournal.it 6y ago

The Sound of 1-bit: Musical Creativity on the 48k Sinclair ZX Spectrum (2017)

beagle3
2pts0
en.wikipedia.org 6y ago

Conway's Law – software design mirrors organizational structure

beagle3
2pts0
nim-lang.org 6y ago

Ray Tracing in Nim

beagle3
147pts66
250bpm.com 6y ago

Institutional Senescence

beagle3
1pts0
www.timesofisrael.com 6y ago

The end of exponential growth: The decline in the spread of coronavirus

beagle3
1pts0
selfie2anime.com 6y ago

What would you look like in anime?

beagle3
3pts1
github.com 6y ago

Lossless Image Compression Through Super-Resolution

beagle3
384pts125
news.ycombinator.com 6y ago

Ask HN: How do you handle your personal mail archive?

beagle3
5pts2
dweetabase.3d2k.com 6y ago

The Dweetabase

beagle3
20pts1
dustycloud.org 6y ago

Terminal Phase – a space shooter that runs in your terminal

beagle3
5pts0
www.questdb.io 6y ago

QuestDB – Fast open source relational time series database

beagle3
14pts2
blog.trailofbits.com 6y ago

64 bits ought to be enough for anybody

beagle3
164pts57
cair.uia.no 7y ago

The Tsetlin Machine outperforms neural networks

beagle3
139pts20

It’s been years since, but I bought on Amazon a bag of 8 different ends that work everywhere in the world.

It wasn’t from Apple, but it’s basically a plastic shape and 2 or 3 (depending on end) metal parts - it’s hard to get wrong, and easy to test before use.

That’s comforting to know; that wasn’t true in the past for ext4 over lvm (is it true now?).

But what is that command? And how do you know which disk has gone bad?

I am sure I can get an answer from Google / Claude / ChatGPT, but a guide is incomplete without it - and the failure report should be active like a beep or flashing hardware light - I typically log into my NAS only a few times a year. A motd or other banner isn’t sufficient.

I still pay for snooty, and the reason for that is that when a disk goes bad (not if; when) I pop its tray out, replace the disk, pop the tray with the disk back in, click a couple of widgets, and that’s it. I know it will be rebuilt properly.

(And I know I have to do that, because when the disk fails it beeps and lights a led near the bad disk)

It’s easy to build a NAS such as the one described in this article, but in the long run, data loss is significantly more likely.

Also, any guide like this that doesn’t guide you through “disk 3 failed, this is how you safely replace it” is imho incomplete, even if it doesn’t go through telling you how you know a disk has failed.

What you seem to be saying is “I want no precedence or associativity - I just want explicit parentheses everywhere” which is a fine choice. But not a common one.

The reason APL made that choice (and its descendants followed) is that it had many tens of operators. There’s no intuitive or otherwise accepted order among them. Which means it’s either all parentheses (like you seem to prefer) or a simple rule (left-of-right). There’s basically no other solution.

Forth and Lisp also dropped precedence and associativity rules, each in their own way.

APL / K / J (and friends) evaluate things "left-of-right" (could be thought of as "right-to-left"), that is 1+23-4 is parsed 1+(2(3-4)) - there is no operator precedence. It is weird at first, but refreshingly simple and effective once you manage to overcome indoctrination you received since elementary school.

My guess would be because too many users held out with Win10, are not really a potential income stream, and MS would rather keep them MS customers than Linux or Mac (their next machine might be a Neo rather than Win11 these days).

The cost to Microsoft is essentially zero if they ate already committed to these security updates (and they are, at least for the LTSC branch and some government contracts)

IIRC, this law was a result of Ted Arrison giving up his US citizenship very shortly before death, saving a few billions for his heirs.

The law was hastily passed to discourage copycats while working on the exit tax law without haste.

PyInfra 3.8.0 3 months ago

They do, until a configuration endless loop brings down their production system.

This is not really different than C vs Rust, or even Perl regular expressions (unbounded execution time) vs real regular expression. With great powers comes great abilities to shoot yourself in the foot.

The power/guarantee balance is delicate, and you can’t hold the stick at both ends. People will always complain.

PyInfra 3.8.0 3 months ago

Many domains are better served by a more limited programming language, so you can analyze a program and/or make guarantees about it.

Real regexes (actually regular…) are infinitely better than Python code matching the same string (if they are sufficient) - you can compute their intersection, union, complement; check if they can match anything at all (and generate an example automaticallly).

For software builds, Bazel and others use Starlark, which is a restricted Python subset, so builds can be guaranteed finite and can be reasoned about.

Ansible may or may not offer any benefits in return for the limits (I am not an ansible guru), but in general, most tasks do not need a Turing complete configuration/specification language - and it is then better to NOT have Turing completeness.

Ahhm. At previous $DAYJOB, I inherited a WPF app written in 2012; I stumbled upon several WONTFIX bugs through the years - mostly having to do with shared memory bitmaps, having to manually call GC at times, and a host of other things.

Stable, but many issues. Stay away if you value your sanity and do anything nontrivial.

That was a late edition. I have working DVD drives that will happily read anything on a disc, even if they can’t decode it.

Newer drives I bought will refuse reading what they won’t decide themselves (e.g. wrong region).

KDB v1 is from sometime in the late 1990’s (I met v2 in 2002; but v1 was internal use only at some investment bank).

But that follows A and A+ which were extremely column oriented and date to early 1990s or even late 1980s ; and to various APL implementations going back to the 1960’s

Columnar DBs were very much a thing among APL users (finance and operations research) but weren’t really known outside those fields - and even in those fields, there was a period of amnesia in the late ‘90s/early 2000’s

The existing laws are rarely well specified enough for precise enforcement, often on purpose.

You cannot have precise enforcement with imprecise laws. It’s as simple as that.

The HN favorite in this respect is “fair use” under copyright. It isn’t well specified enough for “precise enforcement”. How do you suggest we approach that one?

I mean that it already appears in the Bible, in old Hebrew (which is close to, but isn’t exactly Aramaic), with the meaning “to feed and provide” - and I did not find any documentation about how it formed (or came into) Hebrew.

Which means of course m, that it was already in use before the Bible was canonicalized.

Seems to be a coincidence - the Hebrew word comes from the Bible (old testament), and means "the feeding, and generally providing of needs".

The English word comes from "calculus", meaning, apparently, pebble, because original counting was done with pebbles.

(I had to look both up. Thanks for asking)

The name “Calcalist” is indeed a play on “Economist” (it is not a proper Hebrew word, but fuses the Hebrew word for economy “calcala” with the English suffix for a professional work “ist”.

However, it is just an expanded version of Ynet’s business/economy section, and Ynet is probably the closest equivalent to USA Today or The Sun.

I did write “embedded/hardware”. Yes, you need special drivers for your X-ray/drill/whatever so you earned an another decade of windows.

But in the places I frequent (backoffice, municipal, finance) it’s all gone web and rdp-through-web (which is web, in the sense that it doesn’t require windows on the client) with centralized administration with minimal (not quite self-serve but reasonably close) thin client users.

The x86 emulation for fallback is (I’ve heard - not tried) usable for the first time.

Microsoft tried in the past without a Rosetta equivalent; Apple succeeded twice with Rosetta. They did not try to switch cold turkey the way Microsoft did.