Categories: Uncategorized

Hello world!

Testing. One. Two.

Ever since the early days of the Web, I have always had a home page or two. Remember those home pages back in the mid 90’s? With the forever “under construction” signs, ubiquitous guest books, Javascript roll-over images, and white text on dark backgrounds? Well, at least my home page didn’t suffer from all of the above mentioned afflictions. Fast forward to 2007: the personal home page fad had passed.

Now people have blogs. So I guess I’ll have one too.

Actually I have been thinking about starting a blog for a while now but I just didn’t sit down and do it yet because I was afraid that it would take a considerable amount of work to set one up. Also since I do .Net development for a living, I thought I would code the blog myself from scratch (boy am I glad I didn’t choose the custom development route).

Two hours ago, I started out with Blogger. After creating a test account and playing with it, then trying to see if I can host the blog on my own domain (you can’t with the beta version of Blogger), I finally found this article which lead me to WordPress. Thirty minutes later… I have this. It wasn’t too bad setting up a WordPress blog on my own domain.

I will probably write mostly about programming (.NET, C#, architecture), gadgets, and technology topics. For my friends and family, they will be subjected to the same boring stuff as before: family pictures.

Chinh Do

I occasionally blog about programming (.NET, Node.js, Java, PowerShell, React, Angular, JavaScript, etc), gadgets, etc. Follow me on Twitter for tips on those same topics. You can also find me on GitHub. See About for more info.

View Comments

  • Hello,

    I was trying to find a contact on your blog, but I was not able. Can you please contact me to the email that I entered above?

    Thanks

Share
Published by
Chinh Do

Recent Posts

How to switch to a different Kubernetes context or namespace?

To list available contexts: kubectl config get-contexts To show the current context: kubectl config current-context…

2 years ago

How to ssh into Kubernetes pod

kubectl exec -it <podname> -- sh To get a list of running pods in the…

2 years ago

How to Create a Soft Symbolic Link (symlink) in Unix/Linux

# Create a soft symbolic link from /mnt/original (file or folder) to ~/link ln -s…

3 years ago

How to Configure Git Username and Email Address

git config --global user.name "<your name>" git config --global user.email "<youremail@somewhere.com>" Related Commands Show current…

3 years ago

Getting the Last Monday for Any Month with TypeScript/JavaScript

TypeScript/JavaScript function getLastMonday(d: Date) { let d1 = new Date(d.getFullYear(), d.getMonth() + 1, 0); let…

4 years ago

How to View Raw SMTP Email Headers in Outlook

I had to do some SMTP relay troubleshooting and it wasn't obvious how to view…

5 years ago