Saturday, May 01, 2010
#
In the spirit of hobbyist adventures, I made a static blog generator in C# with the help of MarkdownSharp (from the StackOverflow Guys, I think). Inspired from static blog generators like Jekyll, it does things Jekyll can’t do (aren’t built in)- it has a GUI and can generate feeds. Of course, it’s Windows Only and it’s somewhat limited too. But it works. If someone wants to port it to Mac and Linux, code is available on the site since it’s open source. Enjoy!
Link

Wednesday, March 31, 2010
#
Wow, creating IE Accelerators is superbly easy. If you want to learn how to create one, go here (some MSDN blog) and the MSDN documentation (clearly written). I was fed up of dictionary.com bringing all those popups and the stupid definitions of Google's dictionary. So I decided to scratch my own itch. I randomly stumbled on the site called Wordnik and it provides with all examples plus definitions plus lots more for words and its popup-free (as far as I know). So I decided to write and accelerator.
Here is the source code (Yes, this is it):
<?xml version="1.0" encoding="utf-8"?>
<os:openServiceDescription xmlns:os="http://www.microsoft.com/schemas/openservicedescription/1.0">
<os:homepageUrl>http://www.wordnik.com</os:homepageUrl>
<os:display>
<os:name>View on Wordnik</os:name>
<os:description>Looking up words on an awesome word site called Wordnik </os:description>
<os:icon>http://www.wordnik.com/favicon.ico</os:icon>
</os:display>
<os:activity category="Define">
<os:activityAction context="selection">
<os:execute method="get" action="http://www.wordnik.com/words/{selection}" ></os:execute>
</os:activityAction>
</os:activity>
</os:openServiceDescription>
That’s it. To get it, go here. Enjoy!
Hello World. I am a hobbyist developer in the teens and I am a fan of Microsoft and its products.I am learning C# and have learned C and experimented with a few languages such as Python, Ruby, and IO (A really new language). Here, I am going to share my developing adventures.
Watch out, World!