<?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 13:36:46 +0000</lastBuildDate>
    <item>
      <title>(Regular Expression) GetIP &amp; GetIPPort Regex - dbiesecke</title>
      <link>https://snipplr.com/view/147201/getip--getipport-regex</link>
      <description>&lt;p&gt;* Usefull as shell command and everyting else&#13;
`get-ip='egrep -o "[0-9]{1,4}\.[0-9]{1,4}\.[0-9]{1,4}\.[0-9]{1,4}"'`&#13;
`get-ipport='egrep -o "[0-9]{1,4}\.[0-9]{1,4}\.[0-9]{1,4}\.[0-9]{1,4}[0-9 :]+" | sed -e "s/ //g"'`&lt;/p&gt;</description>
      <pubDate>Tue, 28 Jun 2016 05:59:31 UTC</pubDate>
      <guid>https://snipplr.com/view/147201/getip--getipport-regex</guid>
    </item>
    <item>
      <title>(VB.NET) Credit Card Fraud Prevention Using VB.NET - Hexahow</title>
      <link>https://snipplr.com/view/146638/credit-card-fraud-prevention-using-vbnet</link>
      <description>&lt;p&gt;Checking customer's IP address if is match with billing address is one of the simple steps in order to prevent fraud. If you are looking for sample codes to validate that the transaction is being requested by the real cardholder, see below.&lt;/p&gt;</description>
      <pubDate>Wed, 13 Apr 2016 05:18:40 UTC</pubDate>
      <guid>https://snipplr.com/view/146638/credit-card-fraud-prevention-using-vbnet</guid>
    </item>
    <item>
      <title>(JavaScript) Getting IP Address - apphp-snippets</title>
      <link>https://snipplr.com/view/144788/getting-ip-address</link>
      <description>&lt;p&gt;Sometimes you may want to show the visitor that you are aware of their IP address. You can do so by using few lines of code as shown here. Place the code in any place of your page, where you want the IP address to appear:&lt;/p&gt;</description>
      <pubDate>Wed, 04 Nov 2015 19:08:37 UTC</pubDate>
      <guid>https://snipplr.com/view/144788/getting-ip-address</guid>
    </item>
    <item>
      <title>(C#) C# motion detection source code: How to achieve tripwire with a USB webcam - chewie-wookiee</title>
      <link>https://snipplr.com/view/99860/c-motion-detection-source-code-how-to-achieve-tripwire-with-a-usb-webcam</link>
      <description>&lt;p&gt;Tripwire is a special part of motion detection that can be used to monitor and alert on specific changes. More specifically: tripwire means the detection of intrusion.&#13;
&#13;
This code snippet presents how to create a C# software by using prewritten computer vision components (www.camera-sdk.com) allowing you to get notified when your USB webcam triggers an intrusion. For instance, by using this application, you can use your camera to alarm when a people enters into the shop/office, or even to count how many people entered, etc.&#13;
&#13;
After the necessary using lines and objects you need to implement the Main method and the necessary functions for connecting to a USB webcamera. The startBt_Click method is used to start the tripwire functionality. Thereafter you can see how to handle the enter and exit events. &#13;
&#13;
Nothing could be more simple! :)&lt;/p&gt;</description>
      <pubDate>Thu, 30 Apr 2015 18:23:20 UTC</pubDate>
      <guid>https://snipplr.com/view/99860/c-motion-detection-source-code-how-to-achieve-tripwire-with-a-usb-webcam</guid>
    </item>
    <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>(PHP) Find Weather Forecast from IP Address - Hexahow</title>
      <link>https://snipplr.com/view/88840/find-weather-forecast-from-ip-address</link>
      <description>&lt;p&gt;To retrieve the weather forecast for your location based only on your current IP, the full tutorial will have the following 5 sections (http://bit.ly/1A5Y651), that will:&#13;
- Describe elements needed for weather forecast retrieval&#13;
- Describe the weather station code field of IP2Location&#13;
- Show code that gets the weather station code from IP address&#13;
- Show code that retrieves the weather forecast from Yahoo! Weather using the weather station code.&#13;
- Show code that retrieves the weather forecast using IP2Location&#13;
&#13;
Here, I will only show you how to retrieve the weather forecast.&lt;/p&gt;</description>
      <pubDate>Fri, 30 Jan 2015 22:37:25 UTC</pubDate>
      <guid>https://snipplr.com/view/88840/find-weather-forecast-from-ip-address</guid>
    </item>
    <item>
      <title>(C#) IP Address (ipv6) Lookup in Bulk Using C# and MySQL Database - Hexahow</title>
      <link>https://snipplr.com/view/88816/ip-address-ipv6-lookup-in-bulk-using-c-and-mysql-database</link>
      <description>&lt;p&gt;Use the code below to lookup IP address in bulk using C-Sharp programming languages and IP2Location MySQL database. In this tutorial, we use the IP2Location LITE database to lookup country of origin from the visitor's IP address. Free databases are available for download at IP2Location LITE database.&lt;/p&gt;</description>
      <pubDate>Fri, 30 Jan 2015 18:56:32 UTC</pubDate>
      <guid>https://snipplr.com/view/88816/ip-address-ipv6-lookup-in-bulk-using-c-and-mysql-database</guid>
    </item>
    <item>
      <title>(PHP) IP Address (IPv6) Lookup in Bulk Using PHP and MySQL Database - Hexahow</title>
      <link>https://snipplr.com/view/87308/ip-address-ipv6-lookup-in-bulk-using-php-and-mysql-database</link>
      <description>&lt;p&gt;The code below can be used to lookup IP address in bulk in return of geolocation information using PHP programming languages and MySQL database. In this tutorial, we use the IP2Location LITE database to lookup country of origin from the visitor's IP address. Free databases are available for download at IP2Location LITE database.&lt;/p&gt;</description>
      <pubDate>Fri, 16 Jan 2015 13:45:15 UTC</pubDate>
      <guid>https://snipplr.com/view/87308/ip-address-ipv6-lookup-in-bulk-using-php-and-mysql-database</guid>
    </item>
    <item>
      <title>(C#) Convert IPv6 Address to IP numbers (C#) - Hexahow</title>
      <link>https://snipplr.com/view/84723/convert-ipv6-address-to-ip-numbers-c</link>
      <description>&lt;p&gt;Use the code below to convert the IP address of your web visitors and lookup for their geographical location, e.g. country, state, city, latitude/longitude, ZIPs, timezone and so on. Free database can be downloaded at http://lite.ip2location.com.&lt;/p&gt;</description>
      <pubDate>Mon, 22 Dec 2014 22:09:01 UTC</pubDate>
      <guid>https://snipplr.com/view/84723/convert-ipv6-address-to-ip-numbers-c</guid>
    </item>
    <item>
      <title>(VB.NET) Convert IPv6 Address to IP numbers - Hexahow</title>
      <link>https://snipplr.com/view/84294/convert-ipv6-address-to-ip-numbers</link>
      <description>&lt;p&gt;Use the code below to convert the IP address of your web visitors and lookup for their geographical location, e.g. country, state, city, latitude/longitude, ZIPs, timezone and so on. Free database can be downloaded at http://lite.ip2location.com.&lt;/p&gt;</description>
      <pubDate>Wed, 17 Dec 2014 20:50:24 UTC</pubDate>
      <guid>https://snipplr.com/view/84294/convert-ipv6-address-to-ip-numbers</guid>
    </item>
    <item>
      <title>(PHP) Find a Real IP address when Proxy is used - KhanOf21Century</title>
      <link>https://snipplr.com/view/74681/find-a-real-ip-address-when-proxy-is-used</link>
      <description>&lt;p&gt;Code is meant to show the real ip address, in case if  user is using a proxy. Most of the time $_SERVER["REMOTE_ADDR"] do not work correctly due to the proxy setting of user. It's a nice solution.&lt;/p&gt;</description>
      <pubDate>Tue, 27 May 2014 21:00:55 UTC</pubDate>
      <guid>https://snipplr.com/view/74681/find-a-real-ip-address-when-proxy-is-used</guid>
    </item>
    <item>
      <title>(PHP) url, email and ip validation with php - codingforever99</title>
      <link>https://snipplr.com/view/73020/url-email-and-ip-validation-with-php</link>
      <description>&lt;p&gt;Simple PHP functions to validate url, email address and ip, functions will return TRUE for valid data and FALSE for invalid data.&lt;/p&gt;</description>
      <pubDate>Thu, 28 Nov 2013 21:06:07 UTC</pubDate>
      <guid>https://snipplr.com/view/73020/url-email-and-ip-validation-with-php</guid>
    </item>
    <item>
      <title>(PHP) Convert IP Address to Hex - martyncoup</title>
      <link>https://snipplr.com/view/72776/convert-ip-address-to-hex</link>
      <description>&lt;p&gt;Covnerts an IP address to it's relative hex value.&lt;/p&gt;</description>
      <pubDate>Thu, 31 Oct 2013 08:03:42 UTC</pubDate>
      <guid>https://snipplr.com/view/72776/convert-ip-address-to-hex</guid>
    </item>
    <item>
      <title>(PHP) Get Country By IP Address in PHP - apphp-snippets</title>
      <link>https://snipplr.com/view/72171/get-country-by-ip-address-in-php</link>
      <description>&lt;p&gt;This simple function allows you to getect a country code and city of your site visitors, using the www.geoplugin.net service. You may use this data to add default values in registration form or use it for any other purposes, like blocking access to your site from special regions.&lt;/p&gt;</description>
      <pubDate>Wed, 21 Aug 2013 18:51:57 UTC</pubDate>
      <guid>https://snipplr.com/view/72171/get-country-by-ip-address-in-php</guid>
    </item>
    <item>
      <title>(Python) Tiny IP Generator - madfedora</title>
      <link>https://snipplr.com/view/71955/tiny-ip-generator</link>
      <description>&lt;p&gt;A python IP generator works randomly. This project was made out of boredom. Have fun!&#13;
&#13;
For non obfuscated code, contact me at madfedora@tormail.org&lt;/p&gt;</description>
      <pubDate>Wed, 24 Jul 2013 05:58:44 UTC</pubDate>
      <guid>https://snipplr.com/view/71955/tiny-ip-generator</guid>
    </item>
    <item>
      <title>(DOS Batch) Domain Name IP Address Lookup - mikaelpelle</title>
      <link>https://snipplr.com/view/71367/domain-name-ip-address-lookup</link>
      <description>&lt;p&gt;Return the IP address from a domain name.&lt;/p&gt;</description>
      <pubDate>Sat, 01 Jun 2013 21:57:02 UTC</pubDate>
      <guid>https://snipplr.com/view/71367/domain-name-ip-address-lookup</guid>
    </item>
    <item>
      <title>(Python) Get ARP MAC from IP address - someguy123</title>
      <link>https://snipplr.com/view/70832/get-arp-mac-from-ip-address</link>
      <description>&lt;p&gt;This can be used to get arp mac address from a ip address. Remember that MAC addresses are in arp tables (volatile), that's why a ping is done first. But i don't know if timing between ping call and arp call is enought to make sense (of pinging).&lt;/p&gt;</description>
      <pubDate>Thu, 18 Apr 2013 00:18:10 UTC</pubDate>
      <guid>https://snipplr.com/view/70832/get-arp-mac-from-ip-address</guid>
    </item>
    <item>
      <title>(PHP) Get Remote IP Address in PHP - apphp-snippets</title>
      <link>https://snipplr.com/view/69907/get-remote-ip-address-in-php</link>
      <description>&lt;p&gt;This code allows to get the IP address from which the user is viewing the current page.&lt;/p&gt;</description>
      <pubDate>Tue, 12 Feb 2013 22:01:09 UTC</pubDate>
      <guid>https://snipplr.com/view/69907/get-remote-ip-address-in-php</guid>
    </item>
    <item>
      <title>(PHP) Country list based on browser's language - Hexahow</title>
      <link>https://snipplr.com/view/69852/country-list-based-on-browsers-language</link>
      <description>&lt;p&gt;The following codes populate the country list into dropdown box based on browser's languages. The country information is getting from geolocation.com&lt;/p&gt;</description>
      <pubDate>Fri, 08 Feb 2013 00:10:49 UTC</pubDate>
      <guid>https://snipplr.com/view/69852/country-list-based-on-browsers-language</guid>
    </item>
    <item>
      <title>(PHP) A function to get the real IP address. - o0110o</title>
      <link>https://snipplr.com/view/67837/a-function-to-get-the-real-ip-address</link>
      <description>&lt;p&gt;This function performs several checks to make sure it's getting the correct IP address.&lt;/p&gt;</description>
      <pubDate>Sat, 20 Oct 2012 10:36:52 UTC</pubDate>
      <guid>https://snipplr.com/view/67837/a-function-to-get-the-real-ip-address</guid>
    </item>
    <item>
      <title>(C#) Validating an IP String in C# - stephenmurby</title>
      <link>https://snipplr.com/view/66055/validating-an-ip-string-in-c</link>
      <description>&lt;p&gt;Quick method to validate a string is a valid IP address.&lt;/p&gt;</description>
      <pubDate>Tue, 10 Jul 2012 22:29:19 UTC</pubDate>
      <guid>https://snipplr.com/view/66055/validating-an-ip-string-in-c</guid>
    </item>
    <item>
      <title>(C#) HideMyAss Proxy Grabber - icinNet</title>
      <link>https://snipplr.com/view/65990/hidemyass-proxy-grabber</link>
      <description>&lt;p&gt;A small snippet to parse out proxies from http://hidemyass.com/proxy-list/&lt;/p&gt;</description>
      <pubDate>Fri, 06 Jul 2012 18:14:56 UTC</pubDate>
      <guid>https://snipplr.com/view/65990/hidemyass-proxy-grabber</guid>
    </item>
    <item>
      <title>(PHP) IP Blacklist Check Script - DNSBL</title>
      <link>https://snipplr.com/view/64564/ip-blacklist-check-script</link>
      <description>&lt;p&gt;Enter any suspicious IP address that you wanted to check into the form field and press the "LOOKUP" button&lt;/p&gt;</description>
      <pubDate>Sun, 15 Apr 2012 18:44:22 UTC</pubDate>
      <guid>https://snipplr.com/view/64564/ip-blacklist-check-script</guid>
    </item>
    <item>
      <title>(Bash) Give my public IP - blackthorne</title>
      <link>https://snipplr.com/view/60557/give-my-public-ip</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 04 Nov 2011 22:41:50 UTC</pubDate>
      <guid>https://snipplr.com/view/60557/give-my-public-ip</guid>
    </item>
    <item>
      <title>(PHP) Block IP address - ariunbolor</title>
      <link>https://snipplr.com/view/57035/block-ip-address</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 22 Jul 2011 17:13:19 UTC</pubDate>
      <guid>https://snipplr.com/view/57035/block-ip-address</guid>
    </item>
    <item>
      <title>(PHP) Get your visitors IP address - ariunbolor</title>
      <link>https://snipplr.com/view/57033/get-your-visitors-ip-address</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 22 Jul 2011 17:10:41 UTC</pubDate>
      <guid>https://snipplr.com/view/57033/get-your-visitors-ip-address</guid>
    </item>
    <item>
      <title>(PHP) Get user IP Address with PHP - Push</title>
      <link>https://snipplr.com/view/56890/get-user-ip-address-with-php</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 20 Jul 2011 07:36:19 UTC</pubDate>
      <guid>https://snipplr.com/view/56890/get-user-ip-address-with-php</guid>
    </item>
    <item>
      <title>(Ruby) Own DynDns Service, clientside script. - madc</title>
      <link>https://snipplr.com/view/55484/own-dyndns-service-clientside-script</link>
      <description>&lt;p&gt;Clientside script for a personal DynDNS service. Works together with a server-side script written in php [ http://snipplr.com/view/55482/own-dyndns-service-serverside-script ] .&#13;
&#13;
You may want to set up a cron jop to run this script every x minutes.&lt;/p&gt;</description>
      <pubDate>Sun, 19 Jun 2011 21:28:48 UTC</pubDate>
      <guid>https://snipplr.com/view/55484/own-dyndns-service-clientside-script</guid>
    </item>
    <item>
      <title>(PHP) Own DynDns Service, serverside script. - madc</title>
      <link>https://snipplr.com/view/55482/own-dyndns-service-serverside-script</link>
      <description>&lt;p&gt;Serverside script for a personal DynDNS service.&#13;
Works together with a clientside script written in ruby [ http://snipplr.com/view/55484/own-dyndns-service-clientside-script/ ] .&#13;
&#13;
Redirect to current saved IP(http, port 80):&#13;
http://dynDns.yourveryownhost.com/&#13;
&#13;
Update with current IP:&#13;
http://dynDns.yourveryownhost.com/?updateIp&#13;
&#13;
Show saved IP:&#13;
http://dynDns.yourveryownhost.com/?showIp&#13;
&#13;
The getIpAddr-function is based on a blog-post written by Roshan Bhattarai [ http://roshanbh.com.np/2007/12/getting-real-ip-address-in-php.html ]&lt;/p&gt;</description>
      <pubDate>Sun, 19 Jun 2011 21:23:15 UTC</pubDate>
      <guid>https://snipplr.com/view/55482/own-dyndns-service-serverside-script</guid>
    </item>
    <item>
      <title>(PHP) Obtaining IP and host of visitor - michaJlS</title>
      <link>https://snipplr.com/view/55106/obtaining-ip-and-host-of-visitor</link>
      <description>&lt;p&gt;This piece of code is at least ten years old and I don't remember exactly, where I have found it. Probably it had been stolen from my friend VeZyR;)&lt;/p&gt;</description>
      <pubDate>Fri, 10 Jun 2011 03:19:00 UTC</pubDate>
      <guid>https://snipplr.com/view/55106/obtaining-ip-and-host-of-visitor</guid>
    </item>
    <item>
      <title>(PHP) check allowed Ip\'s (use the magento developer IP) - nico65</title>
      <link>https://snipplr.com/view/54747/check-allowed-ips-use-the-magento-developer-ip</link>
      <description>&lt;p&gt;use the magento developer IP&lt;/p&gt;</description>
      <pubDate>Thu, 02 Jun 2011 03:31:53 UTC</pubDate>
      <guid>https://snipplr.com/view/54747/check-allowed-ips-use-the-magento-developer-ip</guid>
    </item>
    <item>
      <title>(PHP) Detect Location by IP (City, State) - crypticsoft</title>
      <link>https://snipplr.com/view/48386/detect-location-by-ip-city-state</link>
      <description>&lt;p&gt;returns "City, State" if found otherwise defaults to "Hollywood, CA"&lt;/p&gt;</description>
      <pubDate>Fri, 04 Feb 2011 09:07:03 UTC</pubDate>
      <guid>https://snipplr.com/view/48386/detect-location-by-ip-city-state</guid>
    </item>
    <item>
      <title>(Bash) Number of Connections by IP - klovera</title>
      <link>https://snipplr.com/view/48032/number-of-connections-by-ip</link>
      <description>&lt;p&gt;Returns a list of the number of connections by IP.&lt;/p&gt;</description>
      <pubDate>Fri, 28 Jan 2011 04:11:33 UTC</pubDate>
      <guid>https://snipplr.com/view/48032/number-of-connections-by-ip</guid>
    </item>
    <item>
      <title>(Bash) Get Public IP and copy it to Clipboard - ertbor</title>
      <link>https://snipplr.com/view/47745/get-public-ip-and-copy-it-to-clipboard</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 23 Jan 2011 19:06:49 UTC</pubDate>
      <guid>https://snipplr.com/view/47745/get-public-ip-and-copy-it-to-clipboard</guid>
    </item>
    <item>
      <title>(ActionScript 3) Get the IP Addres in AIR 2.5 - sidneydekoning</title>
      <link>https://snipplr.com/view/43138/get-the-ip-addres-in-air-25</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 29 Oct 2010 02:15:27 UTC</pubDate>
      <guid>https://snipplr.com/view/43138/get-the-ip-addres-in-air-25</guid>
    </item>
    <item>
      <title>(Regular Expression) Regex - Match IPv6 address - dmertl</title>
      <link>https://snipplr.com/view/43003/regex--match-ipv6-address</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 27 Oct 2010 07:41:40 UTC</pubDate>
      <guid>https://snipplr.com/view/43003/regex--match-ipv6-address</guid>
    </item>
    <item>
      <title>(Regular Expression) Regex - Match IPv4 address - dmertl</title>
      <link>https://snipplr.com/view/43002/regex--match-ipv4-address</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 27 Oct 2010 07:40:58 UTC</pubDate>
      <guid>https://snipplr.com/view/43002/regex--match-ipv4-address</guid>
    </item>
    <item>
      <title>(PHP) Better Client/Remote IP function. - YPY</title>
      <link>https://snipplr.com/view/42092/better-clientremote-ip-function</link>
      <description>&lt;p&gt;Better Client/Remote IP function&lt;/p&gt;</description>
      <pubDate>Tue, 12 Oct 2010 06:54:59 UTC</pubDate>
      <guid>https://snipplr.com/view/42092/better-clientremote-ip-function</guid>
    </item>
    <item>
      <title>(PHP) Online/Offline ip adress - nveselinov</title>
      <link>https://snipplr.com/view/42080/onlineoffline-ip-adress</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 12 Oct 2010 04:41:22 UTC</pubDate>
      <guid>https://snipplr.com/view/42080/onlineoffline-ip-adress</guid>
    </item>
    <item>
      <title>(Apache) Redirect all external traffic to a temp page - BFTrick</title>
      <link>https://snipplr.com/view/40483/redirect-all-external-traffic-to-a-temp-page</link>
      <description>&lt;p&gt;This code redirects all external traffic (all traffic not belonging to a particular ip) to a temp page. This is useful for performing site maintenance.&lt;/p&gt;</description>
      <pubDate>Wed, 15 Sep 2010 00:15:53 UTC</pubDate>
      <guid>https://snipplr.com/view/40483/redirect-all-external-traffic-to-a-temp-page</guid>
    </item>
    <item>
      <title>(Bash) Get MAC address remote IP - vigoncas</title>
      <link>https://snipplr.com/view/40158/get-mac-address-remote-ip</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 09 Sep 2010 00:01:51 UTC</pubDate>
      <guid>https://snipplr.com/view/40158/get-mac-address-remote-ip</guid>
    </item>
    <item>
      <title>(PHP) Get Visitors IP Address - sandrews_06</title>
      <link>https://snipplr.com/view/39918/get-visitors-ip-address</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 03 Sep 2010 01:16:54 UTC</pubDate>
      <guid>https://snipplr.com/view/39918/get-visitors-ip-address</guid>
    </item>
    <item>
      <title>(Bash) get_external_ip.sh - ksaver</title>
      <link>https://snipplr.com/view/39389/getexternalipsh</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 22 Aug 2010 16:03:50 UTC</pubDate>
      <guid>https://snipplr.com/view/39389/getexternalipsh</guid>
    </item>
    <item>
      <title>(PHP) IP Poll Restriction - jretamal</title>
      <link>https://snipplr.com/view/35765/ip-poll-restriction</link>
      <description>&lt;p&gt;Restricts the vote to one vote per ip per day&lt;/p&gt;</description>
      <pubDate>Tue, 15 Jun 2010 22:13:41 UTC</pubDate>
      <guid>https://snipplr.com/view/35765/ip-poll-restriction</guid>
    </item>
    <item>
      <title>(Bash) Extract IP Addresses From Apache Access Log - iloveitaly</title>
      <link>https://snipplr.com/view/35449/extract-ip-addresses-from-apache-access-log</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 02 Jun 2010 12:23:37 UTC</pubDate>
      <guid>https://snipplr.com/view/35449/extract-ip-addresses-from-apache-access-log</guid>
    </item>
    <item>
      <title>(Bash) Unique IP Addresses From Apache Error Log - iloveitaly</title>
      <link>https://snipplr.com/view/35448/unique-ip-addresses-from-apache-error-log</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 02 Jun 2010 12:13:59 UTC</pubDate>
      <guid>https://snipplr.com/view/35448/unique-ip-addresses-from-apache-error-log</guid>
    </item>
    <item>
      <title>(Python) How to find out your IP address in Python - oznek</title>
      <link>https://snipplr.com/view/32155/how-to-find-out-your-ip-address-in-python</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 16 Apr 2010 22:48:36 UTC</pubDate>
      <guid>https://snipplr.com/view/32155/how-to-find-out-your-ip-address-in-python</guid>
    </item>
    <item>
      <title>(PHP) Get Real IP Address of Client - jrobinsonc</title>
      <link>https://snipplr.com/view/30918/get-real-ip-address-of-client</link>
      <description>&lt;p&gt;This function will fetch the real IP address of the user even if he is behind a proxy server.&lt;/p&gt;</description>
      <pubDate>Mon, 05 Apr 2010 08:15:18 UTC</pubDate>
      <guid>https://snipplr.com/view/30918/get-real-ip-address-of-client</guid>
    </item>
    <item>
      <title>(Bash) Local - IP finder (WLAN) - nmobix</title>
      <link>https://snipplr.com/view/28576/local--ip-finder-wlan</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 18 Feb 2010 23:52:46 UTC</pubDate>
      <guid>https://snipplr.com/view/28576/local--ip-finder-wlan</guid>
    </item>
    <item>
      <title>(C#) Get the network interface card (NIC) from a known MAC address (and get the IP addresses on that NIC) - pckujawa</title>
      <link>https://snipplr.com/view/28193/get-the-network-interface-card-nic-from-a-known-mac-address-and-get-the-ip-addresses-on-that-nic</link>
      <description>&lt;p&gt;The code shows how to take a known MAC (e.g. "00:00:00:11:22:33") and locate the NIC which has that MAC. Note that the built-in MAC class for .NET is called PhysicalAddress (in System.Net.NetworkInformation). PhysicalAddress.Parse can take a string, so long as it has only numbers or numbers and dashes (-). We normally use colons (:) instead of dashes, so that's why I do a .Replace().&#13;
&#13;
The last part of the code retrieves the IP Addresses associated with the selected NIC.&lt;/p&gt;</description>
      <pubDate>Thu, 11 Feb 2010 13:48:57 UTC</pubDate>
      <guid>https://snipplr.com/view/28193/get-the-network-interface-card-nic-from-a-known-mac-address-and-get-the-ip-addresses-on-that-nic</guid>
    </item>
  </channel>
</rss>
