User kurious - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T08:32:48Zhttp://stackoverflow.com/feeds/user/109http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/199761/how-can-you-use-optional-parameters-in-c3How can you use optional parameters in C#?kurious2008-10-14T01:55:23Z2009-11-17T01:50:33Z
<p>We're building a web API that's programmatically generated from a C# class (the class has method "GetFooBar(int a, int b)" and the API has a method GetFooBar taking query params like &a=foo&b=bar. </p>
<p>The classes needs to support optional parameters, which isn't supported in C# the language. What's the best approach?</p>
http://stackoverflow.com/questions/289/how-do-you-sort-a-c-dictionary-by-value15How do you sort a C# dictionary by value?kurious2008-08-02T00:40:58Z2009-09-10T14:55:52Z
<p>I often have a Dictionary of keys & values and need to sort it by value. For example, I have a hash of words and their frequencies, and want to order them by frequency.</p>
<p>There's SortedList which is good for a single value (frequency), but I want to map it back to the word.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/f7fta44c.aspx" rel="nofollow">SortedDictionary</a> orders by key, not value. Some resort to a <a href="http://www.codeproject.com/KB/recipes/lookupcollection.aspx" rel="nofollow">custom class</a>, but what's the cleanest way?</p>
http://stackoverflow.com/questions/67959/net-xml-serialization-gotchas18.NET XML serialization gotchas?kurious2008-09-15T23:35:14Z2009-09-10T12:37:33Z
<p>I've run into a few gotchas when doing C# XML serialization
that I thought I'd share:</p>
<ul>
<li>You can't serialize items that are read-only (like KeyValuePairs)</li>
<li>You can't serialize a generic dictionary. Instead, try this wrapper class (from <a href="http://weblogs.asp.net/pwelter34/archive/2006/05/03/444961.aspx" rel="nofollow">http://weblogs.asp.net/pwelter34/archive/2006/05/03/444961.aspx</a>):</li>
</ul>
<p><hr/></p>
<pre><code>using System;
using System.Collections.Generic;
using System.Text;
using System.Xml.Serialization;
[XmlRoot("dictionary")]
public class SerializableDictionary<TKey, TValue> : Dictionary<TKey, TValue>, IXmlSerializable
{
#region IXmlSerializable Members
public System.Xml.Schema.XmlSchema GetSchema()
{
return null;
}
public void ReadXml(System.Xml.XmlReader reader)
{
XmlSerializer keySerializer = new XmlSerializer(typeof(TKey));
XmlSerializer valueSerializer = new XmlSerializer(typeof(TValue));
bool wasEmpty = reader.IsEmptyElement;
reader.Read();
if (wasEmpty)
return;
while (reader.NodeType != System.Xml.XmlNodeType.EndElement)
{
reader.ReadStartElement("item");
reader.ReadStartElement("key");
TKey key = (TKey)keySerializer.Deserialize(reader);
reader.ReadEndElement();
reader.ReadStartElement("value");
TValue value = (TValue)valueSerializer.Deserialize(reader);
reader.ReadEndElement();
this.Add(key, value);
reader.ReadEndElement();
reader.MoveToContent();
}
reader.ReadEndElement();
}
public void WriteXml(System.Xml.XmlWriter writer)
{
XmlSerializer keySerializer = new XmlSerializer(typeof(TKey));
XmlSerializer valueSerializer = new XmlSerializer(typeof(TValue));
foreach (TKey key in this.Keys)
{
writer.WriteStartElement("item");
writer.WriteStartElement("key");
keySerializer.Serialize(writer, key);
writer.WriteEndElement();
writer.WriteStartElement("value");
TValue value = this[key];
valueSerializer.Serialize(writer, value);
writer.WriteEndElement();
writer.WriteEndElement();
}
}
}
</code></pre>
<p>Any other XML gotchas out there?</p>
http://stackoverflow.com/questions/886798/how-do-you-use-mysql-innodb-tables-on-os-x0How do you use MySQL InnoDB tables on OS X?kurious2009-05-20T08:21:49Z2009-05-30T20:49:41Z
<p>I had trouble using InnoDB MySQL 5.0 on OS X because of a my.cnf settings issue. Listing the gotchas in case it helps anyone:</p>
<p>If InnoDB is disabled, check the error log (hostname.err, in the data directory). I had an empty setting which I changed:</p>
<pre><code> innodb_data_file_path = ibdata1:10M:autoextend
</code></pre>
<p>Hope this helps someone. I was running a rails app and getting errors with my sessions table.</p>
http://stackoverflow.com/questions/252249/how-do-you-run-lucene-on-net3How do you run Lucene on .net?kurious2008-10-31T00:34:15Z2009-05-11T07:25:58Z
<p>Lucene is an excellent search engine, but the .NET version is behind the official Java release (latest stable .NET release is 2.0, but the latest Java Lucene version is 2.4, which has more features).</p>
<p>How do you get around this?</p>
http://stackoverflow.com/questions/787033/api-or-widget-to-preview-songs0API or widget to preview songskurious2009-04-24T18:27:41Z2009-04-24T18:27:41Z
<p>Hi, does anyone have experience with any APIs/Widgets for previewing music? We're displaying a list of artists and would love to have a little flash widget to preview a song.</p>
<p>Amazon MP3 has a flash widget you can build (specify search terms for), but are there any others you'd recommend? Ideally, there'd be a more programmable API.</p>
http://stackoverflow.com/questions/675507/able-to-send-email-through-exe-but-not-asp-net0Able to send email through .exe, but not ASP.NET?kurious2009-03-23T22:41:44Z2009-03-31T20:55:22Z
<p>I'm trying to send an email to an external address as part of a web app. I can send an email fine when using a simple executable running on the server:</p>
<pre><code>private void button1_Click(object sender, EventArgs e)
{
MailMessage message = new MailMessage(welcomeMessageFrom, toAddress, welcomeMessageSubject, welcomeMessageSubject);
SmtpClient emailClient = new SmtpClient("mail.sortuv.com");
System.Net.NetworkCredential SMTPUserInfo = new System.Net.NetworkCredential(username, password);
emailClient.UseDefaultCredentials = false;
emailClient.Credentials = SMTPUserInfo;
emailClient.Send(message);
}
</code></pre>
<p>However, trying the same code from an ASP.NET page gives the following exception:</p>
<pre><code>Mailbox unavailable. The server response was: 5.7.1 Unable to relay for <user's email>
</code></pre>
<p>I'm new to IIS but do you have suggestions on how to debug?</p>
<p><strong>UPDATE</strong>: I had to specify the domain for the user as well. Still not sure why a regular .exe was ok without it. Hope this helps someone.</p>
http://stackoverflow.com/questions/675507/able-to-send-email-through-exe-but-not-asp-net/703016#7030160Answer by kurious for Able to send email through .exe, but not ASP.NET?kurious2009-03-31T20:54:31Z2009-03-31T20:54:31Z<p>Thanks for all the help guys, I just figured it out. I had to specify the domain:</p>
<pre><code>SmtpClient emailClient = new SmtpClient(servername);
System.Net.NetworkCredential SMTPUserInfo = new System.Net.NetworkCredential(name, pass);
SMTPUserInfo.Domain = domain; // i.e. "foo.com"
emailClient.UseDefaultCredentials = false;
emailClient.Credentials = SMTPUserInfo;
emailClient.Send(message);
</code></pre>
http://stackoverflow.com/questions/702916/create-tinyurl-style-hash/702933#70293312Answer by kurious for Create Tinyurl style hashkurious2009-03-31T20:34:05Z2009-03-31T20:34:05Z<p>I don't think tinyurl hashes the strings; they have a database ID (1, 2, 3) which is coverted to base 36 (0-9A-Z): <a href="http://en.wikipedia.org/wiki/Base_36" rel="nofollow">http://en.wikipedia.org/wiki/Base_36</a></p>
http://stackoverflow.com/questions/699535/online-service-to-monitor-website-latency1Online service to monitor website latency?kurious2009-03-31T00:06:09Z2009-03-31T02:05:35Z
<p>We're using Pingdom to monitor our site availability and it's working well. Is there a similar service to monitor website latency? We want to make sure the site not only returns, but is running at a reasonable speed.</p>
<p>We've made some internal test pages for monitoring, etc. but it'd be nice to have an external service to verify (especially to measure the 'total' time from an external network).</p>
<p>Does anyone have a recommendation for an online service to measure website response time and send alerts if it is running slowly?</p>
http://stackoverflow.com/questions/493236/how-do-you-migrate-an-iis-7-site-to-another-server1How do you migrate an IIS 7 site to another server?kurious2009-01-29T20:22:38Z2009-02-01T02:04:41Z
<p>I'm new to the IIS world but am wondering the best practice for moving a website to another server (along with all settings, etc.)</p>
<ul>
<li>Manually recreate the site on the new server (not maintainable for obvious reasons)</li>
<li>Copy the applicationHost.config settings file</li>
<li>Use appcmd to make a backup and restore</li>
<li>Use MSDeploy to publish the site on the new machine</li>
<li>Use a 3rd party tool</li>
</ul>
<p>Just wondering what others' experiences have been. Thanks!</p>
http://stackoverflow.com/questions/37105/how-do-you-actually-read-source-code9How do you actually read source code?kurious2008-08-31T21:08:34Z2009-01-29T15:53:32Z
<p><a href="http://beta.stackoverflow.com/questions/9603/what-are-some-great-source-code-to-read" rel="nofollow">Reading source code</a> is a good way to improve as a programmer, but I've never seen a great explanation of how to do it. We often read textbooks & novels linearly, perhaps taking notes along the way. What do you do when trying to understand how a program works?</p>
<ul>
<li>Try the user-facing version of the program with your own inputs</li>
<li>Read the API</li>
<li>Trace through the core functions in your head, transforming imaginary inputs</li>
<li>Start at "main" and fire off the debugger!</li>
</ul>
<p>I read the Ruby on Rails source code when I studied the <a href="http://betterexplained.com/articles/intermediate-rails-understanding-models-views-and-controllers/" rel="nofollow">MVC pattern</a>. Many discussions leave out critical parts of MVC as done in Rails:</p>
<ul>
<li>The <strong>web server</strong> negotiating the communication with the browser (the controller's HTML output has to get to the browser somehow)</li>
<li>The <strong>dispatcher</strong> translating the incoming HTTP request to function parameters and instantiating the controller (you don't want this logic in the web server!)</li>
</ul>
<p>When people say MVC they really mean "MVC + the subsystem to run it". Since I'd used Rails for a while before digging in, I had an idea of what to expect but this was nevertheless enlightening. But if I had never touched Rails (or MVC) and used it for a few projects I wouldn't be sure where to start.</p>
<p>I'm curious: How do you go about understanding the source for a project?</p>
<p><hr /></p>
<p>Edit: Thanks for the comments! To clarify my question: "They say the best way to write well is to read. <a href="http://en.wikipedia.org/wiki/How_to_Read_a_Book" rel="nofollow">How do you</a> read literature with the goal of improving as a writer?" The analogous question is:</p>
<ul>
<li>How do you read acknowledged "well-written code" with the intent of improving as a programmer?</li>
</ul>
<p>With Rails, reading the code demonstrates several techniques (such as "Convention over configuration" -- put files in named directories so the program can automatically find them) and design patterns (MVC) that make the code clean, functional, and elegant. How do you go about extracting these & other lessons from code to improve your own skill?</p>
http://stackoverflow.com/questions/315009/mechanical-turk-using-html-in-the-api/316135#3161351Answer by kurious for Mechanical Turk: Using HTML in the APIkurious2008-11-25T01:54:41Z2008-11-25T01:54:41Z<p>As far as I know, I haven't seen a way to use manually created questions from the API.</p>
<p>If you're planning on doing programmatic access, it may be easier to use the API in its entirety (i.e., specify your questions via XML and create HITs from that question):</p>
<p><a href="http://www.codeplex.com/MTurkDotNet" rel="nofollow">http://www.codeplex.com/MTurkDotNet</a> (.NET SDK)</p>
<p>The API is pretty easy to use, and there several code samples.</p>
<p>Alternatively, you can use the "External Question" question type which may be better suited -- you can host the entire question form yourself.</p>
http://stackoverflow.com/questions/315829/do-c-objects-know-the-type-of-the-more-specific-class3Do C# objects know the type of the more specific class?kurious2008-11-24T23:13:20Z2008-11-24T23:15:48Z
<p>Suppose you create a generic Object variable and assign it to a specific instance. If you do GetType(), will it get type Object or the type of the original class?</p>
http://stackoverflow.com/questions/315829/do-c-objects-know-the-type-of-the-more-specific-class/315837#3158372Answer by kurious for Do C# objects know the type of the more specific class?kurious2008-11-24T23:14:55Z2008-11-24T23:14:55Z<p><strong>Short answer: GetType() will return the Type of the specific object.</strong> I made a quick app to test this:</p>
<pre><code> Foo f = new Foo();
Type t = f.GetType();
Object o = (object)f;
Type t2 = o.GetType();
bool areSame = t.Equals(t2);
</code></pre>
<p>And yep, they are the same.</p>
http://stackoverflow.com/questions/304054/best-practices-on-managing-complexity-visualizing-components-in-your-software6Best practices on managing complexity/visualizing components in your software?kurious2008-11-20T01:16:54Z2008-11-22T17:08:51Z
<p>We're building tools to mine information from the web. We have several pieces, such as </p>
<ul>
<li>Crawl data from the web</li>
<li>Extract information based on templates & business rules</li>
<li>Parse results into database</li>
<li>Apply normalization & filtering rules</li>
<li>Etc, etc.</li>
</ul>
<p>The problem is troubleshooting issues & having a good "high-level picture" of what's happening at each stage. </p>
<p><strong>What techniques have helped you understand and manage complex processes?</strong> </p>
<ul>
<li>Use workflow tools like Windows Workflow foundation</li>
<li>Encapsulate separate functions into command-line tools & use scripting tools to link them together</li>
<li>Write a Domain-Specific Language (DSL) to specify what order things should happen at a higher level.</li>
</ul>
<p>Just curious how you get a handle on a system with many interacting components. We'd like document/understand how the system works at a higher level than tracing through the source code.</p>
http://stackoverflow.com/questions/311062/caching-javascript-files/311089#3110891Answer by kurious for caching JavaScript fileskurious2008-11-22T08:32:47Z2008-11-22T08:32:47Z<p>In your Apache .htaccess file:</p>
<pre><code>#Create filter to match files you want to cache
<Files *.js>
Header add "Cache-Control" "max-age=604800"
</Files>
</code></pre>
<p>I wrote about it here also:</p>
<p><a href="http://betterexplained.com/articles/how-to-optimize-your-site-with-http-caching/" rel="nofollow">http://betterexplained.com/articles/how-to-optimize-your-site-with-http-caching/</a></p>
http://stackoverflow.com/questions/199718/can-you-instantiate-an-object-instance-from-json-in-net/299893#2998930Answer by kurious for Can you Instantiate an Object Instance from JSON in .NET?kurious2008-11-18T19:45:28Z2008-11-18T19:45:28Z<p>There's also a C# JSON parsing library here:</p>
<p><a href="http://www.codeproject.com/KB/recipes/JSON.aspx" rel="nofollow">http://www.codeproject.com/KB/recipes/JSON.aspx</a></p>
http://stackoverflow.com/questions/267421/how-to-get-a-build-date-for-an-asp-net-application0How to get a build date for an ASP.NET application?kurious2008-11-06T01:44:54Z2008-11-06T03:56:10Z
<p>Jeff wrote about <a href="http://www.codinghorror.com/blog/archives/000264.html" rel="nofollow">getting a file version/datestamp</a> a while back. Visual studio doesn't increment builds unless you close/reopen the solution, so grabbing the timestamp seems to be the best way to verify what build you are using.</p>
<p>I ported the solution to C#</p>
<pre><code> // from http://www.codinghorror.com/blog/archives/000264.html
protected DateTime getLinkerTimeStamp(string filepath){
const int peHeaderOffset = 60;
const int linkerTimestampOffset = 8;
byte[] b = new byte[2048];
Stream s = null;
try {
s = new FileStream(filepath, FileMode.Open, FileAccess.Read);
s.Read(b, 0, 2048);
}
finally{
if (s != null){
s.Close();
}
}
int i = BitConverter.ToInt32(b, peHeaderOffset);
int secondsSince1970 = BitConverter.ToInt32(b, i + linkerTimestampOffset);
DateTime dt = new DateTime(1970, 1, 1, 0, 0, 0);
dt = dt.AddSeconds(secondsSince1970);
dt = dt.AddHours(TimeZone.CurrentTimeZone.GetUtcOffset(dt).Hours);
return dt;
}
protected DateTime getBuildTime()
{
System.Reflection.Assembly assembly = System.Reflection.Assembly.GetExecutingAssembly();
return getLinkerTimeStamp(assembly.Location);
}
</code></pre>
<p>Which seems to work. Is there a better / more official way to tell when a site was deployed?</p>
http://stackoverflow.com/questions/252249/how-do-you-run-lucene-on-net/252254#2522544Answer by kurious for How do you run Lucene on .net?kurious2008-10-31T00:37:59Z2008-11-05T22:52:12Z<p>One way I found, which was surprised could work: Create a .NET DLL from a Java .jar file! Using <a href="http://www.ikvm.net/" rel="nofollow">IKVM</a> you can <a href="http://www.apache.org/dyn/closer.cgi/lucene/java/" rel="nofollow">download Lucene</a>, get the .jar file, and run:</p>
<pre><code>ikvmc -target:library <path-to-lucene.jar>
</code></pre>
<p>which generates a .NET dll like this: lucene-core-2.4.0.dll</p>
<p>You can then just reference this DLL from your project and you're good to go! There are some java types you will need, so also reference IKVM.OpenJDK.ClassLibrary.dll. Your code might look a bit like this:</p>
<pre><code> QueryParser parser = new QueryParser("field1", analyzer);
java.util.Map boosts = new java.util.HashMap();
boosts.put("field1", new java.lang.Float(1.0));
boosts.put("field2", new java.lang.Float(10.0));
MultiFieldQueryParser multiParser = new MultiFieldQueryParser(new string[] { "field1", "field2" }, analyzer, boosts);
multiParser.setDefaultOperator(QueryParser.Operator.OR);
Query query = multiParser.parse("ABC");
Hits hits = isearcher.search(query);
</code></pre>
<p>I never knew you could have java to .NET interoperability so easily. The best part is that C# and Java is "almost" source code compatible (where Lucene examples are concerned). Just replace System.out with Console.Writeln :).</p>
<p>=======</p>
<p>Update: When building libraries like the lucene highlighter, make sure you reference the core assembly (else you'll get warnings about missing classes). So the highlighter is built like this:</p>
<pre><code> ikvmc -target:library lucene-highlighter-2.4.0.jar -r:lucene-core-2.4.0.dll
</code></pre>
http://stackoverflow.com/questions/266664/how-to-monitor-memcached-statistics-on-windows3How to monitor memcached statistics on windows?kurious2008-11-05T21:06:30Z2008-11-05T21:16:51Z
<p>What's the easiest method people have found to monitor memcached on Windows? One method I've tried, which works decently:</p>
<p>telnet into the memcached port (11211) and enter the "stats" command. You'll get back a listing like this:</p>
<pre><code>stats
STAT pid 2816
STAT uptime 791
STAT time 1225918895
STAT version 1.2.1
STAT pointer_size 32
STAT curr_items 10
STAT total_items 10
STAT bytes 122931
STAT curr_connections 1
STAT total_connections 5
STAT connection_structures 4
STAT cmd_get 20
STAT cmd_set 10
STAT get_hits 0
STAT get_misses 20
STAT bytes_read 122986
STAT bytes_written 187
STAT limit_maxbytes 1073741824
</code></pre>
<p>Is there an easier way?</p>
http://stackoverflow.com/questions/224220/any-mechanical-turk-api-gotchas0Any Mechanical Turk API Gotchas?kurious2008-10-22T02:03:30Z2008-10-27T10:39:23Z
<p>We're setting up a mechanical turk system. I've run into a few gotchas already, just wanted a place to collect them to save anyone else some trouble.</p>
<ul>
<li>When submitting an external question, make sure to use "https://" -- we were getting blank responses when people submitted otherwise (this can be annoying to track down).</li>
</ul>
http://stackoverflow.com/questions/193426/have-you-made-interesting-use-of-mechanical-turk/210562#2105621Answer by kurious for Have you made interesting use of Mechanical Turk?kurious2008-10-16T22:47:10Z2008-10-16T22:47:10Z<p>We've used it to approve images that apply to a business. Not terribly interesting, but found it pretty useful in this regard. The tasks were completed very quickly.</p>
http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199772#1997723Answer by kurious for Most Influential CS Class You've Takenkurious2008-10-14T02:00:49Z2008-10-14T02:00:49Z<p>I had a "Programming Languages" class where we had to write a program in a new language each week (C++, awk, Perl, etc...). </p>
<p>It taught me that each language is a tool. Some are better than others for different tasks -- don't be afraid to branch out into new areas. And if something is really painful (like text processing in C) you're probably using the wrong tool. A few quick Google searches should find it.</p>
http://stackoverflow.com/questions/199761/how-can-you-use-optional-parameters-in-c/199765#1997654Answer by kurious for How can you use optional parameters in C#?kurious2008-10-14T01:57:23Z2008-10-14T01:57:23Z<p>From this site:</p>
<p><a href="http://www.tek-tips.com/viewthread.cfm?qid=1500861&page=1" rel="nofollow">http://www.tek-tips.com/viewthread.cfm?qid=1500861&page=1</a></p>
<p>C# does allow the use of the [Optional] attribute (from VB, though not functional in C#). So you can have a method like this:</p>
<pre><code>using System.Runtime.InteropServices;
public void Foo(int a, int b, [Optional] int c)
{
...
}
</code></pre>
<p>In our API wrapper, we detect optional parameters (ParameterInfo p.IsOptional) and set a default value. The goal is to mark parameters as optional without resorting to kludges like having "optional" in the parameter name.</p>
http://stackoverflow.com/questions/189422/how-do-i-create-and-query-linked-database-servers-in-sql-server0How do I create and query linked database servers in SQL Server?kurious2008-10-09T22:21:29Z2008-10-09T23:23:52Z
<p>I need to do a join across two different database servers (IPs 10.0.0.50 and 10.0.0.51). What's the best way?</p>
http://stackoverflow.com/questions/189422/how-do-i-create-and-query-linked-database-servers-in-sql-server/189432#1894321Answer by kurious for How do I create and query linked database servers in SQL Server?kurious2008-10-09T22:24:05Z2008-10-09T22:24:05Z<p>The solution I found:</p>
<p>1) Run a <a href="http://msdn.microsoft.com/en-us/library/aa259589(SQL.80).aspx" rel="nofollow">stored proc</a></p>
<pre><code>exec sp_addlinkedserver @server='10.0.0.51'
</code></pre>
<p>2) Verify that the servers were linked (lists linked servers)</p>
<pre><code>exec sp_linkedservers
</code></pre>
<p>3) Run the query using the format</p>
<pre><code> [10.0.0.51].DatabaseName.dbo.TableName
</code></pre>
http://stackoverflow.com/questions/142239/how-would-you-store-and-query-hours-of-operation2How would you store and query hours of operation?kurious2008-09-26T21:58:15Z2008-09-28T15:06:16Z
<p>We're building an app that stores "hours of operation" for various businesses. What is the easiest way to represent this data so you can easily check if an item is open?</p>
<p>Some options:</p>
<ul>
<li>Segment out blocks (every 15 minutes) that you can mark "open/closed". Checking involves seeing if the "open" bit is set for the desired time (a bit like a train schedule).</li>
<li>Storing a list of time ranges (11am-2pm, 5-7pm, etc.) and checking whether the current time falls in any specified range (this is what our brain does when parsing the strings above).</li>
</ul>
<p>Does anyone have experience in storing and querying timetable information and any advice to give?</p>
<p>(There's all sorts of crazy corner cases like "closed the first Tuesday of the month", but we'll leave that for another day).</p>
http://stackoverflow.com/questions/55574/learning-ruby-on-rails/109784#1097845Answer by kurious for Learning Ruby on Railskurious2008-09-20T23:40:11Z2008-09-20T23:40:11Z<p>I wrote a post called <a href="http://betterexplained.com/articles/starting-ruby-on-rails-what-i-wish-i-knew/" rel="nofollow">"Getting Started With Rails -- What I wish I knew"</a> that many people found helpful.</p>
<p>The basics:</p>
<ul>
<li>Agile development with Rails (book)</li>
<li>InstantRails for quick ruby/rails environment on Windows</li>
<li>Aptana as the IDE</li>
<li>Subversion for version control</li>
</ul>
<p>The online tutorials are decent but scattered. Invest $30 in a book for a more comprehensive understanding.</p>
http://stackoverflow.com/questions/109371/what-is-the-fastest-way-to-learn-latex-basics/109651#1096510Answer by kurious for What is the fastest way to learn LaTeX basics?kurious2008-09-20T22:41:58Z2008-09-20T22:47:01Z<p>If you just want to get familiar with the syntax, try an online or offline Latex editor:</p>
<p><a href="http://www.latexeditor.org/" rel="nofollow">http://www.latexeditor.org/</a> (download)</p>
<p><a href="http://www.monkeytex.com/" rel="nofollow">http://www.monkeytex.com/</a> (online service -- haven't tried it, but looks interesting)</p>
<p><a href="http://www.codecogs.com/components/equationeditor/equationeditor.php" rel="nofollow">http://www.codecogs.com/components/equationeditor/equationeditor.php</a> (equation editor)</p>
<p>Unfortunately one of the hardest parts can be just getting set up.</p>
http://stackoverflow.com/questions/368281/svn-not-a-working-copy-error/826128#826128Comment by kurious on SVN - Not a working copy errorkurious2009-11-30T11:29:26Z2009-11-30T11:29:26ZThanks, this fixed it for me.http://stackoverflow.com/questions/1357798/how-to-center-cell-contents-of-a-latex-table-whose-columns-have-fixed-widths/1358166#1358166Comment by kurious on How to center cell contents of a LaTeX table whose columns have fixed widths?kurious2009-09-24T07:33:59Z2009-09-24T07:33:59ZThanks! This was helpful.http://stackoverflow.com/questions/67959/net-xml-serialization-gotchas/1009143#1009143Comment by kurious on .NET XML serialization gotchas?kurious2009-06-25T23:32:02Z2009-06-25T23:32:02ZThanks, I just updated it.http://stackoverflow.com/questions/886798/how-do-you-use-mysql-innodb-tables-on-os-xComment by kurious on How do you use MySQL InnoDB tables on OS X?kurious2009-05-30T20:49:55Z2009-05-30T20:49:55ZThanks for the tip -- just reworded.http://stackoverflow.com/questions/699535/online-service-to-monitor-website-latency/699764#699764Comment by kurious on Online service to monitor website latency?kurious2009-03-31T18:36:06Z2009-03-31T18:36:06ZGreat, thanks for the find!http://stackoverflow.com/questions/675507/able-to-send-email-through-exe-but-not-asp-net/682704#682704Comment by kurious on Able to send email through .exe, but not ASP.NET?kurious2009-03-25T21:11:11Z2009-03-25T21:11:11ZYep, it's for IIS7 -- thanks for the tip.http://stackoverflow.com/questions/675507/able-to-send-email-through-exe-but-not-asp-net/677836#677836Comment by kurious on Able to send email through .exe, but not ASP.NET?kurious2009-03-25T00:27:56Z2009-03-25T00:27:56ZThanks Dave! I really appreciate the help as this is showing me how to debug a whole class of problems :)http://stackoverflow.com/questions/675507/able-to-send-email-through-exe-but-not-asp-net/675528#675528Comment by kurious on Able to send email through .exe, but not ASP.NET?kurious2009-03-23T23:35:33Z2009-03-23T23:35:33ZThanks -- I forgot to mention that I tried this, but our Exchange server doesn't seem to support it. I'll see if this can be enabled.http://stackoverflow.com/questions/675507/able-to-send-email-through-exe-but-not-asp-net/675532#675532Comment by kurious on Able to send email through .exe, but not ASP.NET?kurious2009-03-23T23:34:57Z2009-03-23T23:34:57ZThanks, I'll give this a shot.http://stackoverflow.com/questions/289/how-do-you-sort-a-c-dictionary-by-value/291#291Comment by kurious on How do you sort a C# dictionary by value?kurious2009-03-23T22:44:25Z2009-03-23T22:44:25Z@Jason: You're welcome!http://stackoverflow.com/questions/493236/how-do-you-migrate-an-iis-7-site-to-another-server/500022#500022Comment by kurious on How do you migrate an IIS 7 site to another server?kurious2009-02-03T21:26:29Z2009-02-03T21:26:29ZThanks Bill -- I had seen the tool but was wary because it was still in Beta.http://stackoverflow.com/questions/493236/how-do-you-migrate-an-iis-7-site-to-another-server/493373#493373Comment by kurious on How do you migrate an IIS 7 site to another server?kurious2009-01-29T22:27:04Z2009-01-29T22:27:04ZAwesome, thanks for the tip! I was looking for exactly this.http://stackoverflow.com/questions/308816/any-good-free-net-profiler/446908#446908Comment by kurious on Any Good Free .NET Profiler?kurious2009-01-28T05:11:41Z2009-01-28T05:11:41ZSame, thanks for the pointer!http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/273868#273868Comment by kurious on What is your best programmer joke?kurious2008-11-25T08:24:34Z2008-11-25T08:24:34ZWow, that was good!http://stackoverflow.com/questions/315829/do-c-objects-know-the-type-of-the-more-specific-classComment by kurious on Do C# objects know the type of the more specific class?kurious2008-11-24T23:25:13Z2008-11-24T23:25:13ZNo worries :). Yeah, I remember hearing that SO could be used as a "snippets/gotcha" repository. I still struggle with the right way to record these though -- maybe a special tag?