User nt - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T13:23:07Zhttp://stackoverflow.com/feeds/user/3926http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/9033/hidden-features-of-c/37285#3728553Answer by nt for Hidden Features of C#?nt2008-09-01T00:03:41Z2009-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#2235672Answer by nt for How do I write objects for easy XML Serialization in VB.NET?nt2008-10-21T21:26:15Z2008-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><XmlRoot ("foo")> _
Public Class Foo
<XmlAttribute ("bar")>_
Public bar As String
<XmlAttribute ("baz")>_
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#1945151Answer by nt for static method or instance constructornt2008-10-11T19:48:30Z2008-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#951490Answer by nt for Regex to replace Boolean with boolnt2008-09-18T18:13:00Z2008-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#950990Answer by nt for What is quicker, switch on string or elseif on type?nt2008-09-18T18:08:05Z2008-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#950351Answer by nt for Python implementation of Parsec?nt2008-09-18T18:02:07Z2008-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-1Answer by nt for How to call external command in Pythonnt2008-09-18T01:37:24Z2008-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#749704Answer by nt for Tool to parse a filent2008-09-16T17:44:09Z2008-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#643562Answer by nt for Is there a way around coding in Python without the tab, indent & whitespace criteria?nt2008-09-15T16:18:30Z2008-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#372933Answer by nt for Which 4.x version of gcc should one use?nt2008-09-01T00:10:42Z2008-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#372521Answer by nt for How do I use Python's itertools.groupby()?nt2008-08-31T23:27:16Z2008-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#372452Answer by nt for Resources for lexing, tokenising and parsing in pythonnt2008-08-31T23:14:54Z2008-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#372406Answer by nt for What is the best way to get OS specific information in Java?nt2008-08-31T23:08:15Z2008-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#372362Answer by nt for What is currently the best way to get a favicon to display in all browsers that support Favicons?nt2008-08-31T23:05:54Z2008-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#372311Answer by nt for How do you parse an IP address string in C#?nt2008-08-31T23:01:31Z2008-08-31T23:01:31Z<pre><code>var ipuint32 = BitConvertor.ToUInt32(IPAddress.Parse"some.ip.address.ipv4").GetAddressBytes());`
</code></pre>