HN user

ralph

1,089 karma

Ralph Corderoy, https://plus.google.com/#115649437518703495227/about

C, Unix system and shell, Python, X Windows, ARM, ...

Posts16
Comments761
View on HN
plus.google.com 13y ago

Google+ accepts and ignores parameters in URL path segments

ralph
2pts0
moinakg.github.com 13y ago

Parallel compression and content-aware deduplication of a file or stream

ralph
2pts0
techchomp.blogspot.co.uk 13y ago

Google's Alan Noble on Audit/Admit/Adapt for Start-up Execution

ralph
2pts0
readable.sourceforge.net 13y ago

Readable Lisp S-expressions, infix, function calls, and indentation

ralph
2pts0
www.dwheeler.com 13y ago

Fixing Unix Filenames: Control Characters, Leading Dashes, and Other Problems

ralph
52pts43
plus.google.com 14y ago

Eze Vidra creates a Google+ Page: +Y Combinator.

ralph
1pts0
www.tarsnap.com 14y ago

Tarsnap now available to residents of Canada

ralph
70pts27
blog.posterous.com 14y ago

Unusual official Posterous blog post

ralph
5pts9
dabeaz.blogspot.com 15y ago

Decoding S'board II Cassette Audio Using Python 3, Two Generators, and a Deque

ralph
4pts0
laforge.gnumonks.org 15y ago

World's first 20 minute voice call from a Free Software GSM stack on a phone

ralph
1pts0
twitter.com 15y ago

Dear people-who-run-Twitter, whom to follow, whom

ralph
75pts44
parenthephobia.org.uk 17y ago

VNC to a server offering a choice of OS images, source available

ralph
12pts0
www.pjrc.com 17y ago

Teensy++ $24 AVR board, USB, 63/4/2KiB flash/RAM/EEPROM, 46 I/O, 8 analo., 9 PWM

ralph
84pts19
news.ycombinator.com 18y ago

RSS feed still broken. Thought pg said it was fixed?

ralph
2pts2
yro.slashdot.org 19y ago

US-VISIT to increase number of fingerprints on entry to USA

ralph
1pts1
news.bbc.co.uk 19y ago

"Intel should be ashamed of itself" -- OLPC's Negroponte

ralph
1pts1
Colorized man pages 10 years ago

I find searching bash(1) just fine with less(1) and do it quite often. The groff mailing list, the main discussion point for all things troff, is slowly chipping away at adding more semantic information to man pages. The BSDs have been making progress here.

Colorized man pages 10 years ago

`info foo | less' has it produce the whole "page" as plain text, suitable for easy reading and regexp searching.

OK, I've gone and read the OP's text rather than just the quoted part. It seems he's talking about combining multiple X screens into one logical coordinate space, like I expect one or more of the existing extensions do, e.g. Xinerama.

Coordinates in the X protocol are signed 16-bit so a screen can run from 0 to 32,767 along an edge. I agree though, the initial complaint is unclear and may be about something else.

Yes, C across AIX, Suns, Silicon Graphics, whatever those HP ones were, and others. Platform differences were common, bugs rare because many had been before me and they could always be worked around; I didn't have to fix a C compiler. When writing a compiler the aim is to fix the compiler.

This isn't getting us anywhere. We disagree. I value the opinion of that lot given their many decades of experience. I used to have your opinion, based on textbooks. They've made a good point, one I can see has considered thought behind it.

This is flawed AFAICS. It assumes that because 1.0 is fixed in specification that there are no bugs in the implementation. To return to my original point, these smart guys are on the record stating that's why they didn't do a self-hosting compiler; good enough for me. :-)

Sorry, I don't understand. You seem to be saying there's only two versions of the compiler, one written in a foreign language, e.g. C, the other in a subset, e.g. Gosub, called G-2. But then there's "whatever is the current version of the language", which suggests to me incremental improvements, e.g. the language develops as experience is gained rather than being fully planned on day one. So doesn't G-2 undergo changes to implement these? You may keep calling it G-2 but there are many (I never said thousands) of versions of it.

That's not how the books say to do it, and you're right, given who created Go you'd think they'd know this stuff. :-)

Many generations of the compiler are created. Let's say the compiler-in-C is worked on until it compiles subset Gosub1 which is just enough to write compiler-in-Gosub1 that duplicates compiler-in-C's behaviour. From now, compiler-in-C atrophies. G-2 features are implemented in G-1's compiler, though nothing uses them yet. The compiler's source then uses these, making it G-2 source, only compilable by a G-2-grokking compiler.

Weeks later we have a G-40 where a bug is discovered, introduced in G-20. It wasn't in the compiler-in-C so that's not useful. Choices include fixing it at `head', which can sometimes be awkward as described earlier, or fixing the initial G-20 implementation and then rolling forward all changes from there assuming the fix doesn't break code that was depending on the errant behaviour.

Seemingly often enough that it deterred them with Go. No, you may not be able to revert to before the bug was introduced as it may be the bug was there ever since that feature was added. As soon as it is self-hosted, the old compiler becomes quickly irrelevant, i.e. the code rapidly diverts from what it can compile.

The Go developers have said they deliberately didn't try and write Go in Go because they've done that with other languages, possibly Alef, I forget, and a bug can arise where the fix is obvious if it wasn't that the bug exists and would be triggered by the fix. Instead, a more awkward fix has to be figured out that doesn't trigger the bug. Of course, once the bug is fixed the original straightforward fix can be substituted but it's all unwanted hassle.

Pre-vim, one would get quite proficient at judging line distances, e.g. 11yy, through practice. Mind you, that was probably helped by text being a fixed size on a serial terminal and bigger than much text today. However, I do wonder if the article is over-promoting movement by lines. Movement commands like ), }, ]], and good old / should be readily considered as well.

This Perl beats rsync by quite a margin here.

    perl -e 'opendir D, "."; @f = grep {$_ ne "." && $_ ne ".."} readdir D;
        unlink(@f) == $#f + 1 or die'
It goes a bit quicker still if @f and the error handling are omitted.

The original article is comparing different things some of the time, e.g. find is having to stat(2) everything to test if it's a file.

I often think it would be useful for a filesystem to provide a digest of a file's content. It's the FS that knows when the file's content changes and the digest is out of date, and it also only needs to recalculate if anything asks. It wouldn't necessarily have to read all the bytes of the file to re-calculate; it may be a hierarchical digest where much of the existing, stored, labour can be re-used.

It could be better bash, e.g. using [[ instead of [. Also,

    curl -s https://api.github.com/users/$2/events/public |
    grep "\"gravatar_id\":" |
    sed -e's/[,|"]//g' |
    head -n 1 |
    awk '{print $(NF)}'
can be
    curl -sS https://api.github.com/users/$2/events/public |
    sed -n '/"gravatar_id":/!d; s/",//; s/.*"//p; q'
and so on.

I agree with your general point. Are you aware that j and k work in multi-column format too, though k seems to not move enough to make the top of the post visible from under the fixed horizontal bar.