User unwind - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T02:05:31Zhttp://stackoverflow.com/feeds/user/28169http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1826311/regex-remove-lines-not-starting-with-a-digit/1826319#18263192Answer by unwind for Regex: remove lines not starting with a digitunwind2009-12-01T13:52:26Z2009-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#18260031Answer by unwind for gcc: __DATA,__const vs __TEXT,__constunwind2009-12-01T12:50:15Z2009-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#18256773Answer by unwind for Features of C++ that can't be implemented in C?unwind2009-12-01T11:48:54Z2009-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#18255732Answer by unwind for Grep a tab in UNIXunwind2009-12-01T11:28:02Z2009-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#18253692Answer by unwind for Video streaming using c++unwind2009-12-01T10:42:34Z2009-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#18210480Answer by unwind for python GTK container for mjpeg streamunwind2009-11-30T16:59:55Z2009-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#18206876Answer by unwind for Must Standard libraries for python beginnerunwind2009-11-30T15:59:36Z2009-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#18201580Answer by unwind for Opening gzipped files for reading in C without creating temporary filesunwind2009-11-30T14:30:49Z2009-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#18197530Answer by unwind for How to create bitmap from integer array in C / OpenGLunwind2009-11-30T13:13:46Z2009-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#18187752Answer by unwind for cat filename.* > Dateiunwind2009-11-30T09:33:19Z2009-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#180294412Answer by unwind for Java - Create a new String instance with specified length and filled with specific character. Best solution?unwind2009-11-26T10:43:44Z2009-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 > 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#179762310Answer by unwind for How to convert an 18 Character String into a Unique ID ?unwind2009-11-25T15:18:28Z2009-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#17974039Answer by unwind for What does (int (*)()) mean in a function callunwind2009-11-25T14:47:39Z2009-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#17970301Answer by unwind for How to sort tree view on click on column header.unwind2009-11-25T13:51:03Z2009-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#17955231Answer by unwind for Case fold UTF-8 without knowing the languageunwind2009-11-25T08:52:45Z2009-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#17907741Answer by unwind for what is the difference between read() and recv() , and between send() and write() ?unwind2009-11-24T15:24:24Z2009-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#17901850Answer by unwind for MASM32 What does 'default code distance mean'?unwind2009-11-24T13:50:26Z2009-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#17900405Answer by unwind for How do you determine equality between two ipv6 addresses?unwind2009-11-24T13:24:40Z2009-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#17897218Answer by unwind for How does make know which files to updateunwind2009-11-24T12:17:50Z2009-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#17819241Answer by unwind for GtkNoteBook signal handling problemunwind2009-11-23T09:12:12Z2009-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#17893090Answer by unwind for Turn on PC with USB-deviceunwind2009-11-24T10:56:02Z2009-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#17820021Answer by unwind for How to write mp3 frames from PCM data (C/C++)?unwind2009-11-23T09:25:27Z2009-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#17690971Answer by unwind for Defining const pointer to a const stringunwind2009-11-20T08:45:02Z2009-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#17630681Answer by unwind for How to refresh image in gtk ?unwind2009-11-19T12:48:29Z2009-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#17629252Answer by unwind for [C] Syntactic errorsunwind2009-11-19T12:22:59Z2009-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#17625200Answer by unwind for Client/Server: Integer always received as 1 (C-programming)unwind2009-11-19T10:59:11Z2009-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#17619362Answer by unwind for Is there a BUG Calatog, classifying the bugs with general descriptions?unwind2009-11-19T09:16:45Z2009-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#17580130Answer by unwind for How do I fixate a light source in OpenGL while rotating an object?unwind2009-11-18T18:18:18Z2009-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#17563498Answer by unwind for What is the best List implementation for Large lists in javaunwind2009-11-18T14:25:21Z2009-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#175507310Answer by unwind for How to implement a double linked list with only one pointer?unwind2009-11-18T10:31:52Z2009-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#1826212Comment by unwind on Swapping addresses of pointers in C++unwind2009-12-01T13:59:44Z2009-12-01T13:59:44ZBut 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#1825677Comment by unwind on Features of C++ that can't be implemented in C?unwind2009-12-01T11:58:10Z2009-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-applicationComment by unwind on how to prevent opening serial port on linux by foreign application?unwind2009-12-01T11:30:38Z2009-12-01T11:30:38ZIs this a programming question? Are you writing the serial driver? What do you mean by "foreign"?http://stackoverflow.com/questions/1824606/using-blender-sketchup-models-in-openglComment by unwind on Using Blender/SketchUp Models in OpenGLunwind2009-12-01T10:16:24Z2009-12-01T10:16:24ZQuestions 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-driveComment by unwind on batch script to find a particular folder in a driveunwind2009-11-30T13:10:01Z2009-11-30T13:10:01ZI 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#1818775Comment by unwind on cat filename.* > Dateiunwind2009-11-30T09:55:24Z2009-11-30T09:55:24Z@Ferdinand, @Ferran: Thanks, fixed!http://stackoverflow.com/questions/1800439/what-language-will-protect-my-source-code/1800666#1800666Comment by unwind on What language will protect my source code?unwind2009-11-26T16:38:04Z2009-11-26T16:38:04ZIt'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-unixComment by unwind on Moving from VMS to Unixunwind2009-11-26T16:17:11Z2009-11-26T16:17:11ZYou 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#1803460Comment by unwind on Render SVG stored in memory using JSR-226 (Blackberry)unwind2009-11-26T12:45:53Z2009-11-26T12:45:53ZThis 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#1797623Comment by unwind on How to convert an 18 Character String into a Unique ID ?unwind2009-11-25T15:35:53Z2009-11-25T15:35:53Z@wds: Thanks! Fixed, heh.http://stackoverflow.com/questions/1797387/what-does-int-mean-in-a-function-call/1797403#1797403Comment by unwind on What does (int (*)()) mean in a function callunwind2009-11-25T15:01:49Z2009-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#1789239Comment by unwind on How to debug a program that is terminating in an unhandled exception???unwind2009-11-24T15:19:54Z2009-11-24T15:19:54Z42 isn't a long, it's an int. :)http://stackoverflow.com/questions/1781352/gtknotebook-signal-handling-problem/1781924#1781924Comment by unwind on GtkNoteBook signal handling problemunwind2009-11-24T12:08:40Z2009-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-splintComment by unwind on Removing null warnings in Splintunwind2009-11-19T11:03:43Z2009-11-19T11:03:43ZI think you should a) not declare a pass-by-value argument as "const", but maybe that's your style, and b) include the actual diagnostic output Splint gives you, "not happy" is a bit vague.http://stackoverflow.com/questions/1469438/32-bit-address-location-confusion-c-programming/1469467#1469467Comment by unwind on 32 bit Address Location confusion... (C Programming)unwind2009-11-19T10:57:01Z2009-11-19T10:57:01ZI spot an Obi-Wan ...