<?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 16:16:45 +0000</lastBuildDate>
    <item>
      <title>(PHP) PHP - Doctrine - Left join ON condition AND other condition syntax in Doctrine - satie83</title>
      <link>https://snipplr.com/view/94098/php--doctrine--left-join-on-condition-and-other-condition-syntax-in-doctrine</link>
      <description>&lt;p&gt;In SQL I can get this by adding AND to the join&#13;
&#13;
LEFT JOIN installations i ON a.id = i.app AND i.page = :page&#13;
This way I get the installation info for an app that has an installation on the page, but I get null values on the columns for app's that have installations on other pages or not at all.&#13;
&#13;
Is there a way to do this in Doctrine or am I better off just getting all the installations for each application and then checking against the found page with php?&#13;
&#13;
##########################################################################&#13;
&#13;
See function leftJoin in doc: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/query-builder.html#high-level-api-methods&lt;/p&gt;</description>
      <pubDate>Fri, 20 Mar 2015 00:36:12 UTC</pubDate>
      <guid>https://snipplr.com/view/94098/php--doctrine--left-join-on-condition-and-other-condition-syntax-in-doctrine</guid>
    </item>
    <item>
      <title>(PHP) PHP - Calculate Weekends and Holidays in PHP - satie83</title>
      <link>https://snipplr.com/view/72129/php--calculate-weekends-and-holidays-in-php</link>
      <description>&lt;p&gt;Der folgende Codeschnipsel enthÃ¤lt keinerlei ÃœberprÃ¼fungen der Ã¼bergebenen Parameter, diese sollten fÃ¼r den produktiven Einsatz noch nachgepflegt werden.&#13;
Wie man sieht, ist die Berechnung von Wochendenden und Feiertagen recht einfach. Diese Berechnung kann man sicherlich auch schnell in anderen Programmiersprachen abbilden.&lt;/p&gt;</description>
      <pubDate>Fri, 16 Aug 2013 00:49:22 UTC</pubDate>
      <guid>https://snipplr.com/view/72129/php--calculate-weekends-and-holidays-in-php</guid>
    </item>
    <item>
      <title>(JavaScript) Javascript - Validate number of days in a given month - satie83</title>
      <link>https://snipplr.com/view/71829/javascript--validate-number-of-days-in-a-given-month</link>
      <description>&lt;p&gt;How would you validate the number of days in a given month?&lt;/p&gt;</description>
      <pubDate>Fri, 12 Jul 2013 19:08:59 UTC</pubDate>
      <guid>https://snipplr.com/view/71829/javascript--validate-number-of-days-in-a-given-month</guid>
    </item>
    <item>
      <title>(PHP) PHP - Extract numbers from a string - satie83</title>
      <link>https://snipplr.com/view/71658/php--extract-numbers-from-a-string</link>
      <description>&lt;p&gt;I want to extract the numbers from a string that contains numbers and letters like&lt;/p&gt;</description>
      <pubDate>Fri, 28 Jun 2013 00:52:31 UTC</pubDate>
      <guid>https://snipplr.com/view/71658/php--extract-numbers-from-a-string</guid>
    </item>
    <item>
      <title>(Bash) GIT - Get the commits that occured between two dates - satie83</title>
      <link>https://snipplr.com/view/71631/git--get-the-commits-that-occured-between-two-dates</link>
      <description>&lt;p&gt;How to obtain all the commits that occurred between two dates&lt;/p&gt;</description>
      <pubDate>Wed, 26 Jun 2013 02:04:03 UTC</pubDate>
      <guid>https://snipplr.com/view/71631/git--get-the-commits-that-occured-between-two-dates</guid>
    </item>
    <item>
      <title>(jQuery) jQuery - Function on toggleClass complete - satie83</title>
      <link>https://snipplr.com/view/71531/jquery--function-on-toggleclass-complete</link>
      <description>&lt;p&gt;How can I do a function once a toggleClass has completed? &#13;
&#13;
The .toggleClass method along with all other animation methods return a deferred object that you can access using .promise(). At that point, you can bind to it's done method.&lt;/p&gt;</description>
      <pubDate>Fri, 14 Jun 2013 23:51:13 UTC</pubDate>
      <guid>https://snipplr.com/view/71531/jquery--function-on-toggleclass-complete</guid>
    </item>
    <item>
      <title>(JavaScript) Javascript - How to know if an object is Empty - satie83</title>
      <link>https://snipplr.com/view/71495/javascript--how-to-know-if-an-object-is-empty</link>
      <description>&lt;p&gt;Assuming that by empty means "has no properties of its own"&lt;/p&gt;</description>
      <pubDate>Thu, 13 Jun 2013 02:24:27 UTC</pubDate>
      <guid>https://snipplr.com/view/71495/javascript--how-to-know-if-an-object-is-empty</guid>
    </item>
    <item>
      <title>(Bash) GIT - Restore a deleted file in a Git repo - satie83</title>
      <link>https://snipplr.com/view/70835/git--restore-a-deleted-file-in-a-git-repo</link>
      <description>&lt;p&gt;Say I'm in a Git repository. I delete a file and commit that change. I continue working and make some more commits. Then, I find I need to restore that file.&lt;/p&gt;</description>
      <pubDate>Thu, 18 Apr 2013 01:26:12 UTC</pubDate>
      <guid>https://snipplr.com/view/70835/git--restore-a-deleted-file-in-a-git-repo</guid>
    </item>
    <item>
      <title>(CSS) CSS - Spacing between thead and tbody - satie83</title>
      <link>https://snipplr.com/view/70755/css--spacing-between-thead-and-tbody</link>
      <description>&lt;p&gt;Spacing between thead and tbody&lt;/p&gt;</description>
      <pubDate>Thu, 11 Apr 2013 23:09:00 UTC</pubDate>
      <guid>https://snipplr.com/view/70755/css--spacing-between-thead-and-tbody</guid>
    </item>
    <item>
      <title>(JavaScript) JavaScript - Get Cookies - satie83</title>
      <link>https://snipplr.com/view/69505/javascript--get-cookies</link>
      <description>&lt;p&gt;The following function loads all browser-cookies into an associative array with the cookie name as the index and the cookie value as the value&lt;/p&gt;</description>
      <pubDate>Wed, 16 Jan 2013 22:10:22 UTC</pubDate>
      <guid>https://snipplr.com/view/69505/javascript--get-cookies</guid>
    </item>
    <item>
      <title>(MySQL) MySQL - Simulate MySQL Queries - satie83</title>
      <link>https://snipplr.com/view/67272/mysql--simulate-mysql-queries</link>
      <description>&lt;p&gt;You could start a transaction before running your queries and then rollback after running them. Note that to do this you'll require InnoDB or XtraDb tables (won't work on MyISAM).&lt;/p&gt;</description>
      <pubDate>Thu, 20 Sep 2012 20:29:21 UTC</pubDate>
      <guid>https://snipplr.com/view/67272/mysql--simulate-mysql-queries</guid>
    </item>
    <item>
      <title>(CSS) CSS - Add a drop cap - satie83</title>
      <link>https://snipplr.com/view/66684/css--add-a-drop-cap</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:10:47 UTC</pubDate>
      <guid>https://snipplr.com/view/66684/css--add-a-drop-cap</guid>
    </item>
    <item>
      <title>(CSS) CSS - Using transparency â€“ opacity - satie83</title>
      <link>https://snipplr.com/view/66683/css--using-transparency--opacity</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:10:40 UTC</pubDate>
      <guid>https://snipplr.com/view/66683/css--using-transparency--opacity</guid>
    </item>
    <item>
      <title>(CSS) CSS - Rotating an image or text â€“ transform - satie83</title>
      <link>https://snipplr.com/view/66682/css--rotating-an-image-or-text--transform</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:10:37 UTC</pubDate>
      <guid>https://snipplr.com/view/66682/css--rotating-an-image-or-text--transform</guid>
    </item>
    <item>
      <title>(CSS) CSS - Resize your background image - satie83</title>
      <link>https://snipplr.com/view/66681/css--resize-your-background-image</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:10:28 UTC</pubDate>
      <guid>https://snipplr.com/view/66681/css--resize-your-background-image</guid>
    </item>
    <item>
      <title>(CSS) CSS - Replacing the title text with a logo â€“ text-indent â€“ text-indent - satie83</title>
      <link>https://snipplr.com/view/66680/css--replacing-the-title-text-with-a-logo--textindent--textindent</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:10:20 UTC</pubDate>
      <guid>https://snipplr.com/view/66680/css--replacing-the-title-text-with-a-logo--textindent--textindent</guid>
    </item>
    <item>
      <title>(CSS) CSS - Quickly create pull-quotes - satie83</title>
      <link>https://snipplr.com/view/66679/css--quickly-create-pullquotes</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:10:14 UTC</pubDate>
      <guid>https://snipplr.com/view/66679/css--quickly-create-pullquotes</guid>
    </item>
    <item>
      <title>(CSS) CSS - Having multiple columns - satie83</title>
      <link>https://snipplr.com/view/66678/css--having-multiple-columns</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:57 UTC</pubDate>
      <guid>https://snipplr.com/view/66678/css--having-multiple-columns</guid>
    </item>
    <item>
      <title>(CSS) CSS - Giving your footer a fixed position â€“ position:fixed - satie83</title>
      <link>https://snipplr.com/view/66677/css--giving-your-footer-a-fixed-position--positionfixed</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:53 UTC</pubDate>
      <guid>https://snipplr.com/view/66677/css--giving-your-footer-a-fixed-position--positionfixed</guid>
    </item>
    <item>
      <title>(CSS) CSS - Flipping an image â€“ transform - satie83</title>
      <link>https://snipplr.com/view/66676/css--flipping-an-image--transform</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:49 UTC</pubDate>
      <guid>https://snipplr.com/view/66676/css--flipping-an-image--transform</guid>
    </item>
    <item>
      <title>(CSS) CSS - File format-dependent link styles - satie83</title>
      <link>https://snipplr.com/view/66675/css--file-formatdependent-link-styles</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:44 UTC</pubDate>
      <guid>https://snipplr.com/view/66675/css--file-formatdependent-link-styles</guid>
    </item>
    <item>
      <title>(CSS) CSS - Eric Meyers CSS reset - satie83</title>
      <link>https://snipplr.com/view/66674/css--eric-meyers-css-reset</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:39 UTC</pubDate>
      <guid>https://snipplr.com/view/66674/css--eric-meyers-css-reset</guid>
    </item>
    <item>
      <title>(CSS) CSS - Changing the size of your content area - satie83</title>
      <link>https://snipplr.com/view/66672/css--changing-the-size-of-your-content-area</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:31 UTC</pubDate>
      <guid>https://snipplr.com/view/66672/css--changing-the-size-of-your-content-area</guid>
    </item>
    <item>
      <title>(CSS) CSS - Center your website horizontally - satie83</title>
      <link>https://snipplr.com/view/66671/css--center-your-website-horizontally</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:30 UTC</pubDate>
      <guid>https://snipplr.com/view/66671/css--center-your-website-horizontally</guid>
    </item>
    <item>
      <title>(CSS) CSS - Center certain content vertically - satie83</title>
      <link>https://snipplr.com/view/66670/css--center-certain-content-vertically</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:29 UTC</pubDate>
      <guid>https://snipplr.com/view/66670/css--center-certain-content-vertically</guid>
    </item>
    <item>
      <title>(CSS) CSS - Basic Link Rollover as CSS Sprite - satie83</title>
      <link>https://snipplr.com/view/66668/css--basic-link-rollover-as-css-sprite</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:28 UTC</pubDate>
      <guid>https://snipplr.com/view/66668/css--basic-link-rollover-as-css-sprite</guid>
    </item>
    <item>
      <title>(CSS) CSS - Bulletproof @fontface - satie83</title>
      <link>https://snipplr.com/view/66669/css--bulletproof-fontface</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:28 UTC</pubDate>
      <guid>https://snipplr.com/view/66669/css--bulletproof-fontface</guid>
    </item>
    <item>
      <title>(CSS) CSS - Adding shadow to text â€“ text-shadow - satie83</title>
      <link>https://snipplr.com/view/66667/css--adding-shadow-to-text--textshadow</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:26 UTC</pubDate>
      <guid>https://snipplr.com/view/66667/css--adding-shadow-to-text--textshadow</guid>
    </item>
    <item>
      <title>(CSS) CSS - Adding shadow to borders and images â€“ box-shadow - satie83</title>
      <link>https://snipplr.com/view/66666/css--adding-shadow-to-borders-and-images--boxshadow</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:24 UTC</pubDate>
      <guid>https://snipplr.com/view/66666/css--adding-shadow-to-borders-and-images--boxshadow</guid>
    </item>
    <item>
      <title>(CSS) CSS - Adding rounded corners â€“ border-radius - satie83</title>
      <link>https://snipplr.com/view/66665/css--adding-rounded-corners--borderradius</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:20 UTC</pubDate>
      <guid>https://snipplr.com/view/66665/css--adding-rounded-corners--borderradius</guid>
    </item>
    <item>
      <title>(CSS) CSS - Adding print page breaks â€“ page-break - satie83</title>
      <link>https://snipplr.com/view/66664/css--adding-print-page-breaks--pagebreak</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:15 UTC</pubDate>
      <guid>https://snipplr.com/view/66664/css--adding-print-page-breaks--pagebreak</guid>
    </item>
    <item>
      <title>(CSS) CSS - Adding Google fonts - satie83</title>
      <link>https://snipplr.com/view/66663/css--adding-google-fonts</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:12 UTC</pubDate>
      <guid>https://snipplr.com/view/66663/css--adding-google-fonts</guid>
    </item>
    <item>
      <title>(CSS) CSS - Adding an image-based border â€“ border-image - satie83</title>
      <link>https://snipplr.com/view/66662/css--adding-an-imagebased-border--borderimage</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:09 UTC</pubDate>
      <guid>https://snipplr.com/view/66662/css--adding-an-imagebased-border--borderimage</guid>
    </item>
    <item>
      <title>(CSS) CSS - Adding a gradient â€“ linear-gradient - satie83</title>
      <link>https://snipplr.com/view/66661/css--adding-a-gradient--lineargradient</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:07 UTC</pubDate>
      <guid>https://snipplr.com/view/66661/css--adding-a-gradient--lineargradient</guid>
    </item>
    <item>
      <title>(CSS) CSS - Add a â€œloading imageâ€ to, well, loading images - satie83</title>
      <link>https://snipplr.com/view/66660/css--add-a-loading-image-to-well-loading-images</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:04 UTC</pubDate>
      <guid>https://snipplr.com/view/66660/css--add-a-loading-image-to-well-loading-images</guid>
    </item>
    <item>
      <title>(CSS) CSS - Reset all colors and change link color - satie83</title>
      <link>https://snipplr.com/view/66659/css--reset-all-colors-and-change-link-color</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:07:35 UTC</pubDate>
      <guid>https://snipplr.com/view/66659/css--reset-all-colors-and-change-link-color</guid>
    </item>
    <item>
      <title>(CSS) CSS - Adding shadow to text â€“ text-shadow - satie83</title>
      <link>https://snipplr.com/view/66658/css--adding-shadow-to-text--textshadow</link>
      <description>&lt;p&gt;Helps make your text stand out from the rest&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 09:43:36 UTC</pubDate>
      <guid>https://snipplr.com/view/66658/css--adding-shadow-to-text--textshadow</guid>
    </item>
    <item>
      <title>(Bash) GIT - How to get just one file from another branch - satie83</title>
      <link>https://snipplr.com/view/66355/git--how-to-get-just-one-file-from-another-branch</link>
      <description>&lt;p&gt;I am using git and working on master branch. This branch has a file called app.js .&#13;
&#13;
I have an experiment branch in which I made a bunch of changes and tons of commit. Now I want to bring all the changes done only to app.js from experiment to master branch.&lt;/p&gt;</description>
      <pubDate>Thu, 26 Jul 2012 22:39:35 UTC</pubDate>
      <guid>https://snipplr.com/view/66355/git--how-to-get-just-one-file-from-another-branch</guid>
    </item>
    <item>
      <title>(Bash) GIT - Search trough all commits in the repository - satie83</title>
      <link>https://snipplr.com/view/66289/git--search-trough-all-commits-in-the-repository</link>
      <description>&lt;p&gt;I have a Git repository with few branches and dangling commits. I would like to search all such commits in repository for a specific string.&lt;/p&gt;</description>
      <pubDate>Mon, 23 Jul 2012 19:30:34 UTC</pubDate>
      <guid>https://snipplr.com/view/66289/git--search-trough-all-commits-in-the-repository</guid>
    </item>
    <item>
      <title>(PHP) PHP - Remove all non-numeric characters - satie83</title>
      <link>https://snipplr.com/view/66250/php--remove-all-nonnumeric-characters</link>
      <description>&lt;p&gt;Sometimes itâ€™s helpful to ONLY get numeric characters.&#13;
Phone numbers, age â€” whatever your little PHP heart desires.&lt;/p&gt;</description>
      <pubDate>Fri, 20 Jul 2012 22:17:59 UTC</pubDate>
      <guid>https://snipplr.com/view/66250/php--remove-all-nonnumeric-characters</guid>
    </item>
    <item>
      <title>(PHP) PHP - How to check if string contains substring PHP - satie83</title>
      <link>https://snipplr.com/view/66212/php--how-to-check-if-string-contains-substring-php</link>
      <description>&lt;p&gt;Once in a while we need to check whether a string contains substring, some other string or characters or a value. Checking for existence of a string (or substring) inside another string is easier than it might seem. The following article describes how to check for whether a string contains string in PHP, or simply said how to find string within string in PHP.&lt;/p&gt;</description>
      <pubDate>Wed, 18 Jul 2012 20:48:04 UTC</pubDate>
      <guid>https://snipplr.com/view/66212/php--how-to-check-if-string-contains-substring-php</guid>
    </item>
    <item>
      <title>(Bash) GIT - List of stale remote-tracking branches - satie83</title>
      <link>https://snipplr.com/view/66163/git--list-of-stale-remotetracking-branches</link>
      <description>&lt;p&gt;Youâ€™ll receive a list of your stale remote-tracking branches. If you run it without â€“dry-run option, it will remove them for you.&lt;/p&gt;</description>
      <pubDate>Mon, 16 Jul 2012 22:20:47 UTC</pubDate>
      <guid>https://snipplr.com/view/66163/git--list-of-stale-remotetracking-branches</guid>
    </item>
    <item>
      <title>(JavaScript) Javascript - Debugging Javascript as PHP  / Function var_dump - satie83</title>
      <link>https://snipplr.com/view/66043/javascript--debugging-javascript-as-php---function-vardump</link>
      <description>&lt;p&gt;In javascript there is no function for printing variables like you have PHP, I use print_r and var_dump a lot in PHP for dumping variables&#13;
so I wanted to create a simular function in javascript.&lt;/p&gt;</description>
      <pubDate>Mon, 09 Jul 2012 23:46:45 UTC</pubDate>
      <guid>https://snipplr.com/view/66043/javascript--debugging-javascript-as-php---function-vardump</guid>
    </item>
    <item>
      <title>(Bash) GIT - Editing an incorrect commit message - satie83</title>
      <link>https://snipplr.com/view/65952/git--editing-an-incorrect-commit-message</link>
      <description>&lt;p&gt;It's necessary that the commit hasn't pushed by anyone&lt;/p&gt;</description>
      <pubDate>Thu, 05 Jul 2012 01:57:55 UTC</pubDate>
      <guid>https://snipplr.com/view/65952/git--editing-an-incorrect-commit-message</guid>
    </item>
    <item>
      <title>(Bash) GIT - Find out which is the remote branch, which is tracked by a local branch - satie83</title>
      <link>https://snipplr.com/view/65834/git--find-out-which-is-the-remote-branch-which-is-tracked-by-a-local-branch</link>
      <description>&lt;p&gt;This shows the local and remote branches along with the most recent commit for each branch.&lt;/p&gt;</description>
      <pubDate>Wed, 27 Jun 2012 20:47:05 UTC</pubDate>
      <guid>https://snipplr.com/view/65834/git--find-out-which-is-the-remote-branch-which-is-tracked-by-a-local-branch</guid>
    </item>
    <item>
      <title>(Bash) GIT - List all the files for a commit (or various commits) in git - satie83</title>
      <link>https://snipplr.com/view/65726/git--list-all-the-files-for-a-commit-or-various-commits-in-git</link>
      <description>&lt;p&gt;Hash of the commit which you want to  show a303aa90779efdd2f6b9d90693e2cbbbe4613c1d&lt;/p&gt;</description>
      <pubDate>Thu, 21 Jun 2012 02:11:14 UTC</pubDate>
      <guid>https://snipplr.com/view/65726/git--list-all-the-files-for-a-commit-or-various-commits-in-git</guid>
    </item>
    <item>
      <title>(PHP) PHP - Getting Yesterday\'s Date in PHP - satie83</title>
      <link>https://snipplr.com/view/65560/php--getting-yesterdays-date-in-php</link>
      <description>&lt;p&gt;Example calculate yesterday, but if you multiply by some number you can get in an easy way, weeks, months or years&lt;/p&gt;</description>
      <pubDate>Tue, 12 Jun 2012 20:46:33 UTC</pubDate>
      <guid>https://snipplr.com/view/65560/php--getting-yesterdays-date-in-php</guid>
    </item>
    <item>
      <title>(jQuery) jQuery: Numbering an Unordered List - satie83</title>
      <link>https://snipplr.com/view/64909/jquery-numbering-an-unordered-list</link>
      <description>&lt;p&gt;Hereâ€™s a very simple script which adds numbers sequentially to an unordered list using jQuery&lt;/p&gt;</description>
      <pubDate>Thu, 17 May 2012 22:37:41 UTC</pubDate>
      <guid>https://snipplr.com/view/64909/jquery-numbering-an-unordered-list</guid>
    </item>
    <item>
      <title>(C#) IsPageRefresh in ASP .NET - Preventing previously submitted - satie83</title>
      <link>https://snipplr.com/view/64908/ispagerefresh-in-asp-net--preventing-previously-submitted</link>
      <description>&lt;p&gt;How do I prevent previously submitted form data from being reinserted into the database when the user presses the browser's Refresh button?&#13;
Although it is not possible due to unique key constraint available in tables but it is unnecessary go to other layer (data access, business layer).&lt;/p&gt;</description>
      <pubDate>Thu, 17 May 2012 22:35:19 UTC</pubDate>
      <guid>https://snipplr.com/view/64908/ispagerefresh-in-asp-net--preventing-previously-submitted</guid>
    </item>
    <item>
      <title>(Objective C) Image resize with CI - satie83</title>
      <link>https://snipplr.com/view/64907/image-resize-with-ci</link>
      <description>&lt;p&gt;Core Image provides a lot of filter to apply to images. Here there is a snippet to modify the size of the image using the Lanczos algorithm. You have to give the image URL and the ratio of the scale. If the ratio is smaller than 1 it reduce, otherwise it enlarges the image.&lt;/p&gt;</description>
      <pubDate>Thu, 17 May 2012 22:18:42 UTC</pubDate>
      <guid>https://snipplr.com/view/64907/image-resize-with-ci</guid>
    </item>
  </channel>
</rss>
