<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Vickash&#039;s Blog</title>
	<atom:link href="http://vickash.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vickash.com</link>
	<description></description>
	<lastBuildDate>Tue, 17 Apr 2012 14:42:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='vickash.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Vickash&#039;s Blog</title>
		<link>http://vickash.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://vickash.com/osd.xml" title="Vickash&#039;s Blog" />
	<atom:link rel='hub' href='http://vickash.com/?pushpress=hub'/>
		<item>
		<title>More Secure Passwords In AppleScript</title>
		<link>http://vickash.com/2012/01/16/more-secure-passwords-in-applescript/</link>
		<comments>http://vickash.com/2012/01/16/more-secure-passwords-in-applescript/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 13:00:21 +0000</pubDate>
		<dc:creator>Vickash</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://vixm.wordpress.com/?p=432</guid>
		<description><![CDATA[Sometimes an Applescript might require user authentication. For example, this will happen if using do shell script to run a UNIX command that needs administrator access: do shell script &#34;chown -R Vickash &#34; &#38; quoted form of &#34;/Users/Vickash/Desktop/My Files&#34; with administrator privileges A dialog box appears prompting the user for their password before the shell [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=432&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometimes an Applescript might require user authentication. For example, this will happen if using <code>do shell script</code> to run a UNIX command that needs administrator access:</p>
<pre><code>do shell script &quot;chown -R Vickash &quot; &amp; quoted form of &quot;/Users/Vickash/Desktop/My Files&quot; with administrator privileges
</code></pre>
<p>A dialog box appears prompting the user for their password before the shell script executes. This is fine if your script is always run manually by the user. However, for Folder Actions, or any type of script that runs on a trigger, this can be a problem. What if the user isn&#8217;t at the machine when the script is triggered? And if the script runs frequently, do you really want to ask the user for a password each and every time?</p>
<p>If you&#8217;ve come across this problem, you know that one possible solution is to put the login credentials inline. However, the security problem here is obvious; anyone looking at the source code has the user&#8217;s login credentials:</p>
<pre><code>do shell script &quot;chown -R Vickash &quot; &amp; quoted form of &quot;/Users/Vickash/Desktop/My Files&quot; user name &quot;Vickash&quot; password &quot;this is a test&quot; with administrator privileges
</code></pre>
<p>Ideally, the password would be stored elsewhere, in an encrypted form, and only accessed by the script when necessary. Luckily, OS X provides an app called Keychain Access (check your Utilities folder) for storing credentials in encrypted form.</p>
<h2 id="usingkeychains">Using Keychains</h2>
<p>Your default keychain is at ~/Library/Keychains/login.keychain, and holds things like Safari&#8217;s saved passwords. It&#8217;s protected with your login password by default. To keep things clean, I recommend creating a new keychain specifically for storing generic password items that you want Applescript to access. Here&#8217;s how:</p>
<p>1) Open Keychain Access.app and go to File &gt; New Keychain&#8230; You can name the keychain whatever you want and store it wherever you want, but take note of it&#8217;s full path. You&#8217;ll need that for the script to access it later.</p>
<div id="attachment_443" class="wp-caption aligncenter" style="width: 310px"><a href="http://vixm.files.wordpress.com/2012/01/120110-step01.png"><img src="http://vixm.files.wordpress.com/2012/01/120110-step01.png?w=300&h=205" alt="" title="120110-step01" width="300" height="205" class="size-medium wp-image-443" /></a><p class="wp-caption-text">Step 1 - Create A New Keychain</p></div>
<p>2) When creating a new keychain, you&#8217;ll need to set a password. This is separate from the credentials you want to save within the keychain; it&#8217;s a password that restricts access to the keychain itself. Think of it like a LastPass or 1Password master password. This is the password your user will need to type the first time the script runs to allow the script access to the keychain and the credentials within.</p>
<div id="attachment_444" class="wp-caption aligncenter" style="width: 310px"><a href="http://vixm.files.wordpress.com/2012/01/120110-step02.png"><img src="http://vixm.files.wordpress.com/2012/01/120110-step02.png?w=300&h=198" alt="" title="120110-step02" width="300" height="198" class="size-medium wp-image-444" /></a><p class="wp-caption-text">Step 2 - Set the Keychain&#039;s Password</p></div>
<p>3) Once the keychain is created, create a generic password item by clicking on the &#8220;add&#8221; button below the empty list. Put in the credentials that you would have typed inline before, and give the item a name. I&#8217;ve called it &#8220;Admin&#8221; here. It doesn&#8217;t matter much what you call it, but you&#8217;ll need to know the name for the script to find the right item.</p>
<div id="attachment_445" class="wp-caption aligncenter" style="width: 310px"><a href="http://vixm.files.wordpress.com/2012/01/120110-step03.png"><img src="http://vixm.files.wordpress.com/2012/01/120110-step03.png?w=300&h=192" alt="" title="120110-step03" width="300" height="192" class="size-medium wp-image-445" /></a><p class="wp-caption-text">Step 3 - Create the Keychain Item</p></div>
<p>By doing this, you&#8217;ve now used the keychain&#8217;s encryption to protect the username and password that would have been typed as plain text in the script before. Now we need to set the script up to access the keychain.</p>
<p>4) To make things even more convenient I recommend changing the keychain&#8217;s settings so that it doesn&#8217;t automatically lock on sleep or after a period of inactivity. You can adjust this to suit your needs, but the idea is that the user allows the script access to the keychain once, the first time the script runs, and then doesn&#8217;t need to again until the user logs out.</p>
<p><div id="attachment_450" class="wp-caption aligncenter" style="width: 310px"><a href="http://vixm.files.wordpress.com/2012/01/120110-step04.png"><img src="http://vixm.files.wordpress.com/2012/01/120110-step04.png?w=300&h=192" alt="" title="120110-step04" width="300" height="192" class="size-medium wp-image-450" /></a><p class="wp-caption-text">Step 4 - Edit the Keychain&#039;s Settings</p></div><br />
<div id="attachment_446" class="wp-caption aligncenter" style="width: 310px"><a href="http://vixm.files.wordpress.com/2012/01/120110-step05.png"><img src="http://vixm.files.wordpress.com/2012/01/120110-step05.png?w=300&h=192" alt="" title="120110-step05" width="300" height="192" class="size-medium wp-image-446" /></a><p class="wp-caption-text">Step 5 - Keychain Settings</p></div></p>
<h2 id="accessingthekeychainfromapplescript">Accessing the Keychain from AppleScript</h2>
<p>We&#8217;ve solved half the problem. The password is stored in an encrypted form on disk rather than in plaintext. But now we need some way to pull those credentials out of the keychain and use them in our script.</p>
<p>Apple used to provide a standard extension for this. You&#8217;d call <code>tell application &quot;Keychain Scripting&quot;</code> and be able to access the keychains, but I&#8217;m not sure that&#8217;s still exists in Lion, and it had major performance issues before that.</p>
<p>Daniel Jalkut at <a href="http://www.red-sweater.com/blog/">Red Sweater Software</a> has written a tiny scriptable app called &#8220;Usable Keychain Scripting&#8221; for <a href="http://www.red-sweater.com/blog/2035/usable-keychain-scripting-for-lion">Lion</a> and <a href="http://www.red-sweater.com/blog/170/usable-keychain-scripting">Pre-Lion</a> systems. It&#8217;s free, I&#8217;ve used it, and it works great. If you don&#8217;t have a problem with installing something extra to get your scripts to run, head over to his blog and check it out.</p>
<p>If you&#8217;d like your scripts to be dependent only on the keychain, like I needed on a couple occasions, I&#8217;ve come up with a pure AppleScript workaround. On OS X there&#8217;s a shell command called <code>security</code> that can be used from the terminal to access keychains.</p>
<p>You can read more about the <code>security</code> command <a href="http://developer.apple.com/library/mac/#documentation/Darwin/Reference/Manpages/man1/security.1.html">here</a>, but the main thing we&#8217;re interested in is its <code>find-generic-password</code> option. When using this option and passing in the keychain path, and keychain item name we&#8217;re searching for, it returns the full details for the password item as text.</p>
<p>Running</p>
<pre><code>security 2&gt;&amp;1 find-generic-password -gs &quot;Admin&quot; &quot;/Users/Vickash/Library/Keychains/ScriptingDemo.keychain&quot;
</code></pre>
<p>Returns</p>
<pre><code>keychain: &quot;/Users/Vickash/Library/Keychains/ScriptingDemo.keychain&quot;
class: &quot;genp&quot;
attributes:
    0x00000007 &lt;blob&gt;=&quot;Admin&quot;
    0x00000008 &lt;blob&gt;=&lt;NULL&gt;
    &quot;acct&quot;&lt;blob&gt;=&quot;Vickash&quot;
    &quot;cdat&quot;&lt;timedate&gt;=0x32303132303131353136343231355A00  &quot;20120115164215Z00&quot;
    &quot;crtr&quot;&lt;uint32&gt;=&lt;NULL&gt;
    &quot;cusi&quot;&lt;sint32&gt;=&lt;NULL&gt;
    &quot;desc&quot;&lt;blob&gt;=&lt;NULL&gt;
    &quot;gena&quot;&lt;blob&gt;=&lt;NULL&gt;
    &quot;icmt&quot;&lt;blob&gt;=&lt;NULL&gt;
    &quot;invi&quot;&lt;sint32&gt;=&lt;NULL&gt;
    &quot;mdat&quot;&lt;timedate&gt;=0x32303132303131353136343231355A00  &quot;20120115164215Z00&quot;
    &quot;nega&quot;&lt;sint32&gt;=&lt;NULL&gt;
    &quot;prot&quot;&lt;blob&gt;=&lt;NULL&gt;
    &quot;scrp&quot;&lt;sint32&gt;=&lt;NULL&gt;
    &quot;svce&quot;&lt;blob&gt;=&quot;Admin&quot;
    &quot;type&quot;&lt;uint32&gt;=&lt;NULL&gt;
password: &quot;this is a test&quot;
</code></pre>
<p>Now, it&#8217;s obvious that the only two lines we care about are <code>&quot;acct&quot;&lt;blob&gt;=&quot;Vickash&quot;</code> and <code>password: &quot;this is a test&quot;</code>. By executing the shell command via AppleScript, and writing a separate subroutine to extract the data we need, I&#8217;ve come up with the following:</p>
<pre><code>on extractData(theText, theFieldName, theEndDelimiter, spaces)
    set theDataStart to the offset of theFieldName in theText
    if theDataStart = 0 then
        return &quot;&quot;
    else
        set theDataStart to theDataStart + (length of theFieldName) + spaces
        set theData to text theDataStart through end of theText
        set theDataEnd to ((offset of theEndDelimiter in theData) - 1)
        set theData to text 1 through theDataEnd of theData
    end if
end extractData

on getCredentials of theKeychainItem from theKeychain
    set theKeychainPath to (POSIX path of theKeychain) as text
    try
        set theKeychainAlias to (POSIX file theKeychainPath) as alias
        set theKeychainPath to (POSIX path of theKeychainAlias)
    on error
        return &quot;The keychain file was not found at the specified location: &quot; &amp; theKeychain as text
    end try
    try
        set theResult to do shell script &quot;security 2&gt;&amp;1 find-generic-password -gs &quot; &amp; quoted form of theKeychainItem &amp; &quot; &quot; &amp; quoted form of theKeychainPath
        set theAccount to extractData(theResult, &quot;\&quot;acct\&quot;&lt;blob&gt;=\&quot;&quot;, &quot;\&quot;&quot;, 0)
        set thePassword to extractData(theResult, &quot;password: \&quot;&quot;, &quot;\&quot;&quot;, 0)
        return {account:theAccount, password:thePassword}
    on error
        return &quot;The generic password item was not found in the keychain. Please verify its name: &quot; &amp; theKeychainItem
    end try
end getCredentials
</code></pre>
<h2 id="practicaluse">Practical Use</h2>
<p>Copy these subroutines into your script. Now, whenever your script script needs to get credentials from a keychain, do something like: </p>
<pre><code>set theCredentials to getCredentials of &quot;Admin&quot; from &quot;/Users/Vickash/Library/Keychains/ScriptingDemo.keychain&quot;
</code></pre>
<p>This will return an AppleScript record, in my case:</p>
<pre><code>theCredentials {account: &quot;Vickash&quot;, password: &quot;this is a test&quot;}
</code></pre>
<p>Now that the script has the login credentials stored in a record, I can execute the command that would have required manual authentication like:</p>
<pre><code>do shell script &quot;chown -R Vickash &quot; &amp; quoted form of &quot;/Users/Vickash/Desktop/My Files&quot; user name (account of theCredentials) password (password of theCredentials) with administrator privileges
</code></pre>
<p>Which is much more secure than:</p>
<pre><code>do shell script &quot;chown -R Vickash &quot; &amp; quoted form of &quot;/Users/Vickash/Desktop/My Files&quot; user name &quot;Vickash&quot; password &quot;this is a test&quot; with administrator privileges
</code></pre>
<h2 id="notes">Notes</h2>
<p>Keep in mind that the first time the script runs it will prompt you for the keychain password to unlock it. Put the password in and click &#8220;Always Allow&#8221; to give the script continuous access to the keychain. If you&#8217;ve used the settings I recommended, the keychain won&#8217;t relock until it&#8217;s manually relocked via the Keychain Access app, or until the user logs out.</p>
<p>The <code>getCredentials</code> handler returns text, rather than a record, on error, so you can write your script to catch this and display a dialog box.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vixm.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vixm.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vixm.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vixm.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vixm.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vixm.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vixm.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vixm.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vixm.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vixm.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vixm.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vixm.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vixm.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vixm.wordpress.com/432/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=432&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vickash.com/2012/01/16/more-secure-passwords-in-applescript/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94a0c452dad381f6c5ee0003815cff78?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vixm</media:title>
		</media:content>

		<media:content url="http://vixm.files.wordpress.com/2012/01/120110-step01.png?w=300" medium="image">
			<media:title type="html">120110-step01</media:title>
		</media:content>

		<media:content url="http://vixm.files.wordpress.com/2012/01/120110-step02.png?w=300" medium="image">
			<media:title type="html">120110-step02</media:title>
		</media:content>

		<media:content url="http://vixm.files.wordpress.com/2012/01/120110-step03.png?w=300" medium="image">
			<media:title type="html">120110-step03</media:title>
		</media:content>

		<media:content url="http://vixm.files.wordpress.com/2012/01/120110-step04.png?w=300" medium="image">
			<media:title type="html">120110-step04</media:title>
		</media:content>

		<media:content url="http://vixm.files.wordpress.com/2012/01/120110-step05.png?w=300" medium="image">
			<media:title type="html">120110-step05</media:title>
		</media:content>
	</item>
		<item>
		<title>A Simpler Way To Use Growl With Applescript</title>
		<link>http://vickash.com/2012/01/02/a-simpler-way-to-use-growl-with-applescript/</link>
		<comments>http://vickash.com/2012/01/02/a-simpler-way-to-use-growl-with-applescript/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 19:59:00 +0000</pubDate>
		<dc:creator>Vickash</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[Automation]]></category>
		<category><![CDATA[Growl]]></category>

		<guid isPermaLink="false">http://vickash.com/?p=412</guid>
		<description><![CDATA[Introduction Growl is a great pop-up notifier that many Mac applications integrate with. If you write Applescripts for yourself or others, it&#8217;s useful for displaying pop-up notifications, rather than dialog boxes, notifying users when a script runs on a schedule, or a trigger, or even to send users reminders. However, Growl suffers from a wordy [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=412&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3 id="introduction">Introduction</h3>
<p><a href="http://www.growl.info">Growl</a> is a great pop-up notifier that many Mac applications integrate with. If you write Applescripts for yourself or others, it&#8217;s useful for displaying pop-up notifications, rather than dialog boxes, notifying users when a script runs on a schedule, or a trigger, or even to send users reminders.</p>
<p>However, Growl suffers from a wordy AppleScript implementation. Each time you want to send a new notification, you have to register your application with Growl, register the notification with Growl, and then display it. Also, there are a bunch of version-incompatible ways to access the scriptable Growl object.</p>
<p>This is an attempt to wrap all of this wordiness up into a single AppleScript handler which will let you create Growl notifications with a single line.</p>
<h3 id="howtosetitup">How To Set It Up</h3>
<p>Step 1: Make sure you have Growl version &gt;= 1.2.2 on your Mac. This might work with older versions, but I haven&#8217;t tested it.</p>
<p>Step 2: Copy the following property and handler into the Applescript that you want to send Growl notifications from:</p>
<pre><code>  property allNotifications : {}
  on growl(theTitle, theContent)
    if allNotifications does not contain theTitle then
        set allNotifications to allNotifications &amp; theTitle
    end if
    set myName to path to me as text
    set TID to text item delimiters
    set text item delimiters to &quot;:&quot;
    set myName to the last text item of myName
    set text item delimiters to TID
    tell application id &quot;com.Growl.GrowlHelperApp&quot;
        register as application myName ¬
            all notifications allNotifications ¬
            default notifications allNotifications ¬
            icon of application &quot;AppleScript Editor&quot;
        notify with name theTitle title theTitle description theContent application name myName
    end tell
  end growl
</code></pre>
<p>Step 3: When you want your script to send a notification, call the <code>growl</code> handler, passing in the notification title and content as arguments:</p>
<pre><code>  growl(&quot;Notification Title&quot;, &quot;This is the content of the notification.&quot;)
</code></pre>
<p>That&#8217;s it!</p>
<h3 id="howitworks">How It Works</h3>
<p>The <code>allNotifications</code> property is a list of all the notifications your script has already registered with Growl. Each time you call the <code>growl</code> handler, it checks to see if the title you passed in is in the list. If it isn&#8217;t, it gets added to the list, and registered with Growl.</p>
<p>Next, we get the file path to your script and extract the filename. This is used as the &#8220;application name&#8221; to register the script with Growl. The <code>register</code> line does the registering, telling it to use AppleScript Editor&#8217;s icon for the notification. The <code>notify</code> line displays the actual notification.</p>
<h3 id="notes">Notes</h3>
<p><strong>1)</strong> <code>allNotifications</code> is an AppleScript property, which persists across runs, but resets to an empty list when you edit or recompile the script. This means that, if you&#8217;ve set up custom styles or priorities in Growl for your script&#8217;s notifications, they get reset if you edit or recompile.</p>
<p>In most cases, this won&#8217;t matter, but if it does to you, you can modify the handler to store the list of notifications in a text file in the same folder as the script, and read it in on each run. Overkill for my needs, but definitely a workable solution.</p>
<p><strong>2)</strong> You can replace &#8220;AppleScript Editor&#8221; with the name of any app whose icon you&#8217;d like to use for the notification.</p>
<p><strong>3)</strong> You&#8217;ll notice that I&#8217;ve addressed the Growl application by its id and not by its name. This is because:</p>
<p><code>tell application &quot;Growl&quot;</code> works with version 1.3 and up only, but</p>
<p><code>tell application &quot;GrowlHelperApp&quot;</code> works with version 1.2.2 and lower only.</p>
<p>I&#8217;ve found that by avoiding names altogether, and addressing it via id, the script works with all versions. Scripts you create with this handler should work regardless of which version of Growl is installed on the user&#8217;s system.</p>
<h3 id="moreaboutgrowl">More About Growl</h3>
<p>Growl used to be an OS X preference pane, but with version 1.3, it moved to the Mac App Store, so it&#8217;s now a $1.99, 64-bit, Lion-only application. Version 1.2.2 is still available for free at <a href="http://www.growl.info/downloads">http://www.growl.info</a>. It states compatibility with 10.5 and 10.6, but works fine on 10.7 as well. Version 1.3 adds some nice features, and I like that it&#8217;s an application rather than a preference pane, but the core functionality of both is mostly identical for now.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vixm.wordpress.com/412/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vixm.wordpress.com/412/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vixm.wordpress.com/412/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vixm.wordpress.com/412/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vixm.wordpress.com/412/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vixm.wordpress.com/412/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vixm.wordpress.com/412/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vixm.wordpress.com/412/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vixm.wordpress.com/412/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vixm.wordpress.com/412/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vixm.wordpress.com/412/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vixm.wordpress.com/412/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vixm.wordpress.com/412/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vixm.wordpress.com/412/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=412&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vickash.com/2012/01/02/a-simpler-way-to-use-growl-with-applescript/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94a0c452dad381f6c5ee0003815cff78?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vixm</media:title>
		</media:content>
	</item>
		<item>
		<title>Random Shot Of The Day: Going Home</title>
		<link>http://vickash.com/2010/11/04/random-shot-of-the-day-going-home/</link>
		<comments>http://vickash.com/2010/11/04/random-shot-of-the-day-going-home/#comments</comments>
		<pubDate>Fri, 05 Nov 2010 00:59:26 +0000</pubDate>
		<dc:creator>Vickash</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://vickash.com/?p=292</guid>
		<description><![CDATA[Riche and I went to PhotoPlusExpo in New York for the weekend. We spent our time learning from some of the best photographers in the world, running around the expo floor, shopping a bit, and causing general mayhem. See Riche&#8217;s Vimeo profile for more on that last one.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=292&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://riche90210.wordpress.com">Riche</a> and I went to <a href="http://www.photoplusexpo.com/">PhotoPlusExpo</a> in New York for the weekend. We spent our time learning from some of the best photographers in the world, running around the expo floor, shopping a bit, and causing general mayhem. See Riche&#8217;s Vimeo profile for more on that last one.</p>
<div id="attachment_7" class="wp-caption aligncenter" style="width: 343px"><a href="http://www.flickr.com/photos/vixm/5143958421/" title="Going Home by VixM, on Flickr"><img src="http://farm5.static.flickr.com/4002/5143958421_5e1e08ef20_z.jpg" width="333" height="416" alt="Going Home" /></a><p class="wp-caption-text">Camera: Nokia E72, Plane: Boeing 737-800, Seat: 15F.</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vixm.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vixm.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vixm.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vixm.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vixm.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vixm.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vixm.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vixm.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vixm.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vixm.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vixm.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vixm.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vixm.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vixm.wordpress.com/292/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=292&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vickash.com/2010/11/04/random-shot-of-the-day-going-home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94a0c452dad381f6c5ee0003815cff78?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vixm</media:title>
		</media:content>

		<media:content url="http://farm5.static.flickr.com/4002/5143958421_5e1e08ef20_z.jpg" medium="image">
			<media:title type="html">Going Home</media:title>
		</media:content>
	</item>
		<item>
		<title>Rapture By Tom Lowe @ TimeScapes</title>
		<link>http://vickash.com/2010/11/02/rapture-by-tom-lowe-timescapes/</link>
		<comments>http://vickash.com/2010/11/02/rapture-by-tom-lowe-timescapes/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 16:48:55 +0000</pubDate>
		<dc:creator>Vickash</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://vickash.com/?p=257</guid>
		<description><![CDATA[I just saw this on Vincent Laforet&#8217;s blog and had to repost it. I first heard about this in the Canon booth at PhotopPlusExpo over the weekend. Alex Buono was speaking about using Canon DSLRs for video production on SNL, and cited it as a source of inspiration. Awesome motion time-lapse and over-cranked slow-motion shots, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=257&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just saw this on Vincent Laforet&#8217;s <a href="http://blog.vincentlaforet.com/">blog</a> and had to repost it. I first heard about this in the Canon booth at <a href="http://www.photoplusexpo.com/">PhotopPlusExpo</a> over the weekend. <a href="http://www.thirdpersonfilm.com/4101.html">Alex Buono</a> was speaking about using Canon DSLRs for video production on SNL, and cited it as a source of inspiration.</p>
<p>Awesome motion time-lapse and over-cranked slow-motion shots, all set to a perfect soundtrack. Click the Vimeo link in the video below to watch it in HD. Download it and watch it on your HDTV. Project it on your wall or something. Get the picture as big as you can and turn up the volume. Then check out the <a href="http://www.timescapes.org/">TimeScapes project</a>.</p>
<div class='embed-vimeo' style='text-align:center;'><iframe src='http://player.vimeo.com/video/16369165' width='400' height='300' frameborder='0'></iframe></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vixm.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vixm.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vixm.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vixm.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vixm.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vixm.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vixm.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vixm.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vixm.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vixm.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vixm.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vixm.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vixm.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vixm.wordpress.com/257/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=257&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vickash.com/2010/11/02/rapture-by-tom-lowe-timescapes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94a0c452dad381f6c5ee0003815cff78?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vixm</media:title>
		</media:content>
	</item>
		<item>
		<title>Random Shot Of The Day: Headphones</title>
		<link>http://vickash.com/2010/09/09/random-shot-of-the-day-headphones/</link>
		<comments>http://vickash.com/2010/09/09/random-shot-of-the-day-headphones/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 20:22:58 +0000</pubDate>
		<dc:creator>Vickash</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://vickash.com/?p=248</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=248&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="attachment_7" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.flickr.com/photos/vixm/4975051884/" title="Headphones by VixM, on Flickr"><img src="http://farm5.static.flickr.com/4104/4975051884_ef1ecb2b0f_b.jpg" width="500" height="250" alt="Headphones" /></a><p class="wp-caption-text">Sennheiser HD202 Headphones</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vixm.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vixm.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vixm.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vixm.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vixm.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vixm.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vixm.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vixm.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vixm.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vixm.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vixm.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vixm.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vixm.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vixm.wordpress.com/248/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=248&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vickash.com/2010/09/09/random-shot-of-the-day-headphones/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94a0c452dad381f6c5ee0003815cff78?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vixm</media:title>
		</media:content>

		<media:content url="http://farm5.static.flickr.com/4104/4975051884_ef1ecb2b0f_b.jpg" medium="image">
			<media:title type="html">Headphones</media:title>
		</media:content>
	</item>
		<item>
		<title>Random Shot Of The Day: 250K</title>
		<link>http://vickash.com/2010/09/02/random-shot-of-the-day-250k/</link>
		<comments>http://vickash.com/2010/09/02/random-shot-of-the-day-250k/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 23:01:06 +0000</pubDate>
		<dc:creator>Vickash</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://vickash.com/?p=236</guid>
		<description><![CDATA[I spend way too much time driving&#8230;but I used a few seconds at a stoplight and my E72 to capture this today.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=236&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I spend way too much time driving&#8230;but I used a few seconds at a stoplight and my E72 to capture this today.</p>
<div id="attachment_7" class="wp-caption aligncenter" style="width: 343px"><a href="http://www.flickr.com/photos/vixm/4952742468/" title="250K by VixM, on Flickr"><img src="http://farm5.static.flickr.com/4136/4952742468_ba809a3b48.jpg" width="333" height="444" alt="250K" /></a><p class="wp-caption-text">250K</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vixm.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vixm.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vixm.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vixm.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vixm.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vixm.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vixm.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vixm.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vixm.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vixm.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vixm.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vixm.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vixm.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vixm.wordpress.com/236/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=236&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vickash.com/2010/09/02/random-shot-of-the-day-250k/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94a0c452dad381f6c5ee0003815cff78?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vixm</media:title>
		</media:content>

		<media:content url="http://farm5.static.flickr.com/4136/4952742468_ba809a3b48.jpg" medium="image">
			<media:title type="html">250K</media:title>
		</media:content>
	</item>
		<item>
		<title>Random Shot Of The Day: SLRs Still Take Pictures?</title>
		<link>http://vickash.com/2010/08/17/random-shot-of-the-day-slrs-still-take-pictures/</link>
		<comments>http://vickash.com/2010/08/17/random-shot-of-the-day-slrs-still-take-pictures/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 02:49:23 +0000</pubDate>
		<dc:creator>Vickash</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://vickash.com/?p=226</guid>
		<description><![CDATA[I&#8217;ve been working with so much video lately, I almost forgot that SLRs still take pictures. Here&#8217;s the first shot I&#8217;ve taken with my new Sigma 24mm f/1.8 Prime Lens. Just available light in my room with a sneak peak of something new we&#8217;re working on onscreen.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=226&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working with so much video lately, I almost forgot that SLRs still take pictures. Here&#8217;s the first shot I&#8217;ve taken with my new Sigma 24mm f/1.8 Prime Lens. Just available light in my room with a sneak peak of something new we&#8217;re working on onscreen.<br />
<div id="attachment_7" class="wp-caption aligncenter" style="width: 343px"><a href="http://www.flickr.com/photos/vixm/4902821895/" title="An Apple A Day... by VixM, on Flickr"><img src="http://farm5.static.flickr.com/4080/4902821895_d71fa21b77_z.jpg" width="333" height="500" alt="An Apple A Day..." /></a><p class="wp-caption-text">An Apple A Day...</p></div></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vixm.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vixm.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vixm.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vixm.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vixm.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vixm.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vixm.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vixm.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vixm.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vixm.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vixm.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vixm.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vixm.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vixm.wordpress.com/226/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=226&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vickash.com/2010/08/17/random-shot-of-the-day-slrs-still-take-pictures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94a0c452dad381f6c5ee0003815cff78?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vixm</media:title>
		</media:content>

		<media:content url="http://farm5.static.flickr.com/4080/4902821895_d71fa21b77_z.jpg" medium="image">
			<media:title type="html">An Apple A Day...</media:title>
		</media:content>
	</item>
		<item>
		<title>Random Shot Of The Day: Ryan</title>
		<link>http://vickash.com/2010/07/30/random-shot-of-the-day-ryan/</link>
		<comments>http://vickash.com/2010/07/30/random-shot-of-the-day-ryan/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 12:00:38 +0000</pubDate>
		<dc:creator>Vickash</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://vickash.com/?p=215</guid>
		<description><![CDATA[My cousin is spending a couple days with us. And he gets bored easily, so we did a little photo shoot to keep him busy.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=215&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My cousin is spending a couple days with us. And he gets bored easily, so we did a little photo shoot to keep him busy.</p>
<div id="attachment_7" class="wp-caption aligncenter" style="width: 343px"><a href="http://www.flickr.com/photos/vixm/4842737406/" title="Ryan by VixM, on Flickr"><img src="http://farm5.static.flickr.com/4152/4842737406_580b7ded3c_b.jpg" width="333" height="666" alt="Ryan" /></a><p class="wp-caption-text">Ryan</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vixm.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vixm.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vixm.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vixm.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vixm.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vixm.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vixm.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vixm.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vixm.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vixm.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vixm.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vixm.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vixm.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vixm.wordpress.com/215/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=215&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vickash.com/2010/07/30/random-shot-of-the-day-ryan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94a0c452dad381f6c5ee0003815cff78?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vixm</media:title>
		</media:content>

		<media:content url="http://farm5.static.flickr.com/4152/4842737406_580b7ded3c_b.jpg" medium="image">
			<media:title type="html">Ryan</media:title>
		</media:content>
	</item>
		<item>
		<title>Random Shot of The Day: Veer &amp; Navisha</title>
		<link>http://vickash.com/2010/07/20/random-shot-of-the-day-veer-navisha/</link>
		<comments>http://vickash.com/2010/07/20/random-shot-of-the-day-veer-navisha/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 01:00:30 +0000</pubDate>
		<dc:creator>Vickash</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://vixm.wordpress.com/?p=205</guid>
		<description><![CDATA[Here&#8217;s a preview of our HDSLR wedding coverage. Check it out on the Vimeo site to see it in HD!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=205&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a preview of our HDSLR wedding coverage. Check it out on the Vimeo site to see it in HD!</p>
<div class='embed-vimeo' style='text-align:center;'><iframe src='http://player.vimeo.com/video/13492148' width='400' height='300' frameborder='0'></iframe></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vixm.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vixm.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vixm.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vixm.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vixm.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vixm.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vixm.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vixm.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vixm.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vixm.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vixm.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vixm.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vixm.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vixm.wordpress.com/205/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=205&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vickash.com/2010/07/20/random-shot-of-the-day-veer-navisha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94a0c452dad381f6c5ee0003815cff78?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vixm</media:title>
		</media:content>
	</item>
		<item>
		<title>Random Shot Of The Day: Icy Blue</title>
		<link>http://vickash.com/2010/04/28/random-shot-of-the-day-icy-blue/</link>
		<comments>http://vickash.com/2010/04/28/random-shot-of-the-day-icy-blue/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 17:35:26 +0000</pubDate>
		<dc:creator>Vickash</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://vixm.wordpress.com/?p=184</guid>
		<description><![CDATA[Took this with my sister&#8217;s Nokia 5730 the other night. Used my E72 to light up the glass.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=184&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Took this with my sister&#8217;s Nokia 5730 the other night. Used my E72 to light up the glass.</p>
<div id="attachment_7" class="wp-caption aligncenter" style="width: 343px"><a href="http://www.flickr.com/photos/vixm/4561129130/" title="Icy Blue by VixM, on Flickr"><img src="http://farm4.static.flickr.com/3606/4561129130_a2e49bbe1b_b.jpg" width="333" height="500" alt="Icy Blue" /></a><p class="wp-caption-text">Icy Blue</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vixm.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vixm.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vixm.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vixm.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vixm.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vixm.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vixm.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vixm.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vixm.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vixm.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vixm.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vixm.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vixm.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vixm.wordpress.com/184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vickash.com&#038;blog=11678801&#038;post=184&#038;subd=vixm&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vickash.com/2010/04/28/random-shot-of-the-day-icy-blue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94a0c452dad381f6c5ee0003815cff78?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vixm</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3606/4561129130_a2e49bbe1b_b.jpg" medium="image">
			<media:title type="html">Icy Blue</media:title>
		</media:content>
	</item>
	</channel>
</rss>
