Slashdot Mirror


User: LSD-OBS

LSD-OBS's activity in the archive.

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

Comments · 374

  1. Re:I mention this on CERN Physicist Warns About Uranium Shortage · · Score: 1

    But how many Yucca Mountains will there be when that time finally comes?

    If corporations won't pony up for this research in the present (and god knows most corporations plan only as far as the next shareholder presentation), then someone should. And if you don't think this impetus should come from the public sector, well, perhaps you should remember where the Internet came from - just one example of a multitude of technologies that have been borne out of public sector research.

  2. Re:I mention this on CERN Physicist Warns About Uranium Shortage · · Score: 3, Insightful

    Seconded.

    ATTENTION WORLD GOVERNMENTS:
    Fund. Fucking. Thorium. Fuel. Cycle. Research.

    PLEASE.

  3. Odd on Ted Dziuba Says, "I Don't Code In My Free Time" · · Score: 1, Insightful

    So he's saying he doesn't like programmers who enjoy what they do? Interesting.

    I've never known a *good* programmer who doesn't write code as a hobby.

  4. Expurgated version on Carl Sagan Sings · · Score: 2, Funny

    Is there a version edited for rednecks?

  5. Re:Sound of pigeons flying. on Sound From Bird Wings Act As a Predator Alarm · · Score: 1

    Oh, believe me, of course I understand what science is, and I'm all for the independant and stringent validation of assumptions and even common knowledge. The point is, it's not really news, especially not on slashdot, is it?

  6. Re:Sound of pigeons flying. on Sound From Bird Wings Act As a Predator Alarm · · Score: 1

    You can definitely hear the difference when a pigeon takes off due to being startled, and when it launches itself normally. I always considered the nosie to be from coming from its wings, and as a signal conveying danger. Somehow this news seems like it isn't.

  7. Re:Relative terms, huh on Major ISPs Seek To Lower Broadband Definition · · Score: 1

    Yeah, I get a decent amount of bandwidth for a very reasonable price, but there's no way in hell I could actually *use* that bandwidth due to the lack of speed. I think the networks are just way oversubscribed, so the contention ratio is insane. Making a new outbound connection sometimes takes *minutes*, and once the connection is made I get maybe 20kb/s if I'm lucky.

    Hilariously, 3G/HSDPA is way quicker and more usable in South Africa, a country infamous for its otherwise completely crap Internet infrastructure.

  8. Relative terms, huh on Major ISPs Seek To Lower Broadband Definition · · Score: 1

    If Hutchinson/Three can get away with calling *this* connection "Mobile Broadband", you can get away with fucking anything. I speak as an ex-dial-up user of many years, this is FAR worse than dial-up.

    What a load of crap, anyway. What next, are they gonna call the abacus a microcomputer? These terms should *never* regress.

  9. Re:TJ on EA Spends 3x More On Marketing Than Development · · Score: 1

    Yeah, the thing with EA (speaking as an ex-EA employee) is they penalise any projects not conforming to their restrictive and short-sighted specifications (eg, game behind schedule, not properly incorporating their input, etc) by withdrawing spending on advertising. So either the studio / developers suffer, or the game quality suffers. However you look at it, the gamer suffers.

  10. tl;dr on Habitual Multitaskers Do It Badly · · Score: 1

    Can anyone make a quick summary for me?

  11. Re:Error? on "Gigantic Jets" Blast Electricity Into the Ionosphere · · Score: 1

    I did mean charge! Trying to post comments while in the middle of a conversation at a party - probably not the best idea :)

  12. Re:Error? on "Gigantic Jets" Blast Electricity Into the Ionosphere · · Score: 1, Informative

    A Coulomb is a heck of a lot of current, and a bolt of a lightning happens in a heck of a short time. The number's about right for a *large* bolt.

  13. The IRATE party! on Why the UK Needs the Pirate Party · · Score: 1

    Down with this sort of thing!
    Up with this we will not put!

  14. Asserts... on New DoS Vulnerability In All Versions of BIND 9 · · Score: 1

    And this is why asserts should *never* go into production builds of any project. It's fine to have asserts in your debug build, but ALWAYS deal with the unexpected case immediately after your assert (which should be compiled out in release mode).

    If you have no way of throwing an error and handling it gracefully back up your call stack (no, you don't always need exceptions for this), then you've done a shit job!

  15. Re:Not ASCII on ASCII Portal In the Works · · Score: 5, Funny

    You ASCII stupid question, you get a stupid ANSI.

  16. Re:Talking javascript on Firefox 3.5 Benchmarked, Close To Original Chrome · · Score: 1

    Yeah, I meant them 3.1 beta release jobbies.

  17. Talking javascript on Firefox 3.5 Benchmarked, Close To Original Chrome · · Score: 1

    Compared to the current Chrome 2, Firefox 3.5 with JIT enabled gets 1/2 the speed here, 7/8th the speed here, but about 2x the speed here. That's a much better result than ff3.1!

    Well done, guys.

  18. Re:"functional programming languages can beat C" on World's "Fastest" Small Web Server Released, Based On LISP · · Score: 1

    Just a heads up, you've truncated pi instead of rounding it off — the next digit is 6. No, I didn't just look that up :(

  19. Re:Which sockets API? on Have Sockets Run Their Course? · · Score: 1

    Whoops, you weren't talking to me, sorry!

  20. Re:Which sockets API? on Have Sockets Run Their Course? · · Score: 1

    It's something I've done on company time, but my director has expressed interest in opensourcing some of this stuff (he likes the 'many eyes' idea), so in the near future we'll make it available somehow, when I'm sure it's properly threadsafe (lockless!) and works in a few other environments. Don't think that helps you right now though, sorry!

    That said, the real magic comes from the packet mmap API with Johann Baudy's TX Ring patch. The stuff I've been doing is encapsulating this down-to-the-metal interface with something approximating really simple sockets, with all the other support stuff (ARP, device and OS IP route enumeration, etc) that you need in order to use it as a general IP-over-Ethernet stack.

    Because our situation involves high pps I've spent some time keeping the per-packet stuff simple and therefore quick - eg, on 1x2.5Ghz core: 180m ARP lookups/sec, 200m route lookups/sec.

    I'm sure standard BSD sockets would perform in the same ballpark if they didn't have such broad application!

  21. Re:Which sockets API? on Have Sockets Run Their Course? · · Score: 1

    No, I'm only talking about UDP - specifically, moving and routing large numbers of media streams. I really hope you don't think that I have no idea what a SOCK_DGRAM is :-)

    The can of worms that is TCP is not something I have the energy or need (thankfully) to re-implement!

  22. Re:Which sockets API? on Have Sockets Run Their Course? · · Score: 1

    Well it wasn't exactly an overnight hack, heh! I would really be a lot more comfortable if something similar, widespread, and well tested was in existence. It's kinda scary ripping the networking code out of my other more mature projects which are in full production in order to test this.

  23. Re:Which sockets API? on Have Sockets Run Their Course? · · Score: 3, Interesting

    Stupid thing posted me anonymously despite being logged in!

  24. One for the poo on The Goo · · Score: 1

    and two for the goo.

  25. Re:Sesame Street & the Importance of Bilingual on Shouldn't Every Developer Understand English? · · Score: 1

    Finnish is also very similar in structure and sound to English

    Hahahahaha! HAHAHAHAHA!

    Consider that a correction, vittu :)