Recent content by iconara

  1. iconara

    Undeletable files with strange names

    Thank you both for your suggestions. But the stuffit solution has this problem: even if I stuff it, I will have the original copy left, and the sudo rm bit I have alread tried. rm, mv, ls, none of them can work with the file. The message I get is this: rm: cannot lstat `temporary/<ugly...
  2. iconara

    Undeletable files with strange names

    Hello, I have an annoying problem. I have a file with strange characters in the filename that can't be deleted. When I downloaded files from an ftp-server whose names contained characters like å, ä, ö (common in Sweden). Now all files containing such a character got a strange name (which is...
  3. iconara

    PHP and Cocoa?

    Someone asked for it: http://mysql-cocoa.sourceforge.net/
  4. iconara

    HD partition as home folder

    You can also use "/Developer/Tools/SetFileInfo -a V /Volumes/partitionname" or if it was "-a v" can't remember. Requires the DevTools theo
  5. iconara

    Opensource vs. Safari

    No, you can't add tabs. Period. Apple could have been nicer to us. Theo/Iconara
  6. iconara

    obj-c and . notation

    it was probably more like this: [reciever method].something.something where the method returns a C-struct, which uses dot-notation. but you seem to have figured it out already theo/iconara
  7. iconara

    Opensource vs. Safari

    So Apple has released a web browser. And a fast one. Great. And it's opensource? Great! But wait a second. Something seems not really right here. Aha. Safari is NOT open source. But two of the frameworks it links to are... that's nice. But not that nice. Both WebCore and JavaScriptCore are...
  8. iconara

    Project Builder & Java Packages Build problem

    You're trying to build it as a C-program. Create a new project and make sure that you select Java application (under Pure Java) as the type. Then drag the source to project builder and compile. I still recommend ant (jakarta.apache.org/ant) as the tool of choice for Java development. theo
  9. iconara

    Project Builder & Java Packages Build problem

    you seem to have done something wrong. I don't know what, but try to delete all the files from the project and then just drag and drop the directory that contains the package hierarchy from the finder onto the project. now it should work, otherwise you have done something very odd somewhere...
  10. iconara

    Compiling CenterICQ

    I have a hard time installing CenterICQ (www.centericq.de), which is said to compile on Mac OS X. For me, however, it doesn't... The latest version is 4.8.7, it requires ncurses (installed in jaguar), libsigc++ 1.0 (which finally compiled...) and glib (found on macosx.forked.net). Now why...
  11. iconara

    HELP: I have no idea how to compile!

    You could start with Python or Java. The Python download is not so big, and I think you have Java on your system without the devtools. Check versiontracker.com for Python. BBEdit can't compile, it can only edit files. yours, Theo
  12. iconara

    HD partition as home folder

    The problem with the LABEL thing is that the disks still show up in finder and under /Volumes. It is very irritating... I want my other partitions to be invisible... This is my setup: Three partitions of the same disk - 5Gb partition for / (the base system) - 10Gb partition for...
  13. iconara

    Writing PB Apps in Perl

    What you're looking for is CamelBones: http://camelbones.sourceforge.net/ But it's really not finished yet. There is also a PyObjC, Python bridge for Objective-C, and some others. Check this: http://www.foldr.org/~michaelw/objective-c/ theo
  14. iconara

    Sorting an NSOutlineView?

    it would be the same (the first line). if that doesn't work, I suggest looking at the documentation for NSOutlineView, at the bottom, there all the notifications and delegate methods should be listed. theo
  15. iconara

    Sorting an NSOutlineView?

    NSOutlineView is a subclass of NSTextView, so it will probably work just fine. theo
Back
Top