<?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 15:31:32 +0000</lastBuildDate>
    <item>
      <title>(PHP) Download file headers - macodev</title>
      <link>https://snipplr.com/view/323280/download-file-headers</link>
      <description>&lt;p&gt;Set headers for file download&lt;/p&gt;</description>
      <pubDate>Fri, 07 Apr 2017 22:47:55 UTC</pubDate>
      <guid>https://snipplr.com/view/323280/download-file-headers</guid>
    </item>
    <item>
      <title>(Bash) Download and Install necessary OSS RPMs on IBM AIX box - teterkin</title>
      <link>https://snipplr.com/view/89415/download-and-install-necessary-oss-rpms-on-ibm-aix-box</link>
      <description>&lt;p&gt;AIX does not have Package Manager like YUM for Open Source Software.&#13;
So I made a script to automatically install RPM packages on AIX box by downloading it from www.oss4aix.org site via ftp .&#13;
It is very first version, it does not have all the necessary checks, but I do not have too much time to polish it. &#13;
Actually it works. It downloads and installs all the necessary software and it dependencies ( thanks to Michael Perzl http://www.perzl.org/aix/index.php?n=FAQs.FAQs#rpm-dependency-hell ).&#13;
&#13;
I saw similar thing here: http://earth2baz.net/rpmplus/ &#13;
But it downloads entire Repository. I do not need that. So made my own script.&#13;
&#13;
Actually it is for Korn Shell wich is deffault on AIX.&lt;/p&gt;</description>
      <pubDate>Wed, 04 Feb 2015 22:41:24 UTC</pubDate>
      <guid>https://snipplr.com/view/89415/download-and-install-necessary-oss-rpms-on-ibm-aix-box</guid>
    </item>
    <item>
      <title>(JavaScript) Download file using javascript - jakob101</title>
      <link>https://snipplr.com/view/75657/download-file-using-javascript</link>
      <description>&lt;p&gt;Uses javascript to create a hidden iframe which downloads the file&lt;/p&gt;</description>
      <pubDate>Tue, 29 Jul 2014 03:54:06 UTC</pubDate>
      <guid>https://snipplr.com/view/75657/download-file-using-javascript</guid>
    </item>
    <item>
      <title>(Bash) ftp download example - ktrout</title>
      <link>https://snipplr.com/view/72790/ftp-download-example</link>
      <description>&lt;p&gt;simple ftp download example&lt;/p&gt;</description>
      <pubDate>Sun, 03 Nov 2013 15:18:12 UTC</pubDate>
      <guid>https://snipplr.com/view/72790/ftp-download-example</guid>
    </item>
    <item>
      <title>(PHP) PHP Download script for any filesize - deanhouseholder</title>
      <link>https://snipplr.com/view/72341/php-download-script-for-any-filesize</link>
      <description>&lt;p&gt;By default Apache won't allow you to download a file over 2GB.  This PHP script overcomes that along with some extra goodies.&#13;
&#13;
The script will read from standard url path the file on the server to download and display the filesize along with a link to download it.&#13;
&#13;
Setup:&#13;
&#13;
1) Create a directory called "d" on the root of your website and name this script "index.php"&#13;
&#13;
2) Create a .htaccess file with the following lines:&#13;
&#13;
RewriteEngine On&#13;
&#13;
RewriteBase /d/&#13;
&#13;
RewriteCond %{REQUEST_DIRECTORY} !-d [NC]&#13;
&#13;
RewriteRule ^(.*)$ index.php?f=$1 [L]&#13;
&#13;
3) Craft a url in the format of: http://[website_url]/d/path/to/download/filename.dat&#13;
&#13;
This will link to a file: http://[website_url]/path/to/download/filename.dat&#13;
&#13;
If you want, you can also craft a url with a trailing "&amp;" and it will automatically start downloading.&#13;
&#13;
Example: http://[website_url]/path/to/download/filename.dat&amp;&lt;/p&gt;</description>
      <pubDate>Thu, 12 Sep 2013 05:33:17 UTC</pubDate>
      <guid>https://snipplr.com/view/72341/php-download-script-for-any-filesize</guid>
    </item>
    <item>
      <title>(Python) Display the download percentage of a file - o0110o</title>
      <link>https://snipplr.com/view/72137/display-the-download-percentage-of-a-file</link>
      <description>&lt;p&gt;Place this snippent in your script, and call it like this:&#13;
urllib.urlretrieve(getFile, saveFile, reporthook=report)&#13;
&#13;
Notice it is the 3rd argument that calls the function on each file that needs to be downloaded.&lt;/p&gt;</description>
      <pubDate>Fri, 16 Aug 2013 21:25:24 UTC</pubDate>
      <guid>https://snipplr.com/view/72137/display-the-download-percentage-of-a-file</guid>
    </item>
    <item>
      <title>(PHP) Download File with a Speed Limit in PHP - apphp-snippets</title>
      <link>https://snipplr.com/view/70084/download-file-with-a-speed-limit-in-php</link>
      <description>&lt;p&gt;This snippet allows you set a limitation for download rate of the file that visitors download from your site.&lt;/p&gt;</description>
      <pubDate>Mon, 25 Feb 2013 18:41:51 UTC</pubDate>
      <guid>https://snipplr.com/view/70084/download-file-with-a-speed-limit-in-php</guid>
    </item>
    <item>
      <title>(PHP) Download and save images from a page using cURL - goo</title>
      <link>https://snipplr.com/view/69459/download-and-save-images-from-a-page-using-curl</link>
      <description>&lt;p&gt;Here is a set of functions that can be very useful: Give this script the url of a webpage, and it will save all images from this page on your server.&lt;/p&gt;</description>
      <pubDate>Mon, 14 Jan 2013 22:08:29 UTC</pubDate>
      <guid>https://snipplr.com/view/69459/download-and-save-images-from-a-page-using-curl</guid>
    </item>
    <item>
      <title>(PHP) A function that forces a file to download. - o0110o</title>
      <link>https://snipplr.com/view/67838/a-function-that-forces-a-file-to-download</link>
      <description>&lt;p&gt;This function will force a file to be downloaded. It accepts $_path as a parameter.&lt;/p&gt;</description>
      <pubDate>Sat, 20 Oct 2012 10:51:14 UTC</pubDate>
      <guid>https://snipplr.com/view/67838/a-function-that-forces-a-file-to-download</guid>
    </item>
    <item>
      <title>(Python) tubeNick - Download youtube videos - pantuts</title>
      <link>https://snipplr.com/view/67788/tubenick--download-youtube-videos</link>
      <description>&lt;p&gt;Tool to download youtube videos with STDIN (PIPE) support for playlist parsers like umph or youParse&#13;
&#13;
(PYTHON3+)&lt;/p&gt;</description>
      <pubDate>Thu, 18 Oct 2012 05:47:15 UTC</pubDate>
      <guid>https://snipplr.com/view/67788/tubenick--download-youtube-videos</guid>
    </item>
    <item>
      <title>(Python) Avoid downloading pages which exceed a certain size - scrapy</title>
      <link>https://snipplr.com/view/66993/avoid-downloading-pages-which-exceed-a-certain-size</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 01 Sep 2012 07:15:14 UTC</pubDate>
      <guid>https://snipplr.com/view/66993/avoid-downloading-pages-which-exceed-a-certain-size</guid>
    </item>
    <item>
      <title>(PHP) CSV handler class - TimoZachi</title>
      <link>https://snipplr.com/view/66824/csv-handler-class</link>
      <description>&lt;p&gt;Class that convert arrays to csv format, downloads CSV files and saves to disk on server.&lt;/p&gt;</description>
      <pubDate>Tue, 21 Aug 2012 04:53:02 UTC</pubDate>
      <guid>https://snipplr.com/view/66824/csv-handler-class</guid>
    </item>
    <item>
      <title>(PHP) Youtube Video Download Script - codespartan</title>
      <link>https://snipplr.com/view/65681/youtube-video-download-script</link>
      <description>&lt;p&gt;Extracts the video title &amp; download URL from a youtube page and starts a download.&lt;/p&gt;</description>
      <pubDate>Mon, 18 Jun 2012 00:43:40 UTC</pubDate>
      <guid>https://snipplr.com/view/65681/youtube-video-download-script</guid>
    </item>
    <item>
      <title>(Fortran) PSN Card Codes Totally Free - kylejed2001</title>
      <link>https://snipplr.com/view/64414/psn-card-codes-totally-free</link>
      <description>&lt;p&gt;Must set quite a few funkiest looking suff on Playstation Cell tower network? PSN Card stoock Computer codes is get a lean body demand. In case your searching PSN Visa card Requirements that may be no stay with me the. Within a fast quite a few step ladders you may get Easy PSN Charge card Regulations We've each of noticeable then observed that the most important PSN Cardboard Computer codes are increasingly being endorsed hosted which experts claim quite a few weblog acquiring that they offer training PSN Account Requirements, But nevertheless it's unfortunate countless get dishonest.&lt;/p&gt;</description>
      <pubDate>Sun, 08 Apr 2012 00:17:38 UTC</pubDate>
      <guid>https://snipplr.com/view/64414/psn-card-codes-totally-free</guid>
    </item>
    <item>
      <title>(Bash) Download Directory with scp - zackn9ne</title>
      <link>https://snipplr.com/view/64362/download-directory-with-scp</link>
      <description>&lt;p&gt;download directory to localhost home folder new-dir-name&lt;/p&gt;</description>
      <pubDate>Thu, 05 Apr 2012 09:25:35 UTC</pubDate>
      <guid>https://snipplr.com/view/64362/download-directory-with-scp</guid>
    </item>
    <item>
      <title>(PHP) AlivePDF download and save to server - vamapaull</title>
      <link>https://snipplr.com/view/63604/alivepdf-download-and-save-to-server</link>
      <description>&lt;p&gt;This PHP code is made to help people using the ActionScript 3 AlivePDF library to save PDF files from a Flash app to a server.&#13;
&#13;
ActionScript 3 AlivePDF save code:&#13;
_pdf.save(Method.REMOTE, "save.php", Download.ATTACHMENT, "MyFile.pdf");&lt;/p&gt;</description>
      <pubDate>Mon, 27 Feb 2012 22:34:11 UTC</pubDate>
      <guid>https://snipplr.com/view/63604/alivepdf-download-and-save-to-server</guid>
    </item>
    <item>
      <title>(PHP) Force downloadable - rickygri</title>
      <link>https://snipplr.com/view/63519/force-downloadable</link>
      <description>&lt;p&gt;Force downloadable file with php&lt;/p&gt;</description>
      <pubDate>Thu, 23 Feb 2012 03:19:06 UTC</pubDate>
      <guid>https://snipplr.com/view/63519/force-downloadable</guid>
    </item>
    <item>
      <title>(PHP) File Download (with file_put_contents) - kairy2k9</title>
      <link>https://snipplr.com/view/60926/file-download-with-fileputcontents</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 17 Nov 2011 20:27:28 UTC</pubDate>
      <guid>https://snipplr.com/view/60926/file-download-with-fileputcontents</guid>
    </item>
    <item>
      <title>(C#) Download text or bytes via HTTP - dkirkland</title>
      <link>https://snipplr.com/view/60553/download-text-or-bytes-via-http</link>
      <description>&lt;p&gt;Downloads contents as a byte array or string, depending on need.&lt;/p&gt;</description>
      <pubDate>Fri, 04 Nov 2011 20:40:55 UTC</pubDate>
      <guid>https://snipplr.com/view/60553/download-text-or-bytes-via-http</guid>
    </item>
    <item>
      <title>(Groovy) download files with groovy and wget - m3rol666</title>
      <link>https://snipplr.com/view/58306/download-files-with-groovy-and-wget</link>
      <description>&lt;p&gt;used this to download a bunch of wsdls. Put all addresses in a file and execute the script like&#13;
&#13;
groovy download.groovy file.txt&lt;/p&gt;</description>
      <pubDate>Tue, 30 Aug 2011 18:06:26 UTC</pubDate>
      <guid>https://snipplr.com/view/58306/download-files-with-groovy-and-wget</guid>
    </item>
    <item>
      <title>(Other) GA - Track Download of File - silentpro</title>
      <link>https://snipplr.com/view/58067/ga--track-download-of-file</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 21 Aug 2011 13:36:00 UTC</pubDate>
      <guid>https://snipplr.com/view/58067/ga--track-download-of-file</guid>
    </item>
    <item>
      <title>(Python) Batch Download Sequence data from NCBI using EUtils - itskkumaran</title>
      <link>https://snipplr.com/view/57580/batch-download-sequence-data-from-ncbi-using-eutils</link>
      <description>&lt;p&gt;Based on http://www.ncbi.nlm.nih.gov/books/NBK25498/#chapter3.Application_3_Retrieving_large&lt;/p&gt;</description>
      <pubDate>Wed, 03 Aug 2011 21:32:42 UTC</pubDate>
      <guid>https://snipplr.com/view/57580/batch-download-sequence-data-from-ncbi-using-eutils</guid>
    </item>
    <item>
      <title>(ASP) Kentico - Force download of PDF - inreflection7</title>
      <link>https://snipplr.com/view/54975/kentico--force-download-of-pdf</link>
      <description>&lt;p&gt;"This was a requirement that the client had because there were differences in how various browsers were displaying the same PDFs. By setting the "Content-Disposition" header to "attachment" it forces the user to download the file. I thought this was kind of cool, so I thought I'd share it. This is how I implemented it for Kentico's GetFile handler."&lt;/p&gt;</description>
      <pubDate>Wed, 08 Jun 2011 02:08:36 UTC</pubDate>
      <guid>https://snipplr.com/view/54975/kentico--force-download-of-pdf</guid>
    </item>
    <item>
      <title>(Apache) Force filetype download - manuelpedrera</title>
      <link>https://snipplr.com/view/54752/force-filetype-download</link>
      <description>&lt;p&gt;When offering some files such as mp3s, eps or xls, for download on your site, you may force download instead of letting the browser decide what to do.&#13;
This snippet will force the download of .xls and .eps files from your server.&lt;/p&gt;</description>
      <pubDate>Thu, 02 Jun 2011 05:58:16 UTC</pubDate>
      <guid>https://snipplr.com/view/54752/force-filetype-download</guid>
    </item>
    <item>
      <title>(PHP) php image download - zayyarphone</title>
      <link>https://snipplr.com/view/53510/php-image-download</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 13 May 2011 18:35:21 UTC</pubDate>
      <guid>https://snipplr.com/view/53510/php-image-download</guid>
    </item>
    <item>
      <title>(PHP) File download inforce script - kumar_sekhar</title>
      <link>https://snipplr.com/view/52060/file-download-inforce-script</link>
      <description>&lt;p&gt;simple pass the file name and that file will be available for download&lt;/p&gt;</description>
      <pubDate>Thu, 14 Apr 2011 15:24:33 UTC</pubDate>
      <guid>https://snipplr.com/view/52060/file-download-inforce-script</guid>
    </item>
    <item>
      <title>(Objective C) download file with UIProgressView - off</title>
      <link>https://snipplr.com/view/51164/download-file-with-uiprogressview</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 27 Mar 2011 04:07:06 UTC</pubDate>
      <guid>https://snipplr.com/view/51164/download-file-with-uiprogressview</guid>
    </item>
    <item>
      <title>(JavaScript) Slideshow with thumbnail gallery and zoom-effects - fabulant</title>
      <link>https://snipplr.com/view/50497/slideshow-with-thumbnail-gallery-and-zoomeffects</link>
      <description>&lt;p&gt;Free JavaScript slideshow with thumbnail gallery, zoom-in-effect, zoom-out-effect and transparency-effect (opacity). Add as many pictures as you like. Each picture can be linked and commented. The thumbnail gallery can be displayed or hidden. True copy-and-paste installation. Most of the design can be set with CSS (within the style-tags). Works with Internet Explorer 5x/6x/7x/8x/9x, Firefox 3x/4x, Opera 7x/8x/9x/10x/11x, Google Chrome 4x/5x/6x/7x/8x/9x.&lt;/p&gt;</description>
      <pubDate>Fri, 11 Mar 2011 03:07:59 UTC</pubDate>
      <guid>https://snipplr.com/view/50497/slideshow-with-thumbnail-gallery-and-zoomeffects</guid>
    </item>
    <item>
      <title>(PHP) [php] Force Download file - Mosaic</title>
      <link>https://snipplr.com/view/50474/php-force-download-file</link>
      <description>&lt;p&gt;Simple force download crossbrowser&lt;/p&gt;</description>
      <pubDate>Thu, 10 Mar 2011 21:08:17 UTC</pubDate>
      <guid>https://snipplr.com/view/50474/php-force-download-file</guid>
    </item>
    <item>
      <title>(C#) C# FTP Upload &amp; Download - kyrathaba</title>
      <link>https://snipplr.com/view/45306/c-ftp-upload--download</link>
      <description>&lt;p&gt;Not extensively tested, but seems to work in my sample project.&#13;
&#13;
uses the class I posted here:&#13;
http://www.snipplr.com/view/46669/minimist-c-errorlogging-class/&lt;/p&gt;</description>
      <pubDate>Sun, 05 Dec 2010 13:52:41 UTC</pubDate>
      <guid>https://snipplr.com/view/45306/c-ftp-upload--download</guid>
    </item>
    <item>
      <title>(PHP) ForÃ§ar download de arquivo com PHP - joaobarbosa</title>
      <link>https://snipplr.com/view/44700/forar-download-de-arquivo-com-php</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 23 Nov 2010 05:56:03 UTC</pubDate>
      <guid>https://snipplr.com/view/44700/forar-download-de-arquivo-com-php</guid>
    </item>
    <item>
      <title>(PHP) https+ieX+downloads - ashsa</title>
      <link>https://snipplr.com/view/44381/httpsiexdownloads</link>
      <description>&lt;p&gt;Donwloads weren't working with https + ie6/ie7. This line solves the problem (order is important, **no-store** must be first).&lt;/p&gt;</description>
      <pubDate>Fri, 19 Nov 2010 02:23:08 UTC</pubDate>
      <guid>https://snipplr.com/view/44381/httpsiexdownloads</guid>
    </item>
    <item>
      <title>(PHP) Download counter - eme_dlr</title>
      <link>https://snipplr.com/view/43524/download-counter</link>
      <description>&lt;p&gt;Counts the number of times that a file has been downloaded, using PHP and mySQL&lt;/p&gt;</description>
      <pubDate>Thu, 04 Nov 2010 05:37:53 UTC</pubDate>
      <guid>https://snipplr.com/view/43524/download-counter</guid>
    </item>
    <item>
      <title>(PHP) Get remote Image, resize and save it - rave</title>
      <link>https://snipplr.com/view/41165/get-remote-image-resize-and-save-it</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 30 Sep 2010 03:36:32 UTC</pubDate>
      <guid>https://snipplr.com/view/41165/get-remote-image-resize-and-save-it</guid>
    </item>
    <item>
      <title>(PHP) Download a file from an FTP server and save it in a local file. - BrunoDeBarros</title>
      <link>https://snipplr.com/view/38938/download-a-file-from-an-ftp-server-and-save-it-in-a-local-file</link>
      <description>&lt;p&gt;I wrote this code for when I need to get files from other servers and put them on my own server. I wanted to simplify it as much as possible.&lt;/p&gt;</description>
      <pubDate>Wed, 11 Aug 2010 23:13:01 UTC</pubDate>
      <guid>https://snipplr.com/view/38938/download-a-file-from-an-ftp-server-and-save-it-in-a-local-file</guid>
    </item>
    <item>
      <title>(Bash) bash [script] - download website using wget - kentoy</title>
      <link>https://snipplr.com/view/38764/bash-script--download-website-using-wget</link>
      <description>&lt;p&gt;&lt;ol&gt;&lt;li&gt;save as filename.sh&lt;/li&gt;&lt;li&gt;chmod u+x filename.sh&lt;/li&gt;&lt;li&gt;usage : ./filename.sh\"url\"&lt;/li&gt;&lt;/ol&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 09 Aug 2010 16:31:37 UTC</pubDate>
      <guid>https://snipplr.com/view/38764/bash-script--download-website-using-wget</guid>
    </item>
    <item>
      <title>(PHP) Force File Download - mfigge</title>
      <link>https://snipplr.com/view/38100/force-file-download</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 31 Jul 2010 02:16:04 UTC</pubDate>
      <guid>https://snipplr.com/view/38100/force-file-download</guid>
    </item>
    <item>
      <title>(PHP) Prompt user to open or save when delivering file data stored in database with PHP - bradless</title>
      <link>https://snipplr.com/view/30225/prompt-user-to-open-or-save-when-delivering-file-data-stored-in-database-with-php</link>
      <description>&lt;p&gt;This set of headers works for me when I output file data from the database for the user to save or open.&lt;/p&gt;</description>
      <pubDate>Wed, 24 Mar 2010 14:28:02 UTC</pubDate>
      <guid>https://snipplr.com/view/30225/prompt-user-to-open-or-save-when-delivering-file-data-stored-in-database-with-php</guid>
    </item>
    <item>
      <title>(Objective C) Assyncrhonous download - rabc</title>
      <link>https://snipplr.com/view/29787/assyncrhonous-download</link>
      <description>&lt;p&gt;It was based in Markjnet example here:&#13;
&gt;&gt; http://www.markj.net/iphone-asynchronous-table-image/&lt;/p&gt;</description>
      <pubDate>Mon, 15 Mar 2010 11:53:02 UTC</pubDate>
      <guid>https://snipplr.com/view/29787/assyncrhonous-download</guid>
    </item>
    <item>
      <title>(Apache) Forced download of a file with .htaccess - darylclaudio</title>
      <link>https://snipplr.com/view/26772/forced-download-of-a-file-with-htaccess</link>
      <description>&lt;p&gt;To force the user to download certain filetypes in the current directory.&lt;/p&gt;</description>
      <pubDate>Wed, 20 Jan 2010 16:03:48 UTC</pubDate>
      <guid>https://snipplr.com/view/26772/forced-download-of-a-file-with-htaccess</guid>
    </item>
    <item>
      <title>(JavaScript) Youtube Video Download Bookmark - arvinarvin</title>
      <link>https://snipplr.com/view/26582/youtube-video-download-bookmark</link>
      <description>&lt;p&gt;Get Youtube Video, add this as bookmark&lt;/p&gt;</description>
      <pubDate>Sat, 16 Jan 2010 22:44:07 UTC</pubDate>
      <guid>https://snipplr.com/view/26582/youtube-video-download-bookmark</guid>
    </item>
    <item>
      <title>(PHP) Download any file from a server. - Almorca</title>
      <link>https://snipplr.com/view/25911/download-any-file-from-a-server</link>
      <description>&lt;p&gt;Class has simple interface to download any file from a server without displaying the location of the file.&lt;/p&gt;</description>
      <pubDate>Mon, 04 Jan 2010 11:27:31 UTC</pubDate>
      <guid>https://snipplr.com/view/25911/download-any-file-from-a-server</guid>
    </item>
    <item>
      <title>(Bash) Downloading an Entire Web Site with wget - abhiomkar</title>
      <link>https://snipplr.com/view/23838/downloading-an-entire-web-site-with-wget</link>
      <description>&lt;p&gt;Source: Linux Journal&#13;
&#13;
This command downloads the Web site www.website.org/tutorials/html/.&#13;
&#13;
The options are:&#13;
&#13;
    *      --recursive: download the entire Web site.&#13;
    *      --domains website.org: don't follow links outside website.org.&#13;
    *      --no-parent: don't follow links outside the directory tutorials/html/.&#13;
    *      --page-requisites: get all the elements that compose the page (images, CSS and so on).&#13;
    *      --html-extension: save files with the .html extension.&#13;
    *      --convert-links: convert links so that they work locally, off-line.&#13;
    *      --restrict-file-names=windows: modify filenames so that they will work in Windows as well.&#13;
    *      --no-clobber: don't overwrite any existing files (used in case the download is interrupted and resumed).&lt;/p&gt;</description>
      <pubDate>Fri, 27 Nov 2009 12:24:00 UTC</pubDate>
      <guid>https://snipplr.com/view/23838/downloading-an-entire-web-site-with-wget</guid>
    </item>
    <item>
      <title>(PHP) PHP force file download instead opening in new tab/window - acosonic</title>
      <link>https://snipplr.com/view/22546/php-force-file-download-instead-opening-in-new-tabwindow</link>
      <description>&lt;p&gt;provide file via URL var, and script will grab it &amp; force download. Take a look at code, and add some of your filetypes if required&lt;/p&gt;</description>
      <pubDate>Thu, 05 Nov 2009 02:51:13 UTC</pubDate>
      <guid>https://snipplr.com/view/22546/php-force-file-download-instead-opening-in-new-tabwindow</guid>
    </item>
    <item>
      <title>(Apache) htaccess force file download - ReeceMarsland</title>
      <link>https://snipplr.com/view/22102/htaccess-force-file-download</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 29 Oct 2009 12:51:27 UTC</pubDate>
      <guid>https://snipplr.com/view/22102/htaccess-force-file-download</guid>
    </item>
    <item>
      <title>(PHP) Force File Download - paulgrenwood</title>
      <link>https://snipplr.com/view/20139/force-file-download</link>
      <description>&lt;p&gt;Provide files to the user by forcing them to download.&lt;/p&gt;</description>
      <pubDate>Wed, 23 Sep 2009 15:53:04 UTC</pubDate>
      <guid>https://snipplr.com/view/20139/force-file-download</guid>
    </item>
    <item>
      <title>(AppleScript) Add Download to Speed Download (Lite) - Wendelboe</title>
      <link>https://snipplr.com/view/19399/add-download-to-speed-download-lite</link>
      <description>&lt;p&gt;Ever needed to download a bunch of files, but annoyed by having to copy them all to Speed Download? This is for you..!&#13;
&#13;
http://rapidshare.com/files/131035061/file1.rar &#13;
http://rapidshare.com/files/131049211/file2.rar &#13;
http://rapidshare.com/files/131051138/file3.rar &#13;
&#13;
If this looks familiar, and you're ever bothered by copying the it, opening Speed Download, clicking "new download", pasting the chunk of text and clicking "add", this should make you happy.. At least I know it'll save me a lot of clicking and pressing..&#13;
&#13;
I suggest you create a service in Automator and add it to your browser or all apps...&#13;
&#13;
P.S. If you use the full version of Speed Download, please omit the "Lite" from "Speed Download Lite"..&lt;/p&gt;</description>
      <pubDate>Tue, 08 Sep 2009 17:36:10 UTC</pubDate>
      <guid>https://snipplr.com/view/19399/add-download-to-speed-download-lite</guid>
    </item>
    <item>
      <title>(VB.NET) Program Updater(vb2008) - brandonio21</title>
      <link>https://snipplr.com/view/19324/program-updatervb2008</link>
      <description>&lt;p&gt;Variable/Parameter Discussion : &#13;
msg = Do you want to display a message box if you have the current version? (true/false)&#13;
currentversion = The version of the program&#13;
txtdocumentaddress = The text document web address containing the most updated version&#13;
exeaddress = the location of the updater .exe  [You can make this with WINRAR - To learn how to do this goto : http://www.hotlinkfiles.com/files/2799514_xsw67/tut.txt&#13;
&#13;
&#13;
\This is my first snipplr post, Hope you enjoy/&#13;
    This coding is used in *Brandons Timer 9* and *Brandons HTML-Ide*&lt;/p&gt;</description>
      <pubDate>Sun, 06 Sep 2009 18:49:04 UTC</pubDate>
      <guid>https://snipplr.com/view/19324/program-updatervb2008</guid>
    </item>
    <item>
      <title>(PHP) Force download a file - hasantayyar</title>
      <link>https://snipplr.com/view/18469/force-download-a-file</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 18 Aug 2009 16:05:54 UTC</pubDate>
      <guid>https://snipplr.com/view/18469/force-download-a-file</guid>
    </item>
    <item>
      <title>(JavaScript) Simple JS Calendar - design2develop</title>
      <link>https://snipplr.com/view/16564/simple-js-calendar</link>
      <description>&lt;p&gt;Very easy to use JS Calendar Control with so many customization options.&lt;/p&gt;</description>
      <pubDate>Wed, 01 Jul 2009 15:08:44 UTC</pubDate>
      <guid>https://snipplr.com/view/16564/simple-js-calendar</guid>
    </item>
  </channel>
</rss>
