<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>Blogging</title>
        <link>http://www.vidmar.net/weblog/category/16.aspx</link>
        <description>Blogging</description>
        <language>en-US</language>
        <copyright>David Vidmar</copyright>
        <managingEditor>david@vidmar.net</managingEditor>
        <generator>Subtext Version 1.9.5.176</generator>
        <item>
            <title>SnapBomb - it's for real</title>
            <link>http://vidmar.net/weblog/archive/2008/05/18/snapbomb---its-for-real.aspx</link>
            <description>&lt;p&gt;Some time ago I &lt;a target="_blank" href="http://vidmar.net/weblog/archive/2008/01/25/snapbomb.aspx"&gt;wrote about buzz generating blog advertising site called SnapBomb&lt;/a&gt;. &lt;/p&gt;
&lt;p&gt;I'm happy to report that they did paid for my review of their site, so I can recommend fellow bloggers to check them out.&lt;/p&gt;
&lt;p&gt;Although I'm not pro-spam, this seems very well balanced so it's not annoying. &lt;/p&gt;
&lt;p&gt;&lt;a target="_blank" href="http://www.snapbomb.com/bloggers.html"&gt;&lt;em&gt;How it works&lt;/em&gt;&lt;/a&gt;&lt;em&gt;: if you don't mind some blog marketing, then &lt;a target="_blank" href="http://app.snapbomb.com/signup/"&gt;sign up&lt;/a&gt;, validate your blog and wait couple of days. After your blog is verified you will be presented with "opportunities" about which your are invited to write about. Pick those that you really care about and are relevant for your readers. Opportunities are matched to your blog content, so you don't have to fear that you'll turn your blog to a pile of spam. Use your head and don't be greedy and you can collect some change for your domain registrations or other small web expenses.&lt;/em&gt;&lt;/p&gt;&lt;img src="http://vidmar.net/weblog/aggbug/4601.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Vidmar</dc:creator>
            <guid>http://vidmar.net/weblog/archive/2008/05/18/snapbomb---its-for-real.aspx</guid>
            <pubDate>Sun, 18 May 2008 08:21:59 GMT</pubDate>
            <wfw:comment>http://vidmar.net/weblog/comments/4601.aspx</wfw:comment>
            <comments>http://vidmar.net/weblog/archive/2008/05/18/snapbomb---its-for-real.aspx#feedback</comments>
            <wfw:commentRss>http://vidmar.net/weblog/comments/commentRss/4601.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Simplifying my life - Avoiding words when writting articles for a magazine (Marking words in the list using Word macro)</title>
            <link>http://vidmar.net/weblog/archive/2008/03/06/simplifying-my-life---help-for-better-writing-marking-words.aspx</link>
            <description>&lt;p&gt;Lately I have been writing articles for &lt;a href="http://www.monitor.si/" target="_blank"&gt;Monitor computer magazine&lt;/a&gt;. When I analyzed what I have written and what lector changed, I easily built a list of words I should avoid.&lt;/p&gt;
&lt;p&gt;Since I'm developer I believe that software can help. So I have written three Word macros to help me avoid those words and phrases in my articles.&lt;/p&gt;
&lt;p&gt;With three buttons on toolbar and three keyboard shortcuts fixing articles before turning them in is a piece of cake!&lt;/p&gt;
&lt;p&gt;&lt;img width="356" height="150" border="0" style="border: 0px none ;" alt="image" src="http://vidmar.net/weblog/images/vidmar_net/weblog/WindowsLiveWriter/SimplifyingmylifeHelpforbetterwritingMar_14927/image_3.png" /&gt; &lt;/p&gt;
&lt;p&gt;I only need to maintain a text file with suspicious words and their suggested substitutes. Format is super simple. Here are few sample lines:&lt;/p&gt;
&lt;pre&gt;ampak|temveč&lt;br /&gt;blog|spletni dnevnik&lt;br /&gt;direkt*|neposredn*&lt;br /&gt;idej*|zamisel&lt;/pre&gt;
&lt;p&gt;Finally, here is the VBA code for three macros.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;MarkForForbiddenWords&lt;/strong&gt; opens a file with words I try to avoid and suggestions, reads line by line and marks found words with green squiggles.&lt;/p&gt;
&lt;pre class="csharpcode"&gt;&lt;span class="kwrd"&gt;Sub&lt;/span&gt; MarkForbiddenWords()&lt;br /&gt;    &lt;br /&gt;    Selection.Find.ClearFormatting&lt;br /&gt;    Selection.Find.Replacement.ClearFormatting&lt;br /&gt;    &lt;span class="kwrd"&gt;With&lt;/span&gt; Selection.Find&lt;br /&gt;        .Replacement.Text = &lt;span class="str"&gt;"^&amp;amp;"&lt;/span&gt;        &lt;br /&gt;        .MatchWildcards = &lt;span class="kwrd"&gt;True&lt;/span&gt;     &lt;br /&gt;    &lt;span class="kwrd"&gt;End&lt;/span&gt; &lt;span class="kwrd"&gt;With&lt;/span&gt;          &lt;span class="kwrd"&gt;&lt;br /&gt;    With&lt;/span&gt; Selection.Find.Replacement.Font &lt;br /&gt;        .Underline = wdUnderlineWavyDouble&lt;br /&gt;        .UnderlineColor = wdColorSeaGreen&lt;span class="kwrd"&gt;&lt;span style="font-family: Arial,Verdana,Sans-Serif;"&gt;&lt;br /&gt;         &lt;/span&gt;End&lt;/span&gt; &lt;span class="kwrd"&gt;With&lt;/span&gt;          &lt;br /&gt;    &lt;br /&gt;    intUnit = FreeFile     &lt;span class="rem"&gt;&lt;br /&gt;    ' change to correct path!&lt;/span&gt;     &lt;br /&gt;    Open &lt;span class="str"&gt;"C:\Users\David\Documents\checklist.txt"&lt;/span&gt; &lt;span class="kwrd"&gt;For&lt;/span&gt; Input &lt;span class="kwrd"&gt;As&lt;/span&gt; #intUnit&lt;br /&gt; &lt;br /&gt;    &lt;span class="kwrd"&gt;Do&lt;/span&gt; &lt;span class="kwrd"&gt;While&lt;/span&gt; &lt;span class="kwrd"&gt;Not&lt;/span&gt; EOF(intUnit)&lt;br /&gt;        &lt;span class="kwrd"&gt;Dim&lt;/span&gt; strBuffer &lt;span class="kwrd"&gt;As&lt;/span&gt; &lt;span class="kwrd"&gt;String&lt;/span&gt;         &lt;br /&gt;	Line Input #intUnit, strBuffer                  &lt;br /&gt;	s = Split(strBuffer, &lt;span class="str"&gt;"|"&lt;/span&gt;)&lt;br /&gt;    &lt;br /&gt;        &lt;span class="kwrd"&gt;With&lt;/span&gt; Selection.Find&lt;br /&gt;            .Wrap = wdFindContinue&lt;br /&gt;            .Text = s(0)&lt;br /&gt;            .Replacement.Text = Replace(s(0), &lt;span class="str"&gt;"*"&lt;/span&gt;, &lt;span class="str"&gt;""&lt;/span&gt;) &amp;amp; &lt;span class="str"&gt;" ["&lt;/span&gt; &amp;amp; s(1) &amp;amp; &lt;span class="str"&gt;"?]"&lt;/span&gt;             &lt;br /&gt;	    .Execute Replace:=wdReplaceAll         &lt;br /&gt;	&lt;span class="kwrd"&gt;End&lt;/span&gt; &lt;span class="kwrd"&gt;With&lt;/span&gt;                  &lt;br /&gt;	DoEvents     &lt;br /&gt;    &lt;span class="kwrd"&gt;Loop&lt;/span&gt;      &lt;br /&gt;&lt;span class="kwrd"&gt;End&lt;/span&gt; Sub&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;strong&gt;NextMarkedForbiddenWord&lt;/strong&gt; is much simpler, it just finds occurrence of text with green squiggles.
&lt;pre class="csharpcode"&gt;&lt;span class="kwrd"&gt;Sub&lt;/span&gt; NextMarkedForbiddenWord()&lt;br /&gt;    Selection.Find.ClearFormatting&lt;br /&gt;    &lt;span class="kwrd"&gt;With&lt;/span&gt; Selection.Find&lt;br /&gt;        .Text = &lt;span class="str"&gt;""&lt;/span&gt; &lt;br /&gt;        .Forward = &lt;span class="kwrd"&gt;True&lt;/span&gt; &lt;br /&gt;        .Wrap = wdFindContinue &lt;br /&gt;        .Format = &lt;span class="kwrd"&gt;True&lt;/span&gt; &lt;br /&gt;        .Font.Underline = wdUnderlineWavyDouble &lt;br /&gt;        .Font.UnderlineColor = wdColorSeaGreen &lt;br /&gt;    &lt;span class="kwrd"&gt;End&lt;/span&gt; &lt;span class="kwrd"&gt;With&lt;/span&gt; &lt;br /&gt;    Selection.Find.Execute &lt;span class="kwrd"&gt;&lt;br /&gt;End&lt;/span&gt; Sub&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;strong&gt;CleanUpForbiddenWords&lt;/strong&gt; cleans things up as they were.
&lt;pre class="csharpcode"&gt;&lt;span class="kwrd"&gt;Sub&lt;/span&gt; CleanUpForbiddenWords()&lt;br /&gt;    Selection.Find.ClearFormatting&lt;br /&gt;    Selection.Find.Replacement.ClearFormatting&lt;br /&gt;    &lt;span class="kwrd"&gt;With&lt;/span&gt; Selection.Find&lt;br /&gt;        .Text = &lt;span class="str"&gt;""&lt;/span&gt; &lt;br /&gt;        .Forward = &lt;span class="kwrd"&gt;True&lt;/span&gt; &lt;br /&gt;        .Wrap = wdFindContinue &lt;br /&gt;        .Format = &lt;span class="kwrd"&gt;True&lt;/span&gt; &lt;br /&gt;        .Font.Underline = wdUnderlineWavyDouble &lt;br /&gt;        .Font.UnderlineColor = wdColorSeaGreen &lt;br /&gt;    &lt;span class="kwrd"&gt;End&lt;/span&gt; &lt;span class="kwrd"&gt;With&lt;/span&gt;  &lt;br /&gt;    &lt;span class="kwrd"&gt;With&lt;/span&gt; Selection.Find.Replacement&lt;br /&gt;        .Text = &lt;span class="str"&gt;""&lt;/span&gt; &lt;br /&gt;        .Font.Underline = wdUnderlineNone  &lt;br /&gt;       .Font.UnderlineColor = wdColorAutomatic &lt;br /&gt;    &lt;span class="kwrd"&gt;End&lt;/span&gt; &lt;span class="kwrd"&gt;With&lt;/span&gt; &lt;br /&gt;    Selection.Find.Execute Replace:=wdReplaceAll &lt;br /&gt;&lt;span class="kwrd"&gt;End&lt;/span&gt; Sub&lt;/pre&gt;
&lt;p&gt;Another couple of minutes saved!&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;div style="margin: 0px; padding: 0px; display: inline;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:cb0ce337-781d-4402-8c69-cd09cb34cc59" class="wlWriterSmartContent"&gt;Technorati tags: &lt;a href="http://technorati.com/tags/word" rel="tag"&gt;word&lt;/a&gt;, &lt;a href="http://technorati.com/tags/office" rel="tag"&gt;office&lt;/a&gt;, &lt;a href="http://technorati.com/tags/macro" rel="tag"&gt;macro&lt;/a&gt;, &lt;a href="http://technorati.com/tags/vba" rel="tag"&gt;vba&lt;/a&gt;, &lt;a href="http://technorati.com/tags/replace%20text" rel="tag"&gt;replace text&lt;/a&gt;, &lt;a href="http://technorati.com/tags/lectoring" rel="tag"&gt;lectoring&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vidmar.net/weblog/aggbug/4582.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Vidmar</dc:creator>
            <guid>http://vidmar.net/weblog/archive/2008/03/06/simplifying-my-life---help-for-better-writing-marking-words.aspx</guid>
            <pubDate>Thu, 06 Mar 2008 22:45:08 GMT</pubDate>
            <wfw:comment>http://vidmar.net/weblog/comments/4582.aspx</wfw:comment>
            <comments>http://vidmar.net/weblog/archive/2008/03/06/simplifying-my-life---help-for-better-writing-marking-words.aspx#feedback</comments>
            <wfw:commentRss>http://vidmar.net/weblog/comments/commentRss/4582.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Find great jobs and hire the best talent</title>
            <link>http://vidmar.net/weblog/archive/2007/12/12/find-great-jobs-and-hire-the-best-talent.aspx</link>
            <description>&lt;a href="http://HiddenNetwork.com/ref.ashx?1159" target="_blank"&gt;&lt;img style="margin: 5px 5px 5px 20px" alt="HiddenNetwork.com Banner" src="http://HiddenNetwork.com/Resources/Images/hn_tizes/bnr.160.gif" align="right" border="0" /&gt;&lt;/a&gt;  &lt;p&gt;Users that actually visit vidmar.net site have probably noticed there has been job board embedded in this site. At first I tested the field with my own version of it, but that was later replace with a professional service &lt;a href="http://HiddenNetwork.com/ref.ashx?1159"&gt;&lt;strong&gt;Hidden network&lt;/strong&gt;&lt;/a&gt; by &lt;a href="http://thedailywtf.com/Authors/Alex_Papadimoulis.aspx"&gt;Alex Papadimoulis&lt;/a&gt;, legendary &lt;a href="http://weblogs.asp.net/alex_papadimoulis/archive/2005/11/13/430478.aspx" target="_blank"&gt;MVP for MS Paint&lt;/a&gt; and author of &lt;a href="http://thedailywtf.com/Default.aspx" target="_blank"&gt;The Daily WTF&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;I believe this service on my blog will be of use for both &lt;strong&gt;job seekers&lt;/strong&gt; and &lt;strong&gt;employers&lt;/strong&gt;!&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;If you are &lt;strong&gt;looking for a new challenge&lt;/strong&gt;, just &lt;a href="http://pubs.hiddennetwork.com/1159/browse.aspx" target="_blank"&gt;browse jobs&lt;/a&gt; and &lt;a href="http://pubs.hiddennetwork.com/1159/rss.ashx" target="_blank"&gt;subscribe to the feed&lt;/a&gt;. Just don't forget to report back when you get that dream job, ok?&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;If you are &lt;strong&gt;employer&lt;/strong&gt;, you can &lt;a href="http://HiddenNetwork.com/ref.ashx?1159" target="_blank"&gt;post your jobs&lt;/a&gt; &lt;strong&gt;for free &lt;/strong&gt;(international) or with a &lt;strong&gt;huge discount &lt;/strong&gt;using these codes:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;&lt;strong&gt;100OFF0712 &lt;/strong&gt;- $100 discount ($199 for first listing)  &lt;/li&gt;&lt;li&gt;&lt;strong&gt;200OFF0712 &lt;/strong&gt;- $200 discount ($99 for first listing)  &lt;/li&gt;&lt;li&gt;&lt;strong&gt;299OFF0712 &lt;/strong&gt;- $299 discount (free first listing)  &lt;/li&gt;&lt;li&gt;&lt;strong&gt;INTLFREE7 &lt;/strong&gt;- free international (non US/CA) listings&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;When you apply, please enter my referral number &lt;strong&gt;1159&lt;/strong&gt;. Thank you!&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;Take a look at some others blogs that are part of Hidden Network:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="http://haacked.com/" target="_blank"&gt;Phil Haack&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://jeremy.zawodny.com/blog/" target="_blank"&gt;Jeremy Zawodny&lt;/a&gt;  &lt;/li&gt;&lt;li&gt;&lt;a href="http://weblogs.asp.net/jgalloway/" target="_blank"&gt;Jon Galloway&lt;/a&gt;  &lt;/li&gt;&lt;li&gt;&lt;a href="http://stevenharman.net/blog" target="_blank"&gt;Steven Harman&lt;/a&gt;  &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.google.com/search?q=link:hiddennetwork.com&amp;amp;complete=1&amp;amp;hl=en&amp;amp;rlz=1B3GGGL_enSI207SI207&amp;amp;start=10&amp;amp;sa=N" target="_blank"&gt;more...&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;&lt;a href="http://HiddenNetwork.com/ref.ashx?1159"&gt;&lt;img alt="HiddenNetwork.com Banner" src="http://HiddenNetwork.com/Resources/Images/hn_tizes/bnr.600.gif" border="0" /&gt;&lt;/a&gt; &lt;/p&gt; &lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:4455c1a0-1287-4d6d-92ae-aea2e26da4ae" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati tags: &lt;a href="http://technorati.com/tags/job" rel="tag"&gt;job&lt;/a&gt;, &lt;a href="http://technorati.com/tags/job%20ads" rel="tag"&gt;job ads&lt;/a&gt;, &lt;a href="http://technorati.com/tags/employment" rel="tag"&gt;employment&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vidmar.net/weblog/aggbug/4552.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Vidmar</dc:creator>
            <guid>http://vidmar.net/weblog/archive/2007/12/12/find-great-jobs-and-hire-the-best-talent.aspx</guid>
            <pubDate>Wed, 12 Dec 2007 22:44:39 GMT</pubDate>
            <wfw:comment>http://vidmar.net/weblog/comments/4552.aspx</wfw:comment>
            <comments>http://vidmar.net/weblog/archive/2007/12/12/find-great-jobs-and-hire-the-best-talent.aspx#feedback</comments>
            <wfw:commentRss>http://vidmar.net/weblog/comments/commentRss/4552.aspx</wfw:commentRss>
        </item>
        <item>
            <title>I burned my feed</title>
            <link>http://vidmar.net/weblog/archive/2007/10/28/i-burned-my-feed.aspx</link>
            <description>&lt;p&gt;&lt;a href="http://feeds.vidmar.net/BiteMyBytes"&gt;&lt;img border="0" align="right" alt="" id="id" src="http://www.feedburner.com/fb/i/logo_footer.gif" /&gt;&lt;/a&gt; I finally turned my RSS feed info &lt;a href="http://feeds.feedburner.com/BiteMyBytes"&gt;FeedBurner one&lt;/a&gt; using &lt;a href="http://www.feedburner.com/fb/a/publishers/mybrand;jsessionid=90DFA112C8BFE3762618061519CF877F.fb1"&gt;MyBrand&lt;/a&gt; feature. &lt;/p&gt;
&lt;p&gt;For you, reader, nothing should really change. But if something is wrong, please let me know.&lt;/p&gt;
&lt;p&gt;Basically my old RSS URL&lt;/p&gt;
&lt;p&gt;&lt;a href="http://vidmar.net/weblog/rss.aspx"&gt;&lt;strong&gt;http://vidmar.net/weblog/rss.aspx&lt;/strong&gt;&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;is automatically redirected to&lt;/p&gt;
&lt;p&gt;&lt;a title="http://feeds.feedburner.com/BiteMyBytes" href="http://feeds.vidmar.net/BiteMyBytes"&gt;&lt;strong&gt;http://feeds.vidmar.net/BiteMyBytes&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Nice, one more stat I can refresh all day long when waiting for something to compile/start/install/download... Like I need one more! :) &lt;/p&gt;&lt;img src="http://vidmar.net/weblog/aggbug/4530.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Vidmar</dc:creator>
            <guid>http://vidmar.net/weblog/archive/2007/10/28/i-burned-my-feed.aspx</guid>
            <pubDate>Sun, 28 Oct 2007 22:27:32 GMT</pubDate>
            <wfw:comment>http://vidmar.net/weblog/comments/4530.aspx</wfw:comment>
            <comments>http://vidmar.net/weblog/archive/2007/10/28/i-burned-my-feed.aspx#feedback</comments>
            <wfw:commentRss>http://vidmar.net/weblog/comments/commentRss/4530.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Another GenericBlue Subtext skin fix</title>
            <link>http://vidmar.net/weblog/archive/2007/10/28/another-genericblue-subtext-skin-fix.aspx</link>
            <description>&lt;p&gt;I fixed a bug in &lt;a href="Subtext Skins: GenericBlue skin updated again"&gt;GenericBlue skin&lt;/a&gt;. Re-download at &lt;a href="Subtext Skins: GenericBlue skin updated again"&gt;original post&lt;/a&gt;.&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7b57a175-6d5b-4777-9060-d513987d7fca" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati tags: &lt;a href="http://technorati.com/tags/subtext" rel="tag"&gt;subtext&lt;/a&gt;, &lt;a href="http://technorati.com/tags/skin" rel="tag"&gt;skin&lt;/a&gt;, &lt;a href="http://technorati.com/tags/design" rel="tag"&gt;design&lt;/a&gt;, &lt;a href="http://technorati.com/tags/fix" rel="tag"&gt;fix&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vidmar.net/weblog/aggbug/4529.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Vidmar</dc:creator>
            <guid>http://vidmar.net/weblog/archive/2007/10/28/another-genericblue-subtext-skin-fix.aspx</guid>
            <pubDate>Sun, 28 Oct 2007 19:02:02 GMT</pubDate>
            <wfw:comment>http://vidmar.net/weblog/comments/4529.aspx</wfw:comment>
            <comments>http://vidmar.net/weblog/archive/2007/10/28/another-genericblue-subtext-skin-fix.aspx#feedback</comments>
            <wfw:commentRss>http://vidmar.net/weblog/comments/commentRss/4529.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Subtext Skins: GenericBlue skin updated again</title>
            <link>http://vidmar.net/weblog/archive/2007/10/15/genericblue-subtext-skin-updated-again.aspx</link>
            <description>&lt;p&gt;I look like my port of &lt;a href="http://vidmar.net/weblog/archive/2007/09/03/genericblue-skin-for-subtext-posted-on-subtextskins-again.aspx"&gt;GenericBlue&lt;/a&gt; skin did go all that well. &lt;a href="http://vidmar.net/weblog/archive/2007/09/03/genericblue-skin-for-subtext-posted-on-subtextskins-again.aspx#294926"&gt;Reader notified me&lt;/a&gt; that I left some custom controls in there. &lt;/p&gt;
&lt;p&gt;So I made another update and updated the &lt;a href="http://subtextskins.com/"&gt;Subtext Skins&lt;/a&gt; entry, but it usually takes a while that admin confirms my update. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Download&lt;/strong&gt;: &lt;a href="http://vidmar.net/download/SubText_Skin_GenericBlue.zip"&gt;GenericBlue skin for Subtext&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Screenshot&lt;/strong&gt;: &lt;a href="http://vidmar.net/weblog/archive/2007/09/03/genericblue-skin-for-subtext-posted-on-subtextskins-again.aspx"&gt;GenericBlue skin for SubText posted on SubTextSkins&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;div style="margin: 0px; padding: 0px; display: inline;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:50265e46-1561-4329-96db-5caea87704ef" class="wlWriterSmartContent"&gt;Technorati tags: &lt;a rel="tag" href="http://technorati.com/tags/subtext"&gt;subtext&lt;/a&gt;, &lt;a rel="tag" href="http://technorati.com/tags/skin"&gt;skin&lt;/a&gt;, &lt;a rel="tag" href="http://technorati.com/tags/design"&gt;design&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vidmar.net/weblog/aggbug/4523.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Vidmar</dc:creator>
            <guid>http://vidmar.net/weblog/archive/2007/10/15/genericblue-subtext-skin-updated-again.aspx</guid>
            <pubDate>Mon, 15 Oct 2007 21:46:42 GMT</pubDate>
            <wfw:comment>http://vidmar.net/weblog/comments/4523.aspx</wfw:comment>
            <comments>http://vidmar.net/weblog/archive/2007/10/15/genericblue-subtext-skin-updated-again.aspx#feedback</comments>
            <slash:comments>2</slash:comments>
            <wfw:commentRss>http://vidmar.net/weblog/comments/commentRss/4523.aspx</wfw:commentRss>
        </item>
        <item>
            <title>GoDaddy promo codes</title>
            <link>http://vidmar.net/weblog/archive/2007/10/11/godaddy-promo-codes.aspx</link>
            <description>&lt;p&gt;Here is a tip for all domain owners... When you register or renew Internet domains you should do some research first. You can probably get a better deal. I'm using &lt;a href="http://www.godaddy.com"&gt;GoDaddy&lt;/a&gt; for a while now and I'm quite happy with it. Their prices are already low, but you can get extra discount with&lt;strong&gt; &lt;/strong&gt;"promo codes".&lt;/p&gt;
&lt;p&gt; &lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-5686862836711088";
/* 728x90, created 4/11/08 */
google_ad_slot = "7593516224";
google_ad_width = 728;
google_ad_height = 90;
//--&gt;&lt;/script&gt; &lt;script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;&lt;/script&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://vidmar.net/weblog/images/vidmar_net/weblog/WindowsLiveWriter/GoDaddypromocodes_13520/image_2.png" title="How to use GoDaddy promo codes." rel="lightbox"&gt;&lt;img width="420" height="242" border="0" src="http://vidmar.net/weblog/images/vidmar_net/weblog/WindowsLiveWriter/GoDaddypromocodes_13520/image_thumb.png" alt="image" style="border: 0px none ;" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;So far I have used "bLaugh" code which gives you 10% any purchase. This is the code from a cool &lt;a href="http://blaugh.com/"&gt;bLaugh web comic&lt;/a&gt; that looks defunct now so I took few minutes and some other codes you might want to check out on your next purchase.&lt;/p&gt;
&lt;p&gt;Codes that worked for me so far:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;&lt;strong&gt;bLaugh&lt;/strong&gt; - Save 10% on any order.&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;Chill1&lt;/strong&gt; - Save 10% on any order.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can find more codes here:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;&lt;a href="http://livecodes.blogspot.com/" target="_blank"&gt;http://livecodes.blogspot.com&lt;/a&gt; &lt;br /&gt;
    &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://godaddycoupon.blogspot.com/2007/09/latest-godaddy-discount-coupons.html#comments" title="http://godaddycoupon.blogspot.com/2007/09/latest-godaddy-discount-coupons.html#comments"&gt;http://godaddycoupon.blogspot.com/2007/09/latest-godaddy-discount-coupons.html#comments&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.fatwallet.com/forums/messageview.php?catid=18&amp;amp;threadid=725207&amp;amp;start=80" title="http://www.fatwallet.com/forums/messageview.php?catid=18&amp;amp;threadid=725207&amp;amp;start=80"&gt;http://www.fatwallet.com/forums/messageview.php?catid=18&amp;amp;threadid=725207&amp;amp;start=80&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.anjibee.com/godaddy-promo-codes/" title="http://www.anjibee.com/godaddy-promo-codes/"&gt;http://www.anjibee.com/godaddy-promo-codes/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you know some codes, post them in the comments!&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;div style="margin: 0px; padding: 0px; display: inline;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:80ed21dc-012b-4cfb-b2a0-474395e88a80" class="wlWriterSmartContent"&gt;Technorati tags: &lt;a rel="tag" href="http://technorati.com/tags/discount"&gt;discount&lt;/a&gt;, &lt;a rel="tag" href="http://technorati.com/tags/domains"&gt;domains&lt;/a&gt;, &lt;a rel="tag" href="http://technorati.com/tags/money"&gt;money&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vidmar.net/weblog/aggbug/4519.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Vidmar</dc:creator>
            <guid>http://vidmar.net/weblog/archive/2007/10/11/godaddy-promo-codes.aspx</guid>
            <pubDate>Thu, 11 Oct 2007 20:15:50 GMT</pubDate>
            <wfw:comment>http://vidmar.net/weblog/comments/4519.aspx</wfw:comment>
            <comments>http://vidmar.net/weblog/archive/2007/10/11/godaddy-promo-codes.aspx#feedback</comments>
            <slash:comments>29</slash:comments>
            <wfw:commentRss>http://vidmar.net/weblog/comments/commentRss/4519.aspx</wfw:commentRss>
        </item>
        <item>
            <title>&amp;quot;Links of the week&amp;quot; are out of beta!</title>
            <link>http://vidmar.net/weblog/archive/2007/10/08/quotlinks-of-the-weekquot-are-out-of-beta.aspx</link>
            <description>&lt;p&gt;Since "&lt;a href="http://vidmar.net/weblog/category/27.aspx"&gt;Links of the week&lt;/a&gt;" posts &lt;a href="http://www.caqka.com/"&gt;were&lt;/a&gt; &lt;a href="http://weblogs.asp.net/bojanv"&gt;well&lt;/a&gt; &lt;a href="http://vidmar.net/weblog/archive/2007/09/16/links-of-the-week-3-week-3707.aspx#294399"&gt;accepted&lt;/a&gt; I decided I'll make them permanent feature of this blog. &lt;/p&gt; &lt;p&gt;And since LOW is here to stay, I created a &lt;a href="http://vidmar.net/weblog/category/27.aspx"&gt;new category&lt;/a&gt;. If you want you can &lt;a href="http://vidmar.net/weblog/category/27.aspx/rss"&gt;subscribe just to "Links of the week"&lt;/a&gt; and stay away from other posts.&lt;/p&gt; &lt;p&gt;I have to say it bring some order in my blog writing and reading world and that is a positive thing. Here is why LOW is good for me:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;I'm forced to "clean up" in &lt;a href="http://www.google.com/url?sa=t&amp;amp;ct=res&amp;amp;cd=1&amp;amp;url=http%3A%2F%2Fwww.google.com%2Freader&amp;amp;ei=dVoJR7vsOILYnQO6o9itBQ&amp;amp;usg=AFQjCNHkwXX7q8y0uRXShFxrBJdJ5oJt3Q&amp;amp;sig2=gG8rzPHSIF7ex2Q4ZtOuJw"&gt;Google Reader&lt;/a&gt; and &lt;a href="http://www.newsgator.com/Individuals/FeedDemon/Default.aspx"&gt;FeedDemon&lt;/a&gt;. It forced me to optimize my reading habits and clean up subscriptions.&lt;/li&gt; &lt;li&gt;I also find it very useful to write weekly review so I remember I found something cool during and I forgot /didn't have time / did bother to try it out. Before writing WOL I tend to do that. &lt;/li&gt; &lt;li&gt;It's not that I have something better to do on Sunday evening.&lt;/li&gt;&lt;/ul&gt; &lt;p&gt; &lt;/p&gt; &lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:5a051d80-b790-4276-babe-16bd2ab8a476" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati tags: &lt;a href="http://technorati.com/tags/beta" rel="tag"&gt;beta&lt;/a&gt;, &lt;a href="http://technorati.com/tags/LOW" rel="tag"&gt;LOW&lt;/a&gt;, &lt;a href="http://technorati.com/tags/blogging" rel="tag"&gt;blogging&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vidmar.net/weblog/aggbug/4517.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Vidmar</dc:creator>
            <guid>http://vidmar.net/weblog/archive/2007/10/08/quotlinks-of-the-weekquot-are-out-of-beta.aspx</guid>
            <pubDate>Sun, 07 Oct 2007 22:17:46 GMT</pubDate>
            <wfw:comment>http://vidmar.net/weblog/comments/4517.aspx</wfw:comment>
            <comments>http://vidmar.net/weblog/archive/2007/10/08/quotlinks-of-the-weekquot-are-out-of-beta.aspx#feedback</comments>
            <wfw:commentRss>http://vidmar.net/weblog/comments/commentRss/4517.aspx</wfw:commentRss>
        </item>
        <item>
            <title>WordPress Plugins everyone needs</title>
            <link>http://vidmar.net/weblog/archive/2007/09/30/wordpress-plugins-everyone-needs.aspx</link>
            <description>&lt;p&gt;I don't run &lt;a href="http://wordpress.org/"&gt;WordPress&lt;/a&gt; but I do occasionally set-up one and help fellow bloggers run it. &lt;/p&gt; &lt;p&gt;So I assembled essential WordPress plugins that everyone needs:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="http://akismet.com/"&gt;&lt;strong&gt;Akismet&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt; &lt;/strong&gt;- if you run latest versions (and you should!) this is already built in. Activate and setup and enjoy absence of spam.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://cavemonkey50.com/code/google-analyticator/"&gt;&lt;strong&gt;Analyticator&lt;/strong&gt;&lt;/a&gt; - Elegant way to include &lt;a href="http://www.google.com/analytics/"&gt;Google Analytics&lt;/a&gt; code on your blog. You should create Google Analytics account first.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.feedburner.com/fb/a/help/wordpress_quickstart"&gt;&lt;strong&gt;FeedBurner FeedSmith&lt;/strong&gt;&lt;/a&gt; - Elegant way to substitute your feed with &lt;a href="http://www.feedburner.com/fb/a/home"&gt;FeedBurner&lt;/a&gt; one. You should create FeedBurner accounts first.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/"&gt;&lt;strong&gt;Google Sitemaps&lt;/strong&gt; &lt;/a&gt;- Google really likes sites with &lt;a href="http://www.google.com/support/webmasters/bin/answer.py?answer=40318"&gt;sitemaps&lt;/a&gt;. This will automatically create it for you.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://elasticdog.com/2004/09/optimal-title/"&gt;&lt;strong&gt;Optimal Title&lt;/strong&gt;&lt;/a&gt; - This will also raise your search site rankings a bit.  &lt;/li&gt;&lt;li&gt;&lt;a title="http://dev.wp-plugins.org/browser/recent-posts/trunk" href="http://dev.wp-plugins.org/browser/recent-posts/trunk"&gt;&lt;strong&gt;Recent posts&lt;/strong&gt;&lt;/a&gt; - Simple plugin for listing recent posts. Some manual work needed.  &lt;/li&gt;&lt;li&gt;&lt;a title="http://dev.wp-plugins.org/browser/recent-comments/trunk" href="http://dev.wp-plugins.org/browser/recent-comments/trunk"&gt;&lt;strong&gt;Recent Comments&lt;/strong&gt;&lt;/a&gt;- Simple plugin for listing recent comments. Some manual work needed.&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;If above plugins are essentials, this list could be called recommended:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="http://presentia.net/didzis/wordpress-plugins/adsense-deluxe/"&gt;&lt;strong&gt;Adsense-Deluxe+&lt;/strong&gt;&lt;/a&gt; - Elegant and efficient way to include &lt;a href="http://www.google.com/adsense/"&gt;Google AdSense&lt;/a&gt; ads on your blog, if you do ads.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.douglaskarr.com/projects/wp-contactform/"&gt;&lt;strong&gt;Contact Form&lt;/strong&gt;&lt;/a&gt; - Add simple way for your readers to privately contact you without exposing your email address.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.pfadvice.com/wordpress-plugins/show-top-commentators/"&gt;&lt;strong&gt;Show Top Commentators&lt;/strong&gt;&lt;/a&gt; - Award to commenters with a list.&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Did I miss anything? Post your suggestions in comments!&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:0cdb3acd-639e-45de-90b4-b160a9078031" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati tags: &lt;a href="http://technorati.com/tags/wordpress" rel="tag"&gt;wordpress&lt;/a&gt;, &lt;a href="http://technorati.com/tags/blogging" rel="tag"&gt;blogging&lt;/a&gt;, &lt;a href="http://technorati.com/tags/plug-ins" rel="tag"&gt;plug-ins&lt;/a&gt;, &lt;a href="http://technorati.com/tags/list" rel="tag"&gt;list&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vidmar.net/weblog/aggbug/4513.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Vidmar</dc:creator>
            <guid>http://vidmar.net/weblog/archive/2007/09/30/wordpress-plugins-everyone-needs.aspx</guid>
            <pubDate>Sat, 29 Sep 2007 22:16:39 GMT</pubDate>
            <wfw:comment>http://vidmar.net/weblog/comments/4513.aspx</wfw:comment>
            <comments>http://vidmar.net/weblog/archive/2007/09/30/wordpress-plugins-everyone-needs.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://vidmar.net/weblog/comments/commentRss/4513.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Search box for vidmar.net</title>
            <link>http://vidmar.net/weblog/archive/2007/09/20/search-box-for-vidmar.net.aspx</link>
            <description>&lt;p&gt;I added a Google search box to the left column of my blog. Due to sitemap my page is rather well indexed so finding an old article shouldn't be a problem.&lt;/p&gt;
&lt;p&gt;The design of things is not something I'm proud of, but I don't enjoy solving CSS and HTML weirdos in browser very much lately. I'll fix it sometime in the future, but I'm going for value for now...&lt;/p&gt;
&lt;p&gt;&lt;img width="253" height="273" border="0" style="border: 0px none ;" alt="Search box" src="http://vidmar.net/weblog/images/vidmar_net/weblog/WindowsLiveWriter/Search_147F9/image_3.png" /&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:a4b810a9-b961-470c-a6c0-ead527a5bb32" style="margin: 0px; padding: 0px; display: inline;"&gt;Technorati tags: &lt;a href="http://technorati.com/tags/blogging" rel="tag"&gt;blogging&lt;/a&gt;, &lt;a href="http://technorati.com/tags/search" rel="tag"&gt;search&lt;/a&gt;, &lt;a href="http://technorati.com/tags/vidmar.net" rel="tag"&gt;vidmar.net&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vidmar.net/weblog/aggbug/4505.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Vidmar</dc:creator>
            <guid>http://vidmar.net/weblog/archive/2007/09/20/search-box-for-vidmar.net.aspx</guid>
            <pubDate>Thu, 20 Sep 2007 21:22:10 GMT</pubDate>
            <wfw:comment>http://vidmar.net/weblog/comments/4505.aspx</wfw:comment>
            <comments>http://vidmar.net/weblog/archive/2007/09/20/search-box-for-vidmar.net.aspx#feedback</comments>
            <slash:comments>6</slash:comments>
            <wfw:commentRss>http://vidmar.net/weblog/comments/commentRss/4505.aspx</wfw:commentRss>
        </item>
    </channel>
</rss>