Skip to main content

Moving blogs, ASP.NET vs PHP and WordPress

I moved my permanent blog to here, if you hadn’t noticed.  It went a whole lot smoother than I thought it would as my main blog was on Blogger.com.  I had this sinking feeling that in order to move all my entries I would have to save them one by one then repost them.  Boy was I surprised!


I had originally given thought to switching my hosting to use ASP.Net, the only hold back was that  my gallery was using Gallery.  But since I am a .NET developer I thought “why not use something I know?”  Wrong attitude!  It would cost me more to use a .Net server plus after looking around there were not a whole lot of options when it came to applications.  There is DotNetNuke, dasBlog or SubText, plus a handful of galleries.  From what I saw none of those approach the maturity of the PHP options. 


I settled on WordPress mainly because I have used it before.  I’ve used numerous CMS applications but I do not want a CMS.  I want a blog engine and a gallery.  The hosting company provided Gallery already which I use and like, and it does offer PHPNuke but that would not fit my needs.


So how to handle the migration?  Turns out that is all built into WordPress.  When I saw that I could import my entire Blogger site I was amazed!  The whole installation process was simple and enjoyable.  The migration took all of fifteen minutes and that is only because I had to figure out how to dump the two blog entries I had at LiveJournal.


Why did I leave blogger?  I am a adamant fan of almost every thing Google and I have had that blog for ages, but I felt like I had to fight the system more than I needed to.  If I wanted categories I would have to either create separate blogs or encode the titles then have some funky search going on.  I think the one thing that really made me want to switch was that I could not select individual entries.  How lame is that?


But I am here now.  My own domain.  My own little space in the wild.


Genghis DarrenPCC Rulez

Comments

Popular posts from this blog

C# Spirograph Point Generators

Spirograph's  are cool.  See here and here . I put together three ways to generate points for a Spirograph, first using a Brute Force straight generate the points, second using a Parallel.For and third using LINQ.

FileSystemWatcher With the BlockingCollection

While working with the FileSystemWatcher I found that if too many files were created the built in buffer will overflowed and files will be skipped.  After much research I found out about the Producer-Consumer Problem .  Then I found that .Net 4 has the BlockingCollection which helps solve the issue.  But how to use it with the FileSystemWatcher? On StackOverflow I found  Making PLINQ and BlockingCollection work together .  I'm not so interested in the PLINQ issue but this is a great example of using The BlockingCollection with FileSystemWatcher. [csharp] using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading; namespace ConsoleApplication4 {     public class Program     {         private const string Folder = "C:\\Temp\\InputData";         static void Main(string[] args) {             var cts = new CancellationTokenSource();             foreach (var obj in Input(cts.Token))            

Remote Controlled RoboTank

This is my version of the ever popular to build RoboTank. It uses an Arduino Mega 2560 with the AdaFruit motor shield and an XBee S1 to communicate to the DFRobot Gamepad. The sketch for the RoboTank makes use of the AFMotor.h to drive the motors and includes a serial parser to read and process the commands coming from the Gamepad. Robotank-Sketch.zip DFRobot Wireless Joystick