<?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>&#60;SourceBench/&#62; Your place to share code stuff &#187; Blog posts</title>
	<atom:link href="http://sourcebench.com/category/post/feed/" rel="self" type="application/rss+xml" />
	<link>http://sourcebench.com</link>
	<description></description>
	<lastBuildDate>Tue, 04 May 2010 07:57:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A simple lookup tool for WordPress functions, filters, actions and more – wphit.com</title>
		<link>http://sourcebench.com/post/a-simple-lookup-tool-for-wordpress-functions-filters-actions-and-more-%e2%80%93-wphit-com/</link>
		<comments>http://sourcebench.com/post/a-simple-lookup-tool-for-wordpress-functions-filters-actions-and-more-%e2%80%93-wphit-com/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 00:35:29 +0000</pubDate>
		<dc:creator>The SourceBench</dc:creator>
				<category><![CDATA[Blog posts]]></category>
		<category><![CDATA[code search]]></category>
		<category><![CDATA[codex]]></category>
		<category><![CDATA[lookup]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wphit]]></category>

		<guid isPermaLink="false">http://sourcebench.com/post/a-simple-lookup-tool-for-wordpress-functions-filters-actions-and-more-%e2%80%93-wphit-com/</guid>
		<description><![CDATA[This WordPress lookup tool aims to provide a quick gateway to various documentation sources.
The layout and design is kept simple to allow integration of this page within various IDEs. Intentionally this page was created to hook into Coda. 
You can also add wphit.com as a search engine in your browser and various indexes allow easy [...]]]></description>
			<content:encoded><![CDATA[<p>This WordPress lookup tool aims to provide a quick gateway to various documentation sources.</p>
<p>The layout and design is kept simple to allow integration of this page within various IDEs. Intentionally this page was created to hook into Coda. </p>
<p>You can also add wphit.com as a search engine in your browser and various indexes allow easy navigation between topics.</p>
<p>Check it out at <a href="http://wphit.com/lookup" rel="nofollow">http://wphit.com/lookup</a></p>]]></content:encoded>
			<wfw:commentRss>http://sourcebench.com/post/a-simple-lookup-tool-for-wordpress-functions-filters-actions-and-more-%e2%80%93-wphit-com/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ack is better than grep! &#8211; And it&#8217;s not only their slogan.</title>
		<link>http://sourcebench.com/post/ack-is-better-than-grep-and-its-not-only-their-slogan/</link>
		<comments>http://sourcebench.com/post/ack-is-better-than-grep-and-its-not-only-their-slogan/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 20:14:49 +0000</pubDate>
		<dc:creator>The SourceBench</dc:creator>
				<category><![CDATA[Blog posts]]></category>
		<category><![CDATA[ack]]></category>
		<category><![CDATA[Bash/shell]]></category>
		<category><![CDATA[grep]]></category>

		<guid isPermaLink="false">http://sourcebench.com/post/ack-is-better-than-grep-and-its-not-only-their-slogan/</guid>
		<description><![CDATA[I recently was pointed to ack for scanning a huge pile of files for a certain pattern. So far I was always using grep, awk, cut, sed and such in combination with find to build whatever I needed. But having a look at ack reveals that my life could have been much easier. Here are [...]]]></description>
			<content:encoded><![CDATA[<p>I recently was pointed to <a href="http://betterthangrep.com/">ack</a> for scanning a huge pile of files for a certain pattern. So far I was always using grep, awk, cut, sed and such in combination with find to build whatever I needed. But having a look at ack reveals that my life could have been much easier. Here are some simple examples:</p>
<p>Search for a pattern recursively through directories, while ignoring .svn, CVS and other VCS directories:<br />
With grep: <code>grep pattern $(find . -type f | grep -v '\.svn')</code><br />
With ack: <code>ack pattern</code></p>
<p>Search for a pattern in all perl files, while ignoring .svn directories:<br />
With grep: <code>grep pattern $(find . -name '*.pl' -or -name '*.pm' -or -name '*.pod' | grep -v .svn)</code><br />
With ack: <code>ack --perl pattern</code></p>
<p>That&#8217;s it for the basics. More on their manual page at <a href="http://betterthangrep.com/" rel="nofollow">http://betterthangrep.com/</a></p>
<p>Just a last one:<br />
Get a list of all functions and their parameters attached to your &#8220;wp_head&#8221; action hook of a WordPress installation.<br />
With grep: please don&#8217;t make me do it.<br />
With ack: <code>ack "add_action\((.*[\"|'](.*)[\"|'][,|\s]+.*)\)" --output="hook: \$1, params: \$2"</code></p>]]></content:encoded>
			<wfw:commentRss>http://sourcebench.com/post/ack-is-better-than-grep-and-its-not-only-their-slogan/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Get rid of Caps-Lock avoid CAPS-LOCK desasters in Windows7</title>
		<link>http://sourcebench.com/post/get-rid-of-caps-lock-avoid-caps-lock-desasters-in-windows7/</link>
		<comments>http://sourcebench.com/post/get-rid-of-caps-lock-avoid-caps-lock-desasters-in-windows7/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 17:40:26 +0000</pubDate>
		<dc:creator>The SourceBench</dc:creator>
				<category><![CDATA[Blog posts]]></category>
		<category><![CDATA[caps-lock]]></category>
		<category><![CDATA[caps-maniac]]></category>
		<category><![CDATA[shift]]></category>
		<category><![CDATA[windows7]]></category>

		<guid isPermaLink="false">http://sourcebench.com/post/get-rid-of-caps-lock-avoid-caps-lock-desasters-in-windows7/</guid>
		<description><![CDATA[Finally Windows7 let&#8217;s you define the way the caps-lock key should act. I know people who even tried to remove this key with pliers, killing their whole keyboard. This is now over after 15 years of Windows.
Go to Control Panel-&#62;Clock, Language and Region-&#62;Change keyboards or other input methods-&#62;Keyboards and Languages-&#62;Change keyboards-&#62;Advanced Key Settings and select [...]]]></description>
			<content:encoded><![CDATA[<p>Finally Windows7 let&#8217;s you define the way the caps-lock key should act. I know people who even tried to remove this key with pliers, killing their whole keyboard. This is now over after 15 years of Windows.</p>
<p>Go to Control Panel-&gt;Clock, Language and Region-&gt;Change keyboards or other input methods-&gt;Keyboards and Languages-&gt;Change keyboards-&gt;Advanced Key Settings and select &#8220;Press the SHIFT key&#8221; and from now on shift will cancel caps-lock.</p>]]></content:encoded>
			<wfw:commentRss>http://sourcebench.com/post/get-rid-of-caps-lock-avoid-caps-lock-desasters-in-windows7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use GeekTool 3 as Server Status monitor</title>
		<link>http://sourcebench.com/post/use-geektool-3-as-server-status-monitor/</link>
		<comments>http://sourcebench.com/post/use-geektool-3-as-server-status-monitor/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 13:51:12 +0000</pubDate>
		<dc:creator>The SourceBench</dc:creator>
				<category><![CDATA[Blog posts]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[geektool]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[ping]]></category>
		<category><![CDATA[server monitor]]></category>

		<guid isPermaLink="false">http://sourcebench.com/post/use-geektool-3-as-server-status-monitor/</guid>
		<description><![CDATA[
I just stumbled upon GeekTool which is great for displaying all sorts of information directly on your desktop in OSX.
You can even add a simple status monitor for your servers by following these steps.
Install GeekTool and open your GeekTool preferences and follow these steps

add shell area
give it a name
enter the command : ping -t 30 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://img.skitch.com/20091130-quyy98aguideeb3w7x835dndre.jpg"><img alt="" src="http://img.skitch.com/20091130-quyy98aguideeb3w7x835dndre.jpg" title="GeekTool" class="alignright" width="280" height="430" /></a><br />
I just stumbled upon <a href="http://projects.tynsoe.org/en/geektool/">GeekTool</a> which is great for displaying all sorts of information directly on your desktop in OSX.<br />
You can even add a simple status monitor for your servers by following these steps.<br />
Install GeekTool and open your GeekTool preferences and follow these steps</p>
<ol>
<li>add shell area</li>
<li>give it a name</li>
<li>enter the command : <code>ping -t 30 -qc 10 address_to_ping_without_http | grep "packet loss" | grep "10 packets received"</code></li>
<li>mark &#8220;Display status feedback image&#8221;</li>
<li>Mark &#8220;Override text&#8221;</li>
<li>Enter the name that should appear next to the status image</li>
</ol>
<p>For more GeekTool goodies <a href="http://blogof.francescomugnai.com/2009/04/mega-roundup-of-geektool-scripts-inspiration-gallery/">check out this site</a></p>]]></content:encoded>
			<wfw:commentRss>http://sourcebench.com/post/use-geektool-3-as-server-status-monitor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>List of Freelancing Job Sites</title>
		<link>http://sourcebench.com/post/list-of-freelancing-job-sites/</link>
		<comments>http://sourcebench.com/post/list-of-freelancing-job-sites/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 22:31:18 +0000</pubDate>
		<dc:creator>The SourceBench</dc:creator>
				<category><![CDATA[Blog posts]]></category>
		<category><![CDATA[freelancing]]></category>
		<category><![CDATA[job boards]]></category>
		<category><![CDATA[job sites]]></category>

		<guid isPermaLink="false">http://sourcebench.com/?p=39</guid>
		<description><![CDATA[Keeping busy (paid) as a freelancer can be quit challenging. Luckily there are plenty of Freelancing Job Sites out there.
Here is a collection of our favorites.

JobPile &#8211; Job Aggregator with 11 mainly Web Development based Job Boards
WordPress Jobs &#8211; Job board with WordPress related job offers
Krop &#8211; Job Board focused on Design jobs
GigaOM Job &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Keeping busy (paid) as a freelancer can be quit challenging. Luckily there are plenty of Freelancing Job Sites out there.</p>
<p>Here is a collection of our favorites.</p>
<ol>
<li><a title="Job Pile" href="http://www.artypapers.com/jobpile/" target="_blank">JobPile</a> &#8211; Job Aggregator with 11 mainly Web Development based Job Boards</li>
<li><a title="WordPress Jobs" href="http://jobs.wordpress.net/" target="_blank">WordPress Jobs</a> &#8211; Job board with WordPress related job offers</li>
<li><a title="Krop" href="http://www.krop.com/" target="_blank">Krop</a> &#8211; Job Board focused on Design jobs</li>
<li><a title="GigaOM Jobs" href="http://gigaomjobs.com/a/jbb/find-jobs" target="_blank">GigaOM Job</a> &#8211; Tech job board provided by GigaOM</li>
<li><a title="GetAFreelance" href="http://www.getafreelancer.com/" target="_blank">GetAFreelancer</a> &#8211; Job bidding site</li>
<li><a title="Elance" href="http://www.elance.com/" target="_blank">Elance</a> &#8211; One of the biggest job bidding sites</li>
<li><a title="Guru" href="http://www.guru.com/" target="_blank">Guru</a> &#8211; Job Bidding site</li>
</ol>
<p>For a list of many more Freelancing sites please visit <a href="http://freelanceswitch.com/finding/the-monster-list-of-freelancing-job-sites/">FreelanceSwitch</a></p>]]></content:encoded>
			<wfw:commentRss>http://sourcebench.com/post/list-of-freelancing-job-sites/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
