<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.ymeme.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Ymeme.com - The Lambda meme</title>
 <link>http://www.ymeme.com/frontpage</link>
 <description>Anything from Lambda to Yoga</description>
 <language>en</language>
<item>
 <title>How to download and record any video stream to disk using VLC</title>
 <link>http://www.ymeme.com/how-to-download-and-record-any-video-stream-to-disk-using-vlc.html</link>
 <description>
&lt;div class=&quot;document&quot;&gt;


&lt;p&gt;You can download, view and record  any type of video stream (including Real) VLC 0.8.x can handle. This works perfectly well using Mac OS X as well.&lt;/p&gt;
&lt;p&gt;In most cases, you must go for the link inside the site&#039;s source code. An example is a news video stream which uses the WMP plug-in: view the page source, copy the MMS link, and paste it in the proper field in the VLC dialog window (see below). Then, assuming VLC is already running:&lt;/p&gt;
&lt;ol class=&quot;arabic simple&quot;&gt;
&lt;li&gt;From the File menu choose the Open Network menu option.&lt;/li&gt;
&lt;li&gt;In VLC, choose Open Network, and paste your MMS (RSTP with Real) link in the appropriate field.&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a href=&quot;http://www.ymeme.com/how-to-download-and-record-any-video-stream-to-disk-using-vlc.html&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.ymeme.com/how-to-download-and-record-any-video-stream-to-disk-using-vlc.html#comments</comments>
 <category domain="http://www.ymeme.com/software/desktop">desktop</category>
 <category domain="http://www.ymeme.com/hacks">hacks</category>
 <category domain="http://www.ymeme.com/taxonomy/term/142">scraping</category>
 <category domain="http://www.ymeme.com/taxonomy/term/140">streaming</category>
 <category domain="http://www.ymeme.com/taxonomy/term/141">video</category>
 <pubDate>Mon, 08 Dec 2008 10:39:07 -0500</pubDate>
 <dc:creator>ymeme</dc:creator>
 <guid isPermaLink="false">128 at http://www.ymeme.com</guid>
</item>
<item>
 <title>ReST for Markdown and Textile Users - why ReStructuredText is better</title>
 <link>http://www.ymeme.com/rst-for-markdown-and-textile-users-why-restructuredtext-is-better</link>
 <description>&lt;p&gt;ReStructuredText is huge so users of lighter-weight markup languages can be easily put off. This is an &lt;em&gt;absolute basics&lt;/em&gt; quickref to ReST for those kinds of users. Eye-ball the &lt;a class=&quot;reference&quot; href=&quot;node/127#closing&quot;&gt;Closing&lt;/a&gt; at the bottom for a bit more perspective.&lt;/p&gt;
&lt;h3&gt;Headers&lt;/h3&gt;
&lt;p&gt;Just use non-alphanumeric characters to underline (or under-and-overline) your heading. It doesn’t matter what you use, just be consistent with the character you use for each header level:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.ymeme.com/rst-for-markdown-and-textile-users-why-restructuredtext-is-better&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.ymeme.com/rst-for-markdown-and-textile-users-why-restructuredtext-is-better#comments</comments>
 <category domain="http://www.ymeme.com/taxonomy/term/139">restructuredtext</category>
 <pubDate>Sat, 01 Nov 2008 06:46:34 -0400</pubDate>
 <dc:creator>ymeme</dc:creator>
 <guid isPermaLink="false">127 at http://www.ymeme.com</guid>
</item>
<item>
 <title>How to enable the root user in OS X 10.5 (Leopard)</title>
 <link>http://www.ymeme.com/how-enable-root-user-os-x-10-5-leopard-126.html</link>
 <description>
&lt;div class=&quot;document&quot;&gt;


&lt;p&gt;Mac OS X 10.5 or later&lt;/p&gt;
&lt;ol class=&quot;arabic simple&quot;&gt;
&lt;li&gt;From the Finder’s Go menu, choose Utilities.&lt;/li&gt;
&lt;li&gt;Open Directory Utility.&lt;/li&gt;
&lt;li&gt;Click the lock in the Directory Utility window.&lt;/li&gt;
&lt;li&gt;Enter an administrator account name and password, then click OK.&lt;/li&gt;
&lt;li&gt;Choose Enable Root User from the Edit menu&lt;/li&gt;
&lt;li&gt;Enter the root password you wish to use in both the Password and Verify fields, then click OK.&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
</description>
 <comments>http://www.ymeme.com/how-enable-root-user-os-x-10-5-leopard-126.html#comments</comments>
 <category domain="http://www.ymeme.com/sysadmin">sysadmin</category>
 <category domain="http://www.ymeme.com/osx">osx</category>
 <category domain="http://www.ymeme.com/root">root</category>
 <pubDate>Mon, 28 Jul 2008 11:51:19 -0400</pubDate>
 <dc:creator>ymeme</dc:creator>
 <guid isPermaLink="false">126 at http://www.ymeme.com</guid>
</item>
<item>
 <title>Copy files and directories recursively with tar</title>
 <link>http://www.ymeme.com/copy-files-and-directories-recursively-tar-125.html</link>
 <description>&lt;p&gt;Copying a directory tree and its contents to another filesystem using&lt;/p&gt;
&lt;p&gt;&lt;code lang=&quot;bash&quot;&gt;&lt;br /&gt;
cp -pR directory /newplace&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;doesn&#039;t always do the job. &lt;/p&gt;
&lt;p&gt;Using tar instead will preserve ownership, permissions, and timestamps. This neat trick allows using tar to perform a recursive copy without creating an intermediate tar file and overcoming all cp shortcomings.&lt;/p&gt;
&lt;p&gt;To copy all of the files and subdirectories in the current working directory to the directory /target, use:&lt;/p&gt;
&lt;p&gt;&lt;code lang=&quot;bash&quot;&gt;&lt;br /&gt;
tar cf - * | ( cd /target; tar xfp -)&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.ymeme.com/copy-files-and-directories-recursively-tar-125.html&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.ymeme.com/copy-files-and-directories-recursively-tar-125.html#comments</comments>
 <category domain="http://www.ymeme.com/sysadmin">sysadmin</category>
 <category domain="http://www.ymeme.com/cp">cp</category>
 <category domain="http://www.ymeme.com/shell">shell</category>
 <category domain="http://www.ymeme.com/tar">tar</category>
 <category domain="http://www.ymeme.com/tips">tips</category>
 <pubDate>Thu, 17 Jul 2008 09:33:52 -0400</pubDate>
 <dc:creator>ymeme</dc:creator>
 <guid isPermaLink="false">125 at http://www.ymeme.com</guid>
</item>
<item>
 <title>How to Download &amp; Save Flash Animation Files (SWF) in Firefox </title>
 <link>http://www.ymeme.com/how-download-save-flash-animation-files-swf-firefox-124.html</link>
 <description>
&lt;div class=&quot;document&quot;&gt;


&lt;p&gt;There&#039;s a good chance that the animation or cartoon game you want to download was created using Flash. Use these tips for downloading Flash files from the Internet to your hard drive. You save all Flash animations from web pages, including Flash websites, Flash game, Flash Animations, Flash Tutorials, Flash Movie Trailers, Flash Advertisements, or what ever Flash files you find in the web.&lt;/p&gt;
&lt;p&gt;If you wish to save flash files embedded in webpages to your hard-drive for offline viewing, here is how:&lt;/p&gt;
&lt;!--  --&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a href=&quot;http://www.ymeme.com/how-download-save-flash-animation-files-swf-firefox-124.html&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.ymeme.com/how-download-save-flash-animation-files-swf-firefox-124.html#comments</comments>
 <category domain="http://www.ymeme.com/firefox">firefox</category>
 <category domain="http://www.ymeme.com/hacks">hacks</category>
 <category domain="http://www.ymeme.com/tips">tips</category>
 <pubDate>Tue, 03 Jun 2008 03:39:26 -0400</pubDate>
 <dc:creator>ymeme</dc:creator>
 <guid isPermaLink="false">124 at http://www.ymeme.com</guid>
</item>
<item>
 <title>Leopard not booting: mDNSResponder daemon stuck</title>
 <link>http://www.ymeme.com/leopard-not-booting-mdnsresponder-daemon-stuck-116.html</link>
 <description>&lt;p&gt;Today, after upgrading one of our machines to the latest security update, the iMac G5 stopped booting. Starting the machine in Single User mode (command+S) revealed that the mDNSResponder daemon was crashing and restarting in an infinite loop.&lt;/p&gt;
&lt;p&gt;&#039;The Mac was stuck in a loop trying to execute mDNSResponder (which is the basis of Bonjour networking) and the system wasn&#039;t successful.&lt;/p&gt;
&lt;p&gt;On the Apple forums nobody is able to pinpoint the problem yet, but it looks like it is a pretty common disease. If you do not need Bonjour, this is what solved it for me:&lt;/p&gt;
&lt;p&gt;&lt;code lang=&quot;bash&quot;&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.ymeme.com/leopard-not-booting-mdnsresponder-daemon-stuck-116.html&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.ymeme.com/leopard-not-booting-mdnsresponder-daemon-stuck-116.html#comments</comments>
 <category domain="http://www.ymeme.com/sysadmin">sysadmin</category>
 <category domain="http://www.ymeme.com/os-x">os x</category>
 <pubDate>Fri, 04 Apr 2008 12:52:48 -0400</pubDate>
 <dc:creator>ymeme</dc:creator>
 <guid isPermaLink="false">116 at http://www.ymeme.com</guid>
</item>
<item>
 <title>How to rename multiple files from the shell - tips and tricks</title>
 <link>http://www.ymeme.com/how-rename-multiple-files-shell-tips-and-tricks-115.html</link>
 <description>&lt;p&gt;Renaming multiple files seems to be a problem which many newcomers to shell scripting, or administration, have problems with. But once you&#039;ve done it a few times the actual solutions are very simple.&lt;/p&gt;
&lt;p&gt;There are many cases where you might have a large number of files to rename en masse, for example files which are output from a given script or tool. Or files that must be renamed to be uploaded to a web-host.&lt;/p&gt;
&lt;p&gt;How you rename the files mostly depends on which tools you have available, and which shell you&#039;re using.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.ymeme.com/how-rename-multiple-files-shell-tips-and-tricks-115.html&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.ymeme.com/how-rename-multiple-files-shell-tips-and-tricks-115.html#comments</comments>
 <category domain="http://www.ymeme.com/sysadmin">sysadmin</category>
 <category domain="http://www.ymeme.com/shell-tips">shell tips</category>
 <pubDate>Mon, 17 Mar 2008 11:10:51 -0400</pubDate>
 <dc:creator>ymeme</dc:creator>
 <guid isPermaLink="false">115 at http://www.ymeme.com</guid>
</item>
<item>
 <title>printf - formatted output (man page)</title>
 <link>http://www.ymeme.com/printf-formatted-output-man-page-114.html</link>
 <description>&lt;p&gt;&lt;code lang=&quot;text&quot;&gt;&lt;/p&gt;
&lt;p&gt; PRINTF(1)                 BSD General Commands Manual                PRINTF(1)&lt;/p&gt;
&lt;p&gt; NAME&lt;br /&gt;
     printf -- formatted output&lt;/p&gt;
&lt;p&gt; SYNOPSIS&lt;br /&gt;
     printf format [arguments ...]&lt;/p&gt;
&lt;p&gt; DESCRIPTION&lt;br /&gt;
     The printf utility formats and prints its arguments, after the first,&lt;br /&gt;
     under control of the format.  The format is a character string which con-tains contains&lt;br /&gt;
     tains three types of objects: plain characters, which are simply copied&lt;br /&gt;
     to standard output, character escape sequences which are converted and&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.ymeme.com/printf-formatted-output-man-page-114.html&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.ymeme.com/printf-formatted-output-man-page-114.html#comments</comments>
 <category domain="http://www.ymeme.com/sysadmin">sysadmin</category>
 <category domain="http://www.ymeme.com/man-page">man-page</category>
 <pubDate>Mon, 17 Mar 2008 10:30:43 -0400</pubDate>
 <dc:creator>ymeme</dc:creator>
 <guid isPermaLink="false">114 at http://www.ymeme.com</guid>
</item>
<item>
 <title>How to empty a MySQL database from the shell (drop all tables)</title>
 <link>http://www.ymeme.com/how-empty-a-mysql-database-shell-drop-all-tables-113.html</link>
 <description>
&lt;div class=&quot;document&quot;&gt;


&lt;p&gt;Let’s say you need to drop all tables in a mysql database. How do you do that?&lt;/p&gt;
&lt;p&gt;MySQL has DROP TABLE and DROP DATABASE but there is no command to drop all tables or truncate the database.&lt;/p&gt;
&lt;p&gt;These are some ways to do it:&lt;/p&gt;
&lt;!--  --&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a href=&quot;http://www.ymeme.com/how-empty-a-mysql-database-shell-drop-all-tables-113.html&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.ymeme.com/how-empty-a-mysql-database-shell-drop-all-tables-113.html#comments</comments>
 <category domain="http://www.ymeme.com/sysadmin">sysadmin</category>
 <category domain="http://www.ymeme.com/mysql">mysql</category>
 <category domain="http://www.ymeme.com/tips">tips</category>
 <pubDate>Mon, 10 Mar 2008 09:05:46 -0400</pubDate>
 <dc:creator>ymeme</dc:creator>
 <guid isPermaLink="false">113 at http://www.ymeme.com</guid>
</item>
<item>
 <title>The best way to execute PHP scripts from a cron job</title>
 <link>http://www.ymeme.com/best-way-execute-php-scripts-cron-job-112.html</link>
 <description>
&lt;div class=&quot;document&quot;&gt;


&lt;p&gt;Running PHP scripts within the cron environment can be tricky!&lt;/p&gt;
&lt;p&gt;A common technique for executing PHP scripts from a cron job is to use a command line utility like curl or wget to execute and subsequently retrieve the output of the script. Using this method, the command in your cron job would look like this:&lt;/p&gt;
&lt;p&gt;wget &lt;a class=&quot;reference external&quot; href=&quot;http://domain.tld/script.php&quot;&gt;http://domain.tld/script.php&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a href=&quot;http://www.ymeme.com/best-way-execute-php-scripts-cron-job-112.html&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.ymeme.com/best-way-execute-php-scripts-cron-job-112.html#comments</comments>
 <category domain="http://www.ymeme.com/sysadmin">sysadmin</category>
 <category domain="http://www.ymeme.com/php">Php</category>
 <category domain="http://www.ymeme.com/shell">shell</category>
 <pubDate>Sat, 16 Feb 2008 07:45:27 -0500</pubDate>
 <dc:creator>ymeme</dc:creator>
 <guid isPermaLink="false">112 at http://www.ymeme.com</guid>
</item>
</channel>
</rss>
