User unwind - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T02:05:31Z http://stackoverflow.com/feeds/user/28169 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1826311/regex-remove-lines-not-starting-with-a-digit/1826319#1826319 2 Answer by unwind for Regex: remove lines not starting with a digit unwind 2009-12-01T13:52:26Z 2009-12-01T13:52:26Z <p><code>[^0-9]</code> is a regular expression that matches pretty much anything, except digits. If you say <code>^[^0-9]</code> you "anchor" it to the start of the line, in most regular expression systems. If you want to include the rest of the line, use <code>^[^0-9].+</code>.</p> http://stackoverflow.com/questions/1825985/gcc-data-const-vs-text-const/1826003#1826003 1 Answer by unwind for gcc: __DATA,__const vs __TEXT,__const unwind 2009-12-01T12:50:15Z 2009-12-01T13:49:12Z <p>Classically, <a href="http://en.wikipedia.org/wiki/Code%5Fsegment" rel="nofollow">TEXT in this context</a> means "code". It does seem Mac OS X throws things around, but as pointed out by other posters, what you find is what you should expect on your platform.</p> http://stackoverflow.com/questions/1825658/features-of-c-that-cant-be-implemented-in-c/1825677#1825677 3 Answer by unwind for Features of C++ that can't be implemented in C? unwind 2009-12-01T11:48:54Z 2009-12-01T12:34:32Z <ol> <li><p>There is only one <code>printf()</code> in the C standard library. Other varieties are implemented by changing the name, for instance <code>sprintf()</code>, <code>fprintf()</code> and so on.</p></li> <li><p>Structures can't hide implementation, there is no <code>private</code> data in C. Of course you can hide data by not showing what e.g. pointers point to, as is done for FILE * by the standard library. So there is data abstraction, but not as a direct feature of the <code>struct</code> construct.</p></li> </ol> <p>Also, you can't overload operators in C, so <code>a + b</code> always means that some kind of addition is taking place. In C++, depending on the type of the objects involved, anything could happen.</p> <p>Note that this implies (subtly) that <code>+</code> in C actually <code>is</code> overridden; <code>int + int</code> is not the same code as <code>float + int</code> for instance. But you can't do that kind of override yourself, it's something for the compiler only.</p> http://stackoverflow.com/questions/1825552/grep-a-tab-in-unix/1825573#1825573 2 Answer by unwind for Grep a tab in UNIX unwind 2009-12-01T11:28:02Z 2009-12-01T11:28:02Z <p>If using GNU grep, you can use the Perl-style regexp:</p> <pre><code>$ grep -P '\t' * </code></pre> http://stackoverflow.com/questions/1825338/video-streaming-using-c/1825369#1825369 2 Answer by unwind for Video streaming using c++ unwind 2009-12-01T10:42:34Z 2009-12-01T10:42:34Z <p>If your input data is just a bunch of random images, not video, you're not going to do "video streaming". You're just going to be sending a bunch of full images. No need to involve video encoding technology, just do the simplest possible transmission of images. Video encoders rely on each frame having various relationships to the previous, as is common in actual video. For inputs of random images, they're not going to be able to compress that much, and single-frame compression (e.g. JPEG/PNG/whatever) is very likely already going to be applied to your input data.</p> <p>Probably easiest to send the contents of each file, together with the original filename, and have the receiving client re-create the file on disk, and use existing disk-oriented libraries to open and decode the image.</p> <p>You sould probably just use TCP for this, nothing in your requirements that indicate you need to use the more complicated and error-prone UDP/RTP-based solutions.</p> http://stackoverflow.com/questions/1811624/python-gtk-container-for-mjpeg-stream/1821048#1821048 0 Answer by unwind for python GTK container for mjpeg stream unwind 2009-11-30T16:59:55Z 2009-11-30T16:59:55Z <p>GTK+ does not contain a native widget capable of decoding and rendering video.</p> <p>You should probably look into <a href="http://gstreamer.freedesktop.org/" rel="nofollow">GStreamer</a>, which is a streaming-media toolkit built on the same GObject framework as GTK+.</p> <p>It has the <a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base-plugins/html/gst-plugins-base-plugins-xvimagesink.html" rel="nofollow">GstXvImageSink</a> that is capable of rendering video using X11, and you should be able to configure it to render on top of a GTK+ widget.</p> http://stackoverflow.com/questions/1820657/must-standard-libraries-for-python-beginner/1820687#1820687 6 Answer by unwind for Must Standard libraries for python beginner unwind 2009-11-30T15:59:36Z 2009-11-30T15:59:36Z <p>The standard libraries, i.e. the ones considered more or less part of Python. Start with those, there is plenty to learn before starting on 3rd party stuff.</p> <p>Things like:</p> <ul> <li><a href="http://docs.python.org/library/os.html" rel="nofollow">os</a></li> <li><a href="http://docs.python.org/library/re.html" rel="nofollow">re</a></li> <li><a href="http://docs.python.org/library/subprocess.html" rel="nofollow">subprocess</a></li> <li><a href="http://docs.python.org/library/struct.html" rel="nofollow">struct</a></li> </ul> http://stackoverflow.com/questions/1820144/opening-gzipped-files-for-reading-in-c-without-creating-temporary-files/1820158#1820158 0 Answer by unwind for Opening gzipped files for reading in C without creating temporary files unwind 2009-11-30T14:30:49Z 2009-11-30T14:30:49Z <p>You can use <a href="http://www.zlib.net/" rel="nofollow">zlib</a>, but it will require you to replace your I/O calls to be zlib-specific.</p> http://stackoverflow.com/questions/1816827/how-to-create-bitmap-from-integer-array-in-c-opengl/1819753#1819753 0 Answer by unwind for How to create bitmap from integer array in C / OpenGL unwind 2009-11-30T13:13:46Z 2009-11-30T13:13:46Z <p>The function you're looking for is simply <code><a href="http://www.opengl.org/sdk/docs/man/xhtml/glTexImage2D.xml" rel="nofollow">glTextImage2D()</a></code>. It uploads data from an array into OpenGL. You specify the source and destination formats you have and want, and it does the rest.</p> <p>Use together with <code><a href="http://www.opengl.org/sdk/docs/man/xhtml/glBindTexture.xml" rel="nofollow">glBindTexture()</a></code> to create a stored re-usable texture object, so you don't need to upload the texture data prior to using it every frame.</p> http://stackoverflow.com/questions/1818758/cat-filename-datei/1818775#1818775 2 Answer by unwind for cat filename.* > Datei unwind 2009-11-30T09:33:19Z 2009-11-30T10:01:09Z <p>Something like this should get you started:</p> <pre><code>import glob outfile = file("Datei", "wb") for f in glob.glob("filename.*"): infile = open(f, "rb") outfile.write(infile.read()) infile.close() outfile.close() </code></pre> <p><strong>UPDATE</strong>: Of course, input files need to be opened, too.</p> <p><strong>UPDATE</strong>: Explicitly use binary mode.</p> http://stackoverflow.com/questions/1802915/java-create-a-new-string-instance-with-specified-length-and-filled-with-specifi/1802944#1802944 12 Answer by unwind for Java - Create a new String instance with specified length and filled with specific character. Best solution? unwind 2009-11-26T10:43:44Z 2009-11-26T11:07:01Z <p>No need to do the loop, and using just standard Java library classes:</p> <pre><code>protected String getStringWithLengthAndFilledWithCharacter(int length, char charToFill) { if (length &gt; 0) { char[] array = new char[length]; Arrays.fill(array, charToFill); return new String(array); } return ""; } </code></pre> <p>As you can see, I also added suitable code for the <code>length == 0</code> case.</p> http://stackoverflow.com/questions/1797611/how-to-convert-an-18-character-string-into-a-unique-id/1797623#1797623 10 Answer by unwind for How to convert an 18 Character String into a Unique ID ? unwind 2009-11-25T15:18:28Z 2009-11-25T15:35:42Z <p>You can't, with those requirements.</p> <p>18 characters of (assuming) upper and lower case letters has 56<sup>18</sup> or about 2.93348915 × 103<sup>31</sup> combinations. This is (way) more than the approximate 1.84467441 × 10<sup>19</sup> combinations available among 64 bits.</p> <p><strong>UPDATE:</strong> I had the combinatorics wrong, heh. Same result though.</p> http://stackoverflow.com/questions/1797387/what-does-int-mean-in-a-function-call/1797403#1797403 9 Answer by unwind for What does (int (*)()) mean in a function call unwind 2009-11-25T14:47:39Z 2009-11-25T14:47:39Z <p>The casts the argument to a pointer to a function that returns <code>char *</code> and takes zero or more arguments. The second function returns <code>int</code>.</p> <p>You can use a program (and website, now) called "<a href="http://www.cdecl.org/" rel="nofollow">cdecl</a>" to help with these, it says:</p> <ul> <li><code>(char *(*)())</code>: cast unknown_name into pointer to function returning pointer to char</li> <li><code>(int (*)())</code>: cast unknown_name into pointer to function returning int</li> </ul> http://stackoverflow.com/questions/1796469/how-to-sort-tree-view-on-click-on-column-header/1797030#1797030 1 Answer by unwind for How to sort tree view on click on column header. unwind 2009-11-25T13:51:03Z 2009-11-25T13:51:03Z <p>In order:</p> <ol> <li>You really need to start looking more at the <a href="http://library.gnome.org/devel/gtk/stable/" rel="nofollow">fine documentation</a>.</li> <li>Make sure you set a <a href="http://library.gnome.org/devel/gtk/stable/GtkTreeViewColumn.html#gtk-tree-view-column-set-sort-column-id" rel="nofollow">sort column id</a> on each of your columns, then look at the <a href="http://library.gnome.org/devel/gtk/stable/GtkTreeSortable.html" rel="nofollow">GtkTreeSortable</a> interface. <a href="http://scentric.net/tutorial/sec-sorting.html" rel="nofollow">This tutorial section</a> is helpful, too.</li> <li>Set the <a href="http://library.gnome.org/devel/gtk/stable/GtkCellRenderer.html#GtkCellRenderer--xalign" rel="nofollow">"xalign"</a> property of your <a href="http://library.gnome.org/devel/gtk/stable/GtkCellRenderer.html" rel="nofollow">GtkCellRenderer</a> to <code>0.f</code>.</li> </ol> http://stackoverflow.com/questions/1795504/case-fold-utf-8-without-knowing-the-language/1795523#1795523 1 Answer by unwind for Case fold UTF-8 without knowing the language unwind 2009-11-25T08:52:45Z 2009-11-25T08:52:45Z <p>Well ... The consonant combination "SS" would down-case to "ss" for most Western languages, but in German it might become the special letter "ß". That's just "might", there are quite involved <a href="http://en.wikipedia.org/wiki/%C3%9F#Current%5Fusage%5Fin%5FGerman" rel="nofollow">usage rules</a> to consider.</p> <p>I think this doesn't directly affect collation order (any Germans are of course welcome to correct me) though, so maybe it's a moot point.</p> http://stackoverflow.com/questions/1790750/what-is-the-difference-between-read-and-recv-and-between-send-and-write/1790774#1790774 1 Answer by unwind for what is the difference between read() and recv() , and between send() and write() ? unwind 2009-11-24T15:24:24Z 2009-11-24T15:24:24Z <p>"Performance and speed"? Aren't those kind of ... synonyms, here?</p> <p>Anyway, the <code>recv()</code> call takes flags that <code>read()</code> doesn't, which makes it more powerful, or at least more convenient. That is one difference. I don't think there is a significant performance difference, but haven't tested for it.</p> http://stackoverflow.com/questions/1790164/masm32-what-does-default-code-distance-mean/1790185#1790185 0 Answer by unwind for MASM32 What does 'default code distance mean'? unwind 2009-11-24T13:50:26Z 2009-11-24T13:50:26Z <p>Very probably the maximum distance (in bytes, in memory) between the two most distant pieces of code. This might influence how jumps are generated, since there can be different instructions capable of different jump lengths. A shorter jump can be encoded with a shorter (smaller, often faster) instruction.</p> <p><a href="http://msdn.microsoft.com/en-us/library/e6x752dz%28VS.71%29.aspx" rel="nofollow">This page</a> mentions what integer values one can expect:</p> <blockquote> <p>0 for TINY, SMALL, COMPACT, and FLAT models, and 1 for MEDIUM, LARGE, and HUGE models (numeric equate).</p> </blockquote> http://stackoverflow.com/questions/1787530/how-do-you-determine-equality-between-two-ipv6-addresses/1790040#1790040 5 Answer by unwind for How do you determine equality between two ipv6 addresses? unwind 2009-11-24T13:24:40Z 2009-11-24T13:45:28Z <p><a href="http://en.wikipedia.org/wiki/IPv6%5FAddresses#Link-local%5Faddresses%5Fand%5Fzone%5Findices" rel="nofollow">Wikipedia states</a>:</p> <blockquote> <p>Because all link-local addresses in a host have a common prefix, normal routing procedures cannot be used to choose the outgoing interface when sending packets to a link-local destination. A special identifier, known as a zone index, is needed to provide the additional routing information; in the case of link-local addresses, zone indices correspond to interface identifiers.</p> <p>When an address is written textually, the zone index is appended to the address, separated by a percent sign "%". The actual syntax of zone indices depends on the operating system [...]</p> </blockquote> <p>So, those suffixes are zone indicators, that associate the address with a physical interface. This also explains why the suffices differ between wired and wireless interfaces, for instance.</p> <p>To help answer the question, I don't think the suffixes should be included in any comparison. IPv6 addresses are 128 bits by definition, and the suffixes are strictly local information that does not make sense outside your own machine and it's current operating system. </p> <p>Comparing the 128 bits should be enough.</p> http://stackoverflow.com/questions/1789705/how-does-make-know-which-files-to-update/1789721#1789721 8 Answer by unwind for How does make know which files to update unwind 2009-11-24T12:17:50Z 2009-11-24T12:17:50Z <p>It inspects the file system's modification date meta information.</p> <p>See, for instance, the <a href="http://linux.die.net/man/2/stat" rel="nofollow">stat() man page</a> and the <code>st_mtime</code> member of the <code>struct stat</code>.</p> <p>It has built-in rules that tells it that (for instance) a .o file needs to be re-generated if the corresponding .c file has changed; the <a href="http://www.gnu.org/software/make/manual/make.html#Rule-Syntax" rel="nofollow">manual section on rule syntax</a> says:</p> <blockquote> <p>The criterion for being out of date is specified in terms of the prerequisites, which consist of file names separated by spaces. (Wildcards and archive members (see Archives) are allowed here too.) A target is out of date if it does not exist or if it is older than any of the prerequisites (by comparison of last-modification times).</p> </blockquote> http://stackoverflow.com/questions/1781352/gtknotebook-signal-handling-problem/1781924#1781924 1 Answer by unwind for GtkNoteBook signal handling problem unwind 2009-11-23T09:12:12Z 2009-11-24T12:09:04Z <p>Typically pages are invisible after being added, which might be why the notebook doesn't react. Try also calling <code>gtk_widget_show_all(GTK_WIDGET(msg_vbox))</code> to make it visible, and see if that triggers any events.</p> <p><strong>UPDATE:</strong> When you add new pages, if the notebook's current focus doesn't actually change so that the new page is displayed, I wouldn't expect it to emit the signals you mentioned. You can of course force it to show the newly added page by calling <code><a href="http://library.gnome.org/devel/gtk/stable/GtkNotebook.html#gtk-notebook-set-current-page" rel="nofollow">gtk_notebook_set_current_page()</a></code>. The page number is returned by <code><a href="http://library.gnome.org/devel/gtk/stable/GtkNotebook.html#gtk-notebook-append-page" rel="nofollow">gtk_notebook_append_page()</a></code> and friends.</p> <p><strong>UPDATE 2:</strong> This is a minor one, but you should cast your objects using <code>G_OBJECT()</code>, not <code>GTK_OBJECT()</code>, since the <code>g_signal_connect()</code> function is a glib function that acts on GObjects.</p> http://stackoverflow.com/questions/1789171/turn-on-pc-with-usb-device/1789309#1789309 0 Answer by unwind for Turn on PC with USB-device unwind 2009-11-24T10:56:02Z 2009-11-24T10:56:02Z <p><a href="http://support.microsoft.com/kb/280108" rel="nofollow">This Microsoft knowledgebase article</a> describes how to enable "wake on USB" for a USB mouse. I just checked, and my keyboard device entry (on Windows Vista) has the same choice, already checked.</p> <p>So, if you AVR is emulating a USB keyboard or mouse, it should be possible to wake the computer by sending the proper data.</p> http://stackoverflow.com/questions/1781777/how-to-write-mp3-frames-from-pcm-data-c-c/1782002#1782002 1 Answer by unwind for How to write mp3 frames from PCM data (C/C++)? unwind 2009-11-23T09:25:27Z 2009-11-23T09:25:27Z <p>You should be able to use LAME. It has a <a href="http://lame.cvs.sourceforge.net/%2Acheckout%2A/lame/lame/doc/html/switchs.html#t" rel="nofollow">-t command line switch</a> that turns off the INFO header in the output (otherwise present in frame 0). If that still leaves too much bookkeeping data, you should be able to write a separate tool to strip that away.</p> http://stackoverflow.com/questions/1769089/defining-const-pointer-to-a-const-string/1769097#1769097 1 Answer by unwind for Defining const pointer to a const string unwind 2009-11-20T08:45:02Z 2009-11-20T08:45:02Z <p>Declaring it <code>static</code> means (if at global, file level) that it won't be visible outside this translation unit, or (if inside a scope) that it will retain its value between executions of the scope. It has nothing to do with the "constness" of the data.</p> http://stackoverflow.com/questions/1763008/how-to-refresh-image-in-gtk/1763068#1763068 1 Answer by unwind for How to refresh image in gtk ? unwind 2009-11-19T12:48:29Z 2009-11-19T12:48:29Z <p>In your callback for the click, just call any of GtkImage's methods that change the image, for instance <code><a href="http://library.gnome.org/devel/gtk/stable/GtkImage.html#gtk-image-set-from-image" rel="nofollow">gtk_image_set_from_image()</a></code>.</p> <p>You might need to pass along enough data using the <code>gpointer user_data</code> argument so the callback knows which GtkImage instance to change, and what to change it to.</p> <p>You should <em>not</em> need to re-create the GtkImage widgets, just change the image displayed.</p> http://stackoverflow.com/questions/1762869/c-syntactic-errors/1762925#1762925 2 Answer by unwind for [C] Syntactic errors unwind 2009-11-19T12:22:59Z 2009-11-19T12:22:59Z <p>That is syntactically valid, but not semantically. It should parse as the division operator followed by a string literal. You can't divide stuff by a string literal, so it's not legal code, overall.</p> <p>Comments start with a two-character token, <code>/*</code>, and end with <code>*/</code>.</p> http://stackoverflow.com/questions/1762508/client-server-integer-always-received-as-1-c-programming/1762520#1762520 0 Answer by unwind for Client/Server: Integer always received as 1 (C-programming) unwind 2009-11-19T10:59:11Z 2009-11-19T10:59:11Z <p>You should never send whole values like this, you need to pay more attention to serialization. This might fail if, for instance, the <code>sizeof (int)</code> is different on the sending machine from the receiving one, in which case you will read the incorrect number of bytes.</p> <p>It's better to take more care and serialize fields one byte at a time.</p> http://stackoverflow.com/questions/1761928/is-there-a-bug-calatog-classifying-the-bugs-with-general-descriptions/1761936#1761936 2 Answer by unwind for Is there a BUG Calatog, classifying the bugs with general descriptions? unwind 2009-11-19T09:16:45Z 2009-11-19T09:16:45Z <p>"The bugs"? In Stack Overflow, or what? For that I guess there's meta.stackoverflow.com.</p> <p>If you're after bug-tracking software in general there is of course plenty, with lots of free and commercial alternatives.</p> <p><a href="http://www.dmoz.org/Computers/Software/Configuration%5FManagement/Bug%5FTracking//" rel="nofollow">This index</a> lists at least 30 packages, both free and commercial.</p> http://stackoverflow.com/questions/1757958/how-do-i-fixate-a-light-source-in-opengl-while-rotating-an-object/1758013#1758013 0 Answer by unwind for How do I fixate a light source in OpenGL while rotating an object? unwind 2009-11-18T18:18:18Z 2009-11-18T18:18:18Z <p>The <a href="http://www.opengl.org/resources/faq/technical/lights.htm" rel="nofollow">FAQ states</a>:</p> <blockquote> <p>A light's position is transformed by the current ModelView matrix at the time the position is specified with a call to glLight*().</p> </blockquote> <p>In other words, lights aren't positioned in some kind of magic static "world coordinate system"; they're multiplied by the modelview matrix just like any geometry would be. This makes sense; you often want to have lights locked to geometry.</p> <p>I also think your application "destroys" the modelview matrix; it's never re-computed from scratch. You should start each frame with a LoadIdentity(), then emit the lightsource, then rotate as desired, and finally emit the geometry.</p> http://stackoverflow.com/questions/1756333/what-is-the-best-list-implementation-for-large-lists-in-java/1756349#1756349 8 Answer by unwind for What is the best List implementation for Large lists in java unwind 2009-11-18T14:25:21Z 2009-11-18T14:25:21Z <p>ArrayList most probably has the least overhead per list element, so should be the best choice. It might be a worse choice if you frequently need to delete items in the middle of the list.</p> http://stackoverflow.com/questions/1755056/how-to-implement-a-double-linked-list-with-only-one-pointer/1755073#1755073 10 Answer by unwind for How to implement a double linked list with only one pointer? unwind 2009-11-18T10:31:52Z 2009-11-18T10:31:52Z <p>This sounds as if it's impossible, the way it's stated. You can't implement two pointers using only one, in general.</p> <p>You might be able to squeeze two 16-bit offsets into the space used by the single (assumed 32-bit) pointer, or some other "clever hack", but in general this sounds impossible.</p> <p><a href="http://everything2.com/title/Storing+a+doubly-linked+list+using+just+a+single+pointer+field" rel="nofollow">This article</a> describes a trick based on XOR:ing the pointer values, but I would consider that a hack (it does bitwise arithmetic on pointer values).</p> http://stackoverflow.com/questions/1826203/swapping-addresses-of-pointers-in-c/1826212#1826212 Comment by unwind on Swapping addresses of pointers in C++ unwind 2009-12-01T13:59:44Z 2009-12-01T13:59:44Z But this doesn't solve the question, at least not as I read it. The addresses of the variables should change, not the values? http://stackoverflow.com/questions/1825658/features-of-c-that-cant-be-implemented-in-c/1825677#1825677 Comment by unwind on Features of C++ that can't be implemented in C? unwind 2009-12-01T11:58:10Z 2009-12-01T11:58:10Z @Sachin: No I don't, all calls to printf() will lead to the same entrypoint, in which the code will inspect its first argument (the format specifier string) and read additional arguments as required. It's just a function doing things depending on its arguments, the compiler isn't jumping to different functions based on the arguments. So no. http://stackoverflow.com/questions/1825578/how-to-prevent-opening-serial-port-on-linux-by-foreign-application Comment by unwind on how to prevent opening serial port on linux by foreign application? unwind 2009-12-01T11:30:38Z 2009-12-01T11:30:38Z Is this a programming question? Are you writing the serial driver? What do you mean by &quot;foreign&quot;? http://stackoverflow.com/questions/1824606/using-blender-sketchup-models-in-opengl Comment by unwind on Using Blender/SketchUp Models in OpenGL unwind 2009-12-01T10:16:24Z 2009-12-01T10:16:24Z Questions with images rule, so I took the liberty of adding yours. http://stackoverflow.com/questions/1819733/batch-script-to-find-a-particular-folder-in-a-drive Comment by unwind on batch script to find a particular folder in a drive unwind 2009-11-30T13:10:01Z 2009-11-30T13:10:01Z I think you need to at least provide an attempt, to show that you're not just fishing for solutions. http://stackoverflow.com/questions/1818758/cat-filename-datei/1818775#1818775 Comment by unwind on cat filename.* > Datei unwind 2009-11-30T09:55:24Z 2009-11-30T09:55:24Z @Ferdinand, @Ferran: Thanks, fixed! http://stackoverflow.com/questions/1800439/what-language-will-protect-my-source-code/1800666#1800666 Comment by unwind on What language will protect my source code? unwind 2009-11-26T16:38:04Z 2009-11-26T16:38:04Z It's enough that one person removes the protection, the decision doesn't have to be made by each single (potential) customer. http://stackoverflow.com/questions/1804531/moving-from-vms-to-unix Comment by unwind on Moving from VMS to Unix unwind 2009-11-26T16:17:11Z 2009-11-26T16:17:11Z You should probably include some sort of idea about how much of the code is VMS-specific. Not that I know a smitten about VMS, but the program could be six million lines of code using nothing but standard library calls and flat text files for instance, or it could be 50,000 lines of very VMS-specific stuff. Makes a difference. http://stackoverflow.com/questions/1803384/render-svg-stored-in-memory-using-jsr-226-blackberry/1803460#1803460 Comment by unwind on Render SVG stored in memory using JSR-226 (Blackberry) unwind 2009-11-26T12:45:53Z 2009-11-26T12:45:53Z This is a comment, or maybe an edit to the question, there's little point in repeating the best answer yourself. http://stackoverflow.com/questions/1797611/how-to-convert-an-18-character-string-into-a-unique-id/1797623#1797623 Comment by unwind on How to convert an 18 Character String into a Unique ID ? unwind 2009-11-25T15:35:53Z 2009-11-25T15:35:53Z @wds: Thanks! Fixed, heh. http://stackoverflow.com/questions/1797387/what-does-int-mean-in-a-function-call/1797403#1797403 Comment by unwind on What does (int (*)()) mean in a function call unwind 2009-11-25T15:01:49Z 2009-11-25T15:01:49Z @JS Bangs: I agree! Just to be clear, I have no affiliation with it at all, just found it when trying to answer this question. :) http://stackoverflow.com/questions/1789195/how-to-debug-a-program-that-is-terminating-in-an-unhandled-exception/1789239#1789239 Comment by unwind on How to debug a program that is terminating in an unhandled exception??? unwind 2009-11-24T15:19:54Z 2009-11-24T15:19:54Z 42 isn't a long, it's an int. :) http://stackoverflow.com/questions/1781352/gtknotebook-signal-handling-problem/1781924#1781924 Comment by unwind on GtkNoteBook signal handling problem unwind 2009-11-24T12:08:40Z 2009-11-24T12:08:40Z @ptomato: Thanks, I never knew. I'll remove that part of my answer then, since it shouldn't matter. http://stackoverflow.com/questions/1762533/removing-null-warnings-in-splint Comment by unwind on Removing null warnings in Splint unwind 2009-11-19T11:03:43Z 2009-11-19T11:03:43Z I think you should a) not declare a pass-by-value argument as &quot;const&quot;, but maybe that's your style, and b) include the actual diagnostic output Splint gives you, &quot;not happy&quot; is a bit vague. http://stackoverflow.com/questions/1469438/32-bit-address-location-confusion-c-programming/1469467#1469467 Comment by unwind on 32 bit Address Location confusion... (C Programming) unwind 2009-11-19T10:57:01Z 2009-11-19T10:57:01Z I spot an Obi-Wan ...