Search results

  1. S

    TightVNC

    Haven't tried it, but I ported a VNC client that uses TightEncoding. Check out Chicken of the VNC on versiontracker.com.
  2. S

    Sending Messages to nil....

    One more quick note: According to Apple's Objective-C language reference, you can safely send a message to a nil object provided that the message returns an object. The returned object will always be nil. However, if the return value is not an object, the return value is undefined. So, you...
  3. S

    Am i Mad?!: PowerPC Assembler

    I'd be interested in seeing some working code, too. I thought I needed to write some awhile ago and found a few resources, which I've now lost. I recall that apple had a page explaining the mnemonics, as did motorola. Google is your friend. By the way, I wound up not needing assembly, so...
  4. S

    Help a Cocoa dummie!!

    You can also try CocoaDev and the Cocoadev mailing list archives .
  5. S

    Finder Preview plugins

    Apple has been discouraging developers from using Resource forks, so tacking an image into the resource fork is a bad solution. I'd guess that the Finder is using the operating system's filter services somehow to generate its previews. It might be possible to write a filter service for a new...
  6. S

    ProjectBuilder plug-in

    If you can dig up some sample code for a PB plugin, I'll lend a hand.
  7. S

    Finder Preview plugins

    Supposedly, it's possible, but I haven't seen any documentation on how to do it.
  8. S

    Cocoaers: Do any of you actually use MVC?

    I guess I'm sort of on the fence. I notice that as my code evolves, I tend to move towards a MVC paradigm. This happens because I write something that's monolithic and then later discover, "Oh, I need this view for some other data type." So, I separate the view. Then, I discover that I can...
  9. S

    spinning color wheel - why?

    I don't know why any one program in particular is doing this, but I'm pretty sure that I know "why" it happens. This is the technical reason... When one writes a mac program, one doesn't write all of the code that handles displaying windows, fetching data from the internet, drawing menus...
  10. S

    Mac OS X VNC *CLIENT*

    If anyone's still interested, I've finally gotten around to making the VNC Client I discussed above available for download. It's on Version Tracker .
  11. S

    Cocoa Websites?

    Not as many as I'd like - try CocoaDev, OmniGroup and StepWise. Oh, and the programming forum in MacNN Forums.
  12. S

    Fink, Xdarwin, Now what?

    sorry I didn't respond in time. It sounds like you had changed the access method in dselect. If this happens again (or someone else has the same problem), you can do 'sudo dselect' to launch dselect. Options 0 and 1 let you change the access method and the list of servers that dselect uses...
  13. S

    SSH and FTP login very slow

    Hmmm, I'm not getting anything relating to lastlog when I grep /var/log and /Library/Logs - maybe there are multiple causes. It would make sense that it's a reverse DNS problem, though. I always connect using a numeric IP.
  14. S

    Fink, Xdarwin, Now what?

    Well, you could do sudo dselect and look through the programs that you can download with Fink. Each one has a brief description. Look for something exciting and try it out.
  15. S

    SSH and FTP login very slow

    I'm not seeing this, but connecting with Appletalk over TCP/IP is really slow. It takes about 30 seconds to pop up the authentication dialog, then 30 seconds more to pop up the list of shareable drives. And the server machine is set to only sleep the display, not the CPU or the hard drive...
  16. S

    Windows Terminal Client

    It built successfully for me by changing the first two (real) lines of Makefile to CC = cc CFLAGS = -O2 -Wall $(DEBUG) -I/usr/X11R6/include -traditional-cpp and then typing 'make' at the command line. But trying to run it doesn't work. It fails while trying X_CreateWindow.
  17. S

    Cocoa vs. Carbon

    Hey Strobe, I've seen you post in a few different places your dislike for Cocoa because of file paths. I ran across this in a Cocoa program I was writing and solved it by reading read the data using a path create an alias (using Carbon APIs) close the file writing open...
  18. S

    a wee bit of help.....

    Well, MATLAB on unix uses lmhostid :) If you've got MATLAB for OS X, I sure would be interested in knowing about it... (pant pant)
  19. S

    ibook battery life

    It's because OS 9 dropped your processor speed when you were on battery power and OS X doesn't. So, you use power more quickly. I wish Apple would restore this feature. I seem to get only about 1.5 hours and it sucks.
Back
Top