Search results

  1. gumse

    Hex reader in OSX?

    In terminal: hexdump filename
  2. gumse

    Airport & ethernet at the same time?

    You can only activate AppleTalk on one interface at a time though.
  3. gumse

    Your Mac accidents

    My secretary once spilled a coke in her ADB pro keyboard, no problems pressing the keys, getting them un-pressed a little harder :-)
  4. gumse

    Line feeds turn into space with backticks ! How to fix ?

    I love Curling, my girlfriend's a Linguist, so helping you out comes naturally :-)
  5. gumse

    Line feeds turn into space with backticks ! How to fix ?

    1) Create a script, name it fx. curlGet -------------------------- #!/bin/bash while read line do `curl -O $line` done -------------------- 2) make it executable chmod +x curlGet 3) cat fixed.txt | ./curlGet 4) There is no 4 :-)
  6. gumse

    Anyone speak/read Russian?

    Close enough. "It's a satellite?" "No, it's water." And there ends my russian knowledge...
  7. gumse

    Anyone speak/read Russian?

    Eta Sputnik ? Njet, eta vada. :-)
  8. gumse

    Is ANYONE doing Bluetooth?

    I use BT with iSync and my P800, works ok BUT initially i had a no-name USB-hub and had _lots_ of problems. When i tried with a D-Link USB-hub everything worked ok. Needless to say I ritually smashed the old hub to pieces.
  9. gumse

    HP 2100 on Panther issues

    I have the 2100tn connected via Ethernet
  10. gumse

    HP 2100 on Panther issues

    Dont know if this helps, I have a 2100tn and it works ok in Panther
  11. gumse

    Firewire/USB Hub recommendation

    Try this: http://www.devdepot.com/description.html?pcode=HMACH
  12. gumse

    SonyE P900 & Mac OS X.

    The desktop dock charges (when connected to the external charger) but it doesn't sync (last time I tried anyway). I have not tried connecting USB since upgrading to 10.3 though.
  13. gumse

    SonyE P900 & Mac OS X.

    I have a P800 and it syncs iCal and Adress Book OK with iSync over BlueTooth. The MemoryStick mounts in the Finder, I got an MS Duo -> MS adaptor with my P800 to get it to fit in my Sony MemoryStick reader. I guess the P900 will work the same as it has basically the same Symbian system...
  14. gumse

    what can a Performa 6200 be used for?

    What computers will simply NOT work with Yellow Dog Linux? **- Any Performa 52xx, 53xx, 61xx, 62xx, and 63xx. The same goes for NetBSD.
  15. gumse

    Batch rename ?

    There is a Unix tool named "mmv" by Vladimir Lanin, I got it from a news group in 1989, that does multiple renames in the terminal. I compiled it in Jaguar, the same binary works in Panther. mmv "*.zip" "=1.mp3" Try Fink or Google to find it.
  16. gumse

    Panther Mail Backup Problem

    Copy com.apple.mail.plist from Library/Preferences to.
  17. gumse

    I've created a java app. How to lunch it from finder?

    You can double click to start a .jar -file (if the manifest is correct) in both MacOS and Windows
  18. gumse

    What Song Are You Playing Now?

    Europa Endlos - Kraftwerk
  19. gumse

    Apple Remote Desktop!

    Don't you have to buy Apple Remote Desktop to be able to control another 10.3 mac ? I thought that it was just the client side settings that was included in 10.3
  20. gumse

    OS X Stack Size

    You should probably take the good advise from anarchie and allocate your data on the heap. The stack size is an OS thing and can't be set by the compiler. You _could_ set the stacksize from the shell with something like "limit stacksize 4000000", but this can only be done by a super user...
Back
Top