User Dervin Thunk - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T22:20:34Zhttp://stackoverflow.com/feeds/user/50305http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1752732/how-do-i-build-a-domain-specific-query-language4How do I build a domain-specific query language?Dervin Thunk2009-11-17T23:58:41Z2009-11-18T01:49:47Z
<p>I have a biology database that I would like to query. There is also a given terminology bank I have access to that has formalizable predicates. I would like to build a query language for this DB using the predicates mentioned. How would you go about it? My solution is the following: </p>
<ol>
<li>formalize the predicates</li>
<li>translate into a query language (sql, sparql, depends)</li>
<li>Build a specific language with ANTLR or other such tools</li>
<li>Translate from 3 to 2.</li>
</ol>
<p>Is this a valid approach? Are there better ones? Any pointers would be much appreciated.</p>
http://stackoverflow.com/questions/1172939/is-any-part-of-c-syntax-context-sensitive5Is any part of C++ syntax context sensitive?Dervin Thunk2009-07-23T16:28:07Z2009-11-15T20:54:56Z
<p>This is probably a silly question to people knowledgeable about compilers, but I'm honestly ignorant about the answer. </p>
<p>Is C++ syntax context-sensitive? In other words, is C++ syntax not expressible with context-free grammars? </p>
<p>Obviously C++ <em>is</em> parsed with regular parsing tools and that parsing is not particularly ineffective (!), but I do recall reading something about this (I don't remember where) and I thought I'd get my facts straight with the community before spreading lies... Maybe a subset of C++ is CS? Maybe the new spec? Any help is appreciated.</p>
<p><strong>EDIT</strong>: Thanks for all the responses. However, for completeness' sake, what part of compilation deals with the ambiguity? A CFG is a grammar that has only one non-terminal symbol on the left-hand-side of the rule (eg. <code>A->zC</code>), a CSG is one that has a terminal (plus a non-terminal) on the left-hand-side (<code>aAv->QT</code>), where uppercase letters are nonterminals and lowercase are terminals. Is any representation like the latter in the grammar <strong>parsing</strong> C++ source code? </p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1179879/where-does-context-sensitivity-get-resolved-in-the-c-compilation-process4Where does context sensitivity get resolved in the C++ compilation process?Dervin Thunk2009-07-24T20:02:32Z2009-11-15T18:53:33Z
<p>Yesterday I asked about C++ context sensitivity, see <a href="http://stackoverflow.com/questions/1172939/is-any-part-of-c-syntax-context-sensitive">here</a>. Among many excellent answers, <a href="http://stackoverflow.com/questions/1172939/is-any-part-of-c-syntax-context-sensitive/1173004#1173004">here</a> is the accepted one, by <a href="http://stackoverflow.com/users/2509/dmckee">dmckee</a>.</p>
<p>However, I still think there's something to be said about this (maybe some terminological confusion?). The question amounts to: what part of compilation deals with the ambiguity?</p>
<p>To clarify my terminology: A CFG is a grammar that has only one non-terminal symbol on the left-hand-side of the rule (eg. <code>A->zC</code>), a CSG is one that has a terminal (plus a non-terminal) on the left-hand-side (<code>aAv->QT</code>), where uppercase letters are nonterminals and lowercase are terminals. </p>
<p>Is any representation like the latter in the <strong>grammar</strong> parsing C++ source code? </p>
<p>Thank you, and sorry to push the issue. </p>
http://stackoverflow.com/questions/654771/algorithms-and-data-structures-that-are-not-mainstream21Algorithms and data structures that are not mainstream? [closed]Dervin Thunk2009-03-17T15:33:21Z2009-11-09T21:21:31Z
<p>There are a subset of algorithms and data structures that are very common, well-studied and very helpful. Examples of these are Topological sort, quicksort, depth-first search; on the other hand, dictionaries, trees, linked-lists and to a lesser extent red-black trees, and tries, are examples of the latter. </p>
<p>However, there are other algorithms and DS that are not mainstream (not easily found in books) that we have learned on our own, have become a useful tool, and we are proud of using because they were hidden... maybe we found it in a dark paper from the dawn of computation in the 60s and it is still useful today, or we just made them up (why not?). My pet one is binary decision diagrams (BDDs). What is yours?</p>
<p><strong>EDIT</strong>: A pity this was closed, but in all fairness, it was a duplicate, even if new answers were provided. In a scholarly fashion, I will summarize and thank everybody for answering. However, to appease my sense of "duplicate failure", I should also pay my respect to the original poster of the question (<a href="http://stackoverflow.com/users/60617/f3lix">f3lix</a>) and to the StackOverflow community by summarizing both posts, so a complete document remains. Thus (!), here is the list of algorithms and data structures that are not <em>that</em> common, duplicates removed:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Bloom%5Ffilter" rel="nofollow">Bloom filters</a></li>
<li><a href="http://cs.nyu.edu/cole/papers/list-order.ps" rel="nofollow">Maintaining order in a list</a></li>
<li><a href="http://en.wikipedia.org/wiki/Elevator%5Falgorithm" rel="nofollow">Elevator algorithm</a></li>
<li><a href="http://en.wikipedia.org/wiki/Cuckoo%5Fhashing" rel="nofollow">Cuckoo hashing</a></li>
<li><a href="http://en.wikipedia.org/wiki/Skip%5Flist" rel="nofollow">Skip lists</a></li>
<li>Modifiable priority queues (can someone provide a link for this, please?)</li>
<li><a href="http://en.wikipedia.org/wiki/Nondeterministic%5Ffinite%5Fstate%5Fmachine" rel="nofollow">Non-Deterministic Finite State Machines</a></li>
<li><a href="http://www.cgal.org/Manual/3.4/doc%5Fhtml/cgal%5Fmanual/Interval%5Fskip%5Flist/Chapter%5Fmain.html" rel="nofollow">Interval skip lists</a></li>
<li><a href="http://en.wikipedia.org/wiki/Dancing%5FLinks" rel="nofollow">Dancing links</a></li>
<li><a href="http://en.wikipedia.org/wiki/Trie" rel="nofollow">Tries</a> (or <a href="http://cr.yp.to/critbit.html" rel="nofollow">here</a>, with a interesting use of it at <a href="http://www.nada.kth.se/~snilsson/public/papers/trash/" rel="nofollow">this site</a>)</li>
<li><a href="http://en.wikipedia.org/wiki/Suffix%5Ftrie" rel="nofollow">Suffix tries</a> and <a href="http://en.wikipedia.org/wiki/Suffix%5Farray" rel="nofollow">Suffix arrays</a></li>
<li><a href="http://en.wikipedia.org/wiki/Splay%5Ftree" rel="nofollow">Splay trees</a></li>
<li>Heap-ordered search trees (can someone provide a link for this, please?)</li>
<li><a href="http://en.wikipedia.org/wiki/Spatial%5Findex" rel="nofollow">Spatial indices</a>, particularly <a href="http://en.wikipedia.org/wiki/R-tree" rel="nofollow">R-Trees</a> and <a href="http://en.wikipedia.org/wiki/Kd-tree" rel="nofollow">KD-Trees</a></li>
<li><a href="http://en.wikipedia.org/wiki/Bit%5Farray" rel="nofollow">Bit arrays</a></li>
<li><a href="http://en.wikipedia.org/wiki/Rope%5F%28data%5Fstructure%29" rel="nofollow">Ropes</a></li>
<li><a href="http://en.wikipedia.org/wiki/Van%5FEmde%5FBoas%5Ftree" rel="nofollow">Van Emde-Boas trees</a></li>
<li><a href="http://donar.umiacs.umd.edu/quadtree/rectangles/cifquad.html" rel="nofollow">MX-CIF Quadtrees</a></li>
<li><a href="http://en.wikipedia.org/wiki/Hash%5Farray%5Fmapped%5Ftrie" rel="nofollow">HAMTs</a></li>
<li><a href="http://en.wikipedia.org/wiki/Inverted%5Findex" rel="nofollow">Inverted indices</a></li>
<li><a href="http://en.wikipedia.org/wiki/Disjoint-set%5Fdata%5Fstructure" rel="nofollow">Disjoint sets</a></li>
<li><a href="http://en.wikipedia.org/wiki/Pairing%5Fheap" rel="nofollow">Pairing heaps</a></li>
<li><a href="http://en.wikipedia.org/wiki/Treap" rel="nofollow">Treaps</a></li>
<li><a href="http://en.wikipedia.org/wiki/Binary%5Fspace%5Fpartitioning" rel="nofollow">Binary space partitioning trees</a></li>
<li><a href="http://en.wikipedia.org/wiki/Binary%5Fdecision%5Fdiagram" rel="nofollow">Binary decision diagrams</a></li>
<li><a href="http://en.wikipedia.org/wiki/Fusion%5Ftree" rel="nofollow">Fusion trees</a></li>
<li><a href="http://en.wikipedia.org/wiki/B%2B%5Ftree" rel="nofollow">B+ trees</a></li>
<li><a href="http://en.wikipedia.org/wiki/Quadtree" rel="nofollow">Quad trees</a></li>
<li><a href="http://en.wikipedia.org/wiki/Octree" rel="nofollow">Octrees</a></li>
<li><a href="http://en.wikipedia.org/wiki/Range%5Ftree" rel="nofollow">Range trees</a> (how much we love trees...)</li>
<li><a href="http://en.wikipedia.org/wiki/Linear%5Fhash" rel="nofollow">Linear hashing</a> and <a href="http://portal.acm.org/citation.cfm?id=901315&dl=GUIDE&coll=GUIDE&CFID=3731301&CFTOKEN=99586792" rel="nofollow">Spiral hashing</a></li>
<li><a href="http://en.wikipedia.org/wiki/Huffman%5Fcoding" rel="nofollow">Huffman trees</a></li>
<li><a href="http://en.wikipedia.org/wiki/Circular%5Fbuffer" rel="nofollow">Circular buffers</a></li>
<li><a href="http://scienceblogs.com/goodmath/2009/05/finally%5Ffinger%5Ftrees.php" rel="nofollow">Finger Trees</a></li>
<li><a href="http://en.wikipedia.org/wiki/Simplex%5Falgorithm" rel="nofollow">Simplex algorithm</a></li>
<li><a href="http://en.wikipedia.org/wiki/Zobrist%5Fhashing" rel="nofollow">Zobrist Hashing</a></li>
</ul>
<p>I hope this will be useful as a reference at some point.</p>
http://stackoverflow.com/questions/1624060/machine-learning-libraries-in-c2machine learning libraries in C#Dervin Thunk2009-10-26T10:23:52Z2009-11-09T01:59:29Z
<p>Hello.
Are there any machine learning libraries in C#? I'm after something like <a href="http://www.cs.waikato.ac.nz/~ml/weka/" rel="nofollow">WEKA</a>.
Thank you.</p>
http://stackoverflow.com/questions/1692915/query-language-for-graph-sets-data-modeling-question4query language for graph sets: data modeling questionDervin Thunk2009-11-07T12:41:47Z2009-11-07T17:50:16Z
<p>Hello.</p>
<p>Suppose I have a set of directed graphs. I need to query those graphs. I would like to get a feeling for my best choice for the graph modeling task. So far I have these options, but please don't hesitate to suggest others:</p>
<ul>
<li><p>Proprietary implementation (matrix)
and graph traversal algorithms. </p></li>
<li><p>RDBM and SQL option (too space consuming)</p></li>
<li><p>RDF and SPARQL option (too slow)</p></li>
</ul>
<p>What would you guys suggest? Regards.</p>
<p><strong>EDIT</strong>: Just to answer Mad's questions:</p>
<ul>
<li><p>Each one is relatively small, no more than 200 vertices, 400 edges. However, there are hundreds of them.</p></li>
<li><p>Frequency of querying: hard to say, it's an experimental system.</p></li>
<li><p>Speed: not real time, but practical, say 4-5 seconds tops.</p></li>
</ul>
http://stackoverflow.com/questions/1656864/debugging-c-in-the-command-line4debugging c# in the command lineDervin Thunk2009-11-01T10:51:11Z2009-11-01T11:38:49Z
<p>Hello. Just for fun, how close can we get to debug an application in C# using only the command-line out-of-the-box? No other software, just the command-line. That is, for instance, is there a way to peek at the values of variables, interact with output, etc. like the VS debugger does?</p>
<p><strong>EDIT:</strong> And just for completeness' sake, here is the mono equivalent: <a href="http://mono-project.com/Guide%3ADebugger" rel="nofollow">http://mono-project.com/Guide%3ADebugger</a>, although it doesn't seem to be very stable.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1649027/how-do-i-print-out-a-tree-structure/1649174#16491741Answer by Dervin Thunk for How do I print out a tree structure?Dervin Thunk2009-10-30T11:01:59Z2009-10-30T11:08:04Z<p>This is only for binary trees, but it is so good I thought I'd share it (again) on SO. <a href="http://www.cpp-programming.net/c-tidbits/printing-binary-trees-in-ascii/" rel="nofollow">Printing Binary Trees in ASCII</a></p>
http://stackoverflow.com/questions/1643616/algorithms-to-detect-phrases-and-keywords-from-text/1643876#16438761Answer by Dervin Thunk for Algorithms to detect phrases and keywords from textDervin Thunk2009-10-29T13:47:40Z2009-10-29T13:47:40Z<p>It depends how much you want to go into it. there are lots of systems out there that will help you with the part-of-speech tagging, noun-phrase extraction, etc. some of them are:</p>
<ul>
<li>gate</li>
<li>nltk <a href="http://www.nltk.org/" rel="nofollow">http://www.nltk.org/</a></li>
<li>tools in the penn treebank, <a href="http://www.cis.upenn.edu/~treebank/" rel="nofollow">http://www.cis.upenn.edu/~treebank/</a></li>
<li>software tools in SIL (the Summer Institute of Linguistics), <a href="http://www.sil.org/computing/catalog/index.asp" rel="nofollow">http://www.sil.org/computing/catalog/index.asp</a></li>
<li>see also NLP software at Stanford: <a href="http://nlp.stanford.edu/software/" rel="nofollow">http://nlp.stanford.edu/software/</a></li>
</ul>
<p>and books like manning and shcutze on statistical language processing... these are but a few. I'm sure I could find many more.</p>
http://stackoverflow.com/questions/1627014/windows-form-from-console1Windows form from consoleDervin Thunk2009-10-26T20:03:14Z2009-10-26T20:47:48Z
<p>Hello.
I would like to spawn a Windows form from the console using C#. Roughly like <code>display</code> does in Linux, and modify its contents, etc. Is that possible?</p>
http://stackoverflow.com/questions/1621080/image-recognition-a-box-and-randomly-placed-text1image recognition: a box and randomly placed textDervin Thunk2009-10-25T14:43:06Z2009-10-25T15:23:13Z
<p>Hello,
I was wondering if anyone would give me pointers to image rec packages that would help me recognize "text" (not OCR, just something that looks like text) and a black box frame. So, suppose:</p>
<pre><code>text
+----------+
| |
| text1 |
| |
| |
+----------+
text
</code></pre>
<p>How do I recognize that "text" boxes are text, and that, say, text1 is inside the box?</p>
<p>Apologies for the vague question... I wouldn't know where to start. This is not homework, btw.</p>
http://stackoverflow.com/questions/1606610/finding-the-minimum-set-of-properties-that-describe-a-referent-in-a-set-of-entiti5Finding the minimum set of properties that describe a referent in a set of entitiesDervin Thunk2009-10-22T11:34:15Z2009-10-23T11:02:18Z
<p>Hello. I was wondering if someone could help me get pointers to solve this problem. A link to algorithms would be great, but pointers to papers/info is also good.</p>
<p>The problem is as follows. Suppose I have a set E of entities <code>E={car1, car2, bicycle}</code> and a set of properties <code>P ={red, blue, small}</code>. I also have a knowledge base such that <code>red(bicycle), blue(car1), blue(car2), small(car2)</code>. Suppose I also have a referent <code>r</code> which belongs to <code>E</code>.</p>
<p>The problem consists of finding the minimum set of properties <code>P' \subseteq P</code> such that it unequivocally picks out <code>r</code> from <code>E</code>. Thus, if <code>r</code> is <code>car2</code>, then <code>P'={small}</code>.</p>
<p>Any ideas? I guess something like the set covering problem or functional dependencies (as in DB theory) might provide some insight, but I thought I'd ask before going into that literature. Yet another possibility is building graphs and find algorithms for subgraph isomorphisms... maybe.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/870417/rdf-owl-sparql-triple-stores-reasoners-and-other-semantic-web-apis-for-c0RDF/OWL/SPARQL/Triple Stores/Reasoners and other Semantic Web APIs for C#?Dervin Thunk2009-05-15T19:28:29Z2009-10-12T03:10:34Z
<p>For those of you working on Semantic Web development, which C# tools do you use for reasoning, parsing, etc.? The idea is to build a central repository of all C# APIs currently available. Sort of like I did <a href="http://stackoverflow.com/questions/654771/algorithms-and-data-structures-that-are-not-mainstream-closed">here</a>. Please post links, if you can, so I am able to summarize correctly.</p>
http://stackoverflow.com/questions/1535447/ontology-semantics-web-mining-resources/1535539#15355391Answer by Dervin Thunk for Ontology, semantics, web mining resourcesDervin Thunk2009-10-08T03:54:02Z2009-10-08T03:54:02Z<p>lots of video lectures on ontologies and semweb can be found <a href="http://videolectures.net/Top/Computer%5FScience/Semantic%5FWeb/" rel="nofollow">here</a>,</p>
<p>intro book: <a href="http://rads.stackoverflow.com/amzn/click/0262012421" rel="nofollow">Semantic web primer</a> and <a href="http://rads.stackoverflow.com/amzn/click/047041801X" rel="nofollow">semantic web programming</a></p>
http://stackoverflow.com/questions/1510599/text-encoding-issues/1510632#15106321Answer by Dervin Thunk for text encoding issues Dervin Thunk2009-10-02T16:32:23Z2009-10-02T16:47:44Z<p>It's probably a strange encoding page that has been used (is it in a specific (human) language encoding?). if you're on linux, write <code>file <filename></code> to find out what encoding it is using. Then you can use <code>iconv</code> or <code>uconv</code> to convert from whatver to UTF-8.</p>
<p>If <code>file</code> does not help, then it will be hard to "guess" the encoding the page is using. I know there are statistical algorithms that do this, but don't know much about them. Try using a hexadecimal file viewer, maybe that will also tell you stuff.</p>
<p>Maybe you can also post a snippet to see what may be going on.</p>
<p>FWIW</p>
http://stackoverflow.com/questions/874639/graph-viewer-drawer-for-c2graph viewer/drawer for c#?Dervin Thunk2009-05-17T13:41:40Z2009-10-02T14:26:22Z
<p>Hello,
Is there a good C# library for drawing/visualizing graphs? I'm talking about node-path visualization instead of line graphs or the like. (preferably native, not wrappers for pstricks or anything like that)
Thank you</p>
http://stackoverflow.com/questions/1488534/latex-newenvironment-label1latex newenvironment labelDervin Thunk2009-09-28T18:14:23Z2009-09-29T00:17:11Z
<p>I have the following <code>newenvironment</code> command:</p>
<pre><code>\newcounter{algoctr}[chapter] \setcounter{algoctr}{0}
\newenvironment{algo}[1] {
\refstepcounter{algoctr}\vspace{0.2cm}\noindent{\bf Algorithm
\arabic{chapter}.\arabic{algoctr}: #1}}{\par}
</code></pre>
<p>and I use it thusly</p>
<pre><code>\begin{algo}{blabbing a blah}
blah
blah
\label{eq:blabbing}
\end{algo}
</code></pre>
<p>However, every time I reference the label (\ref{eq:blabbing}), I get a "1", instead of a "1.1". </p>
<p>Could someone kindly let me know what I'm doing wrong?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1485006/domain-specific-languages-vs-library-of-functions10Domain-specific languages vs. library of functionsDervin Thunk2009-09-28T01:19:23Z2009-09-28T02:55:56Z
<p>This may be subjective, I don't know: I have this problem, which I'm kind of equating to the "what language for this project?" question, since I can't seem to solve it. </p>
<p>I've been commisioned to write a book about a certain domain (let's say a very specific branch of physics) for a very technically savvy community, but who are not programmers. It is a book on this subset of algorithms that they use day in day out. </p>
<p>For this, given my audience, I've been toying with the idea of defining a DSL, instead of making them learn language X, and discuss the algorithms in this light, instead of in a given language or in pseudo-code.</p>
<p>The question is, then: what are some indications that what you need is a DSL rather than a library of functions to be called from a well-established, general-purpose language?</p>
<p>Thanks.</p>
<p><strong>EDIT</strong>: Suggestions so far in favor of DSL:</p>
<ul>
<li>Shield from general-purpose language complexity.</li>
<li>Make "programmer" more productive in his/her domain.</li>
<li>Make language concepts highly intuitive for newbies in programming. (Just thought of this now)</li>
</ul>
http://stackoverflow.com/questions/1482422/browsing-editing-rdf-owl-instances/1482436#14824362Answer by Dervin Thunk for Browsing/editing RDF/OWL InstancesDervin Thunk2009-09-26T23:48:25Z2009-09-26T23:54:56Z<p>You can find something like what you want <a href="http://www.ontoprise.de/help/index.jsp?topic=/com.ontoprise.ontostudio.owl.help/html/ontology%5Fnavigator.html" rel="nofollow">here</a>, but there are more. I'll see if I can dig them up.</p>
<p>The <a href="http://www.thechiselgroup.com/jambalaya" rel="nofollow">Jambalaya plugin for Protege</a> is also good.</p>
<p>And yet <a href="http://www.neon-toolkit.org/wiki/Plugin%5Ffor%5FOWL%5FOntology%5FVisualization" rel="nofollow">another good plugin</a> for Protege.</p>
<p>I don't think anything will beat Protege though, unless you roll your own XML parser and populate a treeview, not hard to do.</p>
<p>Regards</p>
http://stackoverflow.com/questions/1466678/c-versus-wcalc-a-precision-problem0C versus wcalc: a precision problem?Dervin Thunk2009-09-23T15:19:17Z2009-09-23T18:51:15Z
<p>Hello,</p>
<p>Consider the following C code:</p>
<pre><code> int c=((0xa3>>6)&0x1f)|0xc0;
printf("%d\n",c);
</code></pre>
<p>It correctly prints out 194 (<code>0xc2</code>). If I write the same thing in <code>wcalc</code>, the result is 195, or <code>0xc3</code>. Is this some sort of precision error? Is this expected behavior? <code>floor</code> and <code>ceiling</code> functions do not work... or, to be more specific, <code>floor</code> works for 0xa3, but not for, say <code>0xa1</code>, and vice versa. </p>
<p>Any help appreciated. Thanks.</p>
http://stackoverflow.com/questions/1428313/bitwise-operations-online-resources0Bitwise operations: online resources?Dervin Thunk2009-09-15T16:45:55Z2009-09-15T16:53:18Z
<p>Hello. Is there a nice e-book (preferably PDF, like <a href="http://home.earthlink.net/~momotuk/pointers.pdf" rel="nofollow">Array and Pointers in C</a>) explaining bitwise operations? Other resources also welcome, but I'm after a self-contained document, if possible.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1424229/printing-astral-plane-unicode-code-point-to-console-using-int0Printing Astral Plane Unicode code point to console using intDervin Thunk2009-09-14T22:31:08Z2009-09-14T22:37:15Z
<p>Please see here for a <a href="http://stackoverflow.com/questions/1424067/printing-unicode-code-point-to-console-using-int-intead-of-unnnn">related question</a>. </p>
<p>However, <code>char</code> goes to <code>0xffff</code> (or <code>65535</code>). I need to write <code>0xd800df46</code> (or <code>66374</code>), Gothic letter Faihu, so casting that <code>int</code> to <code>char</code> will not work. I do the conversion ok, that is, I get the correct integer, meaning I calculate the surrogate pairs ok, but I don't know how to "render" it, convert it to a character to be output as a glyph.</p>
<p>Please notice that I cannot use \Unnnn for ... well, theoretical reasons.</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1424067/printing-unicode-code-point-to-console-using-int-intead-of-unnnn0Printing Unicode code point to console using int intead of \uNNNNDervin Thunk2009-09-14T21:40:57Z2009-09-14T22:31:27Z
<p>Hello, apologies if this is silly. How do I print a Unicode character, say \u20ac using an integer? So, instead of <code>Console.WriteLine("\u20ac");</code>, I would like to pass the integer 8364.
Thanks.</p>
http://stackoverflow.com/questions/1408369/guessing-utf-8-encoding0Guessing UTF-8 encoding Dervin Thunk2009-09-11T00:03:59Z2009-09-11T01:04:28Z
<p>I have a question that may be quite naive, but I feel the need to ask, because I don't really know what is going on. I'm on Ubuntu.</p>
<p>Suppose I do </p>
<pre><code>echo "t" > test.txt
</code></pre>
<p>if I then</p>
<pre><code>file test.txt
</code></pre>
<p>I get <code>test.txt:ASCII text</code></p>
<p>If I then do</p>
<pre><code>echo "å" > test.txt
</code></pre>
<p>Then I get</p>
<pre><code>test.txt: UTF-8 Unicode text
</code></pre>
<p>How does that happen? How does file "know" the encoding, or, alternatively, how does it guess it? </p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1400759/two-versions-of-excel-in-one-app0Two versions of Excel in one app?Dervin Thunk2009-09-09T16:39:49Z2009-09-09T18:13:19Z
<p>I was wondering about the best way to do this:</p>
<p>I have an app that works with the Excel DOM. Users may have either Excel 2003 or 2007 installed, I don't know which one a priori. Mine is a C# console app.</p>
<p>How can I make my app compatible with both? Is it possible at runtime to find what version and modify the Using statements accordingly? For example, I seem to remember that to use Excel 2003, I write <code>Using Microsoft.Excel</code>, or just <code>Excel</code> with the corresponding reference dll, but for 2007, I need <code>Using.interop.Excel</code> or something like that... not to the point right now, but makes the problem clearer. Besides, many of the types of Excel 2003 are, well, not clearly defined (<code>series</code>, for example, are <code>Arrays</code> of <code>Objetc</code>), while in 2007 some of them are more strongly "typed", etc. </p>
<p>I'd be happy to edit if the question is not yet clear enough.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1370837/whats-the-code-page-of-utf8/1370884#13708842Answer by Dervin Thunk for What's the code page of utf8?Dervin Thunk2009-09-03T00:34:49Z2009-09-03T00:34:49Z<p>There's no utf-8 codepage for the command prompt since it's not really Unicode compliant, afaik. You can choose a codepage that has the symbol you want, but that is all. That is why Unicode was born. Besides, UTF-8 is a way of encoding/decoding Unicode characters (as a variable 4-byte code point (1 byte for ASCII, 2 bytes for CJK, etc.), as opposed to UTF-16 (2+2bytes) or UTF-32 (4-bytes, fixed)), not the character set itself. See <a href="http://technet.microsoft.com/en-us/library/bb490874.aspx" rel="nofollow">here</a>, but mostly take a look at <a href="http://unicode.org/" rel="nofollow">Unicode</a>.</p>
http://stackoverflow.com/questions/1358013/how-to-box-characters-in-latex1How to box characters in latexDervin Thunk2009-08-31T15:29:26Z2009-08-31T23:22:02Z
<p>Hello. Maybe there is a package to do this, but I have not been able to find it. If it doesn't exist, I would appreciate ideas as to how to do ithis. Basically, I need something that would box characters. Something like this:</p>
<pre><code>-------
| A| L|
- - - ...
| 2| 3|
-------
</code></pre>
<p>Knuth has something like this in TAOCP, when he discusses MIX's word... without the bottom part, though.</p>
<p>So, a character, and some other char or chars below. Any idea? (I'm foreseeing a tumbleweed)...</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1301337/accented-characters-in-emacs231Accented characters in Emacs23Dervin Thunk2009-08-19T17:11:02Z2009-08-26T09:10:21Z
<p>This is embarrasing, but... in my Emacs (GNU Emacs 23.0.60.1 (i486-pc-linux-gnu, GTK+ Version 2.12.9) of 2008-03-19 on vernadsky, modified by Debian) I can't really input accented characters ("á") when using accent dead-keys. If I do, the char appears in the minibuffer and I cannot make it appear in the text buffer. I'm using a French keyboard.</p>
<p>My older emacs (GNU Emacs 22.1.1 (i486-pc-linux-gnu, X toolkit, Xaw3d scroll bars) of 2008-05-03 on terranova, modified by Ubuntu) has no problems. </p>
<p>Any ideas as to what I'm missing? Thank you.</p>
http://stackoverflow.com/questions/1210637/lesser-known-string-similarity-metrics3Lesser known string similarity metricsDervin Thunk2009-07-31T04:06:57Z2009-08-20T15:53:46Z
<p>Hello. This may be a hard question to answer but I'm researching something and I was wondering if anyone knew of "lesser known" string similarity metrics (see <a href="http://en.wikipedia.org/wiki/Category:String%5Fsimilarity%5Fmeasures" rel="nofollow">this page</a> for examples of well-known ones). I've been to wikipedia and Sourceforge has a nice library called <a href="http://sourceforge.net/projects/simmetrics/" rel="nofollow">Simmetrics</a> with <a href="http://www.dcs.shef.ac.uk/~sam/stringmetrics.html" rel="nofollow">a bunch of string metric algorithms</a>. Has anyone done some research or has found some string algorithm that called your attention as not much used?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1290865/strings-in-c-pitfalls-and-techniques6Strings in C: pitfalls and techniquesDervin Thunk2009-08-17T22:36:47Z2009-08-19T20:16:17Z
<p>Dear all;</p>
<p>I will be coaching an ACM Team next month (go figure), and the time has come to talk about strings in C. Besides a discussion on the standard lib, <code>strcpy</code>, <code>strcmp</code>, etc., I would like to give them some hints (something like <code>str[0] is equivalent to *str</code>, and things like that).</p>
<p>Do you know of any lists (like cheat sheets) or your own experience in the matter?</p>
<p>I'm already aware of the books for the ACM competition (which are good, see particularly <a href="http://online-judge.uva.es/problemset/Art%5Fof%5FProgramming%5FContest%5FSE%5Ffor%5Fuva.pdf" rel="nofollow">this</a>), but I'm after tricks of the trade.</p>
<p>Thank you.</p>
<p><strong>Edit</strong>: Thank you very much everybody. I will accept the most voted answer, and have duly upvoted others which I think are relevant. I expect to do a summary here (like I did <a href="http://stackoverflow.com/questions/654771/algorithms-and-data-structures-that-are-not-mainstream-closed">here</a>, asap). I have enough material now and I'm certain this has improved the session on strings immensely. Once again, thanks.</p>
http://stackoverflow.com/questions/1752732/how-do-i-build-a-domain-specific-query-language/1752850#1752850Comment by Dervin Thunk on How do I build a domain-specific query language?Dervin Thunk2009-11-18T11:19:35Z2009-11-18T11:19:35ZSo you suggest I define the syntax of the dsl first, and then the rest. Maybe this is the right way to go, it will guide the rest of the efforts. Is that your take? Thanks!http://stackoverflow.com/questions/1752732/how-do-i-build-a-domain-specific-query-language/1753063#1753063Comment by Dervin Thunk on How do I build a domain-specific query language?Dervin Thunk2009-11-18T11:15:38Z2009-11-18T11:15:38Z@Erwin: "Brief, I don't see what you're after." Yes, this part is clear. You should therefore refrain from commenting. You obviously have done a bit of db theory, but maybe just stopped at functional dependencies, right? Anyway, the predicates I'm referring to are natural language words from an experts' vocabulary, this is the vocabulary (in a domain-specific query language) I would like to teach them to use, rather than SQL. Please, for next time, think the question through, and try to visualize the problem.http://stackoverflow.com/questions/1656864/debugging-c-in-the-command-lineComment by Dervin Thunk on debugging c# in the command lineDervin Thunk2009-11-01T11:03:59Z2009-11-01T11:03:59Z@Martinho. Yes, something like that. Look at driis' answer, and a screenshot here: <a href="http://www.insidepro.com/kk/258/258_11.jpg" rel="nofollow">insidepro.com/kk/258/258_11.jpg</a>, that's quite awesome.http://stackoverflow.com/questions/1656864/debugging-c-in-the-command-line/1656871#1656871Comment by Dervin Thunk on debugging c# in the command lineDervin Thunk2009-11-01T11:01:47Z2009-11-01T11:01:47ZVery interesting! Probably MDbg is what I'm looking for... I'll give it a shot.http://stackoverflow.com/questions/1656864/debugging-c-in-the-command-line/1656869#1656869Comment by Dervin Thunk on debugging c# in the command lineDervin Thunk2009-11-01T10:57:43Z2009-11-01T10:57:43ZThanks, Darin. I'm only after what can be done with the tools that come with VS, no additional downloads.http://stackoverflow.com/questions/1649027/how-do-i-print-out-a-tree-structure/1649174#1649174Comment by Dervin Thunk on How do I print out a tree structure?Dervin Thunk2009-10-30T11:15:13Z2009-10-30T11:15:13Zthanks, groo! + 15 charshttp://stackoverflow.com/questions/1643522/outof-memory-exceptionComment by Dervin Thunk on outof memory exceptionDervin Thunk2009-10-29T12:59:52Z2009-10-29T12:59:52ZI agree with randolph. +1 to the commenthttp://stackoverflow.com/questions/1643522/outof-memory-exceptionComment by Dervin Thunk on outof memory exceptionDervin Thunk2009-10-29T12:58:09Z2009-10-29T12:58:09ZIt's called linguistic inference. Humans do it pretty well. Let me try, anto's question is: "why might that be?", albeit underspecified.http://stackoverflow.com/questions/1631598/modifying-a-picture-box-after-showdialog-in-a-c-form/1631612#1631612Comment by Dervin Thunk on modifying a picture box after showdialog in a c# formDervin Thunk2009-10-27T15:32:27Z2009-10-27T15:32:27ZScientific computing :) I need mostly console algos, I don't really gain anything from doing enything visually, except wasting time designing the forms. I'm loading the image to test the algos visually, but after I'm satisfied, the form goes :)http://stackoverflow.com/questions/1624060/machine-learning-libraries-in-c/1624092#1624092Comment by Dervin Thunk on machine learning libraries in C#Dervin Thunk2009-10-26T10:38:53Z2009-10-26T10:38:53ZNice one. Upvoted.http://stackoverflow.com/questions/1621080/image-recognition-a-box-and-randomly-placed-text/1621105#1621105Comment by Dervin Thunk on image recognition: a box and randomly placed textDervin Thunk2009-10-25T16:29:19Z2009-10-25T16:29:19ZThanks, Peter. I agree it will never be 100%, so there will always be some manual intervention. http://stackoverflow.com/questions/1621080/image-recognition-a-box-and-randomly-placed-text/1621105#1621105Comment by Dervin Thunk on image recognition: a box and randomly placed textDervin Thunk2009-10-25T15:48:55Z2009-10-25T15:48:55ZPeter, the image would be closer to this: <a href="http://images.freshmeat.net/editorials/r_intro/images/line-graph-1.jpg" rel="nofollow">images.freshmeat.net/editorials/r_intro/…</a>http://stackoverflow.com/questions/1621080/image-recognition-a-box-and-randomly-placed-text/1621160#1621160Comment by Dervin Thunk on image recognition: a box and randomly placed textDervin Thunk2009-10-25T15:38:47Z2009-10-25T15:38:47Zsorry about my naive question, but what happens if in your doc you have a T at a small y coordinate? wouldn't that be confused with the left corner?http://stackoverflow.com/questions/1621080/image-recognition-a-box-and-randomly-placed-text/1621105#1621105Comment by Dervin Thunk on image recognition: a box and randomly placed textDervin Thunk2009-10-25T15:13:20Z2009-10-25T15:13:20ZMy documents are simple... they are gif images, so they are clean.http://stackoverflow.com/questions/1621080/image-recognition-a-box-and-randomly-placed-textComment by Dervin Thunk on image recognition: a box and randomly placed textDervin Thunk2009-10-25T15:12:34Z2009-10-25T15:12:34Zno, much simpler... I have a box and text in a gif file. I need to recognize (if there is) a box and random text.