<?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>Tue, 09 Jun 2026 04:14:58 +0000</lastBuildDate>
    <item>
      <title>(ASP) How to send SMS using ASP.NET through HTTP - Gupta86</title>
      <link>https://snipplr.com/view/89414/how-to-send-sms-using-aspnet-through-http</link>
      <description>&lt;p&gt;Hello Guys,&#13;
&#13;
This short ASP.NET code snippet is intended to provide you a brief review on how to add SMS functionality to your website. You will see, this is a very simple but smart solution. This ASP.NET application is able to send messages by using HTTP requests towards the SMS gateway that sends the SMSs to the destination telephone via a GSM modem or an IP SMS connection.&#13;
&#13;
Letâ€™s take a quick look at the software requirements that are essentially needed for tjis solution. In order to send SMS messages from your ASP.NET application, you need a development platform, e.b Visual Studio, of course, .NET Framework 4.0, Internet Information Services (IIS) and an SMS gateway (I used Ozeki NG â€“ http://www.ozekisms.com). You also need a GSM modem attached to your PC or an IP SMS connection to be able to send messages.&#13;
&#13;
Okay ans now letâ€™s use the code snippet! Copy the content of smssend.aspx and smssend.aspx.cs into the main directory of the IIS server - C:\Inetpub\wwwroot\ directory (). Configure the fixed data in the smssend.aspx.cs file (the IP address and port number of the SMS gateway, username, password). Launch your SMS gateway Server. Start a web browser and enter this URL: http://127.0.0.1/smssend.aspx - where 127.0.0.1 means that the smssend.aspx and smssend.aspx.cs files can be found on the same computer on which the browser has been opened). Fill in the required fields, and then click the Send button. Itâ€™s as easy as that!&#13;
&#13;
Happy coding! :)&lt;/p&gt;</description>
      <pubDate>Wed, 04 Feb 2015 21:59:08 UTC</pubDate>
      <guid>https://snipplr.com/view/89414/how-to-send-sms-using-aspnet-through-http</guid>
    </item>
    <item>
      <title>(C++) C++ SMS source code on how to send SMS text messages using HTTP - Gupta86</title>
      <link>https://snipplr.com/view/87330/c-sms-source-code-on-how-to-send-sms-text-messages-using-http</link>
      <description>&lt;p&gt;Hey Guys,&#13;
&#13;
This is a short and straightforward article (or letâ€™s say â€žtipâ€ or â€žmini-reviewâ€) that presents how to send SMS messages from your own C++ (Cpp / C plus plus) application through HTTP. You will see, it is gonna be really easy. I will focus on the necessary code, but I would like to draw your attention to all the hardware and software requirements that are essentially needed for SMS messaging.&#13;
&#13;
Briefly about SMS technology for better understanding&#13;
&#13;
If you are proficient in SMS technology, just skip this paragraph and move on to the next one. So well, if you want to send SMS messages from your C++ application, first you need to connect your software and an SMS gateway to each other. Why? Because your application let you compose the SMS messages (including the text, the recipientâ€™s phone number, etc.), but if you want to send out the SMS, you need to connect to the SMSC (Short Message Service Center that stores, forwards, converts and delivers SMS messages). An SMS gateway is able to connect to the SMSC of the Mobile Service Provider via SMPP IP SMS connection or a GSM modem, so actually the SMS gateway can send out your message. To establish connection between the SMS gateway and the C++ application, I used HTTP requests and responses. For sending SMS messages through HTTP, your SMS gateway should have a built-in webserver (e.g. Ozeki NG â€“ www.ozekisms.com). The built-in webserver allows you to send SMS messages from your C++ application by calling an URL (HTTP Get) or using the HTTP Post method.&#13;
&#13;
So that, all you need to have for sending SMS from your C++ application using HTTP is Microsoft Visual Studio for C++ development, an SMS gateway and my code snippet!&#13;
&#13;
Okay and finally a few lines about testing. To test your software by sending out SMS message(s) actually, you need to install a GSM modem connection or an IP SMS connection. Buti f you have not contracted with any mobile service provider (e.g. AT&amp;T or T-Mobile), you can test the SMS sending by simulating it (e.g.  Ozeki NG provides â€žHTTP Server Connectionâ€ that can be used for this purpose). For more details related to the configuration of the SMS gateway, please contact the vendor of your SMS gateway.&#13;
&#13;
Happy coding! :)&lt;/p&gt;</description>
      <pubDate>Sat, 17 Jan 2015 00:55:41 UTC</pubDate>
      <guid>https://snipplr.com/view/87330/c-sms-source-code-on-how-to-send-sms-text-messages-using-http</guid>
    </item>
    <item>
      <title>(JavaScript) XHR GET Request W/ Callback - geneticcode</title>
      <link>https://snipplr.com/view/79991/xhr-get-request-w-callback</link>
      <description>&lt;p&gt;Make a simple XHR Request:&#13;
&#13;
get(url, function(resp)(){ window.alert(resp); });&#13;
&#13;
Source is minified.&lt;/p&gt;</description>
      <pubDate>Sun, 19 Oct 2014 06:32:06 UTC</pubDate>
      <guid>https://snipplr.com/view/79991/xhr-get-request-w-callback</guid>
    </item>
    <item>
      <title>(C++) My-Classes.com: Combining ZeroMQ and NanoMsg for Serving Web-requests - my-classes</title>
      <link>https://snipplr.com/view/74336/myclassescom-combining-zeromq-and-nanomsg-for-serving-webrequests</link>
      <description>&lt;p&gt;A pretty simple example, that always replies 'Hello World!!' to the browser. The raw ROUTER socket is listening on tcp port 8080, so any browser that sends a request on port 8080 of localhost, will get back the response. The internal NanoMsg communication is happening on inproc channel. A dedicated thread is created for the NanoMsg worker socket (REP) that serves the responses. You can experiment with creating multiple nanoMsg worker threads and stress testing it.&lt;/p&gt;</description>
      <pubDate>Sat, 26 Apr 2014 17:14:48 UTC</pubDate>
      <guid>https://snipplr.com/view/74336/myclassescom-combining-zeromq-and-nanomsg-for-serving-webrequests</guid>
    </item>
    <item>
      <title>(PHP) PHP - Log request data - dmertl</title>
      <link>https://snipplr.com/view/73170/php--log-request-data</link>
      <description>&lt;p&gt;Write request data to a log file&lt;/p&gt;</description>
      <pubDate>Wed, 18 Dec 2013 12:18:49 UTC</pubDate>
      <guid>https://snipplr.com/view/73170/php--log-request-data</guid>
    </item>
    <item>
      <title>(Java) Simple java http server, from java - alexedy</title>
      <link>https://snipplr.com/view/71346/simple-java-http-server-from-java</link>
      <description>&lt;p&gt;A simple http server,  from java JDK.&lt;/p&gt;</description>
      <pubDate>Fri, 31 May 2013 01:23:43 UTC</pubDate>
      <guid>https://snipplr.com/view/71346/simple-java-http-server-from-java</guid>
    </item>
    <item>
      <title>(PHP) HTTP Redirection in PHP - apphp-snippets</title>
      <link>https://snipplr.com/view/69924/http-redirection-in-php</link>
      <description>&lt;p&gt;Allows to perform PHP redirection (must be placed before any browser output).&lt;/p&gt;</description>
      <pubDate>Wed, 13 Feb 2013 20:09:41 UTC</pubDate>
      <guid>https://snipplr.com/view/69924/http-redirection-in-php</guid>
    </item>
    <item>
      <title>(Regular Expression) Regular Expression for Matching URLs with or without http(s) - brandonjp</title>
      <link>https://snipplr.com/view/68530/regular-expression-for-matching-urls-with-or-without-https</link>
      <description>&lt;p&gt;thanks to... &#13;
http://gskinner.com/RegExr/&#13;
http://daringfireball.net/2010/07/improved_regex_for_matching_urls&lt;/p&gt;</description>
      <pubDate>Tue, 13 Nov 2012 07:34:18 UTC</pubDate>
      <guid>https://snipplr.com/view/68530/regular-expression-for-matching-urls-with-or-without-https</guid>
    </item>
    <item>
      <title>(PHP) No Cache HTTP Headers - ryantxr</title>
      <link>https://snipplr.com/view/65544/no-cache-http-headers</link>
      <description>&lt;p&gt;HTTP headers to disable caching.&lt;/p&gt;</description>
      <pubDate>Mon, 11 Jun 2012 22:38:26 UTC</pubDate>
      <guid>https://snipplr.com/view/65544/no-cache-http-headers</guid>
    </item>
    <item>
      <title>(PHP) Check if HTTPS is on in PHP - kf0l</title>
      <link>https://snipplr.com/view/62699/check-if-https-is-on-in-php</link>
      <description>&lt;p&gt;This 'Check if HTTPS is on in PHP'  script accounts for servers which set HTTPS differently. Some servers do not set HTTPS, others set it to 'off', etc. Only checking if HTTPS is on will cause an 'undefined index error' in these cases.&lt;/p&gt;</description>
      <pubDate>Sun, 22 Jan 2012 10:05:55 UTC</pubDate>
      <guid>https://snipplr.com/view/62699/check-if-https-is-on-in-php</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>(Apache) .htaccess add/remove www to domain redirect - macodev</title>
      <link>https://snipplr.com/view/59367/htaccess-addremove-www-to-domain-redirect</link>
      <description>&lt;p&gt;Rrewrite "www.domain.com -&gt; domain.com" and viceversa&lt;/p&gt;</description>
      <pubDate>Tue, 04 Oct 2011 02:57:36 UTC</pubDate>
      <guid>https://snipplr.com/view/59367/htaccess-addremove-www-to-domain-redirect</guid>
    </item>
    <item>
      <title>(XML) Starbucks Internal Systems - s3xym4n</title>
      <link>https://snipplr.com/view/57890/starbucks-internal-systems</link>
      <description>&lt;p&gt;It seems that Starbucks allows it's internal systems to share the same network as their free WiFi...&lt;/p&gt;</description>
      <pubDate>Wed, 17 Aug 2011 07:05:55 UTC</pubDate>
      <guid>https://snipplr.com/view/57890/starbucks-internal-systems</guid>
    </item>
    <item>
      <title>(C) HTTP POST from Arduino (WiFly Library) - parkerkrhoyt</title>
      <link>https://snipplr.com/view/57138/http-post-from-arduino-wifly-library</link>
      <description>&lt;p&gt;This snippet will send an HTTP POST from an Arduino using the WiFly library.  The library is in early alpha, and is a port from the ethernet shield library.  The code here should work with either.  The critical part is the size of the data to send, and the line-breaks in the right places.&lt;/p&gt;</description>
      <pubDate>Tue, 26 Jul 2011 06:16:44 UTC</pubDate>
      <guid>https://snipplr.com/view/57138/http-post-from-arduino-wifly-library</guid>
    </item>
    <item>
      <title>(Python) Simple Python HTTP Server - Affix</title>
      <link>https://snipplr.com/view/55175/simple-python-http-server</link>
      <description>&lt;p&gt;A very simple HTTP Server written in Python out of boredom.&#13;
&#13;
USAGE :&#13;
   1 . Create a htdocs folder in the directory of this script &#13;
   2 . create an index.html file and you are good to go. &#13;
&#13;
This works with multiple pages however index.html is the default&lt;/p&gt;</description>
      <pubDate>Sun, 12 Jun 2011 11:05:19 UTC</pubDate>
      <guid>https://snipplr.com/view/55175/simple-python-http-server</guid>
    </item>
    <item>
      <title>(PHP) Basic cURL wrapper function for PHP - akshay_raje</title>
      <link>https://snipplr.com/view/51161/basic-curl-wrapper-function-for-php</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 27 Mar 2011 02:54:28 UTC</pubDate>
      <guid>https://snipplr.com/view/51161/basic-curl-wrapper-function-for-php</guid>
    </item>
    <item>
      <title>(PHP) Check url for http - vonlof</title>
      <link>https://snipplr.com/view/50894/check-url-for-http</link>
      <description>&lt;p&gt;takes a url and appends http to it if http is not present&lt;/p&gt;</description>
      <pubDate>Mon, 21 Mar 2011 03:50:56 UTC</pubDate>
      <guid>https://snipplr.com/view/50894/check-url-for-http</guid>
    </item>
    <item>
      <title>(PHP) get all POST of GET http arguments - Mazzaroth</title>
      <link>https://snipplr.com/view/49232/get-all-post-of-get-http-arguments</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 19 Feb 2011 03:36:03 UTC</pubDate>
      <guid>https://snipplr.com/view/49232/get-all-post-of-get-http-arguments</guid>
    </item>
    <item>
      <title>(PHP) Disable browser cache - mfigge</title>
      <link>https://snipplr.com/view/49196/disable-browser-cache</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 18 Feb 2011 13:29:06 UTC</pubDate>
      <guid>https://snipplr.com/view/49196/disable-browser-cache</guid>
    </item>
    <item>
      <title>(PHP) HTTP request class for easy POST/GET manipulation - jschilling</title>
      <link>https://snipplr.com/view/46818/http-request-class-for-easy-postget-manipulation</link>
      <description>&lt;p&gt;Feel free to use this class however you'd like&lt;/p&gt;</description>
      <pubDate>Sun, 09 Jan 2011 15:31:23 UTC</pubDate>
      <guid>https://snipplr.com/view/46818/http-request-class-for-easy-postget-manipulation</guid>
    </item>
    <item>
      <title>(HTML) Proper way of loading jQuery from Google\'s CDN with fallback to local lib if necessary - hced</title>
      <link>https://snipplr.com/view/45859/proper-way-of-loading-jquery-from-googles-cdn-with-fallback-to-local-lib-if-necessary</link>
      <description>&lt;p&gt;Proper way of loading libs such as jQuery from Google's CDN. Place these JavaScripts at the bottom for fast page loading. To target different versions, you can be more specific if you want; eg. /1.4/ or even /1.4.4/.&#13;
&#13;
(NOTE: you may either use http:// or https:// depending on your needs. Both will work.)&lt;/p&gt;</description>
      <pubDate>Fri, 17 Dec 2010 05:28:35 UTC</pubDate>
      <guid>https://snipplr.com/view/45859/proper-way-of-loading-jquery-from-googles-cdn-with-fallback-to-local-lib-if-necessary</guid>
    </item>
    <item>
      <title>(JavaScript) New Http Object - ddavidd</title>
      <link>https://snipplr.com/view/41701/new-http-object</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 07 Oct 2010 03:48:51 UTC</pubDate>
      <guid>https://snipplr.com/view/41701/new-http-object</guid>
    </item>
    <item>
      <title>(Java) Http-Client GET - cha0s</title>
      <link>https://snipplr.com/view/41660/httpclient-get</link>
      <description>&lt;p&gt;Required libraries: http://hc.apache.org/downloads.cgi&lt;/p&gt;</description>
      <pubDate>Wed, 06 Oct 2010 20:55:05 UTC</pubDate>
      <guid>https://snipplr.com/view/41660/httpclient-get</guid>
    </item>
    <item>
      <title>(PHP) Check if request is AJAX request - joshuascott94</title>
      <link>https://snipplr.com/view/39644/check-if-request-is-ajax-request</link>
      <description>&lt;p&gt;Quick and easy way to determine if the HTTP request is an AJAX call or a standard call.  Supports the notion of Unobtrusive JavaScript.&lt;/p&gt;</description>
      <pubDate>Sat, 28 Aug 2010 15:38:56 UTC</pubDate>
      <guid>https://snipplr.com/view/39644/check-if-request-is-ajax-request</guid>
    </item>
    <item>
      <title>(HTML) Meta Tag - Auto Refresh in html doc page header to preview in IE FF all browsers while working coding - brandonjp</title>
      <link>https://snipplr.com/view/39331/meta-tag--auto-refresh-in-html-doc-page-header-to-preview-in-ie-ff-all-browsers-while-working-coding</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 20 Aug 2010 01:01:43 UTC</pubDate>
      <guid>https://snipplr.com/view/39331/meta-tag--auto-refresh-in-html-doc-page-header-to-preview-in-ie-ff-all-browsers-while-working-coding</guid>
    </item>
    <item>
      <title>(Ruby) Force Mechanize to return HTTP Success when condition is met in Ruby - viatropos</title>
      <link>https://snipplr.com/view/39118/force-mechanize-to-return-http-success-when-condition-is-met-in-ruby</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 16 Aug 2010 14:40:02 UTC</pubDate>
      <guid>https://snipplr.com/view/39118/force-mechanize-to-return-http-success-when-condition-is-met-in-ruby</guid>
    </item>
    <item>
      <title>(PHP) Detect most mobile HTTP clients - 3k-</title>
      <link>https://snipplr.com/view/39066/detect-most-mobile-http-clients</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 14 Aug 2010 04:55:47 UTC</pubDate>
      <guid>https://snipplr.com/view/39066/detect-most-mobile-http-clients</guid>
    </item>
    <item>
      <title>(Bash) How to Install Node.js on a Mac - viatropos</title>
      <link>https://snipplr.com/view/38902/how-to-install-nodejs-on-a-mac</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 11 Aug 2010 06:39:37 UTC</pubDate>
      <guid>https://snipplr.com/view/38902/how-to-install-nodejs-on-a-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>(HTML) HTML meta refresh redirect page - meta http-equiv cache control pragma refresh - brandonjp</title>
      <link>https://snipplr.com/view/37971/html-meta-refresh-redirect-page--meta-httpequiv-cache-control-pragma-refresh</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 28 Jul 2010 05:45:46 UTC</pubDate>
      <guid>https://snipplr.com/view/37971/html-meta-refresh-redirect-page--meta-httpequiv-cache-control-pragma-refresh</guid>
    </item>
    <item>
      <title>(jQuery) js javascript browser language detection, get the user\'s browser\'s language preference setting using jquery to detect users br - brandonjp</title>
      <link>https://snipplr.com/view/37953/js-javascript-browser-language-detection-get-the-users-browsers-language-preference-setting-using-jquery-to-detect-users-br</link>
      <description>&lt;p&gt;JQ - detect users browser language using http headers via ajax jsonp ajaxhttpheaders&lt;/p&gt;</description>
      <pubDate>Tue, 27 Jul 2010 23:45:11 UTC</pubDate>
      <guid>https://snipplr.com/view/37953/js-javascript-browser-language-detection-get-the-users-browsers-language-preference-setting-using-jquery-to-detect-users-br</guid>
    </item>
    <item>
      <title>(Bash) Time To First Byte using curl - batamire</title>
      <link>https://snipplr.com/view/35591/time-to-first-byte-using-curl</link>
      <description>&lt;p&gt;As seen on PinoyTux Website&lt;/p&gt;</description>
      <pubDate>Tue, 08 Jun 2010 04:30:47 UTC</pubDate>
      <guid>https://snipplr.com/view/35591/time-to-first-byte-using-curl</guid>
    </item>
    <item>
      <title>(Java) Download file via http using Java - anata</title>
      <link>https://snipplr.com/view/33805/download-file-via-http-using-java</link>
      <description>&lt;p&gt;This thread downloads file via url.&lt;/p&gt;</description>
      <pubDate>Tue, 04 May 2010 03:32:30 UTC</pubDate>
      <guid>https://snipplr.com/view/33805/download-file-via-http-using-java</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>(Bash) show all http requests being made - adkatrit</title>
      <link>https://snipplr.com/view/28703/show-all-http-requests-being-made</link>
      <description>&lt;p&gt;make sure the en1 value is the interface you are using&lt;/p&gt;</description>
      <pubDate>Sun, 21 Feb 2010 17:16:21 UTC</pubDate>
      <guid>https://snipplr.com/view/28703/show-all-http-requests-being-made</guid>
    </item>
    <item>
      <title>(Groovy) Starting an in memory http server with custom routes - narkisr</title>
      <link>https://snipplr.com/view/25717/starting-an-in-memory-http-server-with-custom-routes</link>
      <description>&lt;p&gt;This is excellent for testing (mocking a SOAP server for example), we use an in memory http server in order to answer client requests.&lt;/p&gt;</description>
      <pubDate>Wed, 30 Dec 2009 09:43:02 UTC</pubDate>
      <guid>https://snipplr.com/view/25717/starting-an-in-memory-http-server-with-custom-routes</guid>
    </item>
    <item>
      <title>(Ruby) http sniffing Ruby - narkisr</title>
      <link>https://snipplr.com/view/25641/http-sniffing-ruby</link>
      <description>&lt;p&gt;Sniffing http request &amp; response using pcap in Ruby.&lt;/p&gt;</description>
      <pubDate>Tue, 29 Dec 2009 06:26:13 UTC</pubDate>
      <guid>https://snipplr.com/view/25641/http-sniffing-ruby</guid>
    </item>
    <item>
      <title>(PHP) PHP HTTP POST images &amp; files - benjaminpearson</title>
      <link>https://snipplr.com/view/23428/php-http-post-images--files</link>
      <description>&lt;p&gt;The following are instructions to "re-post" files that have been already been POSTed to your php script. This can help if you want to have a form (with file upload) that POSTs its data to your own script where the text elements can be handled and then the script POSTs the file for processing/storage on another system.&#13;
&#13;
Basically the key is that you only POST the `$_FILES['tmp_name']` with an "@" symbol prepended.&#13;
&#13;
Spent a good hour trying to figure this out. Thanks to gordon who posted on 08-Sep-2004 10:08 at http://theserverpages.com/php/manual/en/ref.curl.php&lt;/p&gt;</description>
      <pubDate>Thu, 19 Nov 2009 19:46:42 UTC</pubDate>
      <guid>https://snipplr.com/view/23428/php-http-post-images--files</guid>
    </item>
    <item>
      <title>(PHP) Prepend http to a URL - paulgrenwood</title>
      <link>https://snipplr.com/view/20147/prepend-http-to-a-url</link>
      <description>&lt;p&gt;Some times you need to accept some url as input but users seldom add http:// to it, this code will add http:// to the URL if itâ€™s not there.&lt;/p&gt;</description>
      <pubDate>Wed, 23 Sep 2009 15:57:32 UTC</pubDate>
      <guid>https://snipplr.com/view/20147/prepend-http-to-a-url</guid>
    </item>
    <item>
      <title>(Python) simple httpserver - manatlan</title>
      <link>https://snipplr.com/view/19476/simple-httpserver</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 10 Sep 2009 03:15:11 UTC</pubDate>
      <guid>https://snipplr.com/view/19476/simple-httpserver</guid>
    </item>
    <item>
      <title>(C#) URL Shortening Service Contract w/ Bitly Implementation - CVertex</title>
      <link>https://snipplr.com/view/18294/url-shortening-service-contract-w-bitly-implementation</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 14 Aug 2009 02:07:56 UTC</pubDate>
      <guid>https://snipplr.com/view/18294/url-shortening-service-contract-w-bitly-implementation</guid>
    </item>
    <item>
      <title>(Bash) HTTP Proxy Checker - sensimevanidus</title>
      <link>https://snipplr.com/view/17899/http-proxy-checker</link>
      <description>&lt;p&gt;This script tries to detect whether an HTTP Proxy works or not. It uses the HEAD command (high-level version of the lwp-request command) to connect to a given URL (http://www.google.com by default) via the given HTTP Proxy.&#13;
It takes 2 arguments; the first one is the IP Address or URL of the HTTP Proxy and the second one is its port number.&#13;
If you have a simpler or faster method, please let me know.&lt;/p&gt;</description>
      <pubDate>Tue, 04 Aug 2009 17:40:23 UTC</pubDate>
      <guid>https://snipplr.com/view/17899/http-proxy-checker</guid>
    </item>
    <item>
      <title>(PHP) parse http response - touv</title>
      <link>https://snipplr.com/view/17242/parse-http-response</link>
      <description>&lt;p&gt;Split a string containing HTTP response into  a array with HTTP headers and a string with HTTP content&lt;/p&gt;</description>
      <pubDate>Tue, 21 Jul 2009 03:44:04 UTC</pubDate>
      <guid>https://snipplr.com/view/17242/parse-http-response</guid>
    </item>
    <item>
      <title>(PHP) Standardize URL String - iloveitaly</title>
      <link>https://snipplr.com/view/15554/standardize-url-string</link>
      <description>&lt;p&gt;this function processes a URL that 'should' be a full url (i.e. http://something.com/dfsdfs/)&#13;
and makes sure it contains http:// for easy inclusion as a link into a href attribute&lt;/p&gt;</description>
      <pubDate>Fri, 05 Jun 2009 07:51:49 UTC</pubDate>
      <guid>https://snipplr.com/view/15554/standardize-url-string</guid>
    </item>
    <item>
      <title>(Python) python: handler for http post - atr000</title>
      <link>https://snipplr.com/view/15417/python-handler-for-http-post</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 31 May 2009 05:03:06 UTC</pubDate>
      <guid>https://snipplr.com/view/15417/python-handler-for-http-post</guid>
    </item>
    <item>
      <title>(Python) python: urllib2 http post - atr000</title>
      <link>https://snipplr.com/view/15259/python-urllib2-http-post</link>
      <description>&lt;p&gt;I see almost all GET, so this is handy to have around&lt;/p&gt;</description>
      <pubDate>Sat, 23 May 2009 15:26:56 UTC</pubDate>
      <guid>https://snipplr.com/view/15259/python-urllib2-http-post</guid>
    </item>
    <item>
      <title>(PHP) Add http header to force IE8 to render in IE7 mode (PHP-Version) - tobaco</title>
      <link>https://snipplr.com/view/13271/add-http-header-to-force-ie8-to-render-in-ie7-mode-phpversion</link>
      <description>&lt;p&gt;include this snippet in your sites to force InternetExplorer 8 to display your site like InternetExplorer 7&#13;
&#13;
In summary, IE7 compatibility support looks as follows:&#13;
&#13;
IE=7&#13;
&#13;
Display in IE7 Standards mode; Already supported in the IE8 Beta 1 release&#13;
&#13;
IE=EmulateIE7&#13;
&#13;
Display standards DOCTYPEs in IE7 Standards mode; Display quirks DOCTYPEs in Quirks mode; Available through the IE June Security Update for IE8 Beta 1&lt;/p&gt;</description>
      <pubDate>Thu, 19 Mar 2009 05:45:27 UTC</pubDate>
      <guid>https://snipplr.com/view/13271/add-http-header-to-force-ie8-to-render-in-ie7-mode-phpversion</guid>
    </item>
    <item>
      <title>(Java) Read a web page with Java - gdvickery</title>
      <link>https://snipplr.com/view/13033/read-a-web-page-with-java</link>
      <description>&lt;p&gt;Connects to a web page, reads in the content and strips whitespace.&lt;/p&gt;</description>
      <pubDate>Thu, 12 Mar 2009 11:16:40 UTC</pubDate>
      <guid>https://snipplr.com/view/13033/read-a-web-page-with-java</guid>
    </item>
    <item>
      <title>(PHP) Detect Browser Language - ping_ch</title>
      <link>https://snipplr.com/view/12631/detect-browser-language</link>
      <description>&lt;p&gt;Just provide $availableLanguages as an array('en', 'de', 'es')&lt;/p&gt;</description>
      <pubDate>Fri, 27 Feb 2009 04:50:26 UTC</pubDate>
      <guid>https://snipplr.com/view/12631/detect-browser-language</guid>
    </item>
    <item>
      <title>(JavaScript) get http object - jlvallelonga</title>
      <link>https://snipplr.com/view/12298/get-http-object</link>
      <description>&lt;p&gt;this funciton returns an XMLHttpRequest object for use in ajax pages&lt;/p&gt;</description>
      <pubDate>Tue, 17 Feb 2009 12:19:21 UTC</pubDate>
      <guid>https://snipplr.com/view/12298/get-http-object</guid>
    </item>
  </channel>
</rss>
