<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IBlog &#187; RoboCoding</title>
	<atom:link href="http://blog.objectpattern.com/category/robo-coding/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.objectpattern.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 17 Apr 2010 18:49:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Navigate and injecting C# code using visual studio macro</title>
		<link>http://blog.objectpattern.com/dot-net/navigate-and-injecting-c-code-using-visual-studio-macro/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=navigate-and-injecting-c-code-using-visual-studio-macro</link>
		<comments>http://blog.objectpattern.com/dot-net/navigate-and-injecting-c-code-using-visual-studio-macro/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 19:32:00 +0000</pubDate>
		<dc:creator>Himanshu</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[RoboCoding]]></category>
		<category><![CDATA[Software Engineering]]></category>
		<category><![CDATA[VS.NET]]></category>

		<guid isPermaLink="false">/post/Navigate-and-injecting-C-code-using-visual-studio-macro.aspx</guid>
		<description><![CDATA[Visual studio macros are great, probably I will write this in all posts that I write for macros  . Sometime back, I need to change a fairly big CF.NET application such a way that it will log a line on each function entry and on function exit. We were tracing for cause of intermittently [...]]]></description>
			<content:encoded><![CDATA[<p>Visual studio macros are great, probably I will write this in all posts that I write for macros <img src='http://blog.objectpattern.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Sometime back, I need to change a fairly big CF.NET application such a way that it will log a line on each function entry and on function exit. We were tracing for cause of intermittently occurring GWES.EXE error, and we were tracing it from multiple directions. The error code of GWES was 0xC0000005, which means someone was trying to access something, which was never allocated or is being accessed after releasing it. Application was multi-threaded, and hence it was difficult to understand which thread will do what at what time.</p>
<p>Moving back to original point, we wanted to log entry and exit of each functions. There can be more then one way to do that, but we have selected to change each functions. And to change each functions I have selected to use developer named <em>&#8220;VS.NET macro&#8221;.</em></p>
<p>From macro it is possible to navigate through solution and projects. So macro first needs to find out all class types from a project, and then for each class, iterate through its member and find out functions that has body. If function has body, inject the code that logs line on function entry and exit.</p>
<p>It was easy to find function entry, but there can be many way function ends, like exception is being thrown, or based of some condition it may execute &#8220;return&#8221;, or body of the function is ended and hence return. To accommodate such cases, we decide to use &#8220;<em>using statement&#8221; </em>of C#.</p>
<p>All right, enough of the background, have look at Macro code <a title="VS.NET Macro" href="http://download.objectpattern.com/LoggingInjection-VS8Macro.vb" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectpattern.com/dot-net/navigate-and-injecting-c-code-using-visual-studio-macro/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating a windows shortcut using AutoIt</title>
		<link>http://blog.objectpattern.com/auto-it/creating-a-windows-shortcut-using-autoit/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=creating-a-windows-shortcut-using-autoit</link>
		<comments>http://blog.objectpattern.com/auto-it/creating-a-windows-shortcut-using-autoit/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 06:07:00 +0000</pubDate>
		<dc:creator>Himanshu</dc:creator>
				<category><![CDATA[AutoIt]]></category>
		<category><![CDATA[RoboCoding]]></category>

		<guid isPermaLink="false">/post/Creating-a-windows-shortcut-using-AutoIt.aspx</guid>
		<description><![CDATA[AutoIt library do have function to create windows shortcut, FileCreateShortcut. AutoIt script to create new shortcut of specified target in specified file/folder. Once compiled and created executable, use it in following way. 
Usage: 
shortCut.exe&#160;  [] 
First parameter is required and should be path of file/folder for which to create shortcut 
Second parameter is optional [...]]]></description>
			<content:encoded><![CDATA[<p>AutoIt library do have function to create windows shortcut, FileCreateShortcut. AutoIt script to create new shortcut of specified target in specified file/folder. Once compiled and created executable, use it in following way. </p>
<p>Usage: </p>
<p>shortCut.exe&#160; <File/Folder for which to create shortcut> [<File name and path where to create folder>] </p>
<p>First parameter is required and should be path of file/folder for which to create shortcut </p>
<p>Second parameter is optional and if specified, should be full existing path including shortcut file name. If not specified shortcut will be created in the folder from where executable is run. </p>
<div style="border-right: gray 1px solid; padding-right: 4px; border-top: gray 1px solid; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; margin: 20px 0px 10px; overflow: auto; border-left: gray 1px solid; width: 97.5%; cursor: text; max-height: 200px; line-height: 12pt; padding-top: 4px; border-bottom: gray 1px solid; font-family: consolas, &#39;Courier New&#39;, courier, monospace; background-color: #f4f4f4">
<div style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #0000ff">If</span> ($CmdLine[0] < 1) <span style="color: #0000ff">Then</span></pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">    MsgBox(16, <span style="color: #006080">"Error"</span>, <span style="color: #006080">"Insufficent parameters. In first parameter, specify for which file, shortcut should be created."</span>) </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none">    <span style="color: #0000ff">Return</span> </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #0000ff">EndIf</span> </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none">$shortcutOf = $CmdLine[1] </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #0000ff">If</span> (<span style="color: #0000ff">Not</span> FileExists($shortcutOf)) <span style="color: #0000ff">Then</span> </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none">    MsgBox(16, <span style="color: #006080">"Error"</span>, <span style="color: #006080">"File/directory "</span><span style="color: #006080">""</span> &#038; $shortcutOf &#038; <span style="color: #006080">""</span><span style="color: #006080">" do not exists"</span>) </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">    <span style="color: #0000ff">Return</span> </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #0000ff">EndIf</span> </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">$shortcutPath = @WorkingDir &#038; <span style="color: #006080">"\"</span> &#038; <span style="color: #006080">"Shortcut of "</span> &#038; </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none">$shortcutOf &#038; <span style="color: #006080">".lnk"</span> </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #0000ff">If</span> ($CmdLine[0] = 2) <span style="color: #0000ff">Then</span> </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none">    $shortcutPath = $CmdLine[2] </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">    <span style="color: #0000ff">If</span> (StringLower( StringRight($shortcutPath , 4)) <> <span style="color: #006080">".lnk"</span> ) <span style="color: #0000ff">Then</span> </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none">        $shortcutPath = $shortcutPath &#038; <span style="color: #006080">".lnk"</span> </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">    <span style="color: #0000ff">EndIf</span> </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #0000ff">EndIf</span> </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">$objShell = ObjCreate(<span style="color: #006080">"Wscript.Shell"</span>) </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none">$shortcut = $objShell.CreateShortcut($shortcutPath) </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">$shortcut.TargetPath = $shortcutOf </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none">$shortcut.WindowStyle = 1 </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">$shortcut.Save()</pre>
</p></div>
</div>
<p>If you want to download script file click <a href="http://download.objectpattern.com/shortCut.au3" target="_blank">here</a> </p>
<p>Let me know if you need any further help in it. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectpattern.com/auto-it/creating-a-windows-shortcut-using-autoit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sending keystrokes (Key press) from .Net to active application</title>
		<link>http://blog.objectpattern.com/dot-net/sending-keystrokes-key-press-from-net-to-active-application/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=sending-keystrokes-key-press-from-net-to-active-application</link>
		<comments>http://blog.objectpattern.com/dot-net/sending-keystrokes-key-press-from-net-to-active-application/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 17:32:39 +0000</pubDate>
		<dc:creator>Himanshu</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[RoboCoding]]></category>

		<guid isPermaLink="false">/post/Sending-keystrokes-(Key-press)-from-Net-to-active-application.aspx</guid>
		<description><![CDATA[Many of the part of windows works on messages &#8211; windows messages. One code can send different kind of messages to another application using Windows API. Keyboard messages and mouse messages are one of them.
.NET is one more layer above OS, e.g. Windows. If someone needs to emulate keyboard strokes to another application from .NET [...]]]></description>
			<content:encoded><![CDATA[<p>Many of the part of windows works on messages &#8211; windows messages. One code can send different kind of messages to another application using Windows API. Keyboard messages and mouse messages are one of them.</p>
<p>.NET is one more layer above OS, e.g. Windows. If someone needs to emulate keyboard strokes to another application from .NET there is a choice of using .NET class library. To emulate keyboard events from .NET it&#8217;s easier to use</p>
<ul>
<li>System.Windows.Forms.SendKeys.Send(string) and </li>
<li>System.Windows.Forms.SendKeys.SendWait(string) </li>
</ul>
<p>Recently, I used this to auto log into a application that I&#8217;m developing if it&#8217;s debug build. Just to get a change from AutoHotKey. </p>
<p>The problem of this is it sends keystrokes to only active application.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectpattern.com/dot-net/sending-keystrokes-key-press-from-net-to-active-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VS.NET, macro creating string const, and macro creating string resource entry</title>
		<link>http://blog.objectpattern.com/dot-net/vs-net-macro-creating-string-const-and-macro-creating-string-resource-entry/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=vs-net-macro-creating-string-const-and-macro-creating-string-resource-entry</link>
		<comments>http://blog.objectpattern.com/dot-net/vs-net-macro-creating-string-const-and-macro-creating-string-resource-entry/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 14:08:00 +0000</pubDate>
		<dc:creator>Himanshu</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[RoboCoding]]></category>
		<category><![CDATA[VS.NET]]></category>

		<guid isPermaLink="false">/post/VSNET-Macro-creating-const-of-string-and-resource-entry-for-string.aspx</guid>
		<description><![CDATA[
Per me, macro is one of the most important feature for any text editor or software IDE. And hence, it is very import for VS.NET user to understand and then use macros available in VS.NET. VS.NET macros are very powerfully tool and they help in lot more different ways.


I have created two macros that are [...]]]></description>
			<content:encoded><![CDATA[<p>
Per me, macro is one of the most important feature for any text editor or software IDE. And hence, it is very import for VS.NET user to understand and then use macros available in VS.NET. VS.NET macros are very powerfully tool and they help in lot more different ways.
</p>
<p>
I have created two macros that are very common in their need. While programming, we need to create string const on regular bases. It becomes inconvenient to go to top of the class while writing a method body for same class and create constant. Macro in library attached with this post becomes handy at that time.
</p>
<p>
Same use case hold very much true for creating string resources while writing method body. And it becomes really very easy if string resource can be created while writing method body.
</p>
<p>
For those who thinks like me (or want to <img src='http://blog.objectpattern.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ), I have attached two macros with this post. Macro works for VS.NET 2005, haven&#39;t tested in any other version. But should work fine in VS.NET 2003 or VS.NET 2008</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectpattern.com/dot-net/vs-net-macro-creating-string-const-and-macro-creating-string-resource-entry/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create shortcuts by scripting (AutoIt, AutoHotKey)</title>
		<link>http://blog.objectpattern.com/auto-it/create-shortcuts-by-scripting-autoit-autohotkey/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=create-shortcuts-by-scripting-autoit-autohotkey</link>
		<comments>http://blog.objectpattern.com/auto-it/create-shortcuts-by-scripting-autoit-autohotkey/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 12:01:59 +0000</pubDate>
		<dc:creator>Himanshu</dc:creator>
				<category><![CDATA[AutoIt]]></category>
		<category><![CDATA[RoboCoding]]></category>

		<guid isPermaLink="false">/post/Create-shortcuts-by-scripting-(AutoIt2c-AutoHotKey).aspx</guid>
		<description><![CDATA[In windows, one can create shortcuts; Windows shortcuts can point to may resources like URL, an executable file, document files or folder in file system, disk, and network shares. But not all are same in their behavior. For example: If I create shortcut of an executable and put that shortcut in one of the directory [...]]]></description>
			<content:encoded><![CDATA[<p>In windows, one can create shortcuts; Windows shortcuts can point to may resources like URL, an executable file, document files or folder in file system, disk, and network shares. But not all are same in their behavior. For example: If I create shortcut of an executable and put that shortcut in one of the directory which is included in PATH (Environment variable), I can invoke executable by just typing in shortcut name in Start->Run (Windows + R Key). But I could not do same with http URL. I also wanted to parameterize some of them. For example if I type in <em>&#8220;jira ata-586&#8243;</em>, it should open jira item <em>&#8220;ata-586&#8243;. </em></p>
<p>I use <a href="http://www.autoitscript.com/">AutoIt</a> for quite some time. There are many good things about AutoIt, easy to learn it&#8217;s language (almost like VB), can create executable from script, comes with SciTE Script Editor along with plug-in for language and libraries of AutoIt. Because of plug-in SciTE can give nice code complete feature. I have also been using <a href="http://www.autohotkey.com/">AutoHotKey</a> a bit. One of the nice features of AutoHotKey is you can program it to wait until specific keys are pressed to perform certain operations, recording keyboard keystrokes and mouse gestures. And also supports to create executable from script. </p>
<p>It&#8217;s good to create this kind of scripts that will minimize effort to locate specific place that once can access on regular basis. I have created windows shortcuts or script shortcuts for following specific tasks that I perform regularly </p>
<ul>
<li>Open folder of my projects in windows explorer. (&#8221;cd ata&#8221; or &#8220;cd pub&#8221;) </li>
<li>JIRA home page </li>
<li>JIRA space of specific project </li>
<li>Specific JIRA issues </li>
<li>Confluence Dashboard </li>
<li>Specific confluence space. </li>
<li><a href="http://dictionary.com">http://dictionary.com</a> with specific word </li>
<li>Google with specific search result. </li>
<li>Cisco vpn connection </li>
<li>Mapping network share to a drive letter </li>
<li>Starting tools that I regularly use, like specific version of visual studio, reflector, vmplayer, nunit&#8230; </li>
<li>Logging in to application that I&#8217;m working/testing </li>
<li>Fill-in form that I&#8217;m working </li>
<li>&#8230;. </li>
</ul>
<p>Big list, I also recommend all to do same for the tasks that you regularly perform, and make you life easier. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectpattern.com/auto-it/create-shortcuts-by-scripting-autoit-autohotkey/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Automation, Software Engineering, Productivity</title>
		<link>http://blog.objectpattern.com/programming/automation-software-engineering-productivity/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=automation-software-engineering-productivity</link>
		<comments>http://blog.objectpattern.com/programming/automation-software-engineering-productivity/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 12:22:00 +0000</pubDate>
		<dc:creator>Himanshu</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[RoboCoding]]></category>
		<category><![CDATA[VS.NET]]></category>

		<guid isPermaLink="false">/post/Automation2c-Software-Engineering2c-Productivity.aspx</guid>
		<description><![CDATA[It&#8217;s good to use computer as far as it is possible to do. Around the world, many computer engineers work for others to generate code-base that instructs computers to act as it&#39;s user would like it to. Computers gives more accessibility to the information, knowledge, gives more processing power, help to be more managed and [...]]]></description>
			<content:encoded><![CDATA[<p>It&rsquo;s good to use computer as far as it is possible to do. Around the world, many computer engineers work for others to generate code-base that instructs computers to act as it&#39;s user would like it to. Computers gives more accessibility to the information, knowledge, gives more processing power, help to be more managed and allow us to utilize much more clock cycle of our main thread &ndash; a human main thread, which can really do the thinking. Ultimately that what the difference is between human and machines in today edge. That is why we have many software built today. Operating systems, financial applications, engineering application and many others, including the RAD (Rapid application development) tools. RAD in compare to the edge where programmers need to punch the cards makes developer very efficient in generating computer instructions. And of-course even computers are also much more efficient now a days. </p>
<p>
Anyway, many of us knows most of above that I have written. The point here is use computers, as much as you can to increase productivity. And it applies to software engineers as well. To support that, I&rsquo;m planning to take several efforts that will include blog-posts, posting some tools, VS.NET macros, snippets and something else that will help.
</p>
<p>
Although this wouldn&rsquo;t be the only goal of this blog-post repository (making it explicit as this is first blog-post in this repository), I&rsquo;m starting with posting first version of first macro that creates resource entry of a selected <strong>string</strong> in the code. The macro is posted separately to make both more manageable. I&rsquo;m linking my first macro with this blog post <a href="/blogengine/post/VSNET-Macro-creating-const-of-string-and-resource-entry-for-string.aspx">here</a><strong>,</strong> but will not do same for other automation posts that I will post later. To find them you should see posts tagged under <em><a href="/blog/category/RoboCoding.aspx">RoboCoding</a></em>. Please mind that the macro is in version-1, I will fix and enhance it as time ticks and the need. As well as more of such will come in future.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectpattern.com/programming/automation-software-engineering-productivity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
