User sebnow - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T15:44:03Z http://stackoverflow.com/feeds/user/64423 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/647360/cocoa-or-objective-c/647376#647376 6 Answer by sebnow for Cocoa or Objective-C? sebnow 2009-03-15T06:12:21Z 2009-03-15T06:12:21Z <p>As already pointed out, The NS* classes are actually Cocoa, not Objective-C. Objective-C is a language, while Cocoa is a framework (an implementation of OpenStep). This framework can be considered to be the "stdlib" equivalent of C++. The UI* classes are Cocoa Touch, another framework created for the iPhone.</p> <p>As to the last question, yes, Cocoa Touch is for the iPhone only. Cocoa is for Mac OS X development. However, as stated above, Cocoa is an OpenStep implementation. Alternatives to Cocoa exist, such as GNUstep and Cocotron. These alternative frameworks allow to use the same code on multiple platforms. The OpenStep frameworks are therefor not only for Mac OS X development, but can also be for Linux and Windows.</p> <p>Another thing to note is that other Objective-C runtimes are different. There is no single Objective-C specification. The <a href="http://users.telenet.be/stes/compiler.html" rel="nofollow">Portable Object Compiler</a> is yet another way of doing this. Since Apple is the dominant user of Objective-C, and it controls Cocoa, it's considered the de facto Objective-C implementation.</p> http://stackoverflow.com/questions/642974/how-do-i-share-code-via-git-with-others-having-the-android-repo/643106#643106 3 Answer by sebnow for How do I share code via git with others having the Android repo? sebnow 2009-03-13T14:59:07Z 2009-03-13T15:05:17Z <p>I'm not sure what Repo is or does, but it seems to me like you want to clone <code>git://android.git.kernel.org/platform/bionic.git</code>:</p> <pre><code>git clone --bare git://android.git.kernel.org/platform/bionic.git </code></pre> <p>This clone can then be cloned again:</p> <pre><code>git clone bionic.git bionic-jim cd bionic-jim #edit git commit -a -m "foo" git push </code></pre> <p>Changes will be pushed to <code>../bionic.git</code>. Someone then has to go into <code>bionic.git</code> and push to some upstream repository.</p> http://stackoverflow.com/questions/638834/subversion-stage-files-to-commit-explicitly/638931#638931 4 Answer by sebnow for Subversion: stage files to commit explicitly? sebnow 2009-03-12T14:41:33Z 2009-03-12T14:41:33Z <p>An alternative method would be to use the git-svn bridge at work, unless there are reasons as to why you can't. No one but you will have to know that you're actually using Git. This way you get all the benefits of Git while actually using Subversion.</p> http://stackoverflow.com/questions/623054/for-my-app-how-many-threads-would-be-optimal/623098#623098 -1 Answer by sebnow for For my app, how many threads would be optimal? sebnow 2009-03-08T05:16:08Z 2009-03-09T15:32:43Z <p>Threading isn't necessary in this case. Your program is <strong>I/O bound</strong> rather than CPU bound. The networking part would probably be <strong>better done using select()</strong> on the sockets. This reduces the overhead of creating and maintaining threads. I haven't used <a href="http://twistedmatrix.com" rel="nofollow">Twisted</a>, but I heard it has really good support for <strong>asynchronous networking</strong>. This would allow you you to specify the URLs you wish to download and register a callback for each. When each is downloaded you the callback will be called, and the page can be processed. In order to allow multiple sites to be downloaded, without waiting for each to be processed, a second "worker" thread can be created with a queue. The callback would add the site's contents to the queue. The "worker" thread would do the actual processing.</p> <p>As already stated in some answers, the optimal amount of simultaneous downloads depends on your bandwidth.</p> <p>I'd use <strong>one or two threads</strong> - one for the actual crawling and the other (with a queue) for processing.</p> http://stackoverflow.com/questions/623040/c-development-on-linux-where-do-i-start/623118#623118 6 Answer by sebnow for C++ development on linux - where do I start? sebnow 2009-03-08T05:31:16Z 2009-03-08T08:02:36Z <blockquote> <p>What are recommended guides on creating a make file, how do I compile from this makefile (do I call g++ myself, do I use 'make'?)</p> </blockquote> <p>I learned how to write makefiles by reading the <a href="http://www.gnu.org/software/make/manual/make.html#toc%5FIntroduction" rel="nofollow">GNU Make manual</a>.</p> <blockquote> <p>Looking at other linux software, they almost always seem to have a 'configure' file. What exactly does it do? Does it only check if the required libraries are installed or does it more than just checking requirements?</p> </blockquote> <p>The configure file is usually associated with <a href="http://en.wikipedia.org/wiki/GNU%5Fbuild%5Fsystem" rel="nofollow">autotools</a>. As the name of the script suggests, it allows you to configure the software. From the perspective of the developer this mostly means setting macros, which determine variables, which libraries are available, and such. It also tests for the availability of libraries. In the end the script generates a GNU Makefile, which you can then use to actually build and install the software.</p> <p>The GNU build system is only one of many. I don't particularly like the GNU build system as it tends to be slower than others, and generates an ugly Makefile. Some of the more popular ones are <a href="http://www.cmake.org/" rel="nofollow">CMake</a>, Jam (<a href="http://www.boost.org/doc/tools/build/index.html" rel="nofollow">Boost Jam</a> might be of interest for C++) and <a href="http://code.google.com/p/waf/" rel="nofollow">waf</a>. Some build systems simply generate Makefiles, while others provide a completely new build system. For simple projects writing a Makefile by hand would be easy, but "dependency checking" (for libraries, etc) would also have to be done manually.</p> <p>Edit: <a href="http://stackoverflow.com/questions/623040/c-development-on-linux-where-do-i-start/623077#623077">Brian Gianforcaro</a> also pointed this out.</p> http://stackoverflow.com/questions/621251/why-isnt-git-used-for-package-management/621303#621303 1 Answer by sebnow for Why isn't Git used for package management? sebnow 2009-03-07T04:23:17Z 2009-03-07T04:23:17Z <p>If you mean using a DVCS for tracking the build scripts (port files, ebuilds, PKGBUILDs, rpm spec files, etc) then they are used. Fedora is probably the most popular distributions which partially uses Git. In this use case a DVCS isn't all that beneficial. You are generally online when updating packages (downloading new sources, etc), so the whole "offline committing" advantage doesn't really apply. In the end you have to use a central repository for others to contribute and have some sort of distribution model, so the distributed part isn't that beneficial either (you would rarely pull changes to your package from someone else). In general there aren't enough benefits of DVCSs for distributions to switch from traditional VCSs.</p> <p>Edit: Archlinux was choosing between Subversion and Git not too long ago. They decided to go with Subversion, mostly because Git not provide any advantages, but also did not support partial checkouts. <a href="http://git.or.cz/gitwiki/SoC2009Ideas#head-2cdf2f7bd7667427d1e20c714ca33bd92aaa4905" rel="nofollow">Support for this is coming though</a>.</p> <p>If you mean using the DVCS as a package manager itself, then I believe this has been done with at least one distribution. From what I remember the whole system is under version control. I do not know any details though.</p> http://stackoverflow.com/questions/571797/how-great-is-xmonad-if-i-still-want-my-old-graphical-ide/572259#572259 2 Answer by sebnow for How great is xmonad if I still want my "old" graphical IDE? sebnow 2009-02-21T04:16:46Z 2009-02-21T04:16:46Z <p>KDE is a desktop environment - a collection of well integrated applications. XMonad is a window manager, which only replaces KWin from KDE, so you can still use KDE while using XMonad (and other window managers).</p> <p>A tiling window manager is usually used for productivity reasons. Vi and Emacs are used for the same reasons. This is probably why you commonly see people using a lot of terminals and vi/emacs in screenshots. There's no reason why you wouldn't be able to use graphical applications with a tiling window manager. However there are various quirks with some applications (GIMP comes to mind), where dialog boxes and various windows don't play well with the tiling paradigm, because the developers didn't think of it. They basically assume that the window will float. There are ways to fix this, by setting specific windows to be floating, but it may take some time to configure this, and it may be annoying at first.</p> <p>Tiling window managers tend to have various layouts. As far as I know all tiling window managers have a "fullscreen" layout. This would probably be a nice layout for an IDE, and possibly even other graphical applications (I use it for web browsing). Layouts can be set per-workspace in XMonad, so you could have an "IDE" workspace and have specific settings for that environment.</p> <p>I suggest you <strong>just try it</strong>, there's no harm in it, and you'll be able to judge for yourself.</p> http://stackoverflow.com/questions/556603/i-have-rtrim-how-to-make-ltrim-with-regexp/556641#556641 0 Answer by sebnow for I have RTRIM; how to make LTRIM with regexp sebnow 2009-02-17T12:49:33Z 2009-02-17T12:49:33Z <p>Wow, seriously? You're using regular expressions to remove a constant sequence of characters from the ends of a string? Really? I don't know Actionscript/Flex, but this isn't the way to go. After a quick google I found a <a href="http://www.twisty.com/bandwagon/archives/2007/07/23/162642" rel="nofollow">solution</a> which may or may not be more efficient.</p> http://stackoverflow.com/questions/556566/how-to-achieve-the-below-with-git/556609#556609 8 Answer by sebnow for How to achieve the below with Git ? sebnow 2009-02-17T12:37:44Z 2009-02-17T12:37:44Z <p>At the moment, the only way I can think of is by using <a href="http://git.or.cz/gitwiki/GitSubmoduleTutorial" rel="nofollow">submodules</a>. The two modules (assemblebot, vpl) would each be a submodule, and the rest of the tree would be in the super project.</p> <p>This essentially means that the two modules would have to be in separate repositories, and then in the master repository you <code>git submodule init git://foo.com/assemblebot.git</code>.</p> <p>I'm not sure that this is worth the effort overall. It's not one of git's strong points (in fact it's the only thing I think needs improvement).</p> <p>Better support for partial checkouts is in the works (<a href="http://git.or.cz/gitwiki/SoC2009Ideas#head-2cdf2f7bd7667427d1e20c714ca33bd92aaa4905" rel="nofollow">narrow</a> and <a href="http://kerneltrap.org/index.php?q=mailarchive/git/2008/7/23/2646664/thread" rel="nofollow">sparse</a> clones).</p> <p>Edit: Considering that vpl and assemblebot depend on include and source, perhaps it's better to have include and source as submodules of the vpl and assemblebot repositories. However, these aren't separate projects, and what git does is track project content. I don't see a reason why these modules should actually be separated. Maybe just tell the developers not to touch the other's code?</p> http://stackoverflow.com/questions/552025/is-objective-c-2-0-exception-handling-supported-on-non-mac-os-x-platforms/552394#552394 1 Answer by sebnow for Is Objective-C 2.0 exception handling supported on non Mac OS X platforms? sebnow 2009-02-16T06:14:26Z 2009-02-16T06:14:26Z <p>Apple uses a variant/fork of the standard GCC, in which Objective-C 2.0 support is built-in. As far as I know, none of the Objective-C 2.0 features exist in the standard GCC.</p> <p>I'm not exactly sure about exception handling, but the other features you listed, unfortunately, are not available on other platforms.</p> <p>P.S. GNUstep (and Cocoa) is an implementation of OpenStep, which is a specification.</p> http://stackoverflow.com/questions/551069/testing-pointers-for-validity-c-c/551126#551126 0 Answer by sebnow for Testing pointers for validity (C/C++) sebnow 2009-02-15T16:12:49Z 2009-02-15T16:12:49Z <p>I have seen various libraries use some method to check for unreferenced memory and such. I believe they simply "override" the memory allocation and deallocation methods (malloc/free), which has some logic that keeps track of the pointers. I suppose this is overkill for your use case, but it would be one way to do it.</p> http://stackoverflow.com/questions/549962/instance-variable-method-argument-naming-in-objective-c/550410#550410 0 Answer by sebnow for instance variable/ method argument naming in Objective C sebnow 2009-02-15T06:19:44Z 2009-02-15T06:25:47Z <p>The sample code produced by Apple usually uses a "_" prefix. I think I also saw some using <code>mFoo</code> or <code>m_foo</code>. Some don't bother with prefixes at all and just use a normal name, however that gets confusing later on. In general when defining method parameters, the naming convention is to use an "a", "an", "the" or "new" prefix. For instance:</p> <pre><code>@interface Foo : NSObject { id _bar; } @property (nonatomic, retain) id bar; - (id) initWithBar:(id)aBar; @end @implementation Foo @synthesize bar = _bar; - (id) initWithBar:(id)aBar { self = [super init]; if(self != nil) { _bar = aBar; } return self; } @end </code></pre> <p>I find that this convention works quite well. I used to not bother with the prefix but that made things confusing sometimes. Using a prefix clearly indicates that it's an instance variable. The <code>@synthesize bar = _bar</code> convention is used by Apple in their (iPhone) sample code.</p> <p>The instance variable would not typically be used anyway, so if you find the "_" prefix annoying it doesn't matter, because you'd use <code>[self bar]</code> (or <code>self.bar</code> if you're into that kind of thing) anyway.</p> http://stackoverflow.com/questions/549248/do-programmers-usually-possess-the-wake-up-late-go-to-bed-late-personality-typ/550402#550402 0 Answer by sebnow for Do programmers usually possess the "wake up late, go to bed late" personality type? sebnow 2009-02-15T06:07:29Z 2009-02-15T06:07:29Z <p>If I'm into a project I tend to just hack at it and when I get out of "the zone" (hunger strikes :P) it's usually quite late. I go to bed, and wake up later than the previous day. Each "cycle" I go to sleep later and later. When it gets bad, I just go to bed early and wake up in the morning.</p> <p>Usually I don't have the time to spend that much on a project though, so I just work on it for a few hours at night.</p> <p>Most of the night-owls probably have such sleeping patterns because of "the zone", you just get really productive and motivated and you can't stop. It could also be because it's quieter at night.</p> http://stackoverflow.com/questions/536779/git-or-svn-for-rails-app/536802#536802 10 Answer by sebnow for Git or SVN for Rails app? sebnow 2009-02-11T13:39:50Z 2009-02-13T08:22:21Z <p>I'd say go for Git. Mostly because I'm biased, but also because you don't need to setup any sort of server with Git, you just <code>git init</code> and go. <a href="http://whygitisbetterthanx.com/#svn" rel="nofollow">Git is generally just better</a>, it provides more flexibility and power than SVN does.</p> <p>Edit: This is a bit of a dupe of <a href="http://stackoverflow.com/questions/871/why-is-git-better-than-subversion">Why is Git better than Subversion</a>, or at least relevant.</p> <p>Edit2: Git has 3 primary methods of communication, the Git protocol, SSH and HTTP. Github uses SSH for "push access", e.g., git@github.com/user/repo.git.</p> http://stackoverflow.com/questions/535564/is-there-any-open-source-binary-differ/535588#535588 0 Answer by sebnow for Is there any open source binary differ? sebnow 2009-02-11T06:02:04Z 2009-02-11T06:02:04Z <p>The standard GNU diff shows if two files differ. You might want to look into xdelta for tracking changes (probably what SCM tools use).</p> <p>To see changes in the files you could hexdump both files and just diff them, I suppose.</p> http://stackoverflow.com/questions/535334/html-css-autonumber-headings/535398#535398 0 Answer by sebnow for HTML / CSS autonumber headings? sebnow 2009-02-11T04:10:23Z 2009-02-11T04:10:23Z <p>Lists do it, why not other elements? <a href="http://www.w3.org/TR/CSS2/generate.html#scope" rel="nofollow">http://www.w3.org/TR/CSS2/generate.html#scope</a></p> http://stackoverflow.com/questions/535336/find-out-subdomain-using-regular-expression-in-php/535386#535386 0 Answer by sebnow for Find out subdomain using Regular Expression in PHP sebnow 2009-02-11T04:05:19Z 2009-02-11T04:05:19Z <p>The following regex would capture any string before a full stop (the subdomain) and the rest of the domain:</p> <pre><code>^([^.]+)\..*$ </code></pre> <p>I don't see the need for regex to do this though. It would be much easier to split by the full stop and get the first element:</p> <pre><code>list($subdomain, $rest) = explode('.', $_SERVER['SERVER_NAME'], 2); </code></pre> http://stackoverflow.com/questions/535344/how-to-prevent-this-type-of-error/535362#535362 1 Answer by sebnow for how to prevent this type of error sebnow 2009-02-11T03:57:34Z 2009-02-11T03:57:34Z <p>I think some of your snippet was eaten up, otherwise it doesn't do anything. Considering that this is dynamic code, the only tools that would be capable of finding an error like this would be some validator which is javascript-aware.</p> <p>A way to avoid this error would be to set the src attribute using jQuery:</p> <pre><code>var img = $("&lt;img&gt;"); img.src = "example.jpg"; $("a").append(img); </code></pre> <p>This way your text editor would probably pick up the mismatch, and if not you'd get an error when the JS is evaluated.</p> http://stackoverflow.com/questions/530741/whats-the-difference-between-a-procedural-program-and-an-object-oriented-program/531115#531115 2 Answer by sebnow for What's the difference between a procedural program and an object oriented program? sebnow 2009-02-10T05:07:45Z 2009-02-10T05:07:45Z <p>It depends how you define OOP. In terms of Java-like OOP where you call methods on objects, procedural programming is pretty much the same. As far as I can tell you can emulate all OOP principles (encapsulation, abstraction, polymorphism, inheritance) in a procedural language like C. Proof of this is <a href="http://library.gnome.org/devel/gobject" rel="nofollow">GObject</a>, to some extend Objective-C, and many other OOP language implementations using C, like cPython. This is done by using structures and operating on those structures using functions:</p> <pre><code>typedef struct { Object *isa; String *name; Date *birthday; } Person; Person *Person_new(); String *Person_name(Person *self); void Person_setName(Person *self, String *newName); // ... </code></pre> <p>The interface is very OOP like. It doesn't really allow for polymorphism, but it's also possible. It is very similar to a Python interface, except that the attributes are separate from the "methods":</p> <pre><code>class Person(object): def __init__(self): self._name = "" self._age = datetime.datetime.now() @property def name(self): return self._name @property def age(self): return self._age </code></pre> <p>I chose Python for the example because "self" is explicit, as in the C example. Many OOP languages, like Java, abstract this.</p> <p>There are also the Smalltalk-like OOP where messages are sent to objects, rather than calling methods on objects. The difference is subtle at first glance, but it provides a lot of power and flexibility. This can also be implemented in procedural-languages, as proven by Objective-C.</p> <p>Object-oriented programming is not necessarily a type of language, but rather a paradigm. Object-oriented languages such as Java, Python, Ruby, etc, provide syntactic sugar to easily manipulate objects, and this is the main difference between "procedural languages" and "object-oriented languages".</p> <p>Indeed, a library, or rather a set of functions operating on a structure, is the same as an object in C++. In fact C++ is implemented in just that way.</p> http://stackoverflow.com/questions/511843/what-is-the-best-ajax-library-for-django/531069#531069 0 Answer by sebnow for What is the best AJAX library for Django? sebnow 2009-02-10T04:37:33Z 2009-02-10T04:37:33Z <p>Django doesn't really tie in with the client side. Use whatever you're comfortable with. Django plays well with everything in that area, because you just write it in the templates.</p> http://stackoverflow.com/questions/530608/forking-a-foss-projects-git-repository/531062#531062 1 Answer by sebnow for Forking a FOSS-project's Git repository sebnow 2009-02-10T04:30:42Z 2009-02-10T04:30:42Z <p>If you're actually forking (starting off where the original project left off), definitely clone the original repository and just continue committing. This will not only allow you to merge changes from the original repository, but also let the developers of the original project merge changes back from your fork. If both projects live on <a href="http://www.github.com/" rel="nofollow">Github</a> this collaboration would be even easier (pull requests).</p> <p>This should actually be quite natural, since you should be making changes in your repository and either sending patches or pull requests. Forking is the same, except it's labelled as a separate project.</p> http://stackoverflow.com/questions/871/why-is-git-better-than-subversion/531042#531042 16 Answer by sebnow for Why is git better than Subversion? sebnow 2009-02-10T04:18:46Z 2009-02-10T04:18:46Z <p><a href="http://whygitisbetterthanx.com/#svn" rel="nofollow">http://whygitisbetterthanx.com/#svn</a> - The site outlines the various pros and cons of git vs another SCM.</p> <p>Briefly:</p> <ul> <li>Git tracks content rather than files</li> <li>Branches are lightweight and merging is <em>easy</em>, and I mean <em>really easy</em>.</li> <li>It's distributed, basically every repository is a branch. It's much easier to develop concurrently and collaboratively than with subversion, in my opinion. It also makes offline development possible.</li> <li>It doesn't impose any workflow, as seen on <a href="http://whygitisbetterthanx.com/#svn" rel="nofollow">the above linked website</a>, there are many workflows possible with Git. A Subversion-style workflow is easily mimicked.</li> <li>Git repositories are much smaller in file size than Subversion repositories. There's only one ".git" directory, as opposed to dozens of ".SVN" repositories.</li> <li>The staging area is awesome, it allows you to see the changes you will commit, commit partial changes and do various other stuff.</li> <li>Stashing is invaluable when you do "chaotic" development, or simply want to fix a bug while you're still working on something else (on a different branch).</li> <li>You can rewrite history, which is great for preparing patch sets and fixing your mistakes (<em>before</em> you publish the commits)</li> <li>… and a <em>lot</em> more.</li> </ul> <p>There are some disadvantages:</p> <ul> <li>There aren't many good GUIs for it yet. It's new and subversion has been around for a lot longer, so this is natural and there are a few interfaces in development.</li> <li>Partial checkouts/clones of repositories are not possible at the moment (I read that it's in development). However, there is submodule support.</li> <li>It might be harder to learn, even though I did not find this to be the case (about a year ago). Git has recently improved it's interface and is quite user friendly.</li> </ul> <p>In the most simplistic usage, Subversion and Git are pretty much the same. There isn't much difference between:</p> <pre><code>svn checkout svn://foo.com/bar bar cd bar # edit svn commit -m "foo" </code></pre> <p>and</p> <pre><code>git clone git@github.com:foo/bar.git cd bar # edit git commit -a -m "foo" git push </code></pre> <p>Where Git really shines is branching and working with other people.</p> http://stackoverflow.com/questions/659752/programming-challenge-can-you-code-a-hello-world-program-as-a-palindrome/660635#660635 Comment by sebnow on Programming challenge: can you code a hello world program as a Palindrome? sebnow 2009-03-24T16:17:01Z 2009-03-24T16:17:01Z Erm, if you go with comments: print('Hello, World') # )'dlroW ,olleH'(tnirp http://stackoverflow.com/questions/78991/why-is-github-more-popular-than-gitorious/79184#79184 Comment by sebnow on Why is Github more popular than Gitorious? sebnow 2009-03-16T03:14:45Z 2009-03-16T03:14:45Z Is the server or ruby bindings open source? I'm assuming not. http://stackoverflow.com/questions/647360/cocoa-or-objective-c/647376#647376 Comment by sebnow on Cocoa or Objective-C? sebnow 2009-03-16T03:09:43Z 2009-03-16T03:09:43Z I'm not sure what you mean. Objective-C is a superset of C, and Cocoa/Cocoa Touch are frameworks on top of Objective-C. I suppose it's C &gt; Objective-C &gt; Cocoa/Cocoa Touch. http://stackoverflow.com/questions/647360/cocoa-or-objective-c/647366#647366 Comment by sebnow on Cocoa or Objective-C? sebnow 2009-03-15T06:16:06Z 2009-03-15T06:16:06Z That seems susceptible to breakage, but I stand corrected ;). http://stackoverflow.com/questions/647360/cocoa-or-objective-c/647366#647366 Comment by sebnow on Cocoa or Objective-C? sebnow 2009-03-15T06:05:43Z 2009-03-15T06:05:43Z Actually Objective-C doesn't define Object. It's defined by the framework that you use. I'm not sure if any of the runtime libraries have an Object defined. Cocoa's Object class <i>is</i> NSObject. http://stackoverflow.com/questions/642974/how-do-i-share-code-via-git-with-others-having-the-android-repo/643106#643106 Comment by sebnow on How do I share code via git with others having the Android repo? sebnow 2009-03-14T04:22:44Z 2009-03-14T04:22:44Z Yes, the first clone is your own remote, then anyone can clone from that (through SSH or some other means) http://stackoverflow.com/questions/623054/for-my-app-how-many-threads-would-be-optimal/623098#623098 Comment by sebnow on For my app, how many threads would be optimal? sebnow 2009-03-09T15:22:08Z 2009-03-09T15:22:08Z As already stated, I have not actually used Twisted, however this document describes how to use it for asynchronous networking: <a href="http://twistedmatrix.com/projects/core/documentation/howto/async.html.The" rel="nofollow">twistedmatrix.com/projects/core/&hellip;</a> example shows that OP's application could be done with one thread, as I stated. http://stackoverflow.com/questions/623054/for-my-app-how-many-threads-would-be-optimal/623098#623098 Comment by sebnow on For my app, how many threads would be optimal? sebnow 2009-03-09T15:13:30Z 2009-03-09T15:13:30Z Depending on the amount of simultaneous downloads, perhaps it would. However, using threads would make little difference. Downloading using select() or async I/O is effectively the same as using threads (without the overhead). That is the point I'm making. The queue would not necessarily be empty. http://stackoverflow.com/questions/616556/how-do-you-squash-commits-into-one-patch-with-git-format-patch/616766#616766 Comment by sebnow on How do you squash commits into one patch with git format-patch? sebnow 2009-03-09T05:23:54Z 2009-03-09T05:23:54Z This is what I use when I want to keep the history locally (in case I need to edit the patch). Otherwise I just use rebase -i and squash the commits. http://stackoverflow.com/questions/624870/regex-question-get-filename-without-extension-in-one-shotin/624877#624877 Comment by sebnow on Regex Question: Get Filename Without Extension in One Shot?In sebnow 2009-03-09T03:54:16Z 2009-03-09T03:54:16Z To have only one capture: (.+?)(?:\.[^.]*$|$) http://stackoverflow.com/questions/623054/for-my-app-how-many-threads-would-be-optimal/623098#623098 Comment by sebnow on For my app, how many threads would be optimal? sebnow 2009-03-09T03:04:33Z 2009-03-09T03:04:33Z Threads would obviously speed it up. I stated that threads are not <i>necessary</i> in this particular case, since asynchronous I/O, using select(), and other methods would achieve a similar thing. At the end I did state that I would use a second thread for processing - utilising multiple cores. http://stackoverflow.com/questions/623054/for-my-app-how-many-threads-would-be-optimal/623070#623070 Comment by sebnow on For my app, how many threads would be optimal? sebnow 2009-03-08T05:18:44Z 2009-03-08T05:18:44Z Considering networking is an I/O operation (downloading is input), the application is indeed I/O bound. http://stackoverflow.com/questions/621312/looking-for-a-simpler-objective-c-solution/621659#621659 Comment by sebnow on Looking for a simpler Objective-C solution sebnow 2009-03-07T11:16:06Z 2009-03-07T11:16:06Z In my opinion this just makes it less readable. http://stackoverflow.com/questions/621312/looking-for-a-simpler-objective-c-solution/621460#621460 Comment by sebnow on Looking for a simpler Objective-C solution sebnow 2009-03-07T11:15:27Z 2009-03-07T11:15:27Z Uhh there's only one &quot;implementation&quot; of Cocoa - Apple's. Cocoa is an implementation of OpenStep. I assume that's what you meant. http://stackoverflow.com/questions/621312/looking-for-a-simpler-objective-c-solution/621459#621459 Comment by sebnow on Looking for a simpler Objective-C solution sebnow 2009-03-07T11:14:07Z 2009-03-07T11:14:07Z Alternatively the return statement should be changed to &quot;return [dict autorelease]&quot;, which is effectively identical, just more verbose.