Slashdot Mirror


User: ralph.corderoy

ralph.corderoy's activity in the archive.

Stories
0
Comments
39
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 39

  1. Re:I need to try BSD on What's New in OpenBSD 4.2? · · Score: 1

    --color=always is a really bad idea. You're shoving terminal escape codes to set the colours down any pipe to which you connect ls's stdout, e.g. `ls | awk 'length >= 3 && length = 5''. This is why --color=auto exists.

  2. Apple's New clang C Compiler based on LLVM. on GCC Compiler Finally Supplanted by PCC? · · Score: 1

    LLVM is the one to watch. Currently, llvm-gcc uses GCC's front end but Apple, a major funder of LLVM, have recently released the source to clang, their C compiler. No GCC in sight. http://llvm.org/ http://heisenbug.blogspot.com/2007/07/compiler-with-good-clang.html

  3. Re:ZFS still has bugs on Sun CEO Says ZFS Will Be 'the File System' for OSX · · Score: 1

    If Sun said "cat /dev/null > /path/to/file" they've really gone downhill since the 1980s when I last used Sun OS. Back then, they'd have known it's just ">/path/to/file" from the shell.

  4. Re:I blame the tools on Is Parallel Programming Just Too Hard? · · Score: 1

    The Transputer took its model from Tony Hoare's CSP. You're right. Channels are the correct way to do this kind of thing instead of semaphores, etc. You can do them in C these days with things like LibTask.

  5. Re:RapidMind = vendor lock-in on Multi-Threaded Programming Without the Pain · · Score: 1

    Anyone interested in multiple threads of execution should be familiar with the excellent information presented by Russ Cox on Bell Labs and CSP Threads. This model of threading is far easier to reason about than what most of the world mucks around with, and is available to Unix as part of the Plan 9 from User Space project as libthread.

  6. Re:He ASKED for this... on British Police Identify Killer in Radiation Case · · Score: 1

    > Why not just shoot the bugger using a silencer? Advantages of using a gun...

    As I understand it, the victim survived for far longer than he should of, clinging onto life. This allowed doctors to run more tests than normal and gave them time to identify the pollonium-210. Normally, a victim's early death after a few days would have left no traces as to the cause of death, unlike a gun. Once the P-210 was identified, it was fairly easy to search for traces of where it had been which is how the alleged murderer has been tracked down.

    This is all based on an episode of _Panorama_ I saw bits of the other night. Perhaps the BBC web site has more information.

    Cheers, Ralph.

  7. Re:One of the more interesting ideas on OLPC Says No Plans for Consumer Release · · Score: 1

    Thanks, Rik. That gets me to http://en.wikipedia.org/wiki/Subpixel_rendering which was the "missing link" I didn't have since I've never caught up with this new fangled LCD technology. :-)

  8. Re:One of the more interesting ideas on OLPC Says No Plans for Consumer Release · · Score: 1

    Yes, I meant see the red, green, and blue pixels. I've read all that I can find about the screen on the Internet but some things are still unclear; perhaps you know the answers?. Is the mono screen in front of or behind the colour one, i.e. is the colour one effectively transparent when not in use if it's in front, or does the mono one help improve the colour one's apparent resolution if it's in front.

    Basically, some diagrams or close-up pics seem to be lacking. http://wiki.laptop.org/go/Hardware_specification says the effective resolution is very complex to explain and Mary Lou Jepson is planning to write up an explanation.

  9. Re:One of the more interesting ideas on OLPC Says No Plans for Consumer Release · · Score: 1

    Did it have the final "combination" screen of reflective mono and transmissive colour? What did you think of them? I've not found many photos of it in action close up.

  10. Re:Things I had to learn the hard way on How To Adopt 10 'Good' Unix Habits · · Score: 1

    #(cd /tmp ; rm -r -f dir) No! Do "cd /tmp && rm -rf dir" else if the cd fails you remove ./dir in error.

    People use && far too little, e.g. the number of `how to install from source' guides that say "./configure; make; make install" instead of "./configure && make all check install".
  11. Office of Fair Trading on Vista's EULA Product Activation Worries · · Score: 1

    Someone in the UK with time on their hands looking for a cause should contact the Office of Fair Trading since it sounds like the contract between MS and the individual is too one-sided and the OFT has a legal requirement to look into any complaint made. I understand that they work under rules that are common in most EU countries now, so maybe it would be worth doing there too.

  12. Re:Presumption of Innocence on HOPE Speaker Rombom Charged with Witness Tampering · · Score: 1

    It's "Presumed innocent until proven guilty". It doesn't state you *are* innocent.

  13. Re:Not surprising on Evolution of a 100% Free Software-Based Publisher · · Score: 1

    Authors do produce PDFs ready for the publisher using tools like TeX. troff has been used for decades to do just this and with the GNU groff implementation it's still being done today, using Free Software all the way, e.g. http://troff.org/pubs.html#vpnsi. There's many more listed on that page. They're not all technical, e.g. a Collins dictionary IIRC.

  14. Re:Who Really Benefits? --- aka GIT on Bruce Perens Tells Linus Torvalds To Cool It · · Score: 1

    Hardly original or revolutionary. See Bell Labs's Venti filesystem, and they weren't the first either.

    http://lkml.org/lkml/2005/4/10/41