<?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 03:33:44 +0000</lastBuildDate>
    <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>(Visual Basic) [vba-basic] convertir des nombres en lettres (french) V2 - martinbrait</title>
      <link>https://snipplr.com/view/333775/vbabasic-convertir-des-nombres-en-lettres-french-v2</link>
      <description>&lt;p&gt;convert numbers to letters (french) V2&lt;/p&gt;</description>
      <pubDate>Fri, 23 Aug 2019 03:25:12 UTC</pubDate>
      <guid>https://snipplr.com/view/333775/vbabasic-convertir-des-nombres-en-lettres-french-v2</guid>
    </item>
    <item>
      <title>(Visual Basic) [vba-basic] convertir des nombres en lettres (french) V1 - martinbrait</title>
      <link>https://snipplr.com/view/333774/vbabasic-convertir-des-nombres-en-lettres-french-v1</link>
      <description>&lt;p&gt;convert numbers to text (french) V1&lt;/p&gt;</description>
      <pubDate>Fri, 23 Aug 2019 03:23:35 UTC</pubDate>
      <guid>https://snipplr.com/view/333774/vbabasic-convertir-des-nombres-en-lettres-french-v1</guid>
    </item>
    <item>
      <title>(C#) C# - Convert decimal value of integer type to binary value of string type - clinaq</title>
      <link>https://snipplr.com/view/325336/c--convert-decimal-value-of-integer-type-to-binary-value-of-string-type</link>
      <description>&lt;p&gt;Microsoft Official Documentation:&#13;
https://msdn.microsoft.com/en-us/library/8s62fh68(v=vs.110).aspx&lt;/p&gt;</description>
      <pubDate>Sat, 24 Jun 2017 21:31:26 UTC</pubDate>
      <guid>https://snipplr.com/view/325336/c--convert-decimal-value-of-integer-type-to-binary-value-of-string-type</guid>
    </item>
    <item>
      <title>(C#) How to Convert PDF Pages to TIFF Image inside .NET Applications - sherazam</title>
      <link>https://snipplr.com/view/147177/how-to-convert-pdf-pages-to-tiff-image-inside-net-applications</link>
      <description>&lt;p&gt;This technical tip shows how to convert PDF pages to TIFF image inside .NET Applications.  The TiffDevice class allows you to convert PDF pages to TIFF images. This class provides a method named Process which allows you to convert all the pages in a PDF file to a single TIFF image. To convert a particular page in a PDF file to a TIFF image, use an overloaded version of the Process(..) method which takes a page number as an argument for conversion.&lt;/p&gt;</description>
      <pubDate>Wed, 22 Jun 2016 17:38:49 UTC</pubDate>
      <guid>https://snipplr.com/view/147177/how-to-convert-pdf-pages-to-tiff-image-inside-net-applications</guid>
    </item>
    <item>
      <title>(PHP) Detect and convert utf-8 on string - fackz</title>
      <link>https://snipplr.com/view/103361/detect-and-convert-utf8-on-string</link>
      <description>&lt;p&gt;I can't say I can rely on mb_detect_encoding(). Had some freaky false positives a while back. The following code will detect when you need to enconde or decode it.&lt;/p&gt;</description>
      <pubDate>Mon, 29 Jun 2015 22:45:38 UTC</pubDate>
      <guid>https://snipplr.com/view/103361/detect-and-convert-utf8-on-string</guid>
    </item>
    <item>
      <title>(MySQL) Mysql - Convertir todas las columnas en colaciÃ³n utf8 - ironcrema</title>
      <link>https://snipplr.com/view/95331/mysql--convertir-todas-las-columnas-en-colacin-utf8</link>
      <description>&lt;p&gt;Consulta que permite convertir todas las tablas en colaciÃ³n utf8&lt;/p&gt;</description>
      <pubDate>Mon, 30 Mar 2015 04:54:13 UTC</pubDate>
      <guid>https://snipplr.com/view/95331/mysql--convertir-todas-las-columnas-en-colacin-utf8</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>(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>(Ruby) Convert Email to Other Formats using Cloud API in Ruby - johansonkatherine</title>
      <link>https://snipplr.com/view/74784/convert-email-to-other-formats-using-cloud-api-in-ruby</link>
      <description>&lt;p&gt;This technical tip shows how developers can convert email messages to other formats like EML, MSG &amp; MHT in cloud using ruby language.&lt;/p&gt;</description>
      <pubDate>Tue, 10 Jun 2014 17:28:58 UTC</pubDate>
      <guid>https://snipplr.com/view/74784/convert-email-to-other-formats-using-cloud-api-in-ruby</guid>
    </item>
    <item>
      <title>(PHP) Convert MP3 to OGG - dragoviandesign</title>
      <link>https://snipplr.com/view/74717/convert-mp3-to-ogg</link>
      <description>&lt;p&gt;This snippets converts a file called 'test.mp3' in the same folder, to a file called 'test.ogg' and saves it in the same folder as well&lt;/p&gt;</description>
      <pubDate>Sun, 01 Jun 2014 20:00:22 UTC</pubDate>
      <guid>https://snipplr.com/view/74717/convert-mp3-to-ogg</guid>
    </item>
    <item>
      <title>(Java) Load Existing Email Message and Modify its Contents inside Android Apps - johansonkatherine</title>
      <link>https://snipplr.com/view/74654/load-existing-email-message-and-modify-its-contents-inside-android-apps</link>
      <description>&lt;p&gt;This technical tip shows how to load any existing email message and modify its contents before saving it back to disk using Aspose.Email for Android API. To do this successfully, specify the MessageFormat when loading the email message from disk. In addition, it is important to specify the correct MailMessageSaveType when saving the message back to disk.&#13;
&#13;
To update and save an email, the following steps can be used:&#13;
1.	Create an instance of the MailMessage class.&#13;
2.	Load an existing message using the MailMessage class' load() method and specifying the MessageFormat of the existing message.&#13;
3.	Get the subject using getSubject().&#13;
4.	After modifying the subject, set it again using the setSubject() method.&#13;
5.	Get the body using getHtmlBody().&#13;
6.	AFter modifying the body, set it using the setHtmlBody() method .&#13;
7.	Create an instance of the MailAddressCollection class.&#13;
8.	Get the recipients from the TO field into a MailAddressCollection object using the getTo() method exposed by the MailMessage class.&#13;
9.	Add or remove recipients using the add() and remove() methods exposed by the MailAddressCollection class.&#13;
10.	Get the recipients from the CC field into a MailAddressCollection object using the getCC() method exposed by MailMessage class.&#13;
11.	Add or remove recipients using the add() and remove() methods exposed by the MailAddressCollection class.&#13;
12.	Call the save() method exposed by the MailMessage class, specifying the correct MailMessageSaveType to save the message file to the disk in MSG format.&lt;/p&gt;</description>
      <pubDate>Thu, 22 May 2014 14:54:02 UTC</pubDate>
      <guid>https://snipplr.com/view/74654/load-existing-email-message-and-modify-its-contents-inside-android-apps</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>(Java) Java Code Samples for Converting Charts in Excel Files to Image Files - johansonkatherine</title>
      <link>https://snipplr.com/view/73763/java-code-samples-for-converting-charts-in-excel-files-to-image-files</link>
      <description>&lt;p&gt;The following technical tip show how developers can Convert Chart in excel file to Image in java using Aspose.Cells component.  Charts are visually appealing and make it easy for users to see comparisons, patterns, and trends in data. For instance, rather than analyzing columns of worksheet numbers, a chart shows at a glance whether sales are falling or rising, or how actual sales compare to projected sales. People are frequently asked to present statistical and graphical information in an easy to understand and an easy to maintain manner. A picture helps. Sometimes, charts are needed in an application or web pages. Or it might be needed needed for a Word document, a PDF file, a PowerPoint presentation or some other application. In each case, you want to render the chart as an image so that you can use it elsewhere. Aspose.Cells for Java has supported converting charts in Excel files to image files since release 2.1.2.&lt;/p&gt;</description>
      <pubDate>Fri, 28 Feb 2014 14:09:28 UTC</pubDate>
      <guid>https://snipplr.com/view/73763/java-code-samples-for-converting-charts-in-excel-files-to-image-files</guid>
    </item>
    <item>
      <title>(Java) Java Code Samples for Converting Charts in Excel Files to Image Files - johansonkatherine</title>
      <link>https://snipplr.com/view/73762/java-code-samples-for-converting-charts-in-excel-files-to-image-files</link>
      <description>&lt;p&gt;The following technical tip show how developers can Convert Chart in excel file to Image in java using Aspose.Cells component.  Charts are visually appealing and make it easy for users to see comparisons, patterns, and trends in data. For instance, rather than analyzing columns of worksheet numbers, a chart shows at a glance whether sales are falling or rising, or how actual sales compare to projected sales. People are frequently asked to present statistical and graphical information in an easy to understand and an easy to maintain manner. A picture helps. Sometimes, charts are needed in an application or web pages. Or it might be needed needed for a Word document, a PDF file, a PowerPoint presentation or some other application. In each case, you want to render the chart as an image so that you can use it elsewhere. Aspose.Cells for Java has supported converting charts in Excel files to image files since release 2.1.2.&lt;/p&gt;</description>
      <pubDate>Fri, 28 Feb 2014 14:04:04 UTC</pubDate>
      <guid>https://snipplr.com/view/73762/java-code-samples-for-converting-charts-in-excel-files-to-image-files</guid>
    </item>
    <item>
      <title>(Java) C# &amp; VB.NET Code Samples for Exporting Microsoft Visio Diagram to XML - johansonkatherine</title>
      <link>https://snipplr.com/view/73532/c--vbnet-code-samples-for-exporting-microsoft-visio-diagram-to-xml</link>
      <description>&lt;p&gt;This technical tip shows how .NET developers can export Microsoft Visio diagram to XML inside their own applications using Aspose.Diagram for .NET. Aspose.Diagram for .NET lets you export diagrams to a variety of formats: image formats, HTML, SVG, SWF and XML formats:&#13;
&#13;
â€¢	VDX defines an XML diagram.&#13;
â€¢	VTX defines an XML template.&#13;
â€¢	VSX defines an XML stencil.&#13;
&#13;
The Diagram class' constructors read a diagram and the Save method is used to save, or export, a diagram in a different file format. The code snippets in this article show how to use the Save method to save a Visio file to VDX, VTX and VSX.&lt;/p&gt;</description>
      <pubDate>Thu, 30 Jan 2014 19:14:03 UTC</pubDate>
      <guid>https://snipplr.com/view/73532/c--vbnet-code-samples-for-exporting-microsoft-visio-diagram-to-xml</guid>
    </item>
    <item>
      <title>(Java) Convert Each TIFF Frame to JPEG &amp; Transform them to PDF Format Using Java - johansonkatherine</title>
      <link>https://snipplr.com/view/73485/convert-each-tiff-frame-to-jpeg--transform-them-to-pdf-format-using-java</link>
      <description>&lt;p&gt;This technical tip shows how each TIFF frame can be converted to JPEG and then these images to PDF file using Aspose.Pdf for Java. Aspose.Pdf for Java is very well capable of dealing with TIFF images and can easily transform them into PDF format. However there are cases when a TIFF image contains frames with different resolution or page orientation and product might not work well. So in order to resolve such issues, we can first convert TIFF frames into individual JPEG images and then save these images into PDF format using Aspose.Pdf for Java.&lt;/p&gt;</description>
      <pubDate>Thu, 23 Jan 2014 16:51:50 UTC</pubDate>
      <guid>https://snipplr.com/view/73485/convert-each-tiff-frame-to-jpeg--transform-them-to-pdf-format-using-java</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>(Objective C) Casting int to float - pecta</title>
      <link>https://snipplr.com/view/71718/casting-int-to-float</link>
      <description>&lt;p&gt;method to convert int to float in ObjC&lt;/p&gt;</description>
      <pubDate>Thu, 04 Jul 2013 21:48:44 UTC</pubDate>
      <guid>https://snipplr.com/view/71718/casting-int-to-float</guid>
    </item>
    <item>
      <title>(C#) Convert Excel file (XLS) to CSV - engebaja</title>
      <link>https://snipplr.com/view/71092/convert-excel-file-xls-to-csv</link>
      <description>&lt;p&gt;Convert Excel file (XLS) to CSV&lt;/p&gt;</description>
      <pubDate>Wed, 08 May 2013 16:54:17 UTC</pubDate>
      <guid>https://snipplr.com/view/71092/convert-excel-file-xls-to-csv</guid>
    </item>
    <item>
      <title>(PHP) Convert Seconds into Time String in PHP - apphp-snippets</title>
      <link>https://snipplr.com/view/70021/convert-seconds-into-time-string-in-php</link>
      <description>&lt;p&gt;This function returns the duration of the given time period in days, hours, minutes and seconds. For example: echo convertSecToStr('654321'); would return "7 days, 13 hours, 45 minutes, 21 seconds"&lt;/p&gt;</description>
      <pubDate>Wed, 20 Feb 2013 21:27:58 UTC</pubDate>
      <guid>https://snipplr.com/view/70021/convert-seconds-into-time-string-in-php</guid>
    </item>
    <item>
      <title>(C#) US State to Abbreviation Dictionary and Conversion - misholson</title>
      <link>https://snipplr.com/view/69920/us-state-to-abbreviation-dictionary-and-conversion</link>
      <description>&lt;p&gt;Two static dictionaries for converting US state names to abbreviations, and the reverse.&lt;/p&gt;</description>
      <pubDate>Wed, 13 Feb 2013 07:18:00 UTC</pubDate>
      <guid>https://snipplr.com/view/69920/us-state-to-abbreviation-dictionary-and-conversion</guid>
    </item>
    <item>
      <title>(PHP) [PHP] Convert seconds to time (years, months, days, hoursâ€¦) - goo</title>
      <link>https://snipplr.com/view/69462/php-convert-seconds-to-time-years-months-days-hours</link>
      <description>&lt;p&gt;This useful function will convert a time in seconds to a time in years, months, weeks, days, and so on.&lt;/p&gt;</description>
      <pubDate>Mon, 14 Jan 2013 22:20:42 UTC</pubDate>
      <guid>https://snipplr.com/view/69462/php-convert-seconds-to-time-years-months-days-hours</guid>
    </item>
    <item>
      <title>(PHP) PHP Function to Convert 12 Hour Time to 24 Hour Format - kosinix</title>
      <link>https://snipplr.com/view/67326/php-function-to-convert-12-hour-time-to-24-hour-format</link>
      <description>&lt;p&gt;Convert 12-hour time format with hour, minutes, seconds, and meridiem into 24-hour  format. Performs data correction to make sure hours, minutes and seconds have leading zeros if needed.&#13;
&#13;
The trick here is to use strtotime() where we pass the time string in this format: "hh:mm:ss meridiem" &#13;
Example: "02:30:00 pm"&lt;/p&gt;</description>
      <pubDate>Sun, 23 Sep 2012 10:29:48 UTC</pubDate>
      <guid>https://snipplr.com/view/67326/php-function-to-convert-12-hour-time-to-24-hour-format</guid>
    </item>
    <item>
      <title>(JavaScript) 10 Digit String to Phone Format - cpres</title>
      <link>https://snipplr.com/view/65672/10-digit-string-to-phone-format</link>
      <description>&lt;p&gt;Formats a 10-digit phone number into a good format (123) 555-1234&lt;/p&gt;</description>
      <pubDate>Sun, 17 Jun 2012 06:54:16 UTC</pubDate>
      <guid>https://snipplr.com/view/65672/10-digit-string-to-phone-format</guid>
    </item>
    <item>
      <title>(PHP) Parse PHP files into ASP extensions - crypticsoft</title>
      <link>https://snipplr.com/view/65195/parse-php-files-into-asp-extensions</link>
      <description>&lt;p&gt;For those cases where you want to code in PHP but need to deploy to ASP. It doesn't account for php logic but only converts the php include() statements into SSI includes. Could be useful for converting basic websites from php to asp, rare but it happens :)&lt;/p&gt;</description>
      <pubDate>Sat, 26 May 2012 02:13:00 UTC</pubDate>
      <guid>https://snipplr.com/view/65195/parse-php-files-into-asp-extensions</guid>
    </item>
    <item>
      <title>(Bash) ImageMagick Crop &amp; Resize images - artaserse</title>
      <link>https://snipplr.com/view/64005/imagemagick-crop--resize-images</link>
      <description>&lt;p&gt;simple command that resize and crop, if necessary, an image, centering the image.&lt;/p&gt;</description>
      <pubDate>Sat, 17 Mar 2012 20:28:03 UTC</pubDate>
      <guid>https://snipplr.com/view/64005/imagemagick-crop--resize-images</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>(JavaScript) transfrom submit button to hyperlink - pavlosvos</title>
      <link>https://snipplr.com/view/63241/transfrom-submit-button-to-hyperlink</link>
      <description>&lt;p&gt;Convert a form submit button code to a hyperlink code and hide the form&lt;/p&gt;</description>
      <pubDate>Fri, 10 Feb 2012 23:20:39 UTC</pubDate>
      <guid>https://snipplr.com/view/63241/transfrom-submit-button-to-hyperlink</guid>
    </item>
    <item>
      <title>(PHP) Convert rgb to hex - macodev</title>
      <link>https://snipplr.com/view/62816/convert-rgb-to-hex</link>
      <description>&lt;p&gt;Convert rgb color detected by jQuery into hex value.&lt;/p&gt;</description>
      <pubDate>Fri, 27 Jan 2012 22:24:38 UTC</pubDate>
      <guid>https://snipplr.com/view/62816/convert-rgb-to-hex</guid>
    </item>
    <item>
      <title>(PHP) Converting second to readable time - zierocode</title>
      <link>https://snipplr.com/view/62418/converting-second-to-readable-time</link>
      <description>&lt;p&gt;This code is applied from http://www.ultramegatech.com/blog/2009/06/snippet-converting-seconds-to-readable-time/&lt;/p&gt;</description>
      <pubDate>Mon, 09 Jan 2012 20:51:37 UTC</pubDate>
      <guid>https://snipplr.com/view/62418/converting-second-to-readable-time</guid>
    </item>
    <item>
      <title>(PHP) Convert numbers to words (Bulgarian language) - stz184</title>
      <link>https://snipplr.com/view/62021/convert-numbers-to-words-bulgarian-language</link>
      <description>&lt;p&gt;This function accept one parameter (integer or float) and returns the same number writed with words. Useful for currencies and invoices.&lt;/p&gt;</description>
      <pubDate>Tue, 20 Dec 2011 21:18:02 UTC</pubDate>
      <guid>https://snipplr.com/view/62021/convert-numbers-to-words-bulgarian-language</guid>
    </item>
    <item>
      <title>(ActionScript 3) Timecode Utility - vamapaull</title>
      <link>https://snipplr.com/view/61933/timecode-utility</link>
      <description>&lt;p&gt;It's very useful if you build a FLV player for example, and want to convert the time into minutes:seconds (example: 6:13)&#13;
&#13;
//apply it to your project like this (and don't forget to import the class):&#13;
time.text = TimeUtil.getTimecode(timeValue);&lt;/p&gt;</description>
      <pubDate>Sat, 17 Dec 2011 00:46:38 UTC</pubDate>
      <guid>https://snipplr.com/view/61933/timecode-utility</guid>
    </item>
    <item>
      <title>(SAS) Convert SAS dataset to Text file - webonomic</title>
      <link>https://snipplr.com/view/60841/convert-sas-dataset-to-text-file</link>
      <description>&lt;p&gt;This SAS macro will convert a dataset to a text file&lt;/p&gt;</description>
      <pubDate>Tue, 15 Nov 2011 14:20:12 UTC</pubDate>
      <guid>https://snipplr.com/view/60841/convert-sas-dataset-to-text-file</guid>
    </item>
    <item>
      <title>(Bash) Convert Apple .plist file to from XML / binary - stiobhart</title>
      <link>https://snipplr.com/view/60213/convert-apple-plist-file-to-from-xml--binary</link>
      <description>&lt;p&gt;A pair of handy terminal commands for converting Apple .plist preference files from binary to XML format [allowing for easy editing with a text editor] and then back to binary again, afterwards.&lt;/p&gt;</description>
      <pubDate>Wed, 26 Oct 2011 19:30:16 UTC</pubDate>
      <guid>https://snipplr.com/view/60213/convert-apple-plist-file-to-from-xml--binary</guid>
    </item>
    <item>
      <title>(PHP) Convert Twitter API Datetime to MySQL Datetime Format - aristoworks</title>
      <link>https://snipplr.com/view/59869/convert-twitter-api-datetime-to-mysql-datetime-format</link>
      <description>&lt;p&gt;This is a very rudimentary function used to convert a Datetime delivered by the Twitter API to a format you can store in MySQL's datetime field.&lt;/p&gt;</description>
      <pubDate>Mon, 17 Oct 2011 00:51:40 UTC</pubDate>
      <guid>https://snipplr.com/view/59869/convert-twitter-api-datetime-to-mysql-datetime-format</guid>
    </item>
    <item>
      <title>(Bash) Convert .flac files to .mp3 - pbreah</title>
      <link>https://snipplr.com/view/59809/convert-flac-files-to-mp3</link>
      <description>&lt;p&gt;must install flac and lame&#13;
apt-get install flac&#13;
apt-get install lame&lt;/p&gt;</description>
      <pubDate>Sun, 16 Oct 2011 02:21:32 UTC</pubDate>
      <guid>https://snipplr.com/view/59809/convert-flac-files-to-mp3</guid>
    </item>
    <item>
      <title>(PHP) Convert all HTML entities in database to actual characters - f6design</title>
      <link>https://snipplr.com/view/59594/convert-all-html-entities-in-database-to-actual-characters</link>
      <description>&lt;p&gt;Sometimes a legacy database will have HTML entities stored in it.&#13;
&#13;
This function converts them. Note that this function assumes you have a database abstraction layer, and may need to be modified to connect to YOUR database.&lt;/p&gt;</description>
      <pubDate>Mon, 10 Oct 2011 17:06:51 UTC</pubDate>
      <guid>https://snipplr.com/view/59594/convert-all-html-entities-in-database-to-actual-characters</guid>
    </item>
    <item>
      <title>(Other) Excel Convert Epoch Time - silentpro</title>
      <link>https://snipplr.com/view/59568/excel-convert-epoch-time</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 09 Oct 2011 03:47:47 UTC</pubDate>
      <guid>https://snipplr.com/view/59568/excel-convert-epoch-time</guid>
    </item>
    <item>
      <title>(PHP) convert html to pdf with html2ps - kspal</title>
      <link>https://snipplr.com/view/58562/convert-html-to-pdf-with-html2ps</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 09 Sep 2011 23:00:42 UTC</pubDate>
      <guid>https://snipplr.com/view/58562/convert-html-to-pdf-with-html2ps</guid>
    </item>
    <item>
      <title>(PHP) Date Format Convert - nebojsac</title>
      <link>https://snipplr.com/view/57792/date-format-convert</link>
      <description>&lt;p&gt;Switches 'dd mm yyyy' to 'yyyy-mm-dd'&lt;/p&gt;</description>
      <pubDate>Fri, 12 Aug 2011 22:18:49 UTC</pubDate>
      <guid>https://snipplr.com/view/57792/date-format-convert</guid>
    </item>
    <item>
      <title>(PHP) Number to word converter (0-1 googol) - lasavior</title>
      <link>https://snipplr.com/view/57646/number-to-word-converter-01-googol</link>
      <description>&lt;p&gt;Takes a number (no decimal) and converts it to written words.Why'd i write it to be able to do such big numbers? Why not? &#13;
&#13;
Note: The numbers next to the 'thousandfoldnums' are for your reference (thats how many zeros/places there are in that number), they have no function in the script.&#13;
&#13;
I wrote this as a simple exercise to see if i could. I was reading something and a user mentioned that this was difficult. Even at my slow and limited programming capabilities i still did this in under two hours (still longer than i anticipated, but given my speed its still relatively short), pretty simple really. So here it is for anyone that needs it.&lt;/p&gt;</description>
      <pubDate>Fri, 05 Aug 2011 08:05:28 UTC</pubDate>
      <guid>https://snipplr.com/view/57646/number-to-word-converter-01-googol</guid>
    </item>
    <item>
      <title>(MySQL) Convertir datos de latin1 a utf8 en MySQL - n19ht</title>
      <link>https://snipplr.com/view/57234/convertir-datos-de-latin1-a-utf8-en-mysql</link>
      <description>&lt;p&gt;Con estas instrucciones se pueden corregir los caracteres latinos que hayan sido almacenados errÃ³neamente en una base de datos MySQL&lt;/p&gt;</description>
      <pubDate>Thu, 28 Jul 2011 06:11:36 UTC</pubDate>
      <guid>https://snipplr.com/view/57234/convertir-datos-de-latin1-a-utf8-en-mysql</guid>
    </item>
    <item>
      <title>(ActionScript 3) Convert Radians to Degrees - zackattack27</title>
      <link>https://snipplr.com/view/57010/convert-radians-to-degrees</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 22 Jul 2011 03:56:58 UTC</pubDate>
      <guid>https://snipplr.com/view/57010/convert-radians-to-degrees</guid>
    </item>
    <item>
      <title>(JavaScript) Javascript Secs to Time - odavy</title>
      <link>https://snipplr.com/view/56323/javascript-secs-to-time</link>
      <description>&lt;p&gt;Convert number of seconds to HH:MM&lt;/p&gt;</description>
      <pubDate>Fri, 08 Jul 2011 20:31:15 UTC</pubDate>
      <guid>https://snipplr.com/view/56323/javascript-secs-to-time</guid>
    </item>
    <item>
      <title>(PHP) Object to Array - frederichoule</title>
      <link>https://snipplr.com/view/51420/object-to-array</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 01 Apr 2011 13:30:51 UTC</pubDate>
      <guid>https://snipplr.com/view/51420/object-to-array</guid>
    </item>
    <item>
      <title>(Java) javax.security.cert.X509Certificate from byte[] - vss</title>
      <link>https://snipplr.com/view/50687/javaxsecuritycertx509certificate-from-byte</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 15 Mar 2011 19:33:03 UTC</pubDate>
      <guid>https://snipplr.com/view/50687/javaxsecuritycertx509certificate-from-byte</guid>
    </item>
    <item>
      <title>(Java) java.security.cert.X509Certificate from byte[] - vss</title>
      <link>https://snipplr.com/view/50686/javasecuritycertx509certificate-from-byte</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 15 Mar 2011 19:30:32 UTC</pubDate>
      <guid>https://snipplr.com/view/50686/javasecuritycertx509certificate-from-byte</guid>
    </item>
    <item>
      <title>(Java) Bytes to hex string - vss</title>
      <link>https://snipplr.com/view/50684/bytes-to-hex-string</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 15 Mar 2011 19:20:23 UTC</pubDate>
      <guid>https://snipplr.com/view/50684/bytes-to-hex-string</guid>
    </item>
  </channel>
</rss>
