garethrees
No user record in our sample, but garethrees has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
No user record in our sample, but garethrees has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
Looking at Inferno book 4 (the virtuous pagans), Jacopo gives us notes for the Pleiad Electra at 4.121; for Hector at 4.122; Julius Caesar at 4.123; Camilla and Penthesilea at 4.124; Latinus at 4.125; Brutus, Julia,…
I am not sure that "Dante is clearly writing in the expectation that his audience will know these references" as claimed in the article. He put a lot of learning into the work, and maybe he had in mind an ideal reader…
Language models are based on probabilities of tokens appearing in a context. For illustration purposes, imagine a very simple model with just one token of context that has been trained on a corpus of three sentences,…
Another way to sum a column of numbers uses calc: M-x calc-grab-rectangle RET V R +
A couple of issues that came up for me when porting from x86 to ARM recently: 1. The x86 architecture gives programmers a lot of memory ordering guarantees, so that communication of values between threads does not…
Jeannette Power's "Observations physiques sur le poulpe de l'Argonauta argo" (1856) is available at the Internet Archive [1]. [1] https://archive.org/details/b2228476x
This bit of speculation goes back at least to David Eugene Smith (1925), "History of Mathematics", volume II, page 59: "There is a possibility that the Romans avoided IV, the initials of IVPITER, just as the Hebrews…
> Typically pretty wet weather for the (spring) race Paris–Roubaix is certainly memorable when it's wet and muddy, but the last time it happened was in 2002! Early spring is the driest part of the year in north-eastern…
A warning heuristic needs to have a low false positive rate; a low false negative rate is nice but is not necessary. The purpose of a warning is to detect some common errors without inconveniencing too many correct…
Here's the letter from Chris Boardman and the other commissioners, which doesn't seem to be linked from the Guardian story: https://www.greatermanchester-ca.gov.uk/media/2145/19-1309-s...
This seems like a good idea to me, since there's evidence that programmers are making this mistake, and the proposal is to add a warning only for the expressions that are most likely to be mistakes, that is 2^{decimal…
Discussed a couple of days ago in the context of average Uber speeds in London and other congested cities [1]. [1] https://news.ycombinator.com/item?id=20113084
This is a well-known principle of urban transport. If driving is faster than the alternative transport mode (whether that's public transport, if any, or walking), then at the margins people will switch to driving, but…
The difficulty of Chaucer for modern English speakers is exaggerated because of the unfamiliar spelling. The reason that modern editions don't modernise the spelling is that if you do this it becomes hard to figure out…
This one-line shell script is a bit simpler: base64 /dev/urandom | head -c 16 (Vary the number of characters according to the desired entropy: you get 6 bits of entropy for each character of output, so 16*6 = 96 bits in…
It's slightly more efficient to squeeze non-alphabetic characters first and then convert to lowercase, rather than vice versa, because in the former case most of the non-alphabetic characters only get processed once,…
McIlroy's claim was not that his script is the shortest possible way to implement the task, but rather that the Unix philosophy of combining general-purpose tools operating on text streams is a better engineering…
The film was based on the novel "No Highway" (1948) by Nevil Shute, who had worked as an aeronautical engineer at De Havilland.
Do you mean Aaron Swartz?
The linked post is a bit poorly expressed, but I think there is a good point there: fixed-size binary floating-point numbers are a compromise, and they are a poor compromise for some applications, and difficult to use…
The description must be sufficiently similar to something that did happen, though, for you to be confident that you recognise the incident.
In C you avoid signed integer overflow either by knowing that the result will be in range before applying an operation, or, as a last resort, by testing that the operation is defined before carrying it out. For example,…
The purpose of the letter lock is to detect tampering: that is, to make it difficult for an eavesdropper to open and read the letter without leaving evidence of having done so. The standard letter lock was a wax seal:…
There doesn't seem to be any pointer dereference on the line that paavoova quoted, so I don't see how your comment applies.
The cast is defined by ISO/IEC 9899:1990 §6.3.2.3.1, since block is a pointer to void, and struct header_t is an object type: "A pointer to void may be converted to or from a pointer to any incomplete or object type."…