<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Sat, 13 Jun 2026 15:08:16 +0000</lastBuildDate>
    <item>
      <title>(Bash) useful git snippets - MikeyLikesIt</title>
      <link>https://snipplr.com/view/40801/useful-git-snippets</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 21 Sep 2010 03:42:21 UTC</pubDate>
      <guid>https://snipplr.com/view/40801/useful-git-snippets</guid>
    </item>
    <item>
      <title>(Other) Common Custom PHP Date Formats - MikeyLikesIt</title>
      <link>https://snipplr.com/view/36641/common-custom-php-date-formats</link>
      <description>&lt;p&gt;In drupal, you can configure custom formats at:&#13;
http://yourdomain.com/admin/settings/date-time/formats/add&#13;
&#13;
You can also use these in a custom php function like:&#13;
&lt;?php&gt;created, 'custom', "F jS, Y"); ?&gt;&#13;
&#13;
To look up more options see http://php.net/manual/function.date.php&lt;/p&gt;</description>
      <pubDate>Sat, 03 Jul 2010 09:01:11 UTC</pubDate>
      <guid>https://snipplr.com/view/36641/common-custom-php-date-formats</guid>
    </item>
    <item>
      <title>(PHP) Drupal Menu Items that are not links - MikeyLikesIt</title>
      <link>https://snipplr.com/view/36554/drupal-menu-items-that-are-not-links</link>
      <description>&lt;p&gt;This snippet allows admins to create menu items which do not link anywhere.  This is most useful in situations where one wants to have dropdown menus where the parent item should not be a link.&#13;
&#13;
This same method could be used to create non-linking menu divider/headings.&#13;
&#13;
Use http://fake.link for every menu item that should not be linkable.&#13;
&#13;
Also, consider using http://drupal.org/project/special_menu_items to provide this capability.&lt;/p&gt;</description>
      <pubDate>Thu, 01 Jul 2010 02:52:39 UTC</pubDate>
      <guid>https://snipplr.com/view/36554/drupal-menu-items-that-are-not-links</guid>
    </item>
    <item>
      <title>(Bash) drush, bash commands - MikeyLikesIt</title>
      <link>https://snipplr.com/view/36440/drush-bash-commands</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 29 Jun 2010 02:40:57 UTC</pubDate>
      <guid>https://snipplr.com/view/36440/drush-bash-commands</guid>
    </item>
    <item>
      <title>(PHP) _preprocess_node examples - MikeyLikesIt</title>
      <link>https://snipplr.com/view/36162/preprocessnode-examples</link>
      <description>&lt;p&gt;sample code for the drupal preprocess_node function.  Some of these are written specifically for a Zen subtheme.&#13;
&#13;
Read code comments for details...&lt;/p&gt;</description>
      <pubDate>Fri, 25 Jun 2010 11:00:38 UTC</pubDate>
      <guid>https://snipplr.com/view/36162/preprocessnode-examples</guid>
    </item>
    <item>
      <title>(Bash) Recursively chmod directories or files - MikeyLikesIt</title>
      <link>https://snipplr.com/view/30975/recursively-chmod-directories-or-files</link>
      <description>&lt;p&gt;This will recursively search your directory tree (starting at dir â€˜dotâ€™) and chmod 755 all directories only.&#13;
&#13;
find . -type d -exec chmod 755 {} \;&#13;
&#13;
&#13;
Similarly, the following will chmod all files only (and ignore the directories):&#13;
&#13;
find . -type f -exec chmod 644 {} \;&lt;/p&gt;</description>
      <pubDate>Tue, 06 Apr 2010 12:07:19 UTC</pubDate>
      <guid>https://snipplr.com/view/30975/recursively-chmod-directories-or-files</guid>
    </item>
    <item>
      <title>(Bash) drupal - update core - MikeyLikesIt</title>
      <link>https://snipplr.com/view/29795/drupal--update-core</link>
      <description>&lt;p&gt;procedure for updating drupal core.&lt;/p&gt;</description>
      <pubDate>Mon, 15 Mar 2010 19:28:22 UTC</pubDate>
      <guid>https://snipplr.com/view/29795/drupal--update-core</guid>
    </item>
    <item>
      <title>(jQuery) Curly Quotes using jQuery and CSS - pullquotes, blockquotes, and more... - MikeyLikesIt</title>
      <link>https://snipplr.com/view/29685/curly-quotes-using-jquery-and-css--pullquotes-blockquotes-and-more</link>
      <description>&lt;p&gt;This is a method that I use to easily wrap an HTML container with nice curly quotes.  I much prefer this method over using images because the quotes can be easily stylized using css fonts, colors, and sizes.  Also, the markup is semantically correct.&lt;/p&gt;</description>
      <pubDate>Fri, 12 Mar 2010 10:32:33 UTC</pubDate>
      <guid>https://snipplr.com/view/29685/curly-quotes-using-jquery-and-css--pullquotes-blockquotes-and-more</guid>
    </item>
    <item>
      <title>(CSS) border-radius with IE support using htc behavior - MikeyLikesIt</title>
      <link>https://snipplr.com/view/29611/borderradius-with-ie-support-using-htc-behavior</link>
      <description>&lt;p&gt;note that for the corners to work in IE, you need to install the htc code from http://code.google.com/p/curved-corner/&#13;
&#13;
.curved { &#13;
  -moz-border-radius:10px; /* Firefox */ &#13;
  -webkit-border-radius:10px; /* Safari and chrome */ &#13;
  -khtml-border-radius:10px; /* Linux browsers */ &#13;
  border-radius:10px; /* CSS3 */ &#13;
  behavior:url(border-radius.htc);  /* make IE use properties of border-radius */&#13;
}&lt;/p&gt;</description>
      <pubDate>Thu, 11 Mar 2010 11:37:48 UTC</pubDate>
      <guid>https://snipplr.com/view/29611/borderradius-with-ie-support-using-htc-behavior</guid>
    </item>
  </channel>
</rss>
