Welcome to the MacNN Forums.

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

You are here: MacNN Forums > Search Forums > Search Results

Showing results 1 to 50 of 231
Search: Posts Made By: int69h
Thread Thread Starter Last Post Replies Views Forum
NeHe Tutorials (http://nehe.gamedev.net) 807 Views / 8 Replies  
NeHe Tutorials (http://nehe.gamedev.net)
Posted by int69h, on May 1, 2004 at 04:05 PM, in Developer Center
You might find what you need by looking at the... 740 Views / 5 Replies  
You might find what you need by looking at the manpage for stty.

STTY(1) System General Commands Manual STTY(1)

NAME
stty - set the options for a terminal...
Posted by int69h, on May 1, 2003 at 11:03 PM, in macOS
Before anyone starts flaming, please realize that... 3,006 Views / 6 Replies  
Before anyone starts flaming, please realize that I meant no harm to the author of said Finder replacement. If I did, I might have also heard about someone writing a patch to exploit such poor...
Posted by int69h, on Mar 28, 2003 at 08:28 AM, in Developer Center
Some people have been known to use gdb to crack... 3,006 Views / 6 Replies  
Some people have been known to use gdb to crack software on Mac OS X too. I heard a certain Finder replacement can be cracked by altering the return value from a single routine. I also heard that...
Posted by int69h, on Mar 28, 2003 at 08:21 AM, in Developer Center
Use the C pre-processor. GCC defines __APPLE__... 485 Views / 1 Replies  
Use the C pre-processor. GCC defines __APPLE__ to be 1 when compiling on OS X.


#ifdef __APPLE__
system("clear")
#else
system("cls")
#endif
Posted by int69h, on Mar 17, 2003 at 03:49 PM, in Developer Center
http://developer.apple.com/samplecode/Sample_Code/... 1,871 Views / 16 Replies  
http://developer.apple.com/samplecode/Sample_Code/Cocoa/RoundTransparentWindow.htm
Posted by int69h, on Mar 12, 2003 at 01:25 AM, in Developer Center
#if defined(__APPLE__) /* Apple specific stuff... 1,171 Views / 16 Replies  
#if defined(__APPLE__)
/* Apple specific stuff */
#elif defined(__SOLARIS__)
/* Solaris specific stuff. Check cpp -dM for the correct define. */
#elif defined(__linux__)
/* Linux specific stuff...
Posted by int69h, on Mar 8, 2003 at 11:03 PM, in Developer Center
Remember that you get what you pay for. 1,483 Views / 2 Replies  
Remember that you get what you pay for.
Posted by int69h, on Mar 7, 2003 at 09:01 AM, in Developer Center
Re: R U an OSX developer? Why do develop on OSX. What Rules and Blows. What do you need? 1,091 Views / 12 Replies  
1 - Develop on - Unix + commercial software + most of my free software favorites.
Develop for - I'm in love w/ the Cocoa frameworks.

2 - Mercenary

3 - Depends. See #2

4 - I don't think of...
Posted by int69h, on Mar 7, 2003 at 12:50 AM, in Developer Center
The obvious answer is to use an instance of... 3,814 Views / 8 Replies  
The obvious answer is to use an instance of NSAppleScript. I'm sure there are other ways, but this seems to be the most straightforward.

The actual script is probably wrong, but try something...
Posted by int69h, on Mar 5, 2003 at 10:09 PM, in Developer Center
Re: Re: VLC Mod: Progress bars 1,425 Views / 12 Replies  
Yours looks very nice. Mind if I ask why you reimplemented NSSlider instead of make a subclass of NSSliderCell?

I haven't got a chance to make any progress. I'll put what I do have complete on...
Posted by int69h, on Mar 3, 2003 at 07:23 PM, in Developer Center
Thanks for the link. I had already consulted... 693 Views / 5 Replies  
Thanks for the link. I had already consulted that file actually. My original attempt was a synthesis of _initWithObjects: rest: and K&R's minprintf example.

Figured out my problem. I'll post the...
Posted by int69h, on Mar 2, 2003 at 04:21 PM, in Developer Center
Decided that I really do need the va_* stuff. ... 693 Views / 5 Replies  
Decided that I really do need the va_* stuff. What if the stack grows in the opposite direction? :)
Posted by int69h, on Mar 2, 2003 at 04:54 AM, in Developer Center
Do I even need to use the va_* stuff? The call... 693 Views / 5 Replies  
Do I even need to use the va_* stuff? The call stack should come in something like otherStuff, firstAddress, secondAddress, ..., nil shouldn't it? I think I'm just confusing myself more.
Posted by int69h, on Mar 2, 2003 at 04:42 AM, in Developer Center
Variable length argument lists 693 Views / 5 Replies  
I'm working on a tree class, and I need to use variable length argument lists; however, my understanding of them is a little fuzzy. Will this snippet yield the expected result?


-...
Posted by int69h, on Mar 2, 2003 at 04:26 AM, in Developer Center
The GNUstep folks are writing a lgpl clone of EOF... 591 Views / 4 Replies  
The GNUstep folks are writing a lgpl clone of EOF called GDL2. It's in their CVS repository. I'm not sure how far along they are, but it might be worth looking into.
Posted by int69h, on Mar 1, 2003 at 12:39 AM, in Developer Center
Re: Executable JAR File? 726 Views / 9 Replies  
I didn't test the OS X jdk, but the Blackdown linux jar command is pretty picky about the last line of your manifest containing a newline. If you don't have one it won't add that attribute. I must...
Posted by int69h, on Mar 1, 2003 at 12:25 AM, in Developer Center
It's /proc/cpuinfo, but it doesn't contain that... 3,522 Views / 7 Replies  
It's /proc/cpuinfo, but it doesn't contain that sort of information anyways. It contains information about the physical chip.

A combination /proc/loadavg and /proc/meminfo would give you the info...
Posted by int69h, on Feb 27, 2003 at 02:23 AM, in Developer Center
Oops. The knob isn't proportional. I bet it... 1,425 Views / 12 Replies  
Oops. The knob isn't proportional. I bet it only scales in one direction. That's the source of my trouble I'm sure. I really need to stop stabbing in the dark and RTFM. Feel free to ridicule me. :)
Posted by int69h, on Feb 24, 2003 at 08:07 PM, in Developer Center
Do you want it to act like a slider? If you click... 1,425 Views / 12 Replies  
Do you want it to act like a slider? If you click somewhere in the trough, do you want to be notified of the position you should jump the video to (like iTunes)? If this is a requirement, blitting...
Posted by int69h, on Feb 24, 2003 at 07:35 PM, in Developer Center
It's getting there. Most of my time was spent in... 1,425 Views / 12 Replies  
It's getting there. Most of my time was spent in vain trying to figure out why my custom NSSliderCell wasn't working. Come to find out it was working fine. Stupid Interface Builder was assigning...
Posted by int69h, on Feb 24, 2003 at 12:24 PM, in Developer Center
You don't really need fast forward and rewind... 1,425 Views / 12 Replies  
You don't really need fast forward and rewind buttons. Your progress indicator could handle that function like it does in iTunes.
Posted by int69h, on Feb 23, 2003 at 06:15 PM, in Developer Center
I was over-engineering. It would just need a... 1,425 Views / 12 Replies  
I was over-engineering. It would just need a subclass of NSSlider. Everything else could be done through IB.
Posted by int69h, on Feb 23, 2003 at 06:13 PM, in Developer Center
The contents of the view would be trivial to... 1,425 Views / 12 Replies  
The contents of the view would be trivial to implement. It could be done with one stroked bezier path, two filled bezier paths, and one call to NSString. Drawing that fancy sunken border around it...
Posted by int69h, on Feb 23, 2003 at 11:12 AM, in Developer Center
Angus, The example code you posted was... 656 Views / 12 Replies  
Angus,

The example code you posted was objective-c. I realize no sane person would attempt this.

Chuckit,

struct objc_class {
struct objc_class *isa;
...
Posted by int69h, on Feb 22, 2003 at 05:21 PM, in Developer Center
If you're looking for a Java-focused text,... 567 Views / 1 Replies  
If you're looking for a Java-focused text, Object-Oriented Design in Java (http://www.amazon.com/exec/obidos/ASIN/1571691340/qid%3D1045946623/sr%3D11-1/ref%3Dsr%5F11%5F1/102-9110616-0320159) does a...
Posted by int69h, on Feb 22, 2003 at 04:56 PM, in Developer Center
Motorola, IBM, and the makers of Fantasm offer... 768 Views / 6 Replies  
Motorola, IBM, and the makers of Fantasm offer quite a bit of documentation on the PPC instruction set. OSX uses the PowerOpen ABI. If you're coming from an x86 background, prepare for a shock. RISC...
Posted by int69h, on Feb 22, 2003 at 10:12 AM, in Developer Center
I think you could use pure C syntax and use... 656 Views / 12 Replies  
I think you could use pure C syntax and use functions like objc_msgSend as long as you link against the correct libraries. If you decide to go that route, you're a braver man than I am. Have a look...
Posted by int69h, on Feb 22, 2003 at 09:45 AM, in Developer Center
Using Samba over 10BT handles the load just fine... 810 Views / 9 Replies  
Using Samba over 10BT handles the load just fine on my LAN. The VFS should already be performing buffering for you. Do you experience jumps when playing the movies off of a local drive? If so, you...
Posted by int69h, on Feb 19, 2003 at 02:03 AM, in macOS
Couldn't legally sell or give them to you even if... 1,680 Views / 34 Replies  
Couldn't legally sell or give them to you even if I wanted to.
Posted by int69h, on Feb 18, 2003 at 11:24 PM, in macOS
I don't know about the situation in Germany, but... 1,254 Views / 19 Replies  
I don't know about the situation in Germany, but a huge number of `average consumer/office' machines are connected to the Internet 24/7 here in the US and in SE Asia.


The fact the OS X is a...
Posted by int69h, on Feb 18, 2003 at 11:30 AM, in macOS
??? Slammer/Code Red/Back Orifice and the Outlook... 1,254 Views / 19 Replies  
??? Slammer/Code Red/Back Orifice and the Outlook attachment virus of the day don't factor into the metric you use to determine "hack prone"? Do you read BugTraq?
Posted by int69h, on Feb 18, 2003 at 12:52 AM, in macOS
Why would they incur the overhead of spawning a... 929 Views / 12 Replies  
Why would they incur the overhead of spawning a process to run /bin/rm when there is a perfectly good system call, unlink(2), for this?
Posted by int69h, on Feb 16, 2003 at 07:45 PM, in macOS
Charles, I never stated or implied that you... 744 Views / 11 Replies  
Charles,

I never stated or implied that you wanted to make a malicious keylogger. You stated your intentions in the first post of this thread, and I have no reason not to believe you.
Posted by int69h, on Feb 16, 2003 at 07:37 PM, in Developer Center
Thank goodness for that. I'd rather not have... 744 Views / 11 Replies  
Thank goodness for that. I'd rather not have every malcontent trying to infest my system with keyloggers.
Posted by int69h, on Feb 16, 2003 at 10:51 AM, in Developer Center
If one of those apps is Terminal.app, can one... 1,134 Views / 10 Replies  
If one of those apps is Terminal.app, can one just run "open NotAuthorizedApp.app"?
Posted by int69h, on Feb 15, 2003 at 01:55 AM, in macOS
We prefer that you call it GNU/poop. Thanks. 799 Views / 14 Replies  
We prefer that you call it GNU/poop. Thanks.
Posted by int69h, on Feb 13, 2003 at 06:45 PM, in macOS
In case you didn't know META-X... 799 Views / 14 Replies  
In case you didn't know META-X global-font-lock-mode turns on syntax hilighting in all buffers,
Posted by int69h, on Feb 13, 2003 at 02:01 PM, in macOS
cvs... 799 Views / 14 Replies  
cvs -d:pserver:[email protected]:/cvsroot/emacs login
cvs -z3 -d:pserver:[email protected]:/cvsroot/emacs co emacs
cd emacs
./configure --with-carbon --without-x
make...
Posted by int69h, on Feb 13, 2003 at 01:56 PM, in macOS
SSH Agent (http://www.phil.uu.nl/~xges/ssh/)... 581 Views / 6 Replies  
SSH Agent (http://www.phil.uu.nl/~xges/ssh/) might be what you're looking for.
Posted by int69h, on Feb 13, 2003 at 01:47 PM, in Developer Center
That question is almost like asking VI or Emacs?,... 962 Views / 23 Replies  
That question is almost like asking VI or Emacs?, SVR4 or BSD?, Protestant or Catholic?

FSF Emacs has Carbon and Cocoa based GUIs. I believe XEmacs only has an X11 based GUI at the moment.
Posted by int69h, on Feb 11, 2003 at 12:43 AM, in Developer Center
Shared Source CLI 1.0... 962 Views / 23 Replies  
Shared Source CLI 1.0 (http://msdn.microsoft.com/downloads/default.asp?url=/downloads/sample.asp?url=/MSDN-FILES/027/002/097/msdncompositedoc.xml)
It doesn't support winforms for GUI creation...
Posted by int69h, on Feb 9, 2003 at 01:53 AM, in Developer Center
The definition of Operating System is so... 896 Views / 17 Replies  
The definition of Operating System is so malleable. While I don't consider the windowing system to be part of the operating system, Quartz Extreme is indeed impressive. Quartz itself is just the...
Posted by int69h, on Feb 8, 2003 at 08:46 PM, in Developer Center
That is really odd. I've been using the dev... 543 Views / 3 Replies  
That is really odd. I've been using the dev tools since DP4 on far less capable hardware, and I've never run into anything like that. Perhaps this behavior after installing the dev tools was just a...
Posted by int69h, on Feb 8, 2003 at 06:14 PM, in Developer Center
3) Those of us who will disagree with you because... 896 Views / 17 Replies  
3) Those of us who will disagree with you because you're wrong.

You'll get not argument from me regarding Apple's classic MacOS dev tools.

Care to share any examples of what makes VS a...
Posted by int69h, on Feb 8, 2003 at 04:29 PM, in Developer Center
Thanks for the links. The first one, Writing GNU... 606 Views / 2 Replies  
Thanks for the links. The first one, Writing GNU Emacs Extensions, looked promising but it doesn't cover ccmode. I read the second one, Learning GNU Emacs, several years ago. I think I'll go check...
Posted by int69h, on Feb 8, 2003 at 09:25 AM, in Developer Center
There are quite a few VAXs out there running VMS... 833 Views / 12 Replies  
There are quite a few VAXs out there running VMS with 15+ years uptime. Not ALL computers crash.

edit:
I refuse to say VAXen, Boxen, virii, or any other idiotic plural form.
Posted by int69h, on Feb 8, 2003 at 01:42 AM, in macOS
I answered this over in UNIX. 709 Views / 4 Replies  
I answered this over in UNIX.
Posted by int69h, on Feb 8, 2003 at 01:02 AM, in macOS
Just one. Don't crosspost. 709 Views / 4 Replies  
Just one. Don't crosspost.
Posted by int69h, on Feb 8, 2003 at 01:01 AM, in macOS
hw.model = iMac hw.ncpu = 1 hw.vectorunit = 0... 2,115 Views / 51 Replies  
hw.model = iMac
hw.ncpu = 1
hw.vectorunit = 0
hw.cpufrequency = 333333333
Posted by int69h, on Feb 8, 2003 at 01:00 AM, in macOS
Showing results 1 to 50 of 231
 
Top
Privacy Policy
All times are GMT -4. The time now is 08:50 PM.
All contents of these forums © 1995-2017 MacNN. All rights reserved.
Branding + Design: www.gesamtbild.com
vBulletin v.3.8.8 © 2000-2017, Jelsoft Enterprises Ltd.,