<?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>Wed, 10 Jun 2026 05:29:28 +0000</lastBuildDate>
    <item>
      <title>(Python) python pretty date print - magicrebirth</title>
      <link>https://snipplr.com/view/73411/python-pretty-date-print</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 14 Jan 2014 01:45:08 UTC</pubDate>
      <guid>https://snipplr.com/view/73411/python-pretty-date-print</guid>
    </item>
    <item>
      <title>(Django) Override the change_view in the admin - magicrebirth</title>
      <link>https://snipplr.com/view/62778/override-the-changeview-in-the-admin</link>
      <description>&lt;p&gt;Adding another button with name "addnextid" would trigger our custom action, that redirects the user to the changeform screen for the next available item (by ID).&#13;
&#13;
Then you can override admin/submit_line.html. Copy the version in contrib.admin.templates into your project. Mine is myproject/templates/admin/submit_line.html, but you could use /myproject/myapp/templates/admin/submit_line.html.&#13;
&#13;
Next, edit the copy and add the code for showing the 'Save and edit next item (by ID)' link, which is caught via the "_addnextid" name. &#13;
&#13;
p.s.&#13;
The submit_line.html template is called in change_form.html via the {% submit_row %} tag.&lt;/p&gt;</description>
      <pubDate>Thu, 26 Jan 2012 04:35:50 UTC</pubDate>
      <guid>https://snipplr.com/view/62778/override-the-changeview-in-the-admin</guid>
    </item>
    <item>
      <title>(Django) Clean up expired django.contrib.session\'s in a huge MySQL InnoDB table - magicrebirth</title>
      <link>https://snipplr.com/view/62190/clean-up-expired-djangocontribsessions-in-a-huge-mysql-innodb-table</link>
      <description>&lt;p&gt;While django provides the django_admin.py cleanup script, if sessions get out of control sometimes you have to go lower level to get everything cleaned up. If the problem gets out of hand and you hit the resource limits of the machine, it is very difficult to get anything done in the database.&#13;
&#13;
Attached is SQL code which was used to cleanup 27GB of expired session data in 3h. Run it like this to make sure it runs to completion:&#13;
&#13;
`nohup mysql --user=username --password=password --host=hostname database &lt; delete_expired_sessions.sql`&#13;
&#13;
nohup causes the script to run detached from a terminal, so if your session gets disconnected it will keep running.&#13;
&#13;
p.s.&#13;
An alternative approach is to launch this command from the shell:&#13;
&#13;
DELETE FROM django_session WHERE expire_date &lt; NOW();&#13;
&#13;
or &#13;
&#13;
DELETE FROM django_session WHERE expire_date &lt; "2011-12-10 00:00:00";&lt;/p&gt;</description>
      <pubDate>Fri, 30 Dec 2011 23:12:12 UTC</pubDate>
      <guid>https://snipplr.com/view/62190/clean-up-expired-djangocontribsessions-in-a-huge-mysql-innodb-table</guid>
    </item>
    <item>
      <title>(Django) Adding request object info to a template - magicrebirth</title>
      <link>https://snipplr.com/view/60684/adding-request-object-info-to-a-template</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 10 Nov 2011 10:36:28 UTC</pubDate>
      <guid>https://snipplr.com/view/60684/adding-request-object-info-to-a-template</guid>
    </item>
    <item>
      <title>(Bash) How to make git use TextMate as the default commit editor Â« Developmentality - magicrebirth</title>
      <link>https://snipplr.com/view/59658/how-to-make-git-use-textmate-as-the-default-commit-editor--developmentality</link>
      <description>&lt;p&gt;Now when you do a git commit without specifying a commit message, TextMate will pop-up and allow you to enter a commit message in it. When you save the file and close the window, the commit will go through as normal. (If you have another text editor you prefer instead, just change the â€œmate -wâ€ line to the preferred one)&#13;
&#13;
For those curious what the -w argument is about, it tells the shell to wait for the mate process to terminate (the file to be saved and closed).&lt;/p&gt;</description>
      <pubDate>Wed, 12 Oct 2011 06:28:41 UTC</pubDate>
      <guid>https://snipplr.com/view/59658/how-to-make-git-use-textmate-as-the-default-commit-editor--developmentality</guid>
    </item>
    <item>
      <title>(Django) Django: check whether an object already exists before adding - magicrebirth</title>
      <link>https://snipplr.com/view/59359/django-check-whether-an-object-already-exists-before-adding</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 03 Oct 2011 21:49:28 UTC</pubDate>
      <guid>https://snipplr.com/view/59359/django-check-whether-an-object-already-exists-before-adding</guid>
    </item>
    <item>
      <title>(Python) Indenting source code in python - magicrebirth</title>
      <link>https://snipplr.com/view/57154/indenting-source-code-in-python</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 26 Jul 2011 21:08:09 UTC</pubDate>
      <guid>https://snipplr.com/view/57154/indenting-source-code-in-python</guid>
    </item>
    <item>
      <title>(Django) Getting Random objects from a Queryset in Django - magicrebirth</title>
      <link>https://snipplr.com/view/57053/getting-random-objects-from-a-queryset-in-django</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 23 Jul 2011 01:15:14 UTC</pubDate>
      <guid>https://snipplr.com/view/57053/getting-random-objects-from-a-queryset-in-django</guid>
    </item>
    <item>
      <title>(Python) Statistical String Comparison - magicrebirth</title>
      <link>https://snipplr.com/view/57051/statistical-string-comparison</link>
      <description>&lt;p&gt;http://docs.python.org/library/difflib.html&lt;/p&gt;</description>
      <pubDate>Fri, 22 Jul 2011 23:06:05 UTC</pubDate>
      <guid>https://snipplr.com/view/57051/statistical-string-comparison</guid>
    </item>
    <item>
      <title>(Django) Convert the time.struct_time object into a datetime.datetime object: - magicrebirth</title>
      <link>https://snipplr.com/view/56927/convert-the-timestructtime-object-into-a-datetimedatetime-object</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 20 Jul 2011 23:41:06 UTC</pubDate>
      <guid>https://snipplr.com/view/56927/convert-the-timestructtime-object-into-a-datetimedatetime-object</guid>
    </item>
    <item>
      <title>(Python) Colorizing Python Source Using the Built-in Tokenizer - magicrebirth</title>
      <link>https://snipplr.com/view/56858/colorizing-python-source-using-the-builtin-tokenizer</link>
      <description>&lt;p&gt;You need to convert Python source code into HTML markup, rendering comments, keywords, operators, and numeric and string literals in different colors.&#13;
tokenize.generate_tokens does most of the work. We just need to loop over all tokens it finds, to output them with appropriate colorization:&lt;/p&gt;</description>
      <pubDate>Tue, 19 Jul 2011 18:01:26 UTC</pubDate>
      <guid>https://snipplr.com/view/56858/colorizing-python-source-using-the-builtin-tokenizer</guid>
    </item>
    <item>
      <title>(Python) RGB Gradation Chart Generator - magicrebirth</title>
      <link>https://snipplr.com/view/56710/rgb-gradation-chart-generator</link>
      <description>&lt;p&gt;[from the author's website]&#13;
I wrote this to better understand the relationship between RGB colors. Running it will generate a fairly large HTML file with all sorts of color transitions on it so you can see what is happening as colors are tweaked in different ways.&lt;/p&gt;</description>
      <pubDate>Sun, 17 Jul 2011 20:22:21 UTC</pubDate>
      <guid>https://snipplr.com/view/56710/rgb-gradation-chart-generator</guid>
    </item>
    <item>
      <title>(Python) RGB Color Gradation Function - magicrebirth</title>
      <link>https://snipplr.com/view/56709/rgb-color-gradation-function</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 17 Jul 2011 20:15:43 UTC</pubDate>
      <guid>https://snipplr.com/view/56709/rgb-color-gradation-function</guid>
    </item>
    <item>
      <title>(Bash) Shell : How to rename/mv large number of files - magicrebirth</title>
      <link>https://snipplr.com/view/56327/shell--how-to-renamemv-large-number-of-files</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 08 Jul 2011 20:53:21 UTC</pubDate>
      <guid>https://snipplr.com/view/56327/shell--how-to-renamemv-large-number-of-files</guid>
    </item>
    <item>
      <title>(Python) Counting elements in a list - magicrebirth</title>
      <link>https://snipplr.com/view/55137/counting-elements-in-a-list</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 11 Jun 2011 00:49:15 UTC</pubDate>
      <guid>https://snipplr.com/view/55137/counting-elements-in-a-list</guid>
    </item>
    <item>
      <title>(Python) Extracting a URL in Python - magicrebirth</title>
      <link>https://snipplr.com/view/55134/extracting-a-url-in-python</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 10 Jun 2011 23:43:42 UTC</pubDate>
      <guid>https://snipplr.com/view/55134/extracting-a-url-in-python</guid>
    </item>
    <item>
      <title>(Django) Adding custom django package to WSGI settings - magicrebirth</title>
      <link>https://snipplr.com/view/54284/adding-custom-django-package-to-wsgi-settings</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 24 May 2011 00:05:01 UTC</pubDate>
      <guid>https://snipplr.com/view/54284/adding-custom-django-package-to-wsgi-settings</guid>
    </item>
    <item>
      <title>(Python) Ways to Move up and Down the dir structure in Python - magicrebirth</title>
      <link>https://snipplr.com/view/53250/ways-to-move-up-and-down-the-dir-structure-in-python</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 09 May 2011 23:10:03 UTC</pubDate>
      <guid>https://snipplr.com/view/53250/ways-to-move-up-and-down-the-dir-structure-in-python</guid>
    </item>
    <item>
      <title>(Django) Remove duplicates from a list - magicrebirth</title>
      <link>https://snipplr.com/view/51688/remove-duplicates-from-a-list</link>
      <description>&lt;p&gt;Not only is it really really fast; it's also order preserving and supports an optional transform function&lt;/p&gt;</description>
      <pubDate>Thu, 07 Apr 2011 04:06:46 UTC</pubDate>
      <guid>https://snipplr.com/view/51688/remove-duplicates-from-a-list</guid>
    </item>
    <item>
      <title>(Python) Python: rename a file - magicrebirth</title>
      <link>https://snipplr.com/view/51486/python-rename-a-file</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 04 Apr 2011 00:06:08 UTC</pubDate>
      <guid>https://snipplr.com/view/51486/python-rename-a-file</guid>
    </item>
    <item>
      <title>(Python) Getting the difference between two lists - Python - magicrebirth</title>
      <link>https://snipplr.com/view/51138/getting-the-difference-between-two-lists--python</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 26 Mar 2011 03:19:27 UTC</pubDate>
      <guid>https://snipplr.com/view/51138/getting-the-difference-between-two-lists--python</guid>
    </item>
    <item>
      <title>(Django) request: get multiple values | Django - magicrebirth</title>
      <link>https://snipplr.com/view/51125/request-get-multiple-values--django</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 26 Mar 2011 00:27:34 UTC</pubDate>
      <guid>https://snipplr.com/view/51125/request-get-multiple-values--django</guid>
    </item>
    <item>
      <title>(Python) CSV reading in python - magicrebirth</title>
      <link>https://snipplr.com/view/50966/csv-reading-in-python</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 22 Mar 2011 22:23:48 UTC</pubDate>
      <guid>https://snipplr.com/view/50966/csv-reading-in-python</guid>
    </item>
    <item>
      <title>(Django) Strip/Remove HTML tags (django utils) - magicrebirth</title>
      <link>https://snipplr.com/view/50835/stripremove-html-tags-django-utils</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 19 Mar 2011 05:52:44 UTC</pubDate>
      <guid>https://snipplr.com/view/50835/stripremove-html-tags-django-utils</guid>
    </item>
    <item>
      <title>(Python) recursion in scheme and python - magicrebirth</title>
      <link>https://snipplr.com/view/50828/recursion-in-scheme-and-python</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 19 Mar 2011 01:56:08 UTC</pubDate>
      <guid>https://snipplr.com/view/50828/recursion-in-scheme-and-python</guid>
    </item>
    <item>
      <title>(Python) Best way to choose a random file from a directory - magicrebirth</title>
      <link>https://snipplr.com/view/49167/best-way-to-choose-a-random-file-from-a-directory</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 18 Feb 2011 00:09:51 UTC</pubDate>
      <guid>https://snipplr.com/view/49167/best-way-to-choose-a-random-file-from-a-directory</guid>
    </item>
    <item>
      <title>(Python) RDFlib: access a triple store in 5 lines of code - magicrebirth</title>
      <link>https://snipplr.com/view/48617/rdflib-access-a-triple-store-in-5-lines-of-code</link>
      <description>&lt;p&gt;Note that in the example the 'sleepycat' backend is used ( Oracle Berkeley DB, which requires the ''bsddb3'' python bindings). If you don't have that installed you can just remove that directive and the triples will be loaded in memory.....&lt;/p&gt;</description>
      <pubDate>Tue, 08 Feb 2011 23:14:30 UTC</pubDate>
      <guid>https://snipplr.com/view/48617/rdflib-access-a-triple-store-in-5-lines-of-code</guid>
    </item>
    <item>
      <title>(Python) Python generator - magicrebirth</title>
      <link>https://snipplr.com/view/46831/python-generator</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 10 Jan 2011 01:48:28 UTC</pubDate>
      <guid>https://snipplr.com/view/46831/python-generator</guid>
    </item>
    <item>
      <title>(Python) How to Write a Spelling Corrector (in 21 lines) - magicrebirth</title>
      <link>https://snipplr.com/view/46794/how-to-write-a-spelling-corrector-in-21-lines</link>
      <description>&lt;p&gt;Requires an external file for the statistical algorithm... (big.txt)&lt;/p&gt;</description>
      <pubDate>Sun, 09 Jan 2011 02:54:14 UTC</pubDate>
      <guid>https://snipplr.com/view/46794/how-to-write-a-spelling-corrector-in-21-lines</guid>
    </item>
    <item>
      <title>(Python) Check time difference between now and specified time - magicrebirth</title>
      <link>https://snipplr.com/view/44970/check-time-difference-between-now-and-specified-time</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 28 Nov 2010 00:27:59 UTC</pubDate>
      <guid>https://snipplr.com/view/44970/check-time-difference-between-now-and-specified-time</guid>
    </item>
    <item>
      <title>(JavaScript) Running scripts ciclically - magicrebirth</title>
      <link>https://snipplr.com/view/44947/running-scripts-ciclically</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 27 Nov 2010 01:42:36 UTC</pubDate>
      <guid>https://snipplr.com/view/44947/running-scripts-ciclically</guid>
    </item>
    <item>
      <title>(Python) From a list containing tree info, generare a tree in dict format - magicrebirth</title>
      <link>https://snipplr.com/view/43903/from-a-list-containing-tree-info-generare-a-tree-in-dict-format</link>
      <description>&lt;p&gt;The resulting tree is represented through a dict where each father gets a key (with all the children as args)&lt;/p&gt;</description>
      <pubDate>Wed, 10 Nov 2010 22:35:08 UTC</pubDate>
      <guid>https://snipplr.com/view/43903/from-a-list-containing-tree-info-generare-a-tree-in-dict-format</guid>
    </item>
    <item>
      <title>(Python) Creating directories programmatically - magicrebirth</title>
      <link>https://snipplr.com/view/43554/creating-directories-programmatically</link>
      <description>&lt;p&gt;save as a file and run....&lt;/p&gt;</description>
      <pubDate>Thu, 04 Nov 2010 20:27:19 UTC</pubDate>
      <guid>https://snipplr.com/view/43554/creating-directories-programmatically</guid>
    </item>
    <item>
      <title>(JavaScript) Verify if an html element is empty - magicrebirth</title>
      <link>https://snipplr.com/view/42632/verify-if-an-html-element-is-empty</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 21 Oct 2010 01:22:50 UTC</pubDate>
      <guid>https://snipplr.com/view/42632/verify-if-an-html-element-is-empty</guid>
    </item>
    <item>
      <title>(JavaScript) Reload an image with jQuery - magicrebirth</title>
      <link>https://snipplr.com/view/42631/reload-an-image-with-jquery</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 21 Oct 2010 01:21:45 UTC</pubDate>
      <guid>https://snipplr.com/view/42631/reload-an-image-with-jquery</guid>
    </item>
    <item>
      <title>(JavaScript) Forcee a page to reload - magicrebirth</title>
      <link>https://snipplr.com/view/42627/forcee-a-page-to-reload</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 21 Oct 2010 00:24:02 UTC</pubDate>
      <guid>https://snipplr.com/view/42627/forcee-a-page-to-reload</guid>
    </item>
    <item>
      <title>(Python) How to Add Locations to Python Path in Django - magicrebirth</title>
      <link>https://snipplr.com/view/42518/how-to-add-locations-to-python-path-in-django</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 19 Oct 2010 05:52:11 UTC</pubDate>
      <guid>https://snipplr.com/view/42518/how-to-add-locations-to-python-path-in-django</guid>
    </item>
    <item>
      <title>(Django) Django simple url redirect - magicrebirth</title>
      <link>https://snipplr.com/view/42051/django-simple-url-redirect</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 11 Oct 2010 21:43:13 UTC</pubDate>
      <guid>https://snipplr.com/view/42051/django-simple-url-redirect</guid>
    </item>
    <item>
      <title>(Python) Global variables in Python - magicrebirth</title>
      <link>https://snipplr.com/view/41106/global-variables-in-python</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 28 Sep 2010 22:24:50 UTC</pubDate>
      <guid>https://snipplr.com/view/41106/global-variables-in-python</guid>
    </item>
    <item>
      <title>(Python) File overwrite and append in python - magicrebirth</title>
      <link>https://snipplr.com/view/40878/file-overwrite-and-append-in-python</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 22 Sep 2010 02:20:39 UTC</pubDate>
      <guid>https://snipplr.com/view/40878/file-overwrite-and-append-in-python</guid>
    </item>
    <item>
      <title>(JavaScript) Regex Selector for jQuery - magicrebirth</title>
      <link>https://snipplr.com/view/40795/regex-selector-for-jquery</link>
      <description>&lt;p&gt;check the original blogpost for more how-to examples&lt;/p&gt;</description>
      <pubDate>Tue, 21 Sep 2010 02:34:56 UTC</pubDate>
      <guid>https://snipplr.com/view/40795/regex-selector-for-jquery</guid>
    </item>
    <item>
      <title>(JavaScript) Case insensitive jQuery :contains selector - magicrebirth</title>
      <link>https://snipplr.com/view/40794/case-insensitive-jquery-contains-selector</link>
      <description>&lt;p&gt;This will extend jquery to have a :Contains selector that is case insensitive, the :contains selector remains unchanged.&lt;/p&gt;</description>
      <pubDate>Tue, 21 Sep 2010 02:11:47 UTC</pubDate>
      <guid>https://snipplr.com/view/40794/case-insensitive-jquery-contains-selector</guid>
    </item>
    <item>
      <title>(Python) String literals that span multiple lines - magicrebirth</title>
      <link>https://snipplr.com/view/40571/string-literals-that-span-multiple-lines</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 16 Sep 2010 08:29:41 UTC</pubDate>
      <guid>https://snipplr.com/view/40571/string-literals-that-span-multiple-lines</guid>
    </item>
    <item>
      <title>(Python) How do I copy an object inÂ Python? - magicrebirth</title>
      <link>https://snipplr.com/view/40569/how-do-i-copy-an-object-inpython</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 16 Sep 2010 07:43:13 UTC</pubDate>
      <guid>https://snipplr.com/view/40569/how-do-i-copy-an-object-inpython</guid>
    </item>
    <item>
      <title>(JavaScript) JS: open multiple popUps - magicrebirth</title>
      <link>https://snipplr.com/view/39840/js-open-multiple-popups</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 02 Sep 2010 04:16:34 UTC</pubDate>
      <guid>https://snipplr.com/view/39840/js-open-multiple-popups</guid>
    </item>
    <item>
      <title>(JavaScript) JS: open popup window - magicrebirth</title>
      <link>https://snipplr.com/view/39839/js-open-popup-window</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 02 Sep 2010 04:15:40 UTC</pubDate>
      <guid>https://snipplr.com/view/39839/js-open-popup-window</guid>
    </item>
    <item>
      <title>(Python) changing default version when updating Python on Mac - magicrebirth</title>
      <link>https://snipplr.com/view/39372/changing-default-version-when-updating-python-on-mac</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 21 Aug 2010 05:07:48 UTC</pubDate>
      <guid>https://snipplr.com/view/39372/changing-default-version-when-updating-python-on-mac</guid>
    </item>
    <item>
      <title>(Python) Start a quick webserver from any directory: - magicrebirth</title>
      <link>https://snipplr.com/view/38193/start-a-quick-webserver-from-any-directory</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 02 Aug 2010 08:05:46 UTC</pubDate>
      <guid>https://snipplr.com/view/38193/start-a-quick-webserver-from-any-directory</guid>
    </item>
    <item>
      <title>(Python) Count items and sort by incidence - magicrebirth</title>
      <link>https://snipplr.com/view/37719/count-items-and-sort-by-incidence</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 22 Jul 2010 03:33:15 UTC</pubDate>
      <guid>https://snipplr.com/view/37719/count-items-and-sort-by-incidence</guid>
    </item>
    <item>
      <title>(JavaScript) Go to top of page using jQuery - magicrebirth</title>
      <link>https://snipplr.com/view/37624/go-to-top-of-page-using-jquery</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 20 Jul 2010 01:59:14 UTC</pubDate>
      <guid>https://snipplr.com/view/37624/go-to-top-of-page-using-jquery</guid>
    </item>
  </channel>
</rss>
