User - Stack Overflow most recent 30 from stackoverflow.com 2010-03-18T09:54:47Z http://stackoverflow.com/feeds/user/57368 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1386343/how-to-show-latex-code-in-a-latex-document/1386357#1386357 5 Answer by user57368 for How to show LaTeX-code in a LaTeX document? user57368 http://stackoverflow.com/users/57368 2009-09-06T18:36:10Z 2009-09-06T20:07:10Z <p>There' a <code>verbatim</code> package that you can include with <code>\usepackage{verbatim}</code> and access using <code>\verbatiminput{</code>filename<code>}</code>.</p> http://stackoverflow.com/questions/1376286/finding-area-of-straight-line-with-graph-math-question-but-needed-for-flot/1376421#1376421 -1 Answer by user57368 for Finding area of straight line with graph (Math question but needed for flot) user57368 http://stackoverflow.com/users/57368 2009-09-03T23:04:12Z 2009-09-03T23:04:12Z <p>This would be a lot easier for you if you would accept that there is well-established terminology for the concepts that you are having trouble expressing concisely or accurately, and that these mathematical terms have been around far longer than you. Since you've clearly gone through most of the trouble of understanding the concepts, you might as well break down and start calling them by their proper names.</p> <p>That said:</p> <p>There are 2 obvious ways to graph bandwidth, and two ways you might be getting the bandwidth data from the server. First, there's the <em>cumulative</em> usage function, which for any time is simply the total amount of data transferred since the start of the measurement. If you plot this function, you get a graph that never decreases (since you can't un-download something). The units of the values of this function will be bytes or kB or something like that. </p> <p>What users are typically interested is in the <em>instantaneous</em> usage function, which is an indicator of how much bandwidth you are using <em>right now</em>. This is what users typically want to see. In mathematical terms, this is the <em>derivative</em> of the cumulative function. This derivative can take on any value from 0 (you aren't downloading) to the rated speed of your network link (indicating that you're pushing as much data as possible through your connection). The units of this function are bytes per second, or something related like Mbps (megabits per second). </p> <p>You can approximate the instantaneous bandwidth with the average data usage over the past few seconds. This is computed as</p> <pre><code> (number of bytes transferred) ----------------------------------------------------------------- (number of seconds that elapsed while transferring those bytes) </code></pre> <p>Generally speaking, the smaller the time interval, the more accurate the approximation. For simplicity's sake, you usually want to compute this as "number of bytes transferred since last report" divided by "number of seconds since last report". </p> <p>As an example, if the server is giving you a report every 4 minutes of "total number of bytes transferred today", then it is giving you the cumulative function and you need to approximate the derivative. The instantaneous bandwidth usage rate you can report to users is:</p> <pre><code>(total transferred as of now) - (total as of 4 minutes ago) bytes ----------------------------------------------------------- 4*60 seconds </code></pre> <p>If the server is giving you reports of the form "number of bytes transferred since last report", then you can directly report this to users and plot that data relative to time. On the other hand, if the user (or you) is concerned about a quota on total bytes transferred per day, then you will need to transform the (approximately) instantaneous data you have into the cumulative data. This process, known as computing the <em>integral</em>, is the opposite of computing the derivative, and is in some ways conceptually simpler. If you've kept track of each of the reports from the server and the timestamp, then for each time, the value you plot is the total of all the reports that came in before that time. If you're doing this in realtime, then every time you get a new report, the graph jumps up by the amount in that report. </p> http://stackoverflow.com/questions/1373369/what-is-faster-prefered-memset-or-for-loop-to-zero-out-an-array-of-doubles/1373959#1373959 2 Answer by user57368 for What is faster/prefered memset or for loop to zero out an array of doubles user57368 http://stackoverflow.com/users/57368 2009-09-03T15:00:35Z 2009-09-03T15:00:35Z <pre><code>calloc(length, sizeof(double)) </code></pre> <p>According to IEEE-754, the bit representation of a positive zero is all zero bits, and there's nothing wrong with requiring IEEE-754 compliance. (If you need to zero out the array to reuse it, then pick one of the above solutions).</p> http://stackoverflow.com/questions/1368773/is-mac-experience-important-for-a-future-developer/1368838#1368838 2 Answer by user57368 for Is Mac experience important for a future developer? user57368 http://stackoverflow.com/users/57368 2009-09-02T16:42:15Z 2009-09-02T16:42:15Z <p>While having Mac development won't directly matter unless you are going to be getting paid to do it, the Objective-C language and Cocoa frameworks are sufficiently different from what's taught in school these days that you should learn the basics of how they work for the sake of broadening your horizons. If the only object-oriented languages you've used are C++ and Java, then the idea of a message-passing metaphor may not even seem to be OO to you. Similarly, the Cocoa framework uses a lot of patterns that an experienced developer ought to be able to understand and use when appropriate. (Things like explicit reference counting, which has confused countless Windows programmers trying to get rich quick through the iPhone App store.)</p> http://stackoverflow.com/questions/1365880/disadvantage-of-synchronized-methods-in-java/1365911#1365911 4 Answer by user57368 for Disadvantage of synchronized methods in Java user57368 http://stackoverflow.com/users/57368 2009-09-02T05:04:06Z 2009-09-02T05:04:06Z <p>If the method takes on the order of minutes to execute, then it may not need to be synchronized at such a coarse level, and it may be possible to use a more fine-grained system, perhaps by locking only the portion of a data structure that the method is operating on at the moment. Certainly, you should try to make sure that your critical section isn't really 2 minutes long - any method that takes that long to execute (regardless of the presence of other threads or locks) should be carefully studied as a candidate for parallelization. For a computation this time-consuming, you could be acquiring and releasing hundreds of locks and still have it be negligible. (Or, to put it another way, even if you need to introduce a lot of locks to parallelize this code, the overhead probably won't be significant.)</p> http://stackoverflow.com/questions/1350324/connecting-two-planes-in-3d/1350374#1350374 2 Answer by user57368 for Connecting two planes in 3d user57368 http://stackoverflow.com/users/57368 2009-08-29T03:41:10Z 2009-08-29T03:41:10Z <p>After ensuring that your rectangles are not intersecting and are not orthogonal, try minimizing the total distance between the paired points. There are only 24 ways to pair the vertices, so a clever solution is probably not needed. The other obvious way to approach this would be to ensure that the 4 new faces formed by connecting the vertices do not intersect, ie. you've formed a topologically simple solid.</p> http://stackoverflow.com/questions/1320161/is-string-formation-optimized-by-the-compiler/1320193#1320193 4 Answer by user57368 for Is string formation optimized by the compiler? user57368 http://stackoverflow.com/users/57368 2009-08-24T02:17:57Z 2009-08-24T02:17:57Z <p>NSString is defined as an immutable type, so whenever the compiler can optimize things by combining identical strings, it should. As your code demonstrates, gcc clearly does perform this optimization for simple cases. </p> http://stackoverflow.com/questions/1319906/how-to-organize-unit-testing-of-a-library-project-in-xcode/1319912#1319912 2 Answer by user57368 for How to organize unit testing of a library project in Xcode? user57368 http://stackoverflow.com/users/57368 2009-08-23T23:55:31Z 2009-08-24T00:19:41Z <p>Edit: See <a href="http://developer.apple.com/mac/articles/tools/unittestingwithxcode3.html" rel="nofollow">Automated Unit Testing with Xcode 3 and Objective-C</a> (a more recent version of the article I originally linked to, as pointed to in a comment below). Also see <a href="http://stackoverflow.com/questions/33207/what-is-the-best-way-to-unit-test-objective-c-code">What is the best way to unit test Objective-C code?</a> While you clearly aren't using Obj-C yet, the basics of setting up new targets will be the same for C code, and the OCUnit specific stuff is very representative of how unit testing works in an IDE.</p> http://stackoverflow.com/questions/1024323/starting-point-for-learning-cad-cae-file-formats/1296127#1296127 0 Answer by user57368 for Starting point for learning CAD/CAE file formats? user57368 http://stackoverflow.com/users/57368 2009-08-18T19:56:32Z 2009-08-18T19:56:32Z <p>I regularly work with a piece of commercial software for electromagnetic simulations that uses the ACIS modeling kernel and components from <a href="http://www.simmetrix.com/" rel="nofollow">Simmetrix</a>. While I can't personally attest to the ease of using those libraries, they do seem to work as advertised and could save you a lot of work. They may not be available on suitable terms for academic use, but they do seem to be designed to do exactly what you want.</p> http://stackoverflow.com/questions/1250253/optimizing-bit-array-accesses/1250458#1250458 0 Answer by user57368 for Optimizing bit array accesses user57368 http://stackoverflow.com/users/57368 2009-08-09T03:00:54Z 2009-08-09T03:00:54Z <p>If performance matters enough that you have to worry about accessing individual bits, then you should probably parallelize your code. Since you describe this as image processing, odds are that the state of bit i won't affect how you handle bits i+1 through i+6, so you can probably rewrite your code to operate on bytes and words at a time. Just being able to increment your counter 8 to 64 times less often should provide a measurable performance increase, and will also make it easier for the compiler to optimize your code.</p> http://stackoverflow.com/questions/1157517/is-libusb-the-preferred-method-on-mac-os-x-to-access-usb-device/1157584#1157584 5 Answer by user57368 for Is libusb the preferred method on Mac OS X to access USB device? user57368 http://stackoverflow.com/users/57368 2009-07-21T06:37:45Z 2009-07-24T05:30:52Z <p>On OS X, drivers are written using the IOKit and a subset of C++. More specifically, for USB devices, you probably want to start with Apple's <a href="http://developer.apple.com/documentation/DeviceDrivers/Conceptual/USBBook/" rel="nofollow">USB Device Interface Guide</a> and browse the USB parts of Hardware and Drivers section of the Mac OS X Core Library documentation set in XCode. (<strong>Edit:</strong> The latter resource is also <a href="http://developer.apple.com/referencelibrary/HardwareDrivers/idxUSB-date.html" rel="nofollow">available online</a>.)</p> http://stackoverflow.com/questions/1129032/platform-independent-math-library/1129069#1129069 1 Answer by user57368 for Platform independent math library user57368 http://stackoverflow.com/users/57368 2009-07-15T02:15:48Z 2009-07-15T02:15:48Z <p>You mention using SSE. If you're planning on only running on x86 chips, then what exactly are the inconsistencies you're expecting?</p> <p>As for MPFR, don't worry - test it! By the way, if it's good enough to be included in GCC, it's probably good enough for you. </p> http://stackoverflow.com/questions/1080638/equidistant-points-across-a-cube/1081021#1081021 2 Answer by user57368 for Equidistant points across a cube user57368 http://stackoverflow.com/users/57368 2009-07-03T22:20:20Z 2009-07-07T02:09:40Z <p>You'll have to define the problem in more detail for the cases where the number of points isn't a perfect cube. Hovever, for the cases where the number of points is a cube, you can use:</p> <pre><code>l=linspace(0,1,n+2); x=l(2:n+1); y=x; z=x; [X, Y, Z] = meshgrid(x, y, z); </code></pre> <p>Then for each position in the matrices, the coordinates of that point are given by the corresponding elements of X, Y, and Z. If you want the points listed in a single matrix, such that each row represents a point, with the three columns for x, y, and z coordinates, then you can say:</p> <pre><code>points(:,1) = reshape(X, [], 1); points(:,2) = reshape(Y, [], 1); points(:,3) = reshape(Z, [], 1); </code></pre> <p>You now have a list of <code>n^3</code> points on a grid throughout the unit cube, excluding the boundaries. As others have suggested, you can probably randomly remove some of the points if you want fewer points. This would be easy to do, by using <code>randi([0 n^3], a, 1)</code> to generate <code>a</code> indices of points to remove. (Don't forget to check for duplicates in the matrix returned by <code>randi()</code>, otherwise you might not delete enough points.)</p> http://stackoverflow.com/questions/1084956/how-do-i-take-a-screengrab-of-a-single-window-using-cocoa-or-carbon-on-os-x/1085005#1085005 0 Answer by user57368 for How do I take a screengrab of a single window using Cocoa or Carbon on OS X? user57368 http://stackoverflow.com/users/57368 2009-07-05T22:56:07Z 2009-07-05T22:56:07Z <p>The first thing that came to mind was GrabFS from MacFuse. The source is <a href="http://macfuse.googlecode.com/svn/trunk/filesystems/grabfs/" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1079243/what-is-the-name-of-this-problem/1079365#1079365 2 Answer by user57368 for What is the name of this problem? user57368 http://stackoverflow.com/users/57368 2009-07-03T13:28:40Z 2009-07-03T13:28:40Z <p>As written, your problem is just a system of non-linear equations (expressed with absolute values or quadratic equations). However, it looks similar to the problems of finding Golomb rulers or perfect rulers. </p> <p>If you consider your constraints as quadratic equations eg. (a-b)^2=100^2, then you can formulate this as a quadratic programming problem and use some of the well-studied techniques for that class of problem.</p> http://stackoverflow.com/questions/1009703/wifi-triangulation/1010473#1010473 1 Answer by user57368 for Wifi Triangulation user57368 http://stackoverflow.com/users/57368 2009-06-18T02:22:22Z 2009-06-18T02:22:22Z <p>Using signal strength to judge distance could easily be thrown off by differences in materials blocking line-of-sight to each of the sampling points. It would probably be better to do the sampling with a directional antenna, and from each sampling point, find the bearing that maximizes signal strength to each device you want to locate. With this technique, you can use only two or three sampling locations, depending on the accuracy with which you can estimate the bearings. </p> http://stackoverflow.com/questions/973518/are-synchronized-methods-slower-in-single-threaded-applications/973539#973539 0 Answer by user57368 for Are Synchronized Methods Slower In Single Threaded Applications? user57368 http://stackoverflow.com/users/57368 2009-06-10T03:19:27Z 2009-06-10T03:19:27Z <p>When using synchronized data structures, the slowdown is not dependent on "how much" is getting blocked. The act of acquiring or releasing a lock is slow, as it usually involves something like a system call (context switches are slow on any platform). In a JIT environment like a typical JVM, it would theoretically be possible to optimize out all lock/unlock calls when there is only a single thread running, but it would have to be properly invalidated whenever another thread starts up. </p> <p>Note that things like Linux's futexes don't have to make system calls unless there is contention, but using them is still slower than a no-op. </p> http://stackoverflow.com/questions/313519/whats-the-coolest-machine-youve-ever-worked-on/963387#963387 0 Answer by user57368 for What's the coolest machine you've ever worked on? user57368 http://stackoverflow.com/users/57368 2009-06-08T04:08:50Z 2009-06-08T04:08:50Z <p>My <a href="http://www.hpmuseum.org/hp15.htm" rel="nofollow">HP 15C</a> scientific calculator. It's older than me yet certain to outlast me, and it's battery life is measured in years. Despite that, it packs high-precision (56-bit BCD) complex number and matrix support, numerical root finding and integration into a pocket-size package with exactly the right proportions. Did I mention that it's fully programmable, and supports subroutines despite having less than half a kilobyte of RAM? It's truly the only electronic device I've ever owned that would be usable and useful if I were stranded on a desert island. </p> http://stackoverflow.com/questions/960910/64-bits-and-memory-bandwidth/960929#960929 8 Answer by user57368 for 64-bits and Memory Bandwidth user57368 http://stackoverflow.com/users/57368 2009-06-07T00:51:49Z 2009-06-07T00:51:49Z <p>Whether your app should be 64-bit depends a lot on what kind of computation it does. If you need to process very large data sets, you obviously need 64-bit pointers. If not, you need to know whether your app spends relatively more time doing arithmetic or memory accesses. On x86-64, the general purpose registers are not only twice as wide, there are twice as many and they are more "general purpose". This means that 64-bit code can have much better integer op performance. However, if your code doesn't need the extra register space, you'll probably see better performance by using smaller pointers and data, due to increased cache effectiveness. If your app is dominated by floating point operations, there probably isn't much point in making it 32-bit, because most of the memory accesses will be for wide vectors anyways, and having the extra SSE registers will help.</p> http://stackoverflow.com/questions/958864/cocoa-utility-class/958886#958886 4 Answer by user57368 for Cocoa Utility Class user57368 http://stackoverflow.com/users/57368 2009-06-06T02:55:41Z 2009-06-06T02:55:41Z <p>The easiest way is to not make Utilities a class, unless there is some reason why you need to create instances of it. Since by nature your utility functions are a loose collection with no common theme, there's no reason to try to force an object-oriented paradigm on them. (Unlike Java, in C based languages, not everything has to be in a class.) Just define them as traditional C style functions, and call them as such. If you really want to use the bracket notation on something that isn't an object and doesn't belong to anything that should be a class, then you can use the + notation as others have suggested.</p> http://stackoverflow.com/questions/918758/a-heuristic-shortest-path-passing-once-in-multiple-points/918902#918902 3 Answer by user57368 for A* heuristic: Shortest path passing once in multiple points user57368 http://stackoverflow.com/users/57368 2009-05-28T02:11:41Z 2009-05-28T02:11:41Z <p>After running an all-pairs-shortest-path algorithm and identifying the vertices with food, this becomes the <a href="http://en.wikipedia.org/wiki/Travelling%5Fsalesman%5Fproblem" rel="nofollow">traveling salesman problem</a>. You can't solve it efficiently, but you can construct arbitrarily good approximations to a solution in polynomial time. You'll probably want to use an approximation unless you can pre-compute everything. If you can pre-compute things (or otherwise guarantee that you have enough time to find an exact solution), then once you've got the all-pairs-shortest-paths, you can simply find the minimum total walk length over all possible permutations of the order in which you eat the food pieces. This brute-force method can probably be improved somewhat by watching out for when the shortest path between two food pieces crosses another food piece.</p> http://stackoverflow.com/questions/854185/multiple-mice-on-os-x/866508#866508 1 Answer by user57368 for Multiple mice on OS X user57368 http://stackoverflow.com/users/57368 2009-05-15T00:17:22Z 2009-05-15T00:17:22Z <p>Unless you can force one of the mice to not be dealt with as a mouse, both will continue to control the pointer. However, you can use IOKit to write a custom USB HID driver to allow your app to read from one or both of the mice (although this would probably interfere with using them as normal mice). <a href="http://developer.apple.com/hardwaredrivers/customusbdrivers.html" rel="nofollow">Building Customized User Client Drivers for USB Devices</a> would be a good place to start for how to interact directly with USB mice.</p> http://stackoverflow.com/questions/864931/unhide-a-document-set-in-xcode/864975#864975 2 Answer by user57368 for Unhide a Document Set in XCode user57368 http://stackoverflow.com/users/57368 2009-05-14T18:35:05Z 2009-05-14T18:35:05Z <p>At the bottom-left of the listing of doc sets is a button that brings up a menu with the option you're looking for.</p> http://stackoverflow.com/questions/845626/how-do-i-find-the-most-naturally-direct-route-using-a-star-a/845634#845634 4 Answer by user57368 for How do I find the most “Naturally" direct route using A-star (A*) user57368 http://stackoverflow.com/users/57368 2009-05-10T16:46:48Z 2009-05-10T16:46:48Z <p>If you want paths that look natural, you need to make sure that your costs correspond to the length on a cartesian coordinate system. That means the cost of moving diagonally should be sqrt(2) times the cost of moving vertically or horizontally. </p> http://stackoverflow.com/questions/838076/small-cycle-finding-in-a-planar-graph/838106#838106 5 Answer by user57368 for small cycle finding in a planar graph user57368 http://stackoverflow.com/users/57368 2009-05-08T03:26:52Z 2009-05-08T03:32:37Z <p>My first instinct is to use a method similar to a <a href="http://en.wikipedia.org/wiki/Maze%5Fsolving%5Falgorithm" rel="nofollow">wall following</a> maze solver. Essentially, follow edges, and always take the rightmost edge out of a vertex. Any cycles you encounter with this method will be boundaries of a face. You'll have to keep track of which edges you've traversed in which direction. Once you've traversed an edge in both directions, you've identified the faces it separates. Once all edges have been traversed in both directions, you'll have identified all faces by their boundaries.</p> http://stackoverflow.com/questions/817547/how-to-speed-up-windows-xp-under-parallels-macosx/827827#827827 0 Answer by user57368 for How to speed up Windows-XP under Parallels/MacOSX? user57368 http://stackoverflow.com/users/57368 2009-05-06T02:50:35Z 2009-05-06T02:50:35Z <p>Memory management is a lot more complex with two different operating systems trying to do it at the same time, so make sure that you don't have too much RAM allocated to the VM - that could starve OS X native apps. You may also want to check on the settings for the virtual graphics card, as a problem with that could easily kill the user experience. </p> <p>Before purchasing VMWare, make sure to try VirtualBox, as it is open-source and works almost as well as Parallels and VMWare. (The biggest deficiency in my opinion is the lack of Direct3D support.)</p> http://stackoverflow.com/questions/795350/google-wildcard-operator/795620#795620 3 Answer by user57368 for Google Wildcard Operator (*) user57368 http://stackoverflow.com/users/57368 2009-04-27T22:58:02Z 2009-04-27T22:58:02Z <p>What you're looking for is a Google Suggest API for the local search. Given that there seems to be no official Google Suggest API, you aren't likely to find one for the local search. However, there are plenty of products (including Firefox and the Google Toolbar) that make use of Google Suggest, so the methods they use probably aren't going away. A quick search for a Suggest API turns up many solutions that have been put together by various people. I recommend you pick one that looks like a good fit and try to make it work with the local search (if that actually turns up different results).</p> http://stackoverflow.com/questions/792050/whats-the-most-efficient-method-for-transitioning-between-two-images-like-mac-wa/792089#792089 0 Answer by user57368 for Whats the most efficient method for transitioning between two images (Like Mac wallpaper change) user57368 http://stackoverflow.com/users/57368 2009-04-27T02:28:59Z 2009-04-27T02:28:59Z <p>Pre-rendering each blended frame of the transition will take up a lot of disk space (and potentially bandwidth). It would be better to simply load the two images and use the graphics card to do the blending in real time. If you have to use something like openGL directly, you will probably be able to just create two rectangles, set the images as the textures, and vary the alpha values. Most systems have simpler 2d apis that would let you do this very easily. (eg. CoreAnimation on OS X, which will automatically vary the transparency over time and make full use of hardware acceleration.)</p> http://stackoverflow.com/questions/778367/how-would-you-make-a-checkbox-delete-a-row-in-a-table-if-checked-cocoa/778418#778418 4 Answer by user57368 for How would you make a checkbox delete a row in a table if checked (Cocoa) ? user57368 http://stackoverflow.com/users/57368 2009-04-22T17:52:50Z 2009-04-22T17:52:50Z <p>That sounds like a bad user interface design. One stray click, and the task is gone. What you should do is have the checkbox set a "completed" flag, and then your view can either display that task differently (such as with text strikethrough or grayed out) or provide the user the option of not displaying entries with the flag set.</p> http://stackoverflow.com/questions/758874/what-percentage-of-windows-boxes-have-opengl-support/758925#758925 5 Answer by user57368 for What percentage of Windows boxes have OpenGL support user57368 http://stackoverflow.com/users/57368 2009-04-17T03:40:20Z 2009-04-17T03:48:38Z <p>The <a href="http://store.steampowered.com/hwsurvey/" rel="nofollow">Steam Hardware Survey</a> is probably the best and most detailed source for info about what gamers have. Accurate statistics for the general population will be harder to come by. Instead, you should look at this in terms of how recent you want the graphics hardware. For example, any ATI chip from the R300 series (Radeon 9550+) onward supports OpenGL 2.0. On the NVidia side, any GeForce 6000+ series chip will support OpenGL 2.0, and their predecessors, the FX series, almost supported OpenGL 2.0. The R300 series and the FX series were both introduced in 2002, so if you know what portion of your target market is using a PC from 2003 or later, you'll have a fairly good idea of how widespread OpenGL 2.0 support is among users with discrete graphics. </p> <p>If you want to support integrated graphics (which are the largest segment of the market, but aren't particularly common with those who are serious about graphics of any kind) your users will need at least a GMA X3000 for hardware acceleration of OpenGL 2.0 features, which means their system has to be from 2006 or later. </p> <p>If you're interested in support on other operating systems, any Intel Mac will support OpenGL 2.0 with software fallbacks, and hardware acceleration whenever the chip would support it under Windows. On Linux, any system with Mesa 7 or later (June 2007 or later) will support OpenGL 2.0 software rendering. Hardware acceleration is less reliable, but there are decent open-source drivers for ATI chips from R300 and newer. </p> http://stackoverflow.com/questions/1911005/git-and-binary-data Comment by on Git and binary data http://stackoverflow.com/users/57368 2009-12-15T23:08:50Z 2009-12-15T23:08:50Z This is a design limitation of git. It was written to do one thing well: manage the Linux source tree, which is pretty much all plain text. Git is all about diffs and merges, things which don't really apply to images. If your media files are really large or frequently edited, you're better off using a different mechanism to store the history of those files, and if you're not really collaborating on the code or making lots of branches, then you may be better off not using git at all. http://stackoverflow.com/questions/1813839/capture-image-from-gpu Comment by on Capture image from GPU http://stackoverflow.com/users/57368 2009-11-28T21:49:08Z 2009-11-28T21:49:08Z The only useful answers to this question will be platform-specific, so please make your question specific enough that we can provide relevant answers. http://stackoverflow.com/questions/1777425/when-not-to-vectorize-matlab Comment by on When not to vectorize matlab? http://stackoverflow.com/users/57368 2009-11-22T01:29:50Z 2009-11-22T01:29:50Z Profile your code and post the slow parts here. So long as you aren't going to be graded on speed, that shouldn't violate any academic polices. http://stackoverflow.com/questions/1512420/how-can-you-suppress-all-logging-in-cocoa-app Comment by on How can you suppress all logging in Cocoa app? http://stackoverflow.com/users/57368 2009-10-03T00:55:08Z 2009-10-03T00:55:08Z Why? If you want to be able to filter out any log entries that didn't originate from your code, then just add a special tag to your log statements and grep for that. http://stackoverflow.com/questions/1391916/installer-software-for-macintosh/1391969#1391969 Comment by on installer software for macintosh? http://stackoverflow.com/users/57368 2009-09-08T04:39:58Z 2009-09-08T04:39:58Z It should be made clear that for the instances when it is needed, OS X has an installer system built-in, so third-party installers are even more of a bad idea. http://stackoverflow.com/questions/1381741/converting-latex-code-to-images-or-other-displayble-format-with-python Comment by on Converting latex code to Images (or other displayble format) with Python http://stackoverflow.com/users/57368 2009-09-04T22:15:29Z 2009-09-04T22:15:29Z Do you want to render the LaTeX code, or just display the source? If the former, beware that reimplementing TeX in Python is crazy. http://stackoverflow.com/questions/1370945/xcode-3-2-llvm-no-local-symbols-when-debugging/1376919#1376919 Comment by on Xcode 3.2 + LLVM = no local symbols when debugging http://stackoverflow.com/users/57368 2009-09-04T03:01:54Z 2009-09-04T03:01:54Z What makes you think this has anything to do with JIT, or that Apple would ship a gdb that doesn't fully work with the compiler they wrote? http://stackoverflow.com/questions/1373369/what-is-faster-prefered-memset-or-for-loop-to-zero-out-an-array-of-doubles/1373468#1373468 Comment by on What is faster/prefered memset or for loop to zero out an array of doubles http://stackoverflow.com/users/57368 2009-09-03T23:39:56Z 2009-09-03T23:39:56Z How would it be faster? If the array truly needs to be zeroed out, then doing it on the fly would require a separate data structure to keep track of which entries are dirty, and lookups in that data structure would almost certainly take longer than just writing the zeros. http://stackoverflow.com/questions/1376286/finding-area-of-straight-line-with-graph-math-question-but-needed-for-flot/1376421#1376421 Comment by on Finding area of straight line with graph (Math question but needed for flot) http://stackoverflow.com/users/57368 2009-09-03T23:33:25Z 2009-09-03T23:33:25Z I also attempted to edit the first paragraph to emphasize that the terminology exists not because the concepts are difficult, but because they aren't part of everyday discourse because we are used to dealing with calculus on an intuitive level. SO crashed on my edit. I'm sure that the OP can handle the subject as long as he doesn't reject it for superficial reasons such as seeming foreign. http://stackoverflow.com/questions/1376286/finding-area-of-straight-line-with-graph-math-question-but-needed-for-flot/1376421#1376421 Comment by on Finding area of straight line with graph (Math question but needed for flot) http://stackoverflow.com/users/57368 2009-09-03T23:29:54Z 2009-09-03T23:29:54Z It's pretty clear that the OP has asked other mathematicians about this and then given up when they start using terms that he doesn't know. That's entirely his problem, and he'll have to get over it before he can communicate with other people about this subject. http://stackoverflow.com/questions/1373369/what-is-faster-prefered-memset-or-for-loop-to-zero-out-an-array-of-doubles/1373930#1373930 Comment by on What is faster/prefered memset or for loop to zero out an array of doubles http://stackoverflow.com/users/57368 2009-09-03T15:04:50Z 2009-09-03T15:04:50Z You can make that assumption if you are using IEEE-754, and there are very few reasons to justify trying to make your floating-point code tolerant of implementations that wildly differ from the IEEE standard. In fact, the only reason I can imagine tolerating less than full compliance is if you are writing gpgpu code targeting a platform that doesn't implement all the rounding modes and NaN handling according to spec. http://stackoverflow.com/questions/1338152/detecting-different-quit-options-in-air-application-on-mac Comment by on Detecting different quit options in AIR application on Mac http://stackoverflow.com/users/57368 2009-08-26T23:51:38Z 2009-08-26T23:51:38Z Please clarify: you're trying to implement the standard Mac behavior where closing the window is not synonymous with closing the application? Hiding is something you do to an app, and it is different from closing the app or a window of the app. http://stackoverflow.com/questions/1320436/elgg-installation-problems Comment by on Elgg Installation Problems http://stackoverflow.com/users/57368 2009-08-24T04:17:39Z 2009-08-24T04:17:39Z Belongs on serverfault. http://stackoverflow.com/questions/1319906/how-to-organize-unit-testing-of-a-library-project-in-xcode/1319915#1319915 Comment by on How to organize unit testing of a library project in Xcode? http://stackoverflow.com/users/57368 2009-08-23T23:59:54Z 2009-08-23T23:59:54Z It strikes me that what you are bashing about XCode could also make it a great way to gradually transition to using IDEs. http://stackoverflow.com/questions/1301736/can-you-rewrite-this-snippet-without-goto/1301875#1301875 Comment by on Can you rewrite this snippet without goto... http://stackoverflow.com/users/57368 2009-08-19T20:31:15Z 2009-08-19T20:31:15Z So? The comma operator could be used here if the cnt++ has to expand to multiple statements. Not that it would be a good idea...