<?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 14:32:01 +0000</lastBuildDate>
    <item>
      <title>(MySQL) MySQL Duplicate Rows With Updates - donkeykong</title>
      <link>https://snipplr.com/view/73468/mysql-duplicate-rows-with-updates</link>
      <description>&lt;p&gt;I found this script and tried it. It worked. I thought it was useful for a variety of situations and is easy to follow.&#13;
&#13;
Often times I need nearly duplicated data and don't want to manually cut and paste.&lt;/p&gt;</description>
      <pubDate>Tue, 21 Jan 2014 04:23:59 UTC</pubDate>
      <guid>https://snipplr.com/view/73468/mysql-duplicate-rows-with-updates</guid>
    </item>
    <item>
      <title>(Bash) sdiff - show difference between local file and remote file side by side - donkeykong</title>
      <link>https://snipplr.com/view/72284/sdiff--show-difference-between-local-file-and-remote-file-side-by-side</link>
      <description>&lt;p&gt;This is a good way to show the difference between files side by side to quickly see what parts are not the same, if any.&lt;/p&gt;</description>
      <pubDate>Thu, 05 Sep 2013 02:44:11 UTC</pubDate>
      <guid>https://snipplr.com/view/72284/sdiff--show-difference-between-local-file-and-remote-file-side-by-side</guid>
    </item>
    <item>
      <title>(PHP) Time of Day Incremented every 30 Minutes Array - donkeykong</title>
      <link>https://snipplr.com/view/71313/time-of-day-incremented-every-30-minutes-array</link>
      <description>&lt;p&gt;These arrays are good for filling out a drop down menu for time that increments by 30 minutes.  The forms can submit the data and be useful for inserting it into a database for time of day information.&lt;/p&gt;</description>
      <pubDate>Mon, 27 May 2013 09:21:51 UTC</pubDate>
      <guid>https://snipplr.com/view/71313/time-of-day-incremented-every-30-minutes-array</guid>
    </item>
    <item>
      <title>(PHP) sample php display order (sorting)  for an array - donkeykong</title>
      <link>https://snipplr.com/view/52569/sample-php-display-order-sorting--for-an-array</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 25 Apr 2011 19:43:38 UTC</pubDate>
      <guid>https://snipplr.com/view/52569/sample-php-display-order-sorting--for-an-array</guid>
    </item>
    <item>
      <title>(PHP) Get the  file name without the extension from a file\'s full name - donkeykong</title>
      <link>https://snipplr.com/view/51473/get-the--file-name-without-the-extension-from-a-files-full-name</link>
      <description>&lt;p&gt;A flexible way to get the file name without the extension&lt;/p&gt;</description>
      <pubDate>Sun, 03 Apr 2011 16:43:21 UTC</pubDate>
      <guid>https://snipplr.com/view/51473/get-the--file-name-without-the-extension-from-a-files-full-name</guid>
    </item>
    <item>
      <title>(PHP) reciprocal link check - donkeykong</title>
      <link>https://snipplr.com/view/32647/reciprocal-link-check</link>
      <description>&lt;p&gt;I couldn't easily find an example of how to verify if someone added my link to their site while they added their link to a directory of mine. After some research, I found out how to search for a string remotely. I have simplified the steps so that you get the gist of it and can modify the code as necessary.&lt;/p&gt;</description>
      <pubDate>Thu, 22 Apr 2010 02:48:16 UTC</pubDate>
      <guid>https://snipplr.com/view/32647/reciprocal-link-check</guid>
    </item>
    <item>
      <title>(PHP) strip html and amend tabs and spaces - donkeykong</title>
      <link>https://snipplr.com/view/9171/strip-html-and-amend-tabs-and-spaces</link>
      <description>&lt;p&gt;A function to remove tags and to also remove excess spaces.&lt;/p&gt;</description>
      <pubDate>Tue, 21 Oct 2008 19:59:34 UTC</pubDate>
      <guid>https://snipplr.com/view/9171/strip-html-and-amend-tabs-and-spaces</guid>
    </item>
    <item>
      <title>(PHP) write and read XML - donkeykong</title>
      <link>https://snipplr.com/view/7473/write-and-read-xml</link>
      <description>&lt;p&gt;This is a simple example of how to read and write XML that includes reading attributes and nodes.&lt;/p&gt;</description>
      <pubDate>Thu, 24 Jul 2008 05:16:14 UTC</pubDate>
      <guid>https://snipplr.com/view/7473/write-and-read-xml</guid>
    </item>
    <item>
      <title>(Other) javascript drag drop function - donkeykong</title>
      <link>https://snipplr.com/view/7280/javascript-drag-drop-function</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 15 Jul 2008 02:32:21 UTC</pubDate>
      <guid>https://snipplr.com/view/7280/javascript-drag-drop-function</guid>
    </item>
    <item>
      <title>(JavaScript) javascript string methods - donkeykong</title>
      <link>https://snipplr.com/view/7258/javascript-string-methods</link>
      <description>&lt;p&gt;sample:&#13;
var text = "    string content    ";&#13;
&#13;
text = text.trim();&lt;/p&gt;</description>
      <pubDate>Mon, 14 Jul 2008 01:31:46 UTC</pubDate>
      <guid>https://snipplr.com/view/7258/javascript-string-methods</guid>
    </item>
    <item>
      <title>(PHP) add Slashes Check Magic quotes function - donkeykong</title>
      <link>https://snipplr.com/view/7252/add-slashes-check-magic-quotes-function</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 13 Jul 2008 20:34:07 UTC</pubDate>
      <guid>https://snipplr.com/view/7252/add-slashes-check-magic-quotes-function</guid>
    </item>
    <item>
      <title>(JavaScript) editor tinymce multiple instances - donkeykong</title>
      <link>https://snipplr.com/view/7230/editor-tinymce-multiple-instances</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 11 Jul 2008 17:12:17 UTC</pubDate>
      <guid>https://snipplr.com/view/7230/editor-tinymce-multiple-instances</guid>
    </item>
    <item>
      <title>(ActionScript) Naming Standards - donkeykong</title>
      <link>https://snipplr.com/view/7192/naming-standards</link>
      <description>&lt;p&gt;Useful for naming things a standarized way&lt;/p&gt;</description>
      <pubDate>Wed, 09 Jul 2008 18:03:13 UTC</pubDate>
      <guid>https://snipplr.com/view/7192/naming-standards</guid>
    </item>
    <item>
      <title>(ActionScript) loadvars sendAndLoad custom use - donkeykong</title>
      <link>https://snipplr.com/view/7175/loadvars-sendandload-custom-use</link>
      <description>&lt;p&gt;Used to make server-side communication easier&lt;/p&gt;</description>
      <pubDate>Tue, 08 Jul 2008 20:42:09 UTC</pubDate>
      <guid>https://snipplr.com/view/7175/loadvars-sendandload-custom-use</guid>
    </item>
  </channel>
</rss>
