HN user

zumatic

45 karma
Posts0
Comments27
View on HN
No posts found.

No, it requires precedence to distinguish between (2 f (3 g 4)) and ((2 f 3) g 4)

which is arguably how most sane engineers would write it

I'm always wary of this sort of statement.

Windows93 SP2 9 years ago

IIRC for a while the Amiga calculator would crash the OS if you did that.

Chrome Won 9 years ago

This is what I came here to post, and you can see that, in the mobile chart, Chrome and Safari already seem to be levelling off. Maybe a better model would be like an ADSR (attack decay sustain release) envelope in sound synthesis where the logistic curve represents the attack / initial adoption phase, possibly followed by a mirror logistic curve representing mature saturation then eventual replacement by competitors. That said, some products do come back from the dead, like Mozilla itself; the Apple Mac is another example.

Saying "Chrome won" now feels like saying "IE won" in 2002 or so. Look at the chart here:

https://en.wikipedia.org/wiki/Internet_Explorer_5

Was anyone else reminded of John Harvey-Jones versus Morgan, where he bawled them out for pushing a car chassis up and down a hill several times as part of their production line?

https://youtu.be/PtDA714SdgQ

Can't help thinking BMW might need to look at that anyway, regardless of Brexit.

That was my initial reaction, but if you look at section 2, both paragraphs could plausibly have been written by Stewart and/or Shapiro; all the images are authored by Stewart as the director.

I am not a doctor, but I think if you have been clinically diagnosed as depressed, you can call yourself "Capital-D depressed" -- IMHO, obviously.

arguably it's O(N^2) in spacetime, because it's O(N) steps on O(N) hardware (N parallel units).

You can imagine different hardware architectures taking O(1) steps on O(N^2) parallel units or O(N^2) steps on O(1) unit(s), or anything in between.

iOS 9.3 Preview 11 years ago

linked from that page:

""" The University of Manchester's Small-Scale Experimental Machine (SSEM)[15] is generally recognized as world's first electronic computer that ran a stored program—an event that occurred on 21 June 1948.[16][17] However the SSEM was not regarded as a full-fledged computer, but more a proof of concept predecessor to the Manchester Mark 1 computer, which was first put to research work in April 1949. On 6 May 1949 the EDSAC in Cambridge ran its first program, making it arguably "the first complete and fully operational regular electronic digital stored-program computer".[18] It is sometimes claimed that the IBM SSEC, operational in January 1948, was the first stored-program computer;[19] this claim is controversial, not least because of the hierarchical memory system of the SSEC, and because some aspects of its operations, like access to relays or tape drives, were determined by plugging.[20] """

https://en.wikipedia.org/wiki/Stored-program_computer

Worth dipping into even if you're not really into synths, because some of the anecdotes (like his quest for the GS1) are pretty funny.

As well as the glitches, there's a story that the tilt was initially set to entirely cancel the lateral acceleration from the curve. The press on the demo train was well lubricated with free booze -- result: headlines about the new train making them sick.

The climate varies greatly between different places on the same latitude. She seems to live near Abakan, Russia at about 53 deg. N; according to Wikipedia, this has average daily means ranging from -18.3 C to +20.0 C. Compare with Manchester, UK (53 deg 28'N): about +4.5 C to +16 C.

This is also found in the Ruby hardware description language (not the same as the scripting language). A commonly-occurring pattern is:

R^~1 ; S ; R

where R and S are functions, ';' is composition ('.' in Haskell) and '^~1' is inverse. Usually this is for wiring (change order or grouping of wires to suit block S).

The wrinkle in Ruby is that R and S can be relations, not just functions, so data can flow both ways, just like actual hardware (can only flow from right to left in Haskell). Ruby won't try to guess the obverse function, unlike J.