unable to wrote XML in deep thought http://indeepthought.org/ a little order in the chaos where the mind dwells en-us Thu, 24 Apr 2014 04:26:55 UTC Thu, 24 Apr 2014 04:26:55 UTC http://indeepthought.org/rss/ yarbrss dharh@indeepthought.org dharh@indeepthought.org Learn 2 CSharp 12 http://indeepthought.org/posts/Learn_2_CSharp_12 [<a href="/articles/Learn_2_CSharp_12">more</a>] Mon, 30 May 2011 01:08:02 UTC http://indeepthought.org/posts/Learn_2_CSharp_12 Learn 2 CSharp 11 http://indeepthought.org/posts/Learn_2_CSharp_11 [<a href="/articles/Learn_2_CSharp_11">more</a>] Sun, 29 May 2011 11:42:22 UTC http://indeepthought.org/posts/Learn_2_CSharp_11 neTodo v2.0.134 released http://indeepthought.org/posts/neTodo_v2.0.134_released The .NET version of <a href="/apps/neTodo/">neTodo</a> has been released. It's a functioning Preview Release. There are still lots of things I need to do to get it where I want it. Go to the <a href="/posts/neTodo_changelog" style="color: blue">neTodo changelog</a> to read more about this release. Sat, 19 Mar 2011 05:25:10 UTC http://indeepthought.org/posts/neTodo_v2.0.134_released God doesn't make Tsunamis http://indeepthought.org/posts/God_doesn't_make_Tsunamis This post is belated, since the Earthquake and resulting Tsunami happened last Friday. My thoughts and hopes are with the people of Japan as they continue to cope with the aftermath of the Tsunami and current nuclear crisis going on. <p>I have to however, say something about many of the twitter, facebook, and other comments I've been seeing out there. Such things like this being God's payback for Pearl Harbor. Japan getting what it deserves. Bullshit. You ought to be ashamed of yourselves. </p> <p>Once again, and I can't believe I have to say this. God didn't send the Tsunami, didn't start the Earthquake, and certainly didn't punish Japan because of Pearl Harbor. Let it go freaks. God doesn't care about our petty little fights. God doesn't punish nations or people. God doesn't need to, we do it all ourselves, so let it go and stop being such assholes. </p> <p>Please, if you haven't already, <a href="http://www.google.com/crisisresponse/japanquake2011.html">donate</a> something to help the Japanese people. Wed, 16 Mar 2011 10:37:56 UTC http://indeepthought.org/posts/God_doesn't_make_Tsunamis New Year New Post http://indeepthought.org/posts/New_Year_New_Post Hopefully this new year will see some more activity from me. That's my new years resolution for IDT. <p>As a sort of quick plan for what I want to do this year: </p> <ul> <li> Finish building the C#.NET version of IDT.neThing</li> <li> Continue with the <a href="/posts/Programming" style="color: blue">15 Exercises for Learning a new Programming Language</a> series (#lrn2program), fleshing out the java part, adding c++, javascript, and python</li> <li> Work on getting neFeedeater running for other people</li> <li> Permanently pull in the delicious links that currently feed into Sparce from delicious.com and convert Sparce into a semi copy of delicious</li> </ul> <p> Let's see how it all goes. </p> Mon, 03 Jan 2011 10:37:38 UTC http://indeepthought.org/posts/New_Year_New_Post Impressions of a CR-48 http://indeepthought.org/posts/Impressions_of_a_CR-48 [<a href="/articles/Impressions_of_a_CR-48">more</a>] Sun, 12 Dec 2010 04:32:12 UTC http://indeepthought.org/posts/Impressions_of_a_CR-48 Google Chrome Notebook CR-48 http://indeepthought.org/posts/Google_Chrome_Notebook_CR-48 I got my google notebook on my doorstep last night. I'll write a review over the weekend. Fri, 10 Dec 2010 04:49:22 UTC http://indeepthought.org/posts/Google_Chrome_Notebook_CR-48 Learn 2 CSharp 10 http://indeepthought.org/posts/Learn_2_CSharp_10 [<a href="/articles/Learn_2_CSharp_10">more</a>] Thu, 30 Sep 2010 03:20:09 UTC http://indeepthought.org/posts/Learn_2_CSharp_10 Learn 2 CSharp 9 http://indeepthought.org/posts/Learn_2_CSharp_9 9. Time and Date : Get system time and convert it in different formats 'DD-MON-YYYY', 'mm-dd-yyyy', 'dd/mm/yy' etc. <code class='prettyprint lang-cs'>using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace lrn2csharp9 { class Program { static void Main( string[ ] args ) { DateTime now = DateTime.Now; Console.WriteLine( &quot;Today's date is: &quot; + now.ToString( &quot;MMM dd yyyy HH:mm:ss&quot; ) ); Console.WriteLine( &quot;Also: &quot; + now.ToString( &quot;dd-MMM-yyyy&quot; ) ); Console.WriteLine( &quot;And: &quot; + now.ToString( &quot;MM-d-yyyy&quot; ) ); Console.WriteLine( &quot;One more thing: &quot; + now.ToString( &quot;d/MM/yy&quot; ) ); } } } </code> Thu, 30 Sep 2010 03:03:31 UTC http://indeepthought.org/posts/Learn_2_CSharp_9