Skip to main content

Windows Live Writer

Well based on the tests you saw earlier, the program I am using is the Windows Live Writer. It is a free download from Microsoft here. It is a very straight-forward text editor with built-in blog uploading. I would call it "syncing" except it can't get my template from blogger, so if there is a way to put the template in manually that would be a welcome addition to the software. But apart from that it seems to be a very robust piece of software. It is easy to insert links, just a couple of clicks, and it references your Internet Explorer link history so you can just start typing and it will auto-fill the rest of the URL for you, which is nice.


Another interesting feature is on the right sidebar there is a history of recent posts that were created using live writer. Which when you click on them fetches the information from your blog. This is a nice addition to the application as well. All in all from the limited testing that I have done it seems like a great way to start a blogging application. As I use it more perhaps I will find more things to like or dislike about it and I will be sure to bring those to another post in the future until then I will be using this software to update this blog.

Comments

Popular posts from this blog

Home Office Remodel Phase II: Pt 2 Electrical

Well, the electrical portion is all done. Lessons learned. Let's see, Always use junction boxes when tieing lines together. Be sure to buy extra wire nuts, you are bound to lose a box until you a finished when it magically reappears, same goes for electrical tape, two rolls minimum even if you only need 6 inches. Well here is the part that you have all been waiting for I know. Be sure to click the images for a better picture. Here is what is left of that tangled mess between the floor joists. Here is the outlet for under the desk. So stay tuned, more DIY is coming soon. The next section is Phase III: Phone

Create a SHA1 hash of a string

This function will take a string and return the hashed value using System.Security.Cryptography; public static string GetSha1(string value) { var data = Encoding.ASCII.GetBytes(value); var hashData = new SHA1Managed().ComputeHash(data); var hash = string.Empty; foreach (var b in hashData) hash += b.ToString("X2"); return hash; } Thanks to Lars-Erik