Slashdot Mirror


User: lurker-11

lurker-11's activity in the archive.

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

Comments · 17

  1. Re:Wrong name on The Economics of Perfect Software · · Score: 1

    You can't rely on that for printf() or other varargs functions. It'll often work on many implementations but it is not valid.

  2. Re:Or, if we are about the open source, on Psystar's Rebel EFI Hackintosh Tool Reviewed, Found Wanting · · Score: 5, Insightful

    If someone else tries to make profit off of Apples product without license from Apple, then Apple is absolutely within their rights to prevent it.

    It's perfectly legitimate to resell products at a profit without permission or "license" from the manufacturer. That's exactly what any retail store does to make money (in the case where they buy from a distributor and aren't the original manufacturer).

  3. Re:In other news on 1/3 of People Can't Tell 48Kbps Audio From 160Kbps · · Score: 1

    That's easy. Just do it outside!

  4. Re:Windows Installation Game on Linux Games For Non-Gamers? · · Score: 2, Informative

    It's on Microsoft's FTP servers now:
    ftp://ftp.microsoft.com/deskapps/games/public/AAS/Hover.EXE

    (Usual disclaimers about running random binaries go here...)

  5. Re:What about other keyboard manufacturers? on Apple Keyboard Firmware Hack Demonstrated · · Score: 1

    The only way to solve this (partially) with existing hardware would be to block access to hardware devices from applications running as non-root users, which is fundamentally contrary to the desire to get device drivers out of the kernel for stability.

    Note that the root user account and the special priviledges usually given to it have nothing to do with kernel mode. Code running as root may be able to get code to run in kernel mode, such as by loading a kernel module (and in theory this priviledge could be given to other accounts as well), but is still running in regular user mode.

  6. Re:ISO Mounting? on Microsoft Brings 36 New Features To Windows 7 · · Score: 1

    http://msdn.microsoft.com/en-us/subscriptions/aa948864.aspx
    Look for "Microsoft Virtual CD Control Tool". They have had that on their site for years...

  7. Re:First Step on Beginning iPhone Development · · Score: 1

    As I've said here before, no, you don't need Microsoft Windows to develop (near-) native applications for Windows Mobile. You can do so with Mono on Linux (or FreeBSD, or Mac OS X...) by copying the .NET Compact Framework DLLs off of the WM device and pointing the Mono compiler to them.

  8. Re:Developer Friendly...Apple?!? Joking, Right? on Palm Announces Killer New Phone · · Score: 1

    As for having to buy a Mac - do you think it's possible to develop for windows mobile without having a windows-based PC?

    Yes, it is; you can develop for WM with Mono on Linux. All you need to do is copy the .NET CF DLLs off of the WM device and point the Mono compiler at them.

  9. Re:Ooh, a new color! on Microsoft Announces Windows Azure, Cloud-Based OS · · Score: 1

    Anyone else find it amusing that Microsoft names their "cloud-based OS" on what the sky looks like when it's, well, cloudless? :)

  10. Re:Stick a fork in 'em... on AMD To Spin Off Fabrication From Design Work · · Score: 1

    Who is left to compete with Intel now?

    If you don't have to use x86, Sun:
    http://en.wikipedia.org/wiki/UltraSPARC_T2
    http://en.wikipedia.org/wiki/Rock_(processor)

  11. Thinking in Java on Java, Where To Start? · · Score: 5, Informative

    Thinking in Java is a good book on the Java language. You can read it online at the author's web site: http://www.mindview.net/Books/TIJ/

  12. Re:Ahh crap on RIAA Sues Usenet.com · · Score: 0, Offtopic

    "my hello.c is so 1337!"

    Ha, you think ur hello.c is leet?? wait to see my hello.asm! Wait until you see GNU Hello :)
    http://www.gnu.org/software/hello/
  13. Re:Its still a toshiba on Toshiba Boosts Hard Drive Density By 50% · · Score: 1

    It's 3x the cost, but I always buy disks in sets of three:
    - One as the primary
    - One to be mirrored in RAID1 with the first
    - One to put into a normally-offline backup server, mirrored to the primary disk once a night or so with rsync

    A bit paranoid, but I haven't had any data loss with this strategy, and the maximum possible is just 24 hours of data loss. With current disk prices, I think it's worth it.

  14. Re:What are they? on A Mighty Number Falls · · Score: 1

    If you mean 0x09F911029D74E35BD84156C5635688C0, it's not very difficult to factorise actually. For the curious:

    > time factor `python -c 'print 0x09F911029D74E35BD84156C5635688C0'`
    132562788879 89457651018865901401704640: 2 2 2 2 2 2 5 19 12043 216493 836256503069278983442067
    0.52s user 0.00s system 97% cpu 0.538 total
    On a 2.26GHz Pentium-M.
  15. Re:I like those odds..... on Mr. Ballmer, Show Us the Code · · Score: 1

    Impossible to say, really, but I would guess that the SCO unix code would be a lot more similar to linux than windows, and they weren't able to find anything (should I say 'yet?'). So I find it unlikely that they will find anything in the windows source code, which is much different.

    But the SCO case is/was about copyright, not patents. It's a lot harder to show that two pieces of code are the same, rather than that they just do the same thing as is patented.
  16. Re:I saw a long line of these guys at compusa on Vista Hackers Get Busy · · Score: 1

    Those `black hats' just know the First Rule of Usenet :)

  17. Re:What Linux can do and Windows cannot on The War Is Over, and Linux Has Won · · Score: 2, Informative
    Let's say you want to rename all *.jpeg files to *.jpg. How would you do that in Windows? In VMS that would be a piece of cake, in a Unix system it's more complicated, for i in *.jpeg; do mv $i `echo $i | sed s/jpeg$/jpg/ - ` ; done or something like that would do it, but the easiest way to do it in Windows that I can think of would be a VB program.


    In Windows the easiest way is:
    > rename *.jpeg *.jpg

    In Unix, your example (with correct quoting) would be:
    > for i in *.jpeg; do mv "$i" "`echo "$i" | sed 's/jpeg$/jpg/'`"; done
    (You need the single quotes around the regex for the $, and the others to handle spaces in filenames)

    Of course, I have a script in my PATH to automate that to as easy as Windows and more flexible:
    #!/bin/sh

    if [ $# -lt 2 ]; then
                    echo "usage: $0 regex file [file ...]" 1>&2
                    exit 2
    fi

    re="$1"; shift
    for x; do
                    mv "$x" "$(echo "$x" | sed "$re")"
    done

    Which could be used as:
    > remv 's/jpeg$/jpg/' *.jpeg