<?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 00:48:43 +0000</lastBuildDate>
    <item>
      <title>(PHP) function to obfuscate web text into random design - PietKeizer</title>
      <link>https://snipplr.com/view/334899/function-to-obfuscate-web-text-into-random-design</link>
      <description>&lt;p&gt;Function for obfuscate Text in html pages. good for making screenshot and mind data protection if needed. changes Text into many small divs with different bgcolor.&lt;/p&gt;</description>
      <pubDate>Fri, 01 Nov 2019 00:13:07 UTC</pubDate>
      <guid>https://snipplr.com/view/334899/function-to-obfuscate-web-text-into-random-design</guid>
    </item>
    <item>
      <title>(VB.NET) [vbnet] [convert] conversion de chiffres en lettres (french) V1 - martinbrait</title>
      <link>https://snipplr.com/view/333778/vbnet-convert-conversion-de-chiffres-en-lettres-french-v1</link>
      <description>&lt;p&gt;convert numbers to letters&#13;
&#13;
Ce module permet de convertir un chiffre entier de 0 à 99999999999999.&#13;
&#13;
La méthode utilisée est la décomposition du chiffre par récursivité.&#13;
nous divisons le chiffre par les éléments suivant :&#13;
10^9 (milliard)&#13;
10^6 (million)&#13;
10^3 (millier)&#13;
100 (centaine)&#13;
10 (dizaine)&#13;
enfin il reste l'unité&#13;
&#13;
Ex : 200905 = (2* 100 *1000) + (9 *100) + 5&#13;
soit (deux * cent * mille) + (neuf * cent) + cinq&lt;/p&gt;</description>
      <pubDate>Fri, 23 Aug 2019 03:33:23 UTC</pubDate>
      <guid>https://snipplr.com/view/333778/vbnet-convert-conversion-de-chiffres-en-lettres-french-v1</guid>
    </item>
    <item>
      <title>(jQuery) Switch between text on button every second - envane21</title>
      <link>https://snipplr.com/view/147753/switch-between-text-on-button-every-second</link>
      <description>&lt;p&gt;Switch between text on button every second&lt;/p&gt;</description>
      <pubDate>Tue, 26 Jul 2016 01:05:27 UTC</pubDate>
      <guid>https://snipplr.com/view/147753/switch-between-text-on-button-every-second</guid>
    </item>
    <item>
      <title>(JavaScript) Button text on wrong answer - envane21</title>
      <link>https://snipplr.com/view/146227/button-text-on-wrong-answer</link>
      <description>&lt;p&gt;change the button text on wrong answer&lt;/p&gt;</description>
      <pubDate>Fri, 26 Feb 2016 01:58:27 UTC</pubDate>
      <guid>https://snipplr.com/view/146227/button-text-on-wrong-answer</guid>
    </item>
    <item>
      <title>(CSS) placeholder text - envane21</title>
      <link>https://snipplr.com/view/112222/placeholder-text</link>
      <description>&lt;p&gt;stylize placeholder text without affecting user text&lt;/p&gt;</description>
      <pubDate>Sat, 17 Oct 2015 01:35:07 UTC</pubDate>
      <guid>https://snipplr.com/view/112222/placeholder-text</guid>
    </item>
    <item>
      <title>(PHP) Formatted Text Output using str_pad() - COBOLdinosaur</title>
      <link>https://snipplr.com/view/104864/formatted-text-output-using-strpad</link>
      <description>&lt;p&gt;This is a simple PHP class that can be used to produce nicely formatted reports from unorganized data.&lt;/p&gt;</description>
      <pubDate>Wed, 15 Jul 2015 01:42:09 UTC</pubDate>
      <guid>https://snipplr.com/view/104864/formatted-text-output-using-strpad</guid>
    </item>
    <item>
      <title>(C#) How to add text-to-speech and speech-to-text features to your SIP software by using Microsoft Speech Platform in C#? - warnerBro19</title>
      <link>https://snipplr.com/view/92332/how-to-add-texttospeech-and-speechtotext-features-to-your-sip-software-by-using-microsoft-speech-platform-in-c</link>
      <description>&lt;p&gt;In my previous snippet I have written about converting text to speech using C#. This code snippet can be used not just for allowing your computer to read txt aloud, but also for speech recognition.  To implement this functionality I used Microsoft Speech Platform 11 along with Ozeki VoIP SIP SDK. The first one provides two classes (MSSpeechPlatformSTT, MSSpeechPlatformTTS) for text-to-speech and speech-to-text, and the VoIP SDK ensures the necessary VoIP components. The source code below is ready for use, so you only need to copy&amp;paste it to your Visual Studio, then modify the necessary fields. (Do not forget to add the necessary DLL files to your references: http://www.voip-sip-sdk.com, http://www.microsoft.com/en-us/download/details.aspx?id=27226 ) &#13;
&#13;
After creating the necessary using lines and media handler objects, you can implement the text-to-speech  and the voice recognition features by using the SetupTextToSpeech() and the SetupSpeechToText() methods.&#13;
&#13;
Have a good time!&lt;/p&gt;</description>
      <pubDate>Sat, 07 Mar 2015 01:10:48 UTC</pubDate>
      <guid>https://snipplr.com/view/92332/how-to-add-texttospeech-and-speechtotext-features-to-your-sip-software-by-using-microsoft-speech-platform-in-c</guid>
    </item>
    <item>
      <title>(C#) How to implement text-to-speech during a SIP voice call in C#? - warnerBro19</title>
      <link>https://snipplr.com/view/91657/how-to-implement-texttospeech-during-a-sip-voice-call-in-c</link>
      <description>&lt;p&gt;I have heard about this solution on the Facebook, and I thought it is worth to share my source code to help other developers interested in converting text to speech using C#. Text-to-speech refers to the ability of computers to read txt aloud. This functionality can be greatly used during SIP communication in autodialer or IVR systems. The source code below is ready for use, so you only need to copy&amp;paste it to your Visual Studio, then modify the necessary fields. (Do not forget to add the necessary DLL file providing the VoIP background to your references: http://www.voip-sip-sdk.com) &#13;
&#13;
This solution assumes that you have a PBX with some SIP extensions installed previously. After creating the necessary using media handler objects, you need to define your PBX and provide the appropriate SIP account details in order to be able to register your application to the phone system. When you have created all the required methods for SIP calling, you can implement the text-to-speech  feature by using the SetupTextToSpeech() method.&#13;
&#13;
Have a good time!&lt;/p&gt;</description>
      <pubDate>Fri, 27 Feb 2015 01:14:21 UTC</pubDate>
      <guid>https://snipplr.com/view/91657/how-to-implement-texttospeech-during-a-sip-voice-call-in-c</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>(PHP) HTML Table to plain text - nigelnquande</title>
      <link>https://snipplr.com/view/84027/html-table-to-plain-text</link>
      <description>&lt;p&gt;Use PHP's DOM parser to convert a table into plain text (including links with images)&lt;/p&gt;</description>
      <pubDate>Tue, 16 Dec 2014 01:11:27 UTC</pubDate>
      <guid>https://snipplr.com/view/84027/html-table-to-plain-text</guid>
    </item>
    <item>
      <title>(PHP) HTML to Plain Text - nigelnquande</title>
      <link>https://snipplr.com/view/83996/html-to-plain-text</link>
      <description>&lt;p&gt;This function takes HTML input and converts it to plain text. It needs improvement so that it converts multiple blank lines to a single blank line and converts an &amp;lt;a ... &amp;gt; link to the markup equivalent (same for images). It should be rewritten to using a DOM/XML parser.&lt;/p&gt;</description>
      <pubDate>Mon, 15 Dec 2014 19:55:00 UTC</pubDate>
      <guid>https://snipplr.com/view/83996/html-to-plain-text</guid>
    </item>
    <item>
      <title>(CSS) List image - space before text - bcounts</title>
      <link>https://snipplr.com/view/79203/list-image--space-before-text</link>
      <description>&lt;p&gt;Using a combination of background and padding styles to modify the way list image styles are applied.&lt;/p&gt;</description>
      <pubDate>Wed, 08 Oct 2014 07:14:29 UTC</pubDate>
      <guid>https://snipplr.com/view/79203/list-image--space-before-text</guid>
    </item>
    <item>
      <title>(SQL) Search for text in all db objects in database - hairajeshk</title>
      <link>https://snipplr.com/view/75443/search-for-text-in-all-db-objects-in-database</link>
      <description>&lt;p&gt;from codeproject&lt;/p&gt;</description>
      <pubDate>Mon, 21 Jul 2014 17:24:45 UTC</pubDate>
      <guid>https://snipplr.com/view/75443/search-for-text-in-all-db-objects-in-database</guid>
    </item>
    <item>
      <title>(PHP) Read and write data to textfile - gitarfogas</title>
      <link>https://snipplr.com/view/74552/read-and-write-data-to-textfile</link>
      <description>&lt;p&gt;I created this code for practice, and I looking for better and clear solution for the last instance where I can write or delete the data, but after I want to get back the content as array or the key as string. I want to use this write-read back with only one instance.&lt;/p&gt;</description>
      <pubDate>Tue, 13 May 2014 03:30:12 UTC</pubDate>
      <guid>https://snipplr.com/view/74552/read-and-write-data-to-textfile</guid>
    </item>
    <item>
      <title>(PHP) PHP Code Sample to Replace Multiple Text in PDF File Using Cloud API - johansonkatherine</title>
      <link>https://snipplr.com/view/74515/php-code-sample-to-replace-multiple-text-in-pdf-file-using-cloud-api</link>
      <description>&lt;p&gt;The following code sample shows how developers can replace multiple texts in a single API call in a PDF file using Aspose.Pdf for Cloud API in their applications. Developers can use Aspose REST API with any language: .NET, Java, PHP, Ruby, Rails, Python, jQuery and many more.&lt;/p&gt;</description>
      <pubDate>Thu, 08 May 2014 16:25:22 UTC</pubDate>
      <guid>https://snipplr.com/view/74515/php-code-sample-to-replace-multiple-text-in-pdf-file-using-cloud-api</guid>
    </item>
    <item>
      <title>(C#) C# Code Sample to Replace Multiple Texts inside PDF File Using Cloud API - johansonkatherine</title>
      <link>https://snipplr.com/view/74514/c-code-sample-to-replace-multiple-texts-inside-pdf-file-using-cloud-api</link>
      <description>&lt;p&gt;The following code sample shows how developers can replace multiple texts in a single API call in a PDF file using Aspose.Pdf for Cloud API in their applications. Developers can use Aspose REST API with any language: .NET, Java, PHP, Ruby, Rails, Python, jQuery and many more.&lt;/p&gt;</description>
      <pubDate>Thu, 08 May 2014 15:18:06 UTC</pubDate>
      <guid>https://snipplr.com/view/74514/c-code-sample-to-replace-multiple-texts-inside-pdf-file-using-cloud-api</guid>
    </item>
    <item>
      <title>(Java) Java code for Changing Color Space of PDF Document - johansonkatherine</title>
      <link>https://snipplr.com/view/74226/java-code-for-changing-color-space-of-pdf-document</link>
      <description>&lt;p&gt;This code shows how java developers can change color space of PDF document from RGB color to CMYK and vice versa by using Aspose.PDF for Java Library. The following methods have been implemented in the Operator class for changing colors. Use it to change some specific RGB/CMYK colors to CMYK/RGB color space, keeping the remaining PDF document as it is.&#13;
&#13;
â€¢	com.aspose.pdf.Operator.SetRGBColorStroke.getCMYKColor(new double[3], new double[4])&#13;
â€¢	com.aspose.pdf.Operator.SetRGBColor.getCMYKColor(new double[3], new double[4])&#13;
â€¢	com.aspose.pdf.Operator.SetCMYKColorStroke.getRGBColor(new double[4], new double[3])&#13;
â€¢	com.aspose.pdf.Operator.SetCMYKColor.getRGBColor(new double[4], new double[3])&lt;/p&gt;</description>
      <pubDate>Wed, 16 Apr 2014 21:14:16 UTC</pubDate>
      <guid>https://snipplr.com/view/74226/java-code-for-changing-color-space-of-pdf-document</guid>
    </item>
    <item>
      <title>(C#) C#/.NET  Code Samples to Save Microsoft OneNote (.one) file as an image (.PNG, .BMP, .JPEG, .GIF) file - johansonkatherine</title>
      <link>https://snipplr.com/view/73837/cnet--code-samples-to-save-microsoft-onenote-one-file-as-an-image-png-bmp-jpeg-gif-file</link>
      <description>&lt;p&gt;The Aspose.Note for .NET API allows developers to open files &amp; manipulate elements of OneNote books &amp; export them to PNG, GIF, JPEG, BMP and PDF formats. The following code sample shows developers how to save OneNote File as an image in C#/.NET&lt;/p&gt;</description>
      <pubDate>Tue, 11 Mar 2014 20:54:07 UTC</pubDate>
      <guid>https://snipplr.com/view/73837/cnet--code-samples-to-save-microsoft-onenote-one-file-as-an-image-png-bmp-jpeg-gif-file</guid>
    </item>
    <item>
      <title>(jQuery) JS:jQuery Get all nodes, including orphaned text - makbeta</title>
      <link>https://snipplr.com/view/72957/jsjquery-get-all-nodes-including-orphaned-text</link>
      <description>&lt;p&gt;Reads all the nodes of the object, including orphaned text that's not wrapped into any tag as well as empty text nodes&lt;/p&gt;</description>
      <pubDate>Thu, 21 Nov 2013 10:53:21 UTC</pubDate>
      <guid>https://snipplr.com/view/72957/jsjquery-get-all-nodes-including-orphaned-text</guid>
    </item>
    <item>
      <title>(LaTeX) 20131110_1326_r.7_picture_with_text_beside_it - greencocoa</title>
      <link>https://snipplr.com/view/72857/201311101326r7picturewithtextbesideit</link>
      <description>&lt;p&gt;Sublime Text&lt;/p&gt;</description>
      <pubDate>Mon, 11 Nov 2013 00:40:53 UTC</pubDate>
      <guid>https://snipplr.com/view/72857/201311101326r7picturewithtextbesideit</guid>
    </item>
    <item>
      <title>(Objective C) Label with Owner Text - ferlom</title>
      <link>https://snipplr.com/view/72579/label-with-owner-text</link>
      <description>&lt;p&gt;Insert our text in IOS UIView with UILabel on screen&lt;/p&gt;</description>
      <pubDate>Tue, 08 Oct 2013 22:19:33 UTC</pubDate>
      <guid>https://snipplr.com/view/72579/label-with-owner-text</guid>
    </item>
    <item>
      <title>(HTML) Reveal.js - Basic Slide - mralexjuarez</title>
      <link>https://snipplr.com/view/71990/revealjs--basic-slide</link>
      <description>&lt;p&gt;This snippet is a basic slide with a header and a paragraph&lt;/p&gt;</description>
      <pubDate>Mon, 29 Jul 2013 13:48:02 UTC</pubDate>
      <guid>https://snipplr.com/view/71990/revealjs--basic-slide</guid>
    </item>
    <item>
      <title>(jQuery) Hide/Show text using jQuery - TwistedEinstein</title>
      <link>https://snipplr.com/view/71868/hideshow-text-using-jquery</link>
      <description>&lt;p&gt;A little snippet that I use to hide or show text using jquery&lt;/p&gt;</description>
      <pubDate>Tue, 16 Jul 2013 05:52:51 UTC</pubDate>
      <guid>https://snipplr.com/view/71868/hideshow-text-using-jquery</guid>
    </item>
    <item>
      <title>(jQuery) Multiline Text Overflow - JoshChris</title>
      <link>https://snipplr.com/view/71799/multiline-text-overflow</link>
      <description>&lt;p&gt;Simple function to include in your script to enable multi-line text-overflow.&#13;
See the jsfiddle (http://jsfiddle.net/eAyyL/) for details on the necessary CSS and HTML layout.&lt;/p&gt;</description>
      <pubDate>Thu, 11 Jul 2013 02:13:54 UTC</pubDate>
      <guid>https://snipplr.com/view/71799/multiline-text-overflow</guid>
    </item>
    <item>
      <title>(jQuery) Pick a random element with jQuery - i-am-andy</title>
      <link>https://snipplr.com/view/71786/pick-a-random-element-with-jquery</link>
      <description>&lt;p&gt;A simple way of displaying a random list item. Could be used to randomly display anything.&#13;
&#13;
Demo: jsfiddle.net/uRd6N/ (keep clicking run)&lt;/p&gt;</description>
      <pubDate>Wed, 10 Jul 2013 01:26:23 UTC</pubDate>
      <guid>https://snipplr.com/view/71786/pick-a-random-element-with-jquery</guid>
    </item>
    <item>
      <title>(Bash) Get text for system errors - dck11</title>
      <link>https://snipplr.com/view/71584/get-text-for-system-errors</link>
      <description>&lt;p&gt;Get text for system errors&lt;/p&gt;</description>
      <pubDate>Thu, 20 Jun 2013 17:36:52 UTC</pubDate>
      <guid>https://snipplr.com/view/71584/get-text-for-system-errors</guid>
    </item>
    <item>
      <title>(CSS) Text shifting on bold hover - stephcode</title>
      <link>https://snipplr.com/view/71534/text-shifting-on-bold-hover</link>
      <description>&lt;p&gt;To correct the shift that happens on hover when the weight of the link is normal, but bold on hover.&lt;/p&gt;</description>
      <pubDate>Sat, 15 Jun 2013 01:41:21 UTC</pubDate>
      <guid>https://snipplr.com/view/71534/text-shifting-on-bold-hover</guid>
    </item>
    <item>
      <title>(CSS) Text Overflow Ellipsis Using Css - chillyjames</title>
      <link>https://snipplr.com/view/70814/text-overflow-ellipsis-using-css</link>
      <description>&lt;p&gt;The CSS text overflow ellipsis solution is perfect for single line truncations. I use this constantly when building mobile or responsive applications.&lt;/p&gt;</description>
      <pubDate>Tue, 16 Apr 2013 23:39:06 UTC</pubDate>
      <guid>https://snipplr.com/view/70814/text-overflow-ellipsis-using-css</guid>
    </item>
    <item>
      <title>(CSS) Truncating Text with CSS - zfisic</title>
      <link>https://snipplr.com/view/69979/truncating-text-with-css</link>
      <description>&lt;p&gt;Truncate text using only CSS. IE 6+, Safari 4+, Firefox 7+, Opera 11+ and Chrome 10+:&lt;/p&gt;</description>
      <pubDate>Mon, 18 Feb 2013 16:10:58 UTC</pubDate>
      <guid>https://snipplr.com/view/69979/truncating-text-with-css</guid>
    </item>
    <item>
      <title>(JavaScript) Copy Selected Text in JavaScript - apphp-snippets</title>
      <link>https://snipplr.com/view/69925/copy-selected-text-in-javascript</link>
      <description>&lt;p&gt;Sometimes you have some information on your page and your visitors might want to copy it. The easiest way is to provide a mechanism that allows them to simply click a button to do so. You have to paste this code into the head of your web page:&lt;/p&gt;</description>
      <pubDate>Wed, 13 Feb 2013 20:11:00 UTC</pubDate>
      <guid>https://snipplr.com/view/69925/copy-selected-text-in-javascript</guid>
    </item>
    <item>
      <title>(CSS) CSS Big Glowing Txt - erikgeerling</title>
      <link>https://snipplr.com/view/69766/css-big-glowing-txt</link>
      <description>&lt;p&gt;CSS Big Glowing Txt&lt;/p&gt;</description>
      <pubDate>Sun, 03 Feb 2013 07:50:10 UTC</pubDate>
      <guid>https://snipplr.com/view/69766/css-big-glowing-txt</guid>
    </item>
    <item>
      <title>(jQuery) jQuery: Clear All Text Fields (with one line of code) - mattvbiggs</title>
      <link>https://snipplr.com/view/69091/jquery-clear-all-text-fields-with-one-line-of-code</link>
      <description>&lt;p&gt;This can come in handy for a reset or cancel button. You can clear all inputs within a single div in one line of code. Pretty sexy.&lt;/p&gt;</description>
      <pubDate>Thu, 13 Dec 2012 05:27:36 UTC</pubDate>
      <guid>https://snipplr.com/view/69091/jquery-clear-all-text-fields-with-one-line-of-code</guid>
    </item>
    <item>
      <title>(PHP) Get the text in between more text in a string. - o0110o</title>
      <link>https://snipplr.com/view/67850/get-the-text-in-between-more-text-in-a-string</link>
      <description>&lt;p&gt;Get the text in between more text in a string. Accepts $content,$start,$end &amp; $is_string as parameters.&lt;/p&gt;</description>
      <pubDate>Sun, 21 Oct 2012 09:02:58 UTC</pubDate>
      <guid>https://snipplr.com/view/67850/get-the-text-in-between-more-text-in-a-string</guid>
    </item>
    <item>
      <title>(CSS) CSS text shadows and border rounding - skopp</title>
      <link>https://snipplr.com/view/66943/css-text-shadows-and-border-rounding</link>
      <description>&lt;p&gt;1. Adding shadow to text â€“ text-shadow&#13;
Helps make your text stand out from the rest.&#13;
2. border image rounding&lt;/p&gt;</description>
      <pubDate>Wed, 29 Aug 2012 22:51:33 UTC</pubDate>
      <guid>https://snipplr.com/view/66943/css-text-shadows-and-border-rounding</guid>
    </item>
    <item>
      <title>(CSS) hide text indent trick thingy for css - skopp</title>
      <link>https://snipplr.com/view/66942/hide-text-indent-trick-thingy-for-css</link>
      <description>&lt;p&gt;Hiding text can be extremely useful to hide company logo. As logos are usually an image, you will want to use text indent to place it in a h1 tag for SEO (Search Engine Optimization). The technique we use is to hide the text far away off the screen, and apply a background image instead.&lt;/p&gt;</description>
      <pubDate>Wed, 29 Aug 2012 22:48:27 UTC</pubDate>
      <guid>https://snipplr.com/view/66942/hide-text-indent-trick-thingy-for-css</guid>
    </item>
    <item>
      <title>(CSS) CSS - Add a drop cap - satie83</title>
      <link>https://snipplr.com/view/66684/css--add-a-drop-cap</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:10:47 UTC</pubDate>
      <guid>https://snipplr.com/view/66684/css--add-a-drop-cap</guid>
    </item>
    <item>
      <title>(CSS) CSS - Replacing the title text with a logo â€“ text-indent â€“ text-indent - satie83</title>
      <link>https://snipplr.com/view/66680/css--replacing-the-title-text-with-a-logo--textindent--textindent</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:10:20 UTC</pubDate>
      <guid>https://snipplr.com/view/66680/css--replacing-the-title-text-with-a-logo--textindent--textindent</guid>
    </item>
    <item>
      <title>(CSS) CSS - Quickly create pull-quotes - satie83</title>
      <link>https://snipplr.com/view/66679/css--quickly-create-pullquotes</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:10:14 UTC</pubDate>
      <guid>https://snipplr.com/view/66679/css--quickly-create-pullquotes</guid>
    </item>
    <item>
      <title>(CSS) CSS - Adding shadow to text â€“ text-shadow - satie83</title>
      <link>https://snipplr.com/view/66667/css--adding-shadow-to-text--textshadow</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 10:09:26 UTC</pubDate>
      <guid>https://snipplr.com/view/66667/css--adding-shadow-to-text--textshadow</guid>
    </item>
    <item>
      <title>(CSS) CSS - Adding shadow to text â€“ text-shadow - satie83</title>
      <link>https://snipplr.com/view/66658/css--adding-shadow-to-text--textshadow</link>
      <description>&lt;p&gt;Helps make your text stand out from the rest&lt;/p&gt;</description>
      <pubDate>Sun, 12 Aug 2012 09:43:36 UTC</pubDate>
      <guid>https://snipplr.com/view/66658/css--adding-shadow-to-text--textshadow</guid>
    </item>
    <item>
      <title>(VB.NET) Determine if text file is Unicode encoded - ShaneGowland</title>
      <link>https://snipplr.com/view/66287/determine-if-text-file-is-unicode-encoded</link>
      <description>&lt;p&gt;The .NET Framework doesn't support automatic detection of character encoding in the default file I/O methods. This is a quick function that returns True in the specified file is Unicode.&lt;/p&gt;</description>
      <pubDate>Mon, 23 Jul 2012 18:18:14 UTC</pubDate>
      <guid>https://snipplr.com/view/66287/determine-if-text-file-is-unicode-encoded</guid>
    </item>
    <item>
      <title>(PHP) MySQL INSERT Query Generator w/ Strings - lemcoe9</title>
      <link>https://snipplr.com/view/66107/mysql-insert-query-generator-w-strings</link>
      <description>&lt;p&gt;Takes your table name and key=&gt;value array of values and returns the text for inserting into a MySQL database. Automatically surrounds strings with single quotes.&lt;/p&gt;</description>
      <pubDate>Fri, 13 Jul 2012 02:39:08 UTC</pubDate>
      <guid>https://snipplr.com/view/66107/mysql-insert-query-generator-w-strings</guid>
    </item>
    <item>
      <title>(Perl) Process quoted text differently - deepsoul</title>
      <link>https://snipplr.com/view/65684/process-quoted-text-differently</link>
      <description>&lt;p&gt;This Perl snippet shows how to separate quoted parts from a text in order to process quoted and unquoted parts separately.  For example, you could expand variables or wildcards only in the unquoted part.  Then the different processed parts are put together again.&#13;
&#13;
That a marker character "\x01" is used to mark the position of the quoted passages is a bit ugly, but on the other hand the single line of code putting the text together again is very elegant and shows off what Perl can do!&lt;/p&gt;</description>
      <pubDate>Mon, 18 Jun 2012 05:00:57 UTC</pubDate>
      <guid>https://snipplr.com/view/65684/process-quoted-text-differently</guid>
    </item>
    <item>
      <title>(JavaScript) select text in form element - charliefmoran</title>
      <link>https://snipplr.com/view/64721/select-text-in-form-element</link>
      <description>&lt;p&gt;cross-browser way to select all text in a form element, via Jason on Stack Overflow&lt;/p&gt;</description>
      <pubDate>Wed, 25 Apr 2012 07:10:09 UTC</pubDate>
      <guid>https://snipplr.com/view/64721/select-text-in-form-element</guid>
    </item>
    <item>
      <title>(jQuery) Clear all text fields on focus based on original value with single function - Huskie</title>
      <link>https://snipplr.com/view/64478/clear-all-text-fields-on-focus-based-on-original-value-with-single-function</link>
      <description>&lt;p&gt;Clear all text fields on focus based on original value with single function. The code checks for a 'title' attribute on each input with class 'text' and compares this to the current value of the field.&lt;/p&gt;</description>
      <pubDate>Tue, 10 Apr 2012 19:29:59 UTC</pubDate>
      <guid>https://snipplr.com/view/64478/clear-all-text-fields-on-focus-based-on-original-value-with-single-function</guid>
    </item>
    <item>
      <title>(MySQL) Replace a text in SQL Server Table Column - klovera</title>
      <link>https://snipplr.com/view/64253/replace-a-text-in-sql-server-table-column</link>
      <description>&lt;p&gt;If you have a Table which has a Column of type char or varchar or even text, and you want to change a portion of text in it for example a path. In this case you need to change the same text with new one in every records.&lt;/p&gt;</description>
      <pubDate>Sat, 31 Mar 2012 05:21:38 UTC</pubDate>
      <guid>https://snipplr.com/view/64253/replace-a-text-in-sql-server-table-column</guid>
    </item>
    <item>
      <title>(JavaScript) Escribir vertical - rickyslow</title>
      <link>https://snipplr.com/view/64044/escribir-vertical</link>
      <description>&lt;p&gt;Escribir vertical&lt;/p&gt;</description>
      <pubDate>Tue, 20 Mar 2012 06:58:27 UTC</pubDate>
      <guid>https://snipplr.com/view/64044/escribir-vertical</guid>
    </item>
    <item>
      <title>(Java) LabP Project 01 [COMPLETO] - N-genhocas</title>
      <link>https://snipplr.com/view/63579/labp-project-01-completo</link>
      <description>&lt;p&gt;Projecto de LabP01 que consiste na criaÃ§Ã£o de uma classe que permite efectuar operaÃ§Ãµes sobre ficheiros de texto.&lt;/p&gt;</description>
      <pubDate>Sun, 26 Feb 2012 01:43:28 UTC</pubDate>
      <guid>https://snipplr.com/view/63579/labp-project-01-completo</guid>
    </item>
    <item>
      <title>(AppleScript) Applescript to open selected file in finder with specific editor - bash</title>
      <link>https://snipplr.com/view/63447/applescript-to-open-selected-file-in-finder-with-specific-editor</link>
      <description>&lt;p&gt;This Applescript take the selected file in Finder and open it with Sublime Text 2 (~/bin/subl). Using Alfred you can bind a global hotkey for this script, so you can edit your files with just a keypress, without worrying about the default editor.&lt;/p&gt;</description>
      <pubDate>Mon, 20 Feb 2012 20:34:54 UTC</pubDate>
      <guid>https://snipplr.com/view/63447/applescript-to-open-selected-file-in-finder-with-specific-editor</guid>
    </item>
    <item>
      <title>(AppleScript) Applescript to open selected file in finder with specific editor - bash</title>
      <link>https://snipplr.com/view/63446/applescript-to-open-selected-file-in-finder-with-specific-editor</link>
      <description>&lt;p&gt;This Applescript take the selected file in Finder and open it with Sublime Text 2 (~/bin/subl). Using Alfred you can bind a global hotkey for this script, so you can edit your files with just a keypress, without worrying about the default editor.&lt;/p&gt;</description>
      <pubDate>Mon, 20 Feb 2012 20:22:51 UTC</pubDate>
      <guid>https://snipplr.com/view/63446/applescript-to-open-selected-file-in-finder-with-specific-editor</guid>
    </item>
  </channel>
</rss>
