Slashdot Mirror


User: rebug

rebug's activity in the archive.

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

Comments · 167

  1. dude how did you get me@gmail.com? on Google Talk Available Early · · Score: 1

    that is one sweet email address, man.

  2. this can only mean one thing on Google Instant Messenger Coming Really (or Not?) · · Score: 5, Funny

    Google is launching an ahjfgdf service tomorrow.

  3. yes on Only NFL Game This Year Gets Lukewarm Response · · Score: 2, Informative

    Tecmo Bowl and Tecmo Super Bowl.

  4. You mean slashdot isn't based in Poland? on Perl 6 Now by Scott Walters · · Score: 2, Funny

    Yow!

  5. yep on Booting an x86 Virtual Machine from an iPod · · Score: 5, Insightful

    It's not designed to have the HD running very hard, either. Run an OS off your iPod for ten minutes and that bad boy is smokin' hot.

  6. here's an idea on Internet Security Warnings · · Score: 1

    We need a universal peril indication color. All these organizations need to coordinate and come up with a single color for the day.

    Fuscia means we should all stay in bed today.

  7. Pascal WAS a language designed for teaching on Best Language for Beginner Programmers? · · Score: 4, Informative

    It was designed as an introduction to structured programming.

    Python wasn't designed as an educational language. Guido explains its origins in the FAQ.

  8. yep, the whitespace thing tripped me up on Spring Into PHP 5 · · Score: 1

    ...for about five seconds.

    Seriously, if that's the extent of your case against Python, well...you make it clear that you've never actually written anything in Python and are therefore unable to have a valuable opinion of it.

    If you're using an editor that doesn't understand tabs or one that can't convert tabs to spaces, well, you should seriously consider getting a new editor.

  9. first thing that pops up on Internet TV Arrives (for Mac users) with DTV · · Score: 2, Insightful
  10. Re:I give up on DHTML Utopia · · Score: 1
    Content negotiation is an old concept. In Apache with mod_rewrite:
    RewriteEngine on
    RewriteBase /
    RewriteCond %{HTTP_ACCEPT} application/xhtml\+xml
    RewriteCond %{HTTP_ACCEPT} !application/xhtml\+xml\s*;\s*q=0
    RewriteCond %{REQUEST_URI} \.html$
    RewriteCond %{THE_REQUEST} HTTP/1\.1
    RewriteRule .* - [T=application/xhtml+xml]
    will serve application/xhtml+xml to any client that claims to accept it. Mozilla does, IE doesn't. Safari just sends */* as its accept string, so it gets text/html.
  11. Re:WOW at target raising! on Best TCP/IP Stack Implementation? · · Score: 1

    It's not exactly altruism .

  12. Re:bwahahah on Microsoft Genuine Advantage Cracked in 24 Hours · · Score: 1

    He defeated slashdot's security mechanism that prevents logged-in users from posting anonymously.

    Fear them skills!

  13. Re:Too bad on Yahoo Purchases Konfabulator · · Score: 3, Informative
  14. you're damn right on What Mac OS X Could Learn From Windows · · Score: 1
    AppleScript the language is one of the most mind-bendingly awful things ever invented. It sucks so bad I'm getting a little pissed typing this.

    AppleScript the tool is awesome. Anything I can do with my Mac can be scripted, and generally if I find myself doing something repeatedly, I bang out a script for it. Most of these scripts are just a few lines long, but they save me a ton of work in the end. As an example:
    tell application "Camino"
    set t to name of front window
    set u to URL of front window
    end tell
    set the clipboard to "<a href=\"" & u & "\">" & t & "</a>"
    Dead simple, amazingly useful.
  15. one way to do it on What Mac OS X Could Learn From Windows · · Score: 2, Informative
    In the Desktop & Screensaver prefpane, set one of the hot corners to "Start Screen Saver," then check "Require password to wake this computer from sleep or screensaver." You're likely to get pissed about setting it off accidentally all the time.

    I use a simple AppleScript
    tell application "ScreenSaverEngine"
    activate
    end tell
    named "Lock Screen" that I launch with LaunchBar. Cmd-space, lo, done.

  16. You mean the bottom right corner? on What Mac OS X Could Learn From Windows · · Score: 4, Informative

    I think the idea is that your cursor doesn't change into a dozen different zany pictures and adopt a dozen different functions depending on which part of the window you're pointing at.

    It's all about simplicity.

  17. wow on Elive Beta: Enlightenment Sans Commitment · · Score: 1

    Wouldn't it scale terribly? I know on OS X icons are usually rendered at various midpoints between 128 px and 16 px so they can look good at any size. A 256 px wide icon can't look very good at 16 px.

  18. Re:Trusted computing on Another Theory on Apple's Move To Intel · · Score: 1

    I'm sure Apple's contract with the record labels covers which platforms they will provide iTunes for.

  19. Re:Browser War on Firefox Gains on IE Again in June · · Score: 1
    I am pretty sure that the current browser war will evolve, in a decade or less, in a war of Web application development with the browsers' supported proprietary extensions.

    If time starts to flow backwards, yes it will.

    Remember the browser war? The one Microsoft won decisively?

  20. clocks cleaned? on Firefox Gains on IE Again in June · · Score: 2, Insightful

    Firefox has 8% and you call that a clock cleaning?

    I don't know how Microsoft can stay in business with Firefox and Apple cleaning their clocks.

  21. wow, what a great idea on Non-Technical Users Talk Malware · · Score: 1

    No, wait, the other thing. Stupid.


    The last thing we need is more government involvment in what people do online.


  22. WRONG on Google to Release Firefox Toolbar · · Score: 1

    It's not like that at all.

  23. Let me get this straight on Opera Embedding BitTorrent Client · · Score: 0
    1. Download .torrent file
    2. Connect to tracker
    3. Connect to peers
    4. Content!

    How is this better than:

    1. Connect to http server
    2. Content!

    From the client side, it's pretty obvious that things are going to be much slower.

    I can't see the bandwidth costs of running a tracker and serving up torrents being lower than the cost of just serving up the content over http.

  24. Ralston-Purina has responded on U.S. Scientists Create Zombie Dogs · · Score: 5, Funny

    New Gravy Brains(TM) brand dog food has the brain flavor your zombie dog craves.

  25. Re:TARGET=_TAB on Windows Longhorn and Internet Explorer 7 · · Score: 3, Insightful

    I'd much rather stick with not specifying a target and letting the user handle where to open the link