Search results

  1. davidbrit2

    I thought a DROP BOX was write only!

    Hmm, looks like a limitation of the basic Unix file permissions system. Directory permissions: r - list files (ls) w - add files x - access files Now, you'd think setting it to -w- would be sufficient, but without -wx, you can't actually create files in the directory for some reason...
  2. davidbrit2

    Safari only opens pages on the second try

    Beats me, but I definitely notice it in more than just Safari, and for some reason it only does it here on campus. Perhaps the other browsers are automatically retrying the DNS lookup or something.
  3. davidbrit2

    Safari only opens pages on the second try

    I'm suspecting it's not specifically Safari's fault. Why is that? Well, xchat (IRC client) will do the same thing. It'll fail to find the server, and cycle through the list until one of them works (usually after 2 or 3 attempts at most). So I'm pointing the blame at either the DNS server being...
  4. davidbrit2

    why is python hogging my cpu?

    WindowServer is the actual window manager that handles windows on screen. Don't kill it, in other words. Heh. And if you're wondering what started python, use this command: "ps -axw" See if you can find any python related commands running.
  5. davidbrit2

    Java code doesn't do anything?

    Nope. You can put your main() method wherever the heck you please. Just make sure that if you put it somewhere other than the default (ProjectName.java), edit the Manifest file so the java runtime knows where to look for it.
  6. davidbrit2

    Safari only opens pages on the second try

    I'd suspect the DNS server. That happens quite a bit on my college campus, but never at home. Unfortunately, the DNS server issues are largely out of our control.
  7. davidbrit2

    Java code doesn't do anything?

    Ah, that's an easy fix. That error message means it can't find the main() method in the specified startup class. See that Manifest file in the project? Edit that. Change the Main-class definition to the name of the class that actually has the main() method in it (in this case, GameLauncher)...
  8. davidbrit2

    Dumb C problem (-ldes, libdes)

    See? I told you it was a dumb problem. ;-) That worked fine. Thanks.
  9. davidbrit2

    iPod Photo (color iPod) just showed up in Apple Store

    Yes, but they're pretty much identical to yours. Ha ha.
  10. davidbrit2

    iPod Photo (color iPod) just showed up in Apple Store

    http://store.apple.com Go go go! ;-)
  11. davidbrit2

    Dumb C problem (-ldes, libdes)

    So I've got some really simple source code that does some basic DES related stuff, and it (obviously) uses libdes. However, attempting to compile with -ldes gives "ld: can't locate file for: -ldes". If I just specify "/usr/lib/libdes425.dylib" as another argument, it builds and runs okay. Of...
  12. davidbrit2

    color and redirection?

    It's actually quite easy. Add this option to ls: --color=always Otherwise it'll detect that it's sending output to a pipe rather than a terminal and deactivate printing of color escape codes.
  13. davidbrit2

    iMac TFT no longer recognizes combo drive

    Maybe a silly question, but have you tried the ol' PRAM zap? That's usually the first thing I try when a drive stops being recognized for whatever reason.
  14. davidbrit2

    Permanently grant read access to /dev/bpf*

    To avoid using sudo every time, you can just enable the setuid bit on the application. Do this carefully though, because it means anybody who runs the program is running it with root permissions. Okay, here's what you do: (most of it from the Terminal) 1. First, set the owner of the...
  15. davidbrit2

    Airport Extreme: link goes up and down ever 3 sec.

    Alright, I just went over to IT, had them refresh my address entry in the access control lists, and by the time I got back to my apartment, it had re-propogated, and now it works. Weird. I guess their custom app for updating access lists across multiple access points simultaneously has a few...
  16. davidbrit2

    Airport Extreme: link goes up and down ever 3 sec.

    Okay. Now this is just weird. I just walked over to the student center to try it there. Lo and behold... http://www2.gvsu.edu/~brittedg/AirportGraphGood.pdf Worked beautifully there. Now, normally I'd suspect some kind of incompatibility between my card and whatever access point the...
  17. davidbrit2

    Airport Extreme: link goes up and down ever 3 sec.

    Believe me, I got all the updates as soon as I had this computer set up. I tried rolling back to the older driver just for kicks, but it wouldn't let me install it over the newer version. Blah. If you want to see what the signal looks like, here's what Airport Client Monitor graphs...
  18. davidbrit2

    Airport Extreme: link goes up and down ever 3 sec.

    This beats the hell out of me. I just got my new iBook yesterday, and I'm trying to use it here on the campus network with Airport Extreme, and every three seconds, the link status cycles between up and down. The signal is perfectly fine - 3 bars steady (when it's actually up). And my old iBook...
  19. davidbrit2

    10.3.4: iChat problem

    Well, the buddy icons are possibly stored locally in ~/Library/Caches/com.apple.iChat.pictures (though this may just be for caching pictures sent in the chats). You could always try cleaning out this directory. Also try forcing a different static image for that particular buddy. I think you...
  20. davidbrit2

    10.3.4: iChat problem

    Trust me, I've collected hours of scientific data from playing NES emulators during dull lectures. ;-) I notice a fair difference on my machine, anyway.
Back
Top