<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/tags/find</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Mon, 20 May 2013 19:00:05 GMT</pubDate>
<item>
<title>(Groovy) CBC World News RSS parser - alces</title>
<link>http://snipplr.com/view/70114/cbc-world-news-rss-parser/</link>
<description><![CDATA[ <p>Reads CBC news RSS with fancy-prints its in table, splitting news description by image &amp; text.</p> ]]></description>
<pubDate>Wed, 27 Feb 2013 17:42:24 GMT</pubDate>
<guid>http://snipplr.com/view/70114/cbc-world-news-rss-parser/</guid>
</item>
<item>
<title>(SQL) Find Duplicates in SQL - andylamb</title>
<link>http://snipplr.com/view/70047/find-duplicates-in-sql/</link>
<description><![CDATA[ <p>Find duplicates in Sql Server.</p> ]]></description>
<pubDate>Thu, 21 Feb 2013 23:37:06 GMT</pubDate>
<guid>http://snipplr.com/view/70047/find-duplicates-in-sql/</guid>
</item>
<item>
<title>(Bash) Find and replace - inreflection7</title>
<link>http://snipplr.com/view/69381/find-and-replace/</link>
<description><![CDATA[ <p>Find and replace</p> ]]></description>
<pubDate>Tue, 08 Jan 2013 03:34:52 GMT</pubDate>
<guid>http://snipplr.com/view/69381/find-and-replace/</guid>
</item>
<item>
<title>(Bash) Find and List files containing/not containg a certain string - claudiodev</title>
<link>http://snipplr.com/view/67889/find-and-list-files-containingnot-containg-a-certain-string/</link>
<description><![CDATA[ <p>Find and List all the files with extension .file containing/not containing the given string "STRING"

The snippet is set to "containing", to switch it to "not containg" just replace "grep -l" with "grep -L"

containing : grep -l
not containing: grep -L</p> ]]></description>
<pubDate>Tue, 23 Oct 2012 21:40:16 GMT</pubDate>
<guid>http://snipplr.com/view/67889/find-and-list-files-containingnot-containg-a-certain-string/</guid>
</item>
<item>
<title>(PHP) Find a file (including subdirectory search) - VisionHive</title>
<link>http://snipplr.com/view/67021/find-a-file-including-subdirectory-search/</link>
<description><![CDATA[ <p>This function searches the current working directory (or any other directory path that you specify with parameter $p) for a file, named $f, and returns the full path and filename of the first occurrence, or false if it is either not found or the maximum number of comparisons is reached. The return value is relative to the executing script, so you can safely pass this function to other file-handling functions, e.g. fopen(FFIND("my.file")); or file(FFIND("my.file"));</p> ]]></description>
<pubDate>Sat, 01 Sep 2012 13:39:00 GMT</pubDate>
<guid>http://snipplr.com/view/67021/find-a-file-including-subdirectory-search/</guid>
</item>
<item>
<title>(SAS) sas wedit find next and prev - Pavonz</title>
<link>http://snipplr.com/view/66143/sas-wedit-find-next-and-prev/</link>
<description><![CDATA[ <p>sas wedit find next and prev</p> ]]></description>
<pubDate>Sat, 14 Jul 2012 22:25:19 GMT</pubDate>
<guid>http://snipplr.com/view/66143/sas-wedit-find-next-and-prev/</guid>
</item>
<item>
<title>(PHP) How to get menu Itemid in your own components - kevincam</title>
<link>http://snipplr.com/view/65200/how-to-get-menu-itemid-in-your-own-components/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 26 May 2012 05:53:34 GMT</pubDate>
<guid>http://snipplr.com/view/65200/how-to-get-menu-itemid-in-your-own-components/</guid>
</item>
<item>
<title>(PHP) How to get menu Itemid in your own components - kevincam</title>
<link>http://snipplr.com/view/65051/how-to-get-menu-itemid-in-your-own-components/</link>
<description><![CDATA[ <p>Joomla SEF to work properly it is based on Joomla menus. In your own components for SEF to work and menus to appear your need to pass the Itemid to links. To do this you need to get the Itemid based on on the URL link. Here is how you get the Itemid by link.

This code gets the Itemid of a menu link when you know the component and the view</p> ]]></description>
<pubDate>Thu, 24 May 2012 03:29:14 GMT</pubDate>
<guid>http://snipplr.com/view/65051/how-to-get-menu-itemid-in-your-own-components/</guid>
</item>
<item>
<title>(JavaScript) JavaScript Binary Search - jatkins</title>
<link>http://snipplr.com/view/64757/javascript-binary-search/</link>
<description><![CDATA[ <p>Released into the public domain.</p> ]]></description>
<pubDate>Fri, 27 Apr 2012 07:18:43 GMT</pubDate>
<guid>http://snipplr.com/view/64757/javascript-binary-search/</guid>
</item>
<item>
<title>(Perl) Print any line matching the regular expression /foo/ in input.txt - fugue</title>
<link>http://snipplr.com/view/64337/print-any-line-matching-the-regular-expression-foo-in-inputtxt/</link>
<description><![CDATA[ <p>-n means loop over the lines of all file names given on the command line, or standard input if none were given. -E is a version of -e that enables newer features like say, which is the same as print but adds a newline.</p> ]]></description>
<pubDate>Tue, 03 Apr 2012 22:34:16 GMT</pubDate>
<guid>http://snipplr.com/view/64337/print-any-line-matching-the-regular-expression-foo-in-inputtxt/</guid>
</item>
<item>
<title>(Bash) Find a pattern on a code base and show a pretty resultset - ferro</title>
<link>http://snipplr.com/view/62824/find-a-pattern-on-a-code-base-and-show-a-pretty-resultset/</link>
<description><![CDATA[ <p>trims spaces from the source code and left align the code column</p> ]]></description>
<pubDate>Sat, 28 Jan 2012 00:05:54 GMT</pubDate>
<guid>http://snipplr.com/view/62824/find-a-pattern-on-a-code-base-and-show-a-pretty-resultset/</guid>
</item>
<item>
<title>(Bash) Find a directory withing a compressed file and remove it. - bionic</title>
<link>http://snipplr.com/view/62433/find-a-directory-withing-a-compressed-file-and-remove-it/</link>
<description><![CDATA[ <p>Find a directory withing a compressed file and remove it.</p> ]]></description>
<pubDate>Tue, 10 Jan 2012 04:47:33 GMT</pubDate>
<guid>http://snipplr.com/view/62433/find-a-directory-withing-a-compressed-file-and-remove-it/</guid>
</item>
<item>
<title>(Bash) Perform git pull on subdirectory (recursive) - luizlopes</title>
<link>http://snipplr.com/view/62314/perform-git-pull-on-subdirectory-recursive/</link>
<description><![CDATA[ <p>A fast and easy way to go through all vim-pathogen bundles and perform a git pull on all of them.</p> ]]></description>
<pubDate>Thu, 05 Jan 2012 08:09:07 GMT</pubDate>
<guid>http://snipplr.com/view/62314/perform-git-pull-on-subdirectory-recursive/</guid>
</item>
<item>
<title>(Bash) Search for keyword in files inside of directory - luizlopes</title>
<link>http://snipplr.com/view/61895/search-for-keyword-in-files-inside-of-directory/</link>
<description><![CDATA[ <p>Fast and easy way to find a keyword inside of files located inside of a directory tree. (eg: looking for a function foo, inside of your applications directory.) This command will display a list of files which contain function foo.</p> ]]></description>
<pubDate>Thu, 15 Dec 2011 02:29:14 GMT</pubDate>
<guid>http://snipplr.com/view/61895/search-for-keyword-in-files-inside-of-directory/</guid>
</item>
<item>
<title>(jQuery) jQuery Pop up for Repeating items - i-am-andy</title>
<link>http://snipplr.com/view/58495/jquery-pop-up-for-repeating-items/</link>
<description><![CDATA[ <p>Useful jQuery for mutliple items on a page that are using the same jquery function and classes to perform an action. By traversing the dom like this the function will only be applied to the item you are clicking on and not all elements on the page that have the class specified in the jQuery function.</p> ]]></description>
<pubDate>Wed, 07 Sep 2011 19:43:46 GMT</pubDate>
<guid>http://snipplr.com/view/58495/jquery-pop-up-for-repeating-items/</guid>
</item>
<item>
<title>(Bash) find directories that don't contain a file - pspierce</title>
<link>http://snipplr.com/view/57635/find-directories-that-dont-contain-a-file/</link>
<description><![CDATA[ <p>found via google:
http://www.unix.com/unix-dummies-questions-answers/133697-find-folders-do-not-contain-certain-file.html</p> ]]></description>
<pubDate>Fri, 05 Aug 2011 00:07:00 GMT</pubDate>
<guid>http://snipplr.com/view/57635/find-directories-that-dont-contain-a-file/</guid>
</item>
<item>
<title>(Bash) Find duplicate files, using sha1 hash - ksaver</title>
<link>http://snipplr.com/view/57573/find-duplicate-files-using-sha1-hash/</link>
<description><![CDATA[ <p>Output Example:

d65bfef64a5fc9f7dbf9d35d80a2e1ed218c75d2 ./tmp1/12414.txt


d65bfef64a5fc9f7dbf9d35d80a2e1ed218c75d2 ./tmp2/2012.txt

d65bfef64a5fc9f7dbf9d35d80a2e1ed218c75d2 ./tmp1/3153.txt


dd07cec149e7c5929d6e9a0618de7114d50b34b0 ./tmp1/10064.txt

dd07cec149e7c5929d6e9a0618de7114d50b34b0 ./tmp2/30901.txt


d9bc21587f94d7a138bddf41cfa4e92a04cf9c54 ./tmp1/36.txt

d9bc21587f94d7a138bddf41cfa4e92a04cf9c54 ./tmp1/83.txt

[...]</p> ]]></description>
<pubDate>Wed, 03 Aug 2011 19:52:56 GMT</pubDate>
<guid>http://snipplr.com/view/57573/find-duplicate-files-using-sha1-hash/</guid>
</item>
<item>
<title>(Bash) Find symbolic links to directory - piotrgradzinski</title>
<link>http://snipplr.com/view/57478/find-symbolic-links-to-directory/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 01 Aug 2011 20:44:08 GMT</pubDate>
<guid>http://snipplr.com/view/57478/find-symbolic-links-to-directory/</guid>
</item>
<item>
<title>(SQL) Oracle - Find all responsibilities and concurrent program names based on the executable Name - theonlyalterego</title>
<link>http://snipplr.com/view/57211/oracle--find-all-responsibilities-and-concurrent-program-names-based-on-the-executable-name/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 28 Jul 2011 01:37:20 GMT</pubDate>
<guid>http://snipplr.com/view/57211/oracle--find-all-responsibilities-and-concurrent-program-names-based-on-the-executable-name/</guid>
</item>
<item>
<title>(Bash) Search for string in files - mkornatz</title>
<link>http://snipplr.com/view/57164/search-for-string-in-files/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 27 Jul 2011 01:42:14 GMT</pubDate>
<guid>http://snipplr.com/view/57164/search-for-string-in-files/</guid>
</item>
</channel>
</rss>