User nt - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T13:23:07Z http://stackoverflow.com/feeds/user/3926 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/9033/hidden-features-of-c/37285#37285 53 Answer by nt for Hidden Features of C#? nt 2008-09-01T00:03:41Z 2009-09-27T19:25:06Z <pre><code>Environment.NewLine </code></pre> <p>for system independent newlines.</p> http://stackoverflow.com/questions/223526/how-do-i-write-objects-for-easy-xml-serialization-in-vb-net/223567#223567 2 Answer by nt for How do I write objects for easy XML Serialization in VB.NET? nt 2008-10-21T21:26:15Z 2008-10-22T13:57:22Z <p>Use the System.Xml and System.Xml.Serialization namespaces. They describe classes that you can use to annotate your classes' members with the corresponding tag.</p> <p>For example (in C#):</p> <pre><code>[XmlRoot("foo")] public class Foo { [XmlAttribute("bar")] public string bar; [XmlAttribute("baz")] public double baz; } </code></pre> <p>Or in VB.NET (might not be completely syntactically correct):</p> <pre><code>&lt;XmlRoot ("foo")&gt; _ Public Class Foo &lt;XmlAttribute ("bar")&gt;_ Public bar As String &lt;XmlAttribute ("baz")&gt;_ Public baz As String End Class </code></pre> <p>You can then use the XmlSerializer class to output XML.</p> <p>In C#:</p> <pre><code>using(XmlSerializer xmls = new XmlSerializer(typeof(Foo)){ TextWriter tw = new StreamWriter( "foo.xml" ); //use it! } </code></pre> <p>Or VB:</p> <pre><code>Using xmls As New XmlSerializer(gettype(Foo)), _ tw As TextWriter = New StreamWriter("foo.xml") ''//use it! End Using </code></pre> <p><a href="http://msdn.microsoft.com/en-us/library/system.xml.serialization.aspx" rel="nofollow">Reference</a>.</p> http://stackoverflow.com/questions/194496/static-method-or-instance-constructor/194515#194515 1 Answer by nt for static method or instance constructor nt 2008-10-11T19:48:30Z 2008-10-11T19:48:30Z <p>I personally prefer to see a normal constructor, since contructors should be used to construct. However, if there is a good reason to <em>not</em> use one, ie if FromCharacters explicitly stated that it didn't allocate new memory, it would be worthwhile. The "new" in the invocation has meaning.</p> http://stackoverflow.com/questions/35178/regex-to-replace-boolean-with-bool/95149#95149 0 Answer by nt for Regex to replace Boolean with bool nt 2008-09-18T18:13:00Z 2008-09-18T18:13:00Z <pre><code>#define Boolean bool </code></pre> <p>Let the preprocesser take care of this. Every time you see a Boolean you can either manually fix it or hope a regex doesn't make a mistake. Depending on how many macros you use you can you could dump the out of cpp.</p> http://stackoverflow.com/questions/94305/what-is-quicker-switch-on-string-or-elseif-on-type/95099#95099 0 Answer by nt for What is quicker, switch on string or elseif on type? nt 2008-09-18T18:08:05Z 2008-09-18T18:08:05Z <p>Switch on string basically gets compiled into a if-else-if ladder. Try decompiling a simple one. In any case, testing string equailty should be cheaper since they are interned and all that would be needed is a reference check. Do what makes sense in terms of maintainability; if you are compring strings, do the string switch. If you are selecting based on type, a type ladder is the more appropriate.</p> http://stackoverflow.com/questions/94952/python-implementation-of-parsec/95035#95035 1 Answer by nt for Python implementation of Parsec? nt 2008-09-18T18:02:07Z 2008-09-18T18:02:07Z <p>There's ANTLR, which is LL(*), there's PyParsing, which is more object friendly and is sort of like a DSL, and then there's <a href="http://www.canonware.com/Parsing/" rel="nofollow">Parsing</a> which is like OCaml's Menhir.</p> http://stackoverflow.com/questions/89228/how-to-call-external-command-in-python/89237#89237 -1 Answer by nt for How to call external command in Python nt 2008-09-18T01:37:24Z 2008-09-18T01:37:24Z <pre><code>import os os.system("your command") </code></pre> <p>Note that this is dangerous, since the command isn't cleaned. I leave it up to you to google for the relevant docs on the 'os' and 'sys' modules. There are a bunch of functions (exec* , spawn*) that will do similar things.</p> http://stackoverflow.com/questions/74928/tool-to-parse-a-file/74970#74970 4 Answer by nt for Tool to parse a file nt 2008-09-16T17:44:09Z 2008-09-16T17:44:09Z <p>Make a grammar using ANTLR. If you're using C, lex/yacc are native. ANTLR creates native parsers in Java, Python and .NET. Your output looks like a repl; try asking the vendor for a spec on the input language.</p> http://stackoverflow.com/questions/63086/is-there-a-way-around-coding-in-python-without-the-tab-indent-whitespace-crite/64356#64356 2 Answer by nt for Is there a way around coding in Python without the tab, indent & whitespace criteria? nt 2008-09-15T16:18:30Z 2008-09-15T16:18:30Z <p><a href="http://timhatch.com/projects/pybraces/" rel="nofollow">pybraces</a></p> <p>It's unsupported.</p> http://stackoverflow.com/questions/32448/which-4-x-version-of-gcc-should-one-use/37293#37293 3 Answer by nt for Which 4.x version of gcc should one use? nt 2008-09-01T00:10:42Z 2008-09-01T00:10:42Z <p>The best quality control for gcc is the linux kernel. GCC is the compiler of choice for basically all major open source C/C++ programs. A released GCC, especially one like 4.3.X, which is in major linux distros, should be pretty good.</p> <p>GCC 4.3 also has better support for optimizations on newer cpus.</p> http://stackoverflow.com/questions/773/how-do-i-use-pythons-itertools-groupby/37252#37252 1 Answer by nt for How do I use Python's itertools.groupby()? nt 2008-08-31T23:27:16Z 2008-08-31T23:27:16Z <p>A neato trick with groupby is run length encoding in one line:</p> <pre><code>[(c,len(list(cgen))) for c,cs in groupby(some_string)] </code></pre> <p>will give you a list of 2-tuples where the first element is the char and the 2nd is the number of repetitions.</p> http://stackoverflow.com/questions/36953/resources-for-lexing-tokenising-and-parsing-in-python/37245#37245 2 Answer by nt for Resources for lexing, tokenising and parsing in python nt 2008-08-31T23:14:54Z 2008-08-31T23:14:54Z <p>I suggest <a href="http://www.canonware.com/Parsing/" rel="nofollow">http://www.canonware.com/Parsing/</a>, since it is pure python and you don't need to learn a grammar, but it isn't widely used, and has comparatively little documentation. The heavyweight is ANTLR and PyParsing. ANTLR can generate java and C++ parsers too, and AST walkers but you will have to learn what amounts to a new language.</p> http://stackoverflow.com/questions/37198/what-is-the-best-way-to-get-os-specific-information-in-java/37240#37240 6 Answer by nt for What is the best way to get OS specific information in Java? nt 2008-08-31T23:08:15Z 2008-08-31T23:08:15Z <p>My docs would probably best be handled by accessing:</p> <pre><code>System.getProperty("user.home"); </code></pre> <p>Look up the docs on <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/System.html" rel="nofollow">System.getProperty</a>.</p> http://stackoverflow.com/questions/37073/what-is-currently-the-best-way-to-get-a-favicon-to-display-in-all-browsers-that-s/37236#37236 2 Answer by nt for What is currently the best way to get a favicon to display in all browsers that support Favicons? nt 2008-08-31T23:05:54Z 2008-08-31T23:05:54Z <p>IE6 cannot handle PNG's correctly, be warned.</p> http://stackoverflow.com/questions/36831/how-do-you-parse-an-ip-address-string-in-c/37231#37231 1 Answer by nt for How do you parse an IP address string in C#? nt 2008-08-31T23:01:31Z 2008-08-31T23:01:31Z <pre><code>var ipuint32 = BitConvertor.ToUInt32(IPAddress.Parse"some.ip.address.ipv4").GetAddressBytes());` </code></pre>