User kurious - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T08:32:48Z http://stackoverflow.com/feeds/user/109 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/199761/how-can-you-use-optional-parameters-in-c 3 How can you use optional parameters in C#? kurious 2008-10-14T01:55:23Z 2009-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 &amp;a=foo&amp;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-value 15 How do you sort a C# dictionary by value? kurious 2008-08-02T00:40:58Z 2009-09-10T14:55:52Z <p>I often have a Dictionary of keys &amp; 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-gotchas 18 .NET XML serialization gotchas? kurious 2008-09-15T23:35:14Z 2009-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&lt;TKey, TValue&gt; : Dictionary&lt;TKey, TValue&gt;, 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-x 0 How do you use MySQL InnoDB tables on OS X? kurious 2009-05-20T08:21:49Z 2009-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-net 3 How do you run Lucene on .net? kurious 2008-10-31T00:34:15Z 2009-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-songs 0 API or widget to preview songs kurious 2009-04-24T18:27:41Z 2009-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-net 0 Able to send email through .exe, but not ASP.NET? kurious 2009-03-23T22:41:44Z 2009-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 &lt;user's email&gt; </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#703016 0 Answer by kurious for Able to send email through .exe, but not ASP.NET? kurious 2009-03-31T20:54:31Z 2009-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#702933 12 Answer by kurious for Create Tinyurl style hash kurious 2009-03-31T20:34:05Z 2009-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-latency 1 Online service to monitor website latency? kurious 2009-03-31T00:06:09Z 2009-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-server 1 How do you migrate an IIS 7 site to another server? kurious 2009-01-29T20:22:38Z 2009-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-code 9 How do you actually read source code? kurious 2008-08-31T21:08:34Z 2009-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 &amp; 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 &amp; other lessons from code to improve your own skill?</p> http://stackoverflow.com/questions/315009/mechanical-turk-using-html-in-the-api/316135#316135 1 Answer by kurious for Mechanical Turk: Using HTML in the API kurious 2008-11-25T01:54:41Z 2008-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-class 3 Do C# objects know the type of the more specific class? kurious 2008-11-24T23:13:20Z 2008-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#315837 2 Answer by kurious for Do C# objects know the type of the more specific class? kurious 2008-11-24T23:14:55Z 2008-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-software 6 Best practices on managing complexity/visualizing components in your software? kurious 2008-11-20T01:16:54Z 2008-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 &amp; business rules</li> <li>Parse results into database</li> <li>Apply normalization &amp; filtering rules</li> <li>Etc, etc.</li> </ul> <p>The problem is troubleshooting issues &amp; 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 &amp; 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#311089 1 Answer by kurious for caching JavaScript files kurious 2008-11-22T08:32:47Z 2008-11-22T08:32:47Z <p>In your Apache .htaccess file:</p> <pre><code>#Create filter to match files you want to cache &lt;Files *.js&gt; Header add "Cache-Control" "max-age=604800" &lt;/Files&gt; </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#299893 0 Answer by kurious for Can you Instantiate an Object Instance from JSON in .NET? kurious 2008-11-18T19:45:28Z 2008-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-application 0 How to get a build date for an ASP.NET application? kurious 2008-11-06T01:44:54Z 2008-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#252254 4 Answer by kurious for How do you run Lucene on .net? kurious 2008-10-31T00:37:59Z 2008-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 &lt;path-to-lucene.jar&gt; </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-windows 3 How to monitor memcached statistics on windows? kurious 2008-11-05T21:06:30Z 2008-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-gotchas 0 Any Mechanical Turk API Gotchas? kurious 2008-10-22T02:03:30Z 2008-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#210562 1 Answer by kurious for Have you made interesting use of Mechanical Turk? kurious 2008-10-16T22:47:10Z 2008-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#199772 3 Answer by kurious for Most Influential CS Class You've Taken kurious 2008-10-14T02:00:49Z 2008-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#199765 4 Answer by kurious for How can you use optional parameters in C#? kurious 2008-10-14T01:57:23Z 2008-10-14T01:57:23Z <p>From this site:</p> <p><a href="http://www.tek-tips.com/viewthread.cfm?qid=1500861&amp;page=1" rel="nofollow">http://www.tek-tips.com/viewthread.cfm?qid=1500861&amp;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-server 0 How do I create and query linked database servers in SQL Server? kurious 2008-10-09T22:21:29Z 2008-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#189432 1 Answer by kurious for How do I create and query linked database servers in SQL Server? kurious 2008-10-09T22:24:05Z 2008-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-operation 2 How would you store and query hours of operation? kurious 2008-09-26T21:58:15Z 2008-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#109784 5 Answer by kurious for Learning Ruby on Rails kurious 2008-09-20T23:40:11Z 2008-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#109651 0 Answer by kurious for What is the fastest way to learn LaTeX basics? kurious 2008-09-20T22:41:58Z 2008-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#826128 Comment by kurious on SVN - Not a working copy error kurious 2009-11-30T11:29:26Z 2009-11-30T11:29:26Z Thanks, 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#1358166 Comment by kurious on How to center cell contents of a LaTeX table whose columns have fixed widths? kurious 2009-09-24T07:33:59Z 2009-09-24T07:33:59Z Thanks! This was helpful. http://stackoverflow.com/questions/67959/net-xml-serialization-gotchas/1009143#1009143 Comment by kurious on .NET XML serialization gotchas? kurious 2009-06-25T23:32:02Z 2009-06-25T23:32:02Z Thanks, I just updated it. http://stackoverflow.com/questions/886798/how-do-you-use-mysql-innodb-tables-on-os-x Comment by kurious on How do you use MySQL InnoDB tables on OS X? kurious 2009-05-30T20:49:55Z 2009-05-30T20:49:55Z Thanks for the tip -- just reworded. http://stackoverflow.com/questions/699535/online-service-to-monitor-website-latency/699764#699764 Comment by kurious on Online service to monitor website latency? kurious 2009-03-31T18:36:06Z 2009-03-31T18:36:06Z Great, thanks for the find! http://stackoverflow.com/questions/675507/able-to-send-email-through-exe-but-not-asp-net/682704#682704 Comment by kurious on Able to send email through .exe, but not ASP.NET? kurious 2009-03-25T21:11:11Z 2009-03-25T21:11:11Z Yep, it's for IIS7 -- thanks for the tip. http://stackoverflow.com/questions/675507/able-to-send-email-through-exe-but-not-asp-net/677836#677836 Comment by kurious on Able to send email through .exe, but not ASP.NET? kurious 2009-03-25T00:27:56Z 2009-03-25T00:27:56Z Thanks 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#675528 Comment by kurious on Able to send email through .exe, but not ASP.NET? kurious 2009-03-23T23:35:33Z 2009-03-23T23:35:33Z Thanks -- 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#675532 Comment by kurious on Able to send email through .exe, but not ASP.NET? kurious 2009-03-23T23:34:57Z 2009-03-23T23:34:57Z Thanks, I'll give this a shot. http://stackoverflow.com/questions/289/how-do-you-sort-a-c-dictionary-by-value/291#291 Comment by kurious on How do you sort a C# dictionary by value? kurious 2009-03-23T22:44:25Z 2009-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#500022 Comment by kurious on How do you migrate an IIS 7 site to another server? kurious 2009-02-03T21:26:29Z 2009-02-03T21:26:29Z Thanks 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#493373 Comment by kurious on How do you migrate an IIS 7 site to another server? kurious 2009-01-29T22:27:04Z 2009-01-29T22:27:04Z Awesome, thanks for the tip! I was looking for exactly this. http://stackoverflow.com/questions/308816/any-good-free-net-profiler/446908#446908 Comment by kurious on Any Good Free .NET Profiler? kurious 2009-01-28T05:11:41Z 2009-01-28T05:11:41Z Same, thanks for the pointer! http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/273868#273868 Comment by kurious on What is your best programmer joke? kurious 2008-11-25T08:24:34Z 2008-11-25T08:24:34Z Wow, that was good! http://stackoverflow.com/questions/315829/do-c-objects-know-the-type-of-the-more-specific-class Comment by kurious on Do C# objects know the type of the more specific class? kurious 2008-11-24T23:25:13Z 2008-11-24T23:25:13Z No worries :). Yeah, I remember hearing that SO could be used as a &quot;snippets/gotcha&quot; repository. I still struggle with the right way to record these though -- maybe a special tag?