Viewing profile — atrn
atrn
HN member- Joined
- Wed, May 13, 2009, 8:26 AM UTC
- HN karma
- 49
- Public activity
- 35 items
- HN profile
- View on Hacker News ↗
About atrn
No profile information was provided.
Recent public activity
-
comment
Comment #34952471
CSP. In hardware.
-
comment
Comment #32535738
I did a lot of work with transputers and occam in the 1980s and wrote an OS for a machine that used them. The exposure to the CSP way of thinking was a blessing. occam-2 on the oth…
-
comment
Comment #31762800
Not to be confused with the other Helios OS - https://github.com/axelmuhr/Helios-NG
-
comment
Comment #31496748
https://pkg.go.dev/cmd/go#hdr-Controlling_version_control_wi... Second paragraph.
-
comment
Comment #31130701
Lots of good links getting posted. Another interesting resource is the ACM's History of Programming Languages (HOPL) proceedings, https://dl.acm.org/conference/hopl/proceedings
-
comment
Comment #30237011
Putting on my "user" hat, a stack trace is a just a long winded way of saying "ABEND" or "core dumped".
-
comment
Comment #29611592
I'm still waiting for concurrent COBOL... PERFORM x CONCURRENTLY WITH y BUT NOT WITH z.
-
comment
Comment #29611577
They had a functioning compiler and decided to concentrate on other areas and it's not too uncommon for a languages's compiler to NOT be written in that language. Afterall Rust rel…
-
comment
Comment #29018279
Same area, many of the same people, but at a different studio, FAME. MSS was a spin off due to various "fights". I did some recording, with Spooner and David Hood, at both places, …
-
comment
Comment #29017067
Did some recording there a couple of years back. Not a bad room but the studio itself is mostly a museum these days and our engineer had to do a bit of work to get it functioning w…
-
comment
Comment #28507050
size(1) exists to provide the actual information. File sizes are only a rough indicator.
-
comment
Comment #28002967
There were others far before Windows. In the 1980s I used Polytron version control system and the MKS port of RCS on MS-DOS.
-
comment
Comment #26990253
At home I use buckling springs (Unicomp model M style plugged into an iMac) - I live alone and can make lots of typing noise. In the office its a Filco with some color Cherry switc…
-
comment
Comment #26496935
No beard but it would be grey... A variant of this has been my PS1 since the 90s (yes, mostly on workstations with a GUI by then [Sun,NeXT,HPUX etc...]). Unfortunately bash doesn't…
-
comment
Comment #26449884
Reminds (old) me of WSFN - https://en.wikipedia.org/wiki/WSFN_(programming_language)
-
comment
Comment #26127176
A great engineer and hacker. I've recorded (bass) through his circuits numerous times over the decades. I don't know if it was his idea or not but I always loved the Portico 5042 t…
-
comment
Comment #23946699
My Cube cracked the PCBs of two graphics cards before I gave up on it.
-
comment
Comment #23011029
Related Ampex patent from 1989 - https://patents.google.com/patent/US5236790A/en
-
comment
Comment #22250442
I really wish Go's select had guard clauses. The need to nil channels feels like a hack. However I haven't actually had much need for them but haven't written many things that woul…
-
comment
Comment #22250275
I did a lot of occam in the 1980s working with transputer-based machines (I wrote a sort of OS for the system our company was building to target TV/film animation). At the time Inm…
-
comment
Comment #21821048
> Text files used ^Z character as end of file marker. But only if the file size wasn't a multiple of the 128-byte block size. Fun!
-
comment
Comment #21626412
Not just improvising. Its a bit of old gag...if you make a mistake just do it again and pretend you meant it (if its "outside" claim to be playing jazz).
-
comment
Comment #21119985
And Rucker's "The Hacker and the Ants"
-
comment
Comment #19688687
This is important and high quality research. It deserves an Ig Noble nomination.
-
comment
Comment #16927928
Coming from an occam/transputer background (in the 1980s) I felt goroutines were too low level. Luckily its trivial to add a PAR-like construct via sync.WaitGroup (e.g. github.com/…