User robottobor - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T23:14:26Z http://stackoverflow.com/feeds/user/10184 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1761950/how-can-i-implement-tee-programmatically-in-c 4 How can I implement 'tee' programmatically in C? robottobor 2009-11-19T09:20:30Z 2009-11-19T10:47:03Z <p>I'm looking for a way in C to programmatically (ie, not using redirection from the command line) implement 'tee' functionality such that my stdout goes to both stdout and a log file. This needs to work for both my code and all linked libraries that output to stdout. Any way to do this?</p> http://stackoverflow.com/questions/1739837/how-to-control-the-text-color-of-an-nstextfield-when-it-is-displaying-a-placehold 0 How to control the text color of an NSTextField when it is displaying a placeholder marker? robottobor 2009-11-16T03:01:32Z 2009-11-16T06:10:58Z <p>When the NSTextField (Label) is bound to a controller selection with bindings, and I have specified placeholder values for the Multiple Values Marker, No Selection Marker, etc it draws the text with a gray color that does not show up well on a dark background.</p> <p>Is there a way to change the text color it uses to display the placeholder text?</p> http://stackoverflow.com/questions/1698124/how-to-tell-if-a-given-path-is-mounted-removable-media-in-mac-os-x 1 How to tell if a given path is mounted removable media in Mac OS X? robottobor 2009-11-08T22:24:04Z 2009-11-09T19:31:09Z <p>Given a path, in Mac OS X, is there a way to tell that it is a mounted CD or DVD, as opposed to a regular directory, a regular file, or mounted DMG or other mountable file type? Specifically I would like to know if it is a CD or DVD when a user supplies a path directly, or via the NSOpenPanel, or drags the CD onto the app. I need to take special action in these cases.</p> http://stackoverflow.com/questions/1646549/is-there-any-way-to-make-a-dual-executable-file-for-mac-windows 1 Is there any way to make a dual executable file for Mac/Windows? robottobor 2009-10-29T21:06:04Z 2009-10-30T11:52:06Z <p>I'm looking for a way to make a dual executable file for Windows/Mac. That is, I can execute the file in either OS and it would run some piece of code that I want for that OS. This code can be either a script or (preferably) natively compiled code, but it needs to run on the vanilla OS without needing any extra tools or libraries installed. The other requirement is it needs to be a single file.</p> <p>Anyone know of a way to do this or is this even possible?</p> http://stackoverflow.com/questions/451364/interface-builder-caching-bad-data-voodoo/1619429#1619429 0 Answer by robottobor for Interface Builder caching bad data (voodoo) robottobor 2009-10-24T22:57:53Z 2009-10-24T22:57:53Z <p>I just had a project where this happened and I was banging my head trying to get it to update properly in IB 3.2 (732). I really did not want to redo the xib from scratch. I tried drag/drop of the *.h files, restarting, reloading everything and it didn't work. I also tried File->Read Class Files which didn't work. Strangely though, File->Reload All Class Files worked like a charm.</p> http://stackoverflow.com/questions/1479174/what-are-the-ways-to-convert-encode-to-aac-in-cocoa 0 What are the ways to convert/encode to AAC in Cocoa? robottobor 2009-09-25T19:33:00Z 2009-09-25T22:29:32Z <p>Is there a way to programmatically convert and/or encode to AAC/m4a format in Cocoa without the use of any libraries or programs that don't ship with Mac OS X?</p> <p>I don't want to use for example, faac or ffmpeg, to do the encoding.</p> http://stackoverflow.com/questions/67273/how-do-you-iterate-through-every-file-directory-recursively-in-standard-c 3 How do you iterate through every file/directory recursively in standard C++ robottobor 2008-09-15T21:41:00Z 2009-09-24T11:11:31Z <p>How do you iterate through every file/directory recursively in standard C++</p> http://stackoverflow.com/questions/78619/what-is-the-fastest-way-to-convert-float-to-int-on-x86 5 What is the fastest way to convert float to int on x86 robottobor 2008-09-17T00:20:06Z 2009-03-15T11:34:23Z <p>What is the fastest way you know to convert a floating-point number to an int on an x86 CPU. Preferrably in C or assembly (that can be in-lined in C) for any combination of the following:</p> <ul> <li>32/64/80-bit float -> 32/64-bit integer</li> </ul> <p>I'm looking for some technique that is faster than to just let the compiler do it.</p> http://stackoverflow.com/questions/235762/how-do-you-throttle-the-bandwidth-of-a-socket-connection-in-c 6 How do you throttle the bandwidth of a socket connection in C? robottobor 2008-10-25T01:54:16Z 2009-03-11T03:42:25Z <p>I'm writing a client-server app using BSD sockets. It needs to run in the background, continuously transferring data, but cannot hog the bandwidth of the network interface from normal use. Depending on the speed of the interface, I need to throttle this connection to a certain max transfer rate.</p> <p>What is the best way to achieve this, programmatically?</p> http://stackoverflow.com/questions/490592/why-is-the-obj-c-gc-clearing-my-reference/490992#490992 1 Answer by robottobor for Why is the Obj-C GC clearing my reference? robottobor 2009-01-29T09:24:57Z 2009-01-29T09:24:57Z <p>Have you verified that the garbage collection is truly on? You could try putting in a -dealloc method in your class and see if you ever hit it. It will never hit with GC on. According to Apple docs the GC should not collect objects pointed to by stack variables so what you're seeing should not happen.</p> http://stackoverflow.com/questions/477204/key-value-observing-a-to-many-relationship-in-cocoa/477278#477278 3 Answer by robottobor for Key-Value-Observing a to-many relationship in Cocoa robottobor 2009-01-25T06:43:55Z 2009-01-25T06:43:55Z <p>You need to implement the indexed array accessors as defined in the <a href="http://developer.apple.com/DOCUMENTATION/Cocoa/Conceptual/KeyValueCoding/KeyValueCoding.html" rel="nofollow">KVC programming guide</a>. Then you must use those accessors to access the array and the KVO triggering will work. You can also call <a href="http://developer.apple.com/DOCUMENTATION/Cocoa/Reference/Foundation/Protocols/NSKeyValueCoding_Protocol/Reference/Reference.html#//apple_ref/occ/instm/NSObject/mutableArrayValueForKey:" rel="nofollow">-mutableArrayValueForKey:</a> and use that array to addObject: and such and it will in turn call the accessor methods and the KVO triggering will occur as well. There are also set accessors for use in for NSSets, see <a href="http://developer.apple.com/DOCUMENTATION/Cocoa/Conceptual/ModelObjects/cdAccessorMethods.html#//apple_ref/doc/uid/TP40002154-SW1" rel="nofollow">here</a> and <a href="http://developer.apple.com/DOCUMENTATION/Cocoa/Reference/Foundation/Protocols/NSKeyValueCoding_Protocol/Reference/Reference.html#//apple_ref/occ/instm/NSObject/mutableSetValueForKey:" rel="nofollow">here</a>.</p> <p>Example:</p> <pre><code>@interface MyClass : NSObject { NSMutableArray *_orders; } @property(retain) NSMutableArray *orders; - (NSUInteger)countOfOrders; - (id)objectInOrdersAtIndex:(NSUInteger)index; - (void)insertObject:(id)obj inOrdersAtIndex:(NSUInteger)index; - (void)removeObjectFromOrdersAtIndex:(NSUInteger)index; - (void)replaceObjectInOrdersAtIndex:(NSUInteger)index withObject:(id)obj; @end </code></pre> http://stackoverflow.com/questions/476843/create-an-array-of-integers-property-in-objective-c/477041#477041 2 Answer by robottobor for Create an array of integers property in Objective C robottobor 2009-01-25T01:38:47Z 2009-01-25T01:38:47Z <p>This should work:</p> <pre><code>@interface MyClass { int _doubleDigits[10]; } @property(readonly) int *doubleDigits; @end @implementation MyClass - (int *)doubleDigits { return _doubleDigits; } @end </code></pre> http://stackoverflow.com/questions/464365/examples-of-cocoa-objective-c-and-distributed-objects/464540#464540 2 Answer by robottobor for Examples of Cocoa/Objective-C and Distributed Objects? robottobor 2009-01-21T09:15:14Z 2009-01-21T09:15:14Z <p>A <a href="http://www.google.com/search?q=distributed+objects+cocoa" rel="nofollow">google search</a> came up with plenty of hits. The <a href="http://developer.apple.com/DOCUMENTATION/Cocoa/Conceptual/DistrObjects/DistrObjects.html" rel="nofollow">Apple docs</a> are also good. <a href="http://www.mac-developer-network.com/podcasts/lnc/lnc020/" rel="nofollow">Late Night Cocoa</a> also has an episode on it.</p> http://stackoverflow.com/questions/464358/lost-precision-on-gmp-mpfadd-where-have-my-digits-gone/464475#464475 2 Answer by robottobor for Lost precision on GMP mpf_add. Where have my digits gone? robottobor 2009-01-21T08:48:38Z 2009-01-21T08:48:38Z <p>Looks like you are overflowing the mantissa at 64 bits. Try doing <code>mpf_get_prec(f_res)</code> to check it is the precision you want. If not call the <code>mpf_set_default_prec()</code> before you initialize any mpf vars (line 1 of main).</p> http://stackoverflow.com/questions/463181/c-c-fft-library-with-non-gpl-license/463357#463357 5 Answer by robottobor for c/c++ FFT library with non GPL license robottobor 2009-01-20T22:13:44Z 2009-01-20T22:19:55Z <p><a href="http://kissfft.sourceforge.net/" rel="nofollow">KissFFT</a></p> <p>Some benchmarks comparing to fftw:</p> <p><a href="http://www.fftw.org/speed/Pentium4-2.4GHz-gcc/" rel="nofollow">http://www.fftw.org/speed/Pentium4-2.4GHz-gcc/</a></p> http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/454295#454295 2 Answer by robottobor for What was your first computer game that got you interested in computers? robottobor 2009-01-17T23:28:43Z 2009-01-17T23:28:43Z <p>First proper computer games was Monkey Island 2: Le Chuck's Revenge</p> <p>That got me hooked on puzzle based adventure games. Too bad that genre is all but dead now.</p> http://stackoverflow.com/questions/452864/what-are-some-of-your-oldest-programming-books-that-you-still-use/452890#452890 6 Answer by robottobor for What are some of your oldest programming books that you still use? robottobor 2009-01-17T06:13:48Z 2009-01-17T06:13:48Z <p>"Advanced Programming in the Unix Environment (APUE) by W. Richard Stevens</p> http://stackoverflow.com/questions/450106/find-out-if-pipes-read-end-is-currently-blocking/450333#450333 0 Answer by robottobor for Find out if pipe's read end is currently blocking robottobor 2009-01-16T12:51:30Z 2009-01-16T12:51:30Z <p>You would typically just write to the pipe, or use select or poll. If you need a handshake mechanism you can do that out of band various ways or come up with and in-band protocol.</p> <p>I don't know if there is a built-in way to know if a reader on the other end is blocking. Why do you need to know this?</p> http://stackoverflow.com/questions/449964/ide-for-c-application-development-that-you-admire-most/450074#450074 2 Answer by robottobor for IDE for C application development that you admire most robottobor 2009-01-16T10:58:14Z 2009-01-16T10:58:14Z <p><a href="http://www.emacswiki.org/" rel="nofollow">Emacs</a></p> http://stackoverflow.com/questions/393662/does-using-lists-of-structs-make-sense-in-cocoa/449843#449843 1 Answer by robottobor for Does using lists of structs make sense in cocoa? robottobor 2009-01-16T08:30:42Z 2009-01-16T08:30:42Z <p>It is convenient and useful at times to use structs, especially when you have to drop down to C, such as when working with an existing library or doing system level stuff. Sometimes you just want a compact data structure without the overhead of a class. If you need many instances of such structs, it can make a real impact on performance and memory footprint.</p> <p>Another way to do an array of structs is to use the <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSPointerArray_Class/Introduction/Introduction.html#//apple_ref/occ/cl/NSPointerArray" rel="nofollow">NSPointerArray</a> class. It takes a bit more thought to set up but it works pretty much just like an NSArray after that and you don't have to bother with boxing/unboxing or wrapping in a class so accessing the data is more convenient, and it doesn't take up the extra memory of a class.</p> <pre><code>NSPointerFunctions *pf = [[NSPointerFunctions alloc] initWithOptions:NSPointerFunctionsMallocMemory | NSPointerFunctionsStructPersonality | NSPointerFunctionsCopyIn]; pf.sizeFunction = keventSizeFunction; self.pending = [[NSPointerArray alloc] initWithPointerFunctions:pf]; </code></pre> http://stackoverflow.com/questions/431910/is-possible-send-a-array-in-obj-c-for-a-variable-arguments-function/449721#449721 3 Answer by robottobor for Is possible send a array in Obj-c for a variable arguments function? robottobor 2009-01-16T07:03:09Z 2009-01-16T07:09:06Z <p>I wanted to do the same thing. I came up with the following, which works fine, given some constraints on the input variables.</p> <pre><code>NSArray* VarArgs(va_list ap) { id obj; NSMutableArray* array = [NSMutableArray array]; while ((obj = va_arg(ap, id))) { [array addObject:obj]; } return array; } #define VarArgs2(_last_) ({ \ va_list ap; \ va_start(ap, _last_); \ NSArray* __args = VarArgs(ap); \ va_end(ap); \ if (([__args count] == 1) &amp;&amp; ([[__args objectAtIndex:0] isKindOfClass:[NSArray class]])) { \ __args = [__args objectAtIndex:0]; \ } \ __args; }) </code></pre> <p>Using the above, I can call the following with either an NSArray or with varargs.</p> <pre><code>// '...' must be objc objects with nil sentinel OR an NSArray with nil sentinel - (void)someMethod:(NSString *)sql, ... { NSArray *args = VarArgs2(sql); // Do stuff with args } </code></pre> <p>One more tip is to use the following in the prototype to have the compiler check for the nil sentinel to avoid potential bad things. I got this out of the apple headers...</p> <pre><code>- (void)someMethod:(NSString *)sql, ... NS_REQUIRES_NIL_TERMINATION; </code></pre> http://stackoverflow.com/questions/447942/game-programming-on-objective-c-and-linux/447992#447992 2 Answer by robottobor for Game programming on Objective-C and linux robottobor 2009-01-15T18:57:20Z 2009-01-15T18:57:20Z <p><a href="http://www.libsdl.org/" rel="nofollow">SDL</a> is a C library which is popular for game programming.</p> <p>If you're looking for Foundation/AppKit stuff you can also look at <a href="http://www.cocotron.org/" rel="nofollow">Cocotron</a>. I've never tried it though.</p> http://stackoverflow.com/questions/445815/linking-libraries-in-xcode/445846#445846 0 Answer by robottobor for Linking Libraries in Xcode robottobor 2009-01-15T06:21:10Z 2009-01-15T06:21:10Z <p>Did you set these options for the target?</p> <p>Under "Linking->Other Linker Flags" add: "-L/path/to/library -lfftw3 -lm"</p> http://stackoverflow.com/questions/444964/is-it-possible-to-communicate-directly-over-usb/445157#445157 4 Answer by robottobor for Is it possible to communicate directly over USB? robottobor 2009-01-15T00:00:17Z 2009-01-15T00:00:17Z <p>The USB "Bus" is the wire. USB is NOT for interprocess or even peer-to-peer communications. It is solely for communication between a host and a peripheral over a cable where the host initiates any/all traffic. You cannot (normally) connect 2 hosts together, nor two devices together, or have any sort of symmetrical communication between a host/device.</p> <p>If you ONLY want inter-process communication between two process on the same machine, USB is NOT the way to go. It is completely non-sensical. If you want inter-process communication between two process on two different machines, you should use TCP/IP.</p> <p>If you are to developing a USB device and want to develop the host and device software before any prototype hardware is ready, and what you are REALLY after is some development or simulation environment where you can do that on the same machine, hook them up, and test it, that is an entirely different thing.</p> http://stackoverflow.com/questions/443945/how-do-i-remove-illegal-characters-from-an-nsstring/444391#444391 0 Answer by robottobor for How do I remove illegal characters from an NSString? robottobor 2009-01-14T19:44:10Z 2009-01-14T19:44:10Z <p>Try using the <a href="http://developer.apple.com/DOCUMENTATION/Cocoa/Reference/Foundation/Classes/NSCharacterSet_Class/Reference/Reference.html" rel="nofollow"> +[NSCharacterSet newlineCharacterSet] </a> method with NSScanner in your various scanning method calls.</p> http://stackoverflow.com/questions/220159/how-do-you-print-out-a-stack-trace-to-the-console-log-in-cocoa 4 How do you print out a stack trace to the console/log in Cocoa? robottobor 2008-10-20T22:24:21Z 2008-11-09T20:41:52Z <p>I'd like to log the call trace during certain points, like failed assertions, or uncaught exceptions.</p> <p>UPDATE: Thanks for the answers.. followup question... how do you do the same in a thread other than the main thread?</p> <p>Neither method properly displayed the stack in such a case. The output is nonsensical wrt to the current context. However if I break in the debugger on the same point, I see the correct trace for that thread. Unfortunately I cannot reproduce the problem in the debugger that I need a stack trace for.</p> http://stackoverflow.com/questions/186077/how-do-i-create-a-sparse-file-programmatically-in-c-on-mac-os-x 0 How do I create a sparse file programmatically, in C, on Mac OS X? robottobor 2008-10-09T06:03:32Z 2008-10-25T23:08:16Z <p>I'd like to create a sparse file such that all-zero blocks don't take up actual disk space until I write data to them. Is it possible?</p> http://stackoverflow.com/questions/235763/cancel-libcurl-easy-handle/235772#235772 4 Answer by robottobor for Cancel libcurl easy handle robottobor 2008-10-25T02:06:52Z 2008-10-25T02:06:52Z <p>You have to use the callback functions (write/read/progress) to perform the cancel. The other thread needs to set a flag and the callback function checks the flag and returns the proper value to cancel the operation.</p> http://stackoverflow.com/questions/214706/c-or-c-bigint-library-on-microsoft-windows/215590#215590 2 Answer by robottobor for C or C++ BigInt library on Microsoft Windows robottobor 2008-10-18T21:21:56Z 2008-10-18T21:21:56Z <p>OpenSSL <a href="http://www.openssl.org/docs/crypto/bn.html" rel="nofollow">BN</a> type. BSD-style license, pretty sure it's available for windows.</p> http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/196797#196797 7 Answer by robottobor for What are those little Xcode tips & tricks you wish you knew about 2 years ago? robottobor 2008-10-13T05:44:06Z 2008-10-13T05:44:06Z <p>Right click on a variable in your function and click edit all in scope. Been using it a lot since I found this out.</p> http://stackoverflow.com/questions/523482/core-data-vs-sqlite3/524301#524301 Comment by robottobor on Core Data vs sqlite3 robottobor 2009-02-07T20:57:42Z 2009-02-07T20:57:42Z Note fmdb is not an ORM, just a objc wrapper around sqlite3 C api http://stackoverflow.com/questions/482276/how-can-i-test-an-nsstring-for-being-nil Comment by robottobor on How can I test an NSString for being nil? robottobor 2009-01-27T04:02:27Z 2009-01-27T04:02:27Z that's how, can't know anything without the rest of your code http://stackoverflow.com/questions/444561/how-can-i-tell-if-a-file-or-folder-is-busy-e-g-the-finder-is-busy-copying-to-it Comment by robottobor on How can I tell if a file or folder is busy, e.g. the Finder is busy copying to it? robottobor 2009-01-15T00:06:26Z 2009-01-15T00:06:26Z Just curious how you know that it uses a private API? http://stackoverflow.com/questions/444558/objective-c-delegation-explained-to-a-java-programmer/444594#444594 Comment by robottobor on Objective-C Delegation Explained to a Java Programmer robottobor 2009-01-14T20:59:14Z 2009-01-14T20:59:14Z It is not first class. It is just a common design pattern in Cocoa. There is nothing special about it. http://stackoverflow.com/questions/441547/most-efficient-way-to-process-arguments-from-the-command-line-in-c/441558#441558 Comment by robottobor on Most efficient way to process arguments from the command-line in C++ robottobor 2009-01-14T01:20:18Z 2009-01-14T01:20:18Z or getopt_long if you've got it http://stackoverflow.com/questions/439187/problem-with-closing-sockets-program-halts/439258#439258 Comment by robottobor on Problem with Closing Sockets. Program Halts. robottobor 2009-01-13T22:45:51Z 2009-01-13T22:45:51Z Almost every program ignores SIGPIPE. You will know it happened when the write() or send() fails by properly checking the returned error codes.