<?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 21:58:21 +0000</lastBuildDate>
    <item>
      <title>(PHP) Update multiple fields using #ajax in Drupal 7 form - guruparthi</title>
      <link>https://snipplr.com/view/310596/update-multiple-fields-using-ajax-in-drupal-7-form</link>
      <description>&lt;p&gt;Update multiple fields using #ajax in Drupal 7 form&lt;/p&gt;</description>
      <pubDate>Thu, 02 Mar 2017 06:26:19 UTC</pubDate>
      <guid>https://snipplr.com/view/310596/update-multiple-fields-using-ajax-in-drupal-7-form</guid>
    </item>
    <item>
      <title>(VB.NET) Trabajando SP con DataTable , Dataset y Update  origen desconectado - systemergon</title>
      <link>https://snipplr.com/view/146002/trabajando-sp-con-datatable--dataset-y-update--origen-desconectado</link>
      <description>&lt;p&gt;Ejecutar sp retornando un datatable, Ejecutar sp retornando un dataset, Ejecutar sp Update retornando los registros actualizados&lt;/p&gt;</description>
      <pubDate>Fri, 05 Feb 2016 03:19:54 UTC</pubDate>
      <guid>https://snipplr.com/view/146002/trabajando-sp-con-datatable--dataset-y-update--origen-desconectado</guid>
    </item>
    <item>
      <title>(PHP) Admin Fix for WordPress - 108Bits</title>
      <link>https://snipplr.com/view/76835/admin-fix-for-wordpress</link>
      <description>&lt;p&gt;Add the code below to change the Home &amp; Site URL that is configured in the database (wp-options table) by WordPress. Whenever you copy/move a site to a new hosting and the URL has changed you can use the code below to fix any strange redirects that might happen. &#13;
&#13;
- Insert code to wp-loging.php &#13;
- Add your new url. &#13;
- Surf to www.yoursite.com/wp-login.php &#13;
(site &amp; home url is now updated) &#13;
- Remove code from wp-login.php again&lt;/p&gt;</description>
      <pubDate>Wed, 03 Sep 2014 01:01:22 UTC</pubDate>
      <guid>https://snipplr.com/view/76835/admin-fix-for-wordpress</guid>
    </item>
    <item>
      <title>(Objective C) Refresh UIAppearance after application loaded - Nibli</title>
      <link>https://snipplr.com/view/75259/refresh-uiappearance-after-application-loaded</link>
      <description>&lt;p&gt;This snippet shows you how to reload the UIAppearance of an application after changes made on the proxies. This is required because iOS nativaly only load appearance proxies on "applicationDidFinishLaunching".&lt;/p&gt;</description>
      <pubDate>Wed, 16 Jul 2014 22:21:34 UTC</pubDate>
      <guid>https://snipplr.com/view/75259/refresh-uiappearance-after-application-loaded</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>(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>(PHP) Convert PDF from Remote Server to other Format using Aspose.Pdf for Cloud API in PHP - johansonkatherine</title>
      <link>https://snipplr.com/view/74182/convert-pdf-from-remote-server-to-other-format-using-asposepdf-for-cloud-api-in-php</link>
      <description>&lt;p&gt;Aspose.PDF for Cloud API has released PHP SDK which allows PHP developers to convert PDF files uploaded to a remote server to other formats. You can pass URL and format parameters to specify the PDFâ€™s URL and output format and use the PUT method of the convert resource to convert remote PDF files. You can download Aspose Cloud PHP SDK from the link given below:&#13;
&#13;
https://github.com/asposeforcloud/Aspose_Cloud_SDK_For_Php&#13;
&#13;
The following code sample shows how you can use Aspose Cloud PHP SDK to convert PDF from remote server to TIFF image. You can define any format you want your PDF to convert to in â€œconvertByUrl methodâ€.  You can view code for other languages on this page given below.&#13;
&#13;
&#13;
http://www.aspose.com/docs/display/pdfcloud/Convert+PDF+from+Remote+Server+to+other+Formats&lt;/p&gt;</description>
      <pubDate>Fri, 11 Apr 2014 18:31:54 UTC</pubDate>
      <guid>https://snipplr.com/view/74182/convert-pdf-from-remote-server-to-other-format-using-asposepdf-for-cloud-api-in-php</guid>
    </item>
    <item>
      <title>(PHP) Update Wordpress URL - WMSchneider</title>
      <link>https://snipplr.com/view/71783/update-wordpress-url</link>
      <description>&lt;p&gt;Open your function.php of your active Theme.&#13;
Copy your code insert and call the new Site URL.&#13;
After delete the code snippet.&lt;/p&gt;</description>
      <pubDate>Tue, 09 Jul 2013 22:22:18 UTC</pubDate>
      <guid>https://snipplr.com/view/71783/update-wordpress-url</guid>
    </item>
    <item>
      <title>(SQL) Update trigger for datetime modified field - kidmizere</title>
      <link>https://snipplr.com/view/71659/update-trigger-for-datetime-modified-field</link>
      <description>&lt;p&gt;This will create a table, create an update trigger to add current datetime to modify_date field, do 2 inserts, 1 update and display the results.&lt;/p&gt;</description>
      <pubDate>Fri, 28 Jun 2013 07:00:23 UTC</pubDate>
      <guid>https://snipplr.com/view/71659/update-trigger-for-datetime-modified-field</guid>
    </item>
    <item>
      <title>(PHP) Yoast WordPress SEO Ajax frontend updater - barkgj</title>
      <link>https://snipplr.com/view/70300/yoast-wordpress-seo-ajax-frontend-updater</link>
      <description>&lt;p&gt;This snippet shows how to retrieve information from the SEO plugin of Yoast, to be used for front-end use. This snippet is taken from the opensource free Nexus WP framework supporting front-end editing, custom layout and drag &amp; drop.&lt;/p&gt;</description>
      <pubDate>Wed, 06 Mar 2013 23:08:19 UTC</pubDate>
      <guid>https://snipplr.com/view/70300/yoast-wordpress-seo-ajax-frontend-updater</guid>
    </item>
    <item>
      <title>(PHP) [CakePHP] Update field with current field data - tucq88</title>
      <link>https://snipplr.com/view/67862/cakephp-update-field-with-current-field-data</link>
      <description>&lt;p&gt;Update current field data.&lt;/p&gt;</description>
      <pubDate>Mon, 22 Oct 2012 15:05:57 UTC</pubDate>
      <guid>https://snipplr.com/view/67862/cakephp-update-field-with-current-field-data</guid>
    </item>
    <item>
      <title>(MySQL) Remap values inside a MYSQL query using CASE...WHEN syntax - ginoplusio</title>
      <link>https://snipplr.com/view/67831/remap-values-inside-a-mysql-query-using-casewhen-syntax</link>
      <description>&lt;p&gt;How to remap a value to another inside a mysql query select.&lt;/p&gt;</description>
      <pubDate>Sat, 20 Oct 2012 08:14:57 UTC</pubDate>
      <guid>https://snipplr.com/view/67831/remap-values-inside-a-mysql-query-using-casewhen-syntax</guid>
    </item>
    <item>
      <title>(SQL) SQL UPDATE using JOIN - ed_trench</title>
      <link>https://snipplr.com/view/67610/sql-update-using-join</link>
      <description>&lt;p&gt;SQL update examples using joins&lt;/p&gt;</description>
      <pubDate>Thu, 04 Oct 2012 23:48:09 UTC</pubDate>
      <guid>https://snipplr.com/view/67610/sql-update-using-join</guid>
    </item>
    <item>
      <title>(Bash) Perform git pull on subdirectory (recursive) - luizlopes</title>
      <link>https://snipplr.com/view/62314/perform-git-pull-on-subdirectory-recursive</link>
      <description>&lt;p&gt;A fast and easy way to go through all vim-pathogen bundles and perform a git pull on all of them.&lt;/p&gt;</description>
      <pubDate>Thu, 05 Jan 2012 08:09:07 UTC</pubDate>
      <guid>https://snipplr.com/view/62314/perform-git-pull-on-subdirectory-recursive</guid>
    </item>
    <item>
      <title>(SVN) svn update dryrun - svleeuwen</title>
      <link>https://snipplr.com/view/60633/svn-update-dryrun</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 08 Nov 2011 21:34:13 UTC</pubDate>
      <guid>https://snipplr.com/view/60633/svn-update-dryrun</guid>
    </item>
    <item>
      <title>(MySQL) Update database fields with search replace word - carouselcreative</title>
      <link>https://snipplr.com/view/60218/update-database-fields-with-search-replace-word</link>
      <description>&lt;p&gt;Used to update a database field using search replace.&lt;/p&gt;</description>
      <pubDate>Wed, 26 Oct 2011 23:50:44 UTC</pubDate>
      <guid>https://snipplr.com/view/60218/update-database-fields-with-search-replace-word</guid>
    </item>
    <item>
      <title>(PHP) Hide update warning for every user but admin  - florent</title>
      <link>https://snipplr.com/view/60024/hide-update-warning-for-every-user-but-admin-</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 21 Oct 2011 02:28:12 UTC</pubDate>
      <guid>https://snipplr.com/view/60024/hide-update-warning-for-every-user-but-admin-</guid>
    </item>
    <item>
      <title>(SQL) Update table with values selected in a subquery - preasha</title>
      <link>https://snipplr.com/view/58267/update-table-with-values-selected-in-a-subquery</link>
      <description>&lt;p&gt;The inner join could be nested too&lt;/p&gt;</description>
      <pubDate>Mon, 29 Aug 2011 22:34:04 UTC</pubDate>
      <guid>https://snipplr.com/view/58267/update-table-with-values-selected-in-a-subquery</guid>
    </item>
    <item>
      <title>(SQL) Mssql update or insert - icebob</title>
      <link>https://snipplr.com/view/57916/mssql-update-or-insert</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 17 Aug 2011 22:08:12 UTC</pubDate>
      <guid>https://snipplr.com/view/57916/mssql-update-or-insert</guid>
    </item>
    <item>
      <title>(SQL) SQL Update With Join - lostumbrellas</title>
      <link>https://snipplr.com/view/57864/sql-update-with-join</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 16 Aug 2011 12:59:48 UTC</pubDate>
      <guid>https://snipplr.com/view/57864/sql-update-with-join</guid>
    </item>
    <item>
      <title>(MySQL) Simple Concurrent Update - mantosz</title>
      <link>https://snipplr.com/view/57468/simple-concurrent-update</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 01 Aug 2011 17:17:22 UTC</pubDate>
      <guid>https://snipplr.com/view/57468/simple-concurrent-update</guid>
    </item>
    <item>
      <title>(SQL) Insert/Update in one stored procedure - Whiteagle</title>
      <link>https://snipplr.com/view/57001/insertupdate-in-one-stored-procedure</link>
      <description>&lt;p&gt;To start my new post area I will share a simple stored procedure that will check if a record exists, if so update it, otherwise create it; Simple hum?! Just Update it to your needs :)&lt;/p&gt;</description>
      <pubDate>Fri, 22 Jul 2011 01:33:53 UTC</pubDate>
      <guid>https://snipplr.com/view/57001/insertupdate-in-one-stored-procedure</guid>
    </item>
    <item>
      <title>(Bash) RPM - Install an RPM Package IGNORING the dependencies - ragnarokkrr</title>
      <link>https://snipplr.com/view/56068/rpm--install-an-rpm-package-ignoring-the-dependencies</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 04 Jul 2011 08:15:36 UTC</pubDate>
      <guid>https://snipplr.com/view/56068/rpm--install-an-rpm-package-ignoring-the-dependencies</guid>
    </item>
    <item>
      <title>(PHP) Replace fields siteurl and home in wp_options tables in a wordpress multisite - hugosolar</title>
      <link>https://snipplr.com/view/55874/replace-fields-siteurl-and-home-in-wpoptions-tables-in-a-wordpress-multisite</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 29 Jun 2011 07:40:14 UTC</pubDate>
      <guid>https://snipplr.com/view/55874/replace-fields-siteurl-and-home-in-wpoptions-tables-in-a-wordpress-multisite</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>(Bash) RPM - Upgrade an RPM Package - ragnarokkrr</title>
      <link>https://snipplr.com/view/54673/rpm--upgrade-an-rpm-package</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 01 Jun 2011 05:50:11 UTC</pubDate>
      <guid>https://snipplr.com/view/54673/rpm--upgrade-an-rpm-package</guid>
    </item>
    <item>
      <title>(VB.NET) Update a value to entire rows in a column in dataset without looping - derebus</title>
      <link>https://snipplr.com/view/53127/update-a-value-to-entire-rows-in-a-column-in-dataset-without-looping</link>
      <description>&lt;p&gt;Update a value to entire rows in a column in dataset without looping&lt;/p&gt;</description>
      <pubDate>Fri, 06 May 2011 04:08:42 UTC</pubDate>
      <guid>https://snipplr.com/view/53127/update-a-value-to-entire-rows-in-a-column-in-dataset-without-looping</guid>
    </item>
    <item>
      <title>(MySQL) Updated mysql database from SQL dump - greeneggs614</title>
      <link>https://snipplr.com/view/52708/updated-mysql-database-from-sql-dump</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 28 Apr 2011 06:35:03 UTC</pubDate>
      <guid>https://snipplr.com/view/52708/updated-mysql-database-from-sql-dump</guid>
    </item>
    <item>
      <title>(PHP) Kaimonokago create and update - shinokada</title>
      <link>https://snipplr.com/view/52624/kaimonokago-create-and-update</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 27 Apr 2011 03:45:17 UTC</pubDate>
      <guid>https://snipplr.com/view/52624/kaimonokago-create-and-update</guid>
    </item>
    <item>
      <title>(JavaScript) javascript execution for events  in update panel - kashif21</title>
      <link>https://snipplr.com/view/52444/javascript-execution-for-events--in-update-panel</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 22 Apr 2011 03:03:09 UTC</pubDate>
      <guid>https://snipplr.com/view/52444/javascript-execution-for-events--in-update-panel</guid>
    </item>
    <item>
      <title>(PHP) PHP Update Registo - nosmk</title>
      <link>https://snipplr.com/view/49487/php-update-registo</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 23 Feb 2011 13:50:28 UTC</pubDate>
      <guid>https://snipplr.com/view/49487/php-update-registo</guid>
    </item>
    <item>
      <title>(C#) Cross thread update Windows Form - falconzy</title>
      <link>https://snipplr.com/view/44856/cross-thread-update-windows-form</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 25 Nov 2010 18:26:06 UTC</pubDate>
      <guid>https://snipplr.com/view/44856/cross-thread-update-windows-form</guid>
    </item>
    <item>
      <title>(XML) Update version number with Regular Expression using MSBuild - cappellin</title>
      <link>https://snipplr.com/view/44674/update-version-number-with-regular-expression-using-msbuild</link>
      <description>&lt;p&gt;This snippet replaces all three different version strings in file `verid.h` using regular expressions with the value of properties `$(Major)`, `%(Minor)`, `$(SP)` and `$(Build)` when the property `$(Label)` has value _true_.&#13;
To run this project you need MSBuild and the open source tasks library for MSBuild by [tigris.org](http://msbuildtasks.tigris.org/ "tigris.org").&#13;
&#13;
Here is an example of file `verid.h`:&#13;
&#13;
    // File version&#13;
    #define szVerId_IDS_VERSION         "1.40 (00) - Build (26)"&#13;
    #define szVerId_FILEVERSION         "1.40.00.26"&#13;
    #define   VerId_FILEVERSION          1,40,00,26&#13;
    &#13;
    // Product version&#13;
    #define szVerId_PRODUCTVERSION      "1.40.00.26"&#13;
    #define   VerId_PRODUCTVERSION       1,40,00,26&lt;/p&gt;</description>
      <pubDate>Mon, 22 Nov 2010 22:52:42 UTC</pubDate>
      <guid>https://snipplr.com/view/44674/update-version-number-with-regular-expression-using-msbuild</guid>
    </item>
    <item>
      <title>(MySQL) Move WordPress to another host - errkk</title>
      <link>https://snipplr.com/view/42125/move-wordpress-to-another-host</link>
      <description>&lt;p&gt;SQL query to update *wp_options* records that are specific to the host of a WordPress site. Run this query after copying the DB to another server  (if this URL is different). Useful for deploying WordPress from a dev server to a live environment.&lt;/p&gt;</description>
      <pubDate>Tue, 12 Oct 2010 20:42:18 UTC</pubDate>
      <guid>https://snipplr.com/view/42125/move-wordpress-to-another-host</guid>
    </item>
    <item>
      <title>(SQL) Updating guid for posts and pages in Wordpress database - arnach</title>
      <link>https://snipplr.com/view/41992/updating-guid-for-posts-and-pages-in-wordpress-database</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 10 Oct 2010 21:04:26 UTC</pubDate>
      <guid>https://snipplr.com/view/41992/updating-guid-for-posts-and-pages-in-wordpress-database</guid>
    </item>
    <item>
      <title>(PHP) Cron facebook status update - jaredyeo</title>
      <link>https://snipplr.com/view/40201/cron-facebook-status-update</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 09 Sep 2010 19:23:44 UTC</pubDate>
      <guid>https://snipplr.com/view/40201/cron-facebook-status-update</guid>
    </item>
    <item>
      <title>(SQL) Update one table from another - ChrisCantley</title>
      <link>https://snipplr.com/view/38876/update-one-table-from-another</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 11 Aug 2010 00:41:38 UTC</pubDate>
      <guid>https://snipplr.com/view/38876/update-one-table-from-another</guid>
    </item>
    <item>
      <title>(SQL) Clean SQL Injection from your tables - emregulcan</title>
      <link>https://snipplr.com/view/36468/clean-sql-injection-from-your-tables</link>
      <description>&lt;p&gt;This snippet just updates your tables which infected "&lt;script&gt; &lt;/script&gt;" code blocks.&#13;
You must update all columns one by one.&lt;/p&gt;</description>
      <pubDate>Tue, 29 Jun 2010 22:58:49 UTC</pubDate>
      <guid>https://snipplr.com/view/36468/clean-sql-injection-from-your-tables</guid>
    </item>
    <item>
      <title>(JavaScript) Sharepoint Ajax List Data populater Example - rumremix</title>
      <link>https://snipplr.com/view/35898/sharepoint-ajax-list-data-populater-example</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 19 Jun 2010 03:36:51 UTC</pubDate>
      <guid>https://snipplr.com/view/35898/sharepoint-ajax-list-data-populater-example</guid>
    </item>
    <item>
      <title>(Objective C) iPhone View Auto Rotate With View Updates - Header &amp; Implementation - rvachere</title>
      <link>https://snipplr.com/view/35039/iphone-view-auto-rotate-with-view-updates--header--implementation</link>
      <description>&lt;p&gt;this was just an exercise to learn about updating a UIImageView to the desired orientation;the accelerometer was used to detect the movements through the overridden method shouldAutorotateToInterfaceOrientation. wurd.&lt;/p&gt;</description>
      <pubDate>Fri, 21 May 2010 21:54:50 UTC</pubDate>
      <guid>https://snipplr.com/view/35039/iphone-view-auto-rotate-with-view-updates--header--implementation</guid>
    </item>
    <item>
      <title>(PHP) Mass Update Products' Tax Class via Magento API - nick108</title>
      <link>https://snipplr.com/view/30635/mass-update-products-tax-class-via-magento-api</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 31 Mar 2010 09:16:30 UTC</pubDate>
      <guid>https://snipplr.com/view/30635/mass-update-products-tax-class-via-magento-api</guid>
    </item>
    <item>
      <title>(PHP) Routine to update and set variables in Drupal using hook_update - berkes</title>
      <link>https://snipplr.com/view/29499/routine-to-update-and-set-variables-in-drupal-using-hookupdate</link>
      <description>&lt;p&gt;Drupal allows hook_update_N to run any sort of code. Most of the time, however, people only use this to alter the database scheme. &#13;
But you can use it for much more. Like setting variables, creating nodes, importing views and so on. &#13;
This code shows how to set a series of variables in Drupal.&#13;
&#13;
When you deploy this code, running update.php will set all the variables as in the listing.&#13;
&#13;
I typically catch this in a module called 'projectname_meta'. So this function would go in projectname_meta.install, and will be called from projectname_meta_install and projectname_meta_update_5002, for example.&lt;/p&gt;</description>
      <pubDate>Tue, 09 Mar 2010 09:00:47 UTC</pubDate>
      <guid>https://snipplr.com/view/29499/routine-to-update-and-set-variables-in-drupal-using-hookupdate</guid>
    </item>
    <item>
      <title>(jQuery) Jquery Code  in ASP.NET UpdatePanel solution - delikassap</title>
      <link>https://snipplr.com/view/27398/jquery-code--in-aspnet-updatepanel-solution</link>
      <description>&lt;p&gt;Just replace classic document.ready with pageLoad function as belows:&#13;
&#13;
pageLoad function will called on all postback and partial postbacks. So it makes the jquery code no matter what :D &#13;
Even in update panel.&lt;/p&gt;</description>
      <pubDate>Sun, 31 Jan 2010 00:23:53 UTC</pubDate>
      <guid>https://snipplr.com/view/27398/jquery-code--in-aspnet-updatepanel-solution</guid>
    </item>
    <item>
      <title>(SQL) Common SQL Commands (create table, etc) - CDIDevs</title>
      <link>https://snipplr.com/view/25773/common-sql-commands-create-table-etc</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 31 Dec 2009 10:55:05 UTC</pubDate>
      <guid>https://snipplr.com/view/25773/common-sql-commands-create-table-etc</guid>
    </item>
    <item>
      <title>(Visual Basic) Delete / Insert / Update tables in an Access-Database - choasis</title>
      <link>https://snipplr.com/view/25340/delete--insert--update-tables-in-an-accessdatabase</link>
      <description>&lt;p&gt;VBScript!&lt;/p&gt;</description>
      <pubDate>Wed, 23 Dec 2009 11:42:55 UTC</pubDate>
      <guid>https://snipplr.com/view/25340/delete--insert--update-tables-in-an-accessdatabase</guid>
    </item>
    <item>
      <title>(PHP) batch import csv to drupal database - ReeceMarsland</title>
      <link>https://snipplr.com/view/23930/batch-import-csv-to-drupal-database</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 30 Nov 2009 09:48:02 UTC</pubDate>
      <guid>https://snipplr.com/view/23930/batch-import-csv-to-drupal-database</guid>
    </item>
    <item>
      <title>(MySQL) Insert or update if unique key already exist - Zwendel</title>
      <link>https://snipplr.com/view/21965/insert-or-update-if-unique-key-already-exist</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 27 Oct 2009 10:42:59 UTC</pubDate>
      <guid>https://snipplr.com/view/21965/insert-or-update-if-unique-key-already-exist</guid>
    </item>
    <item>
      <title>(PHP) Update Multiple rows in a single form - daveismyname</title>
      <link>https://snipplr.com/view/20334/update-multiple-rows-in-a-single-form</link>
      <description>&lt;p&gt;This snippet allows you to update multiple rows of a database using a single form in one easy click&lt;/p&gt;</description>
      <pubDate>Mon, 28 Sep 2009 04:30:07 UTC</pubDate>
      <guid>https://snipplr.com/view/20334/update-multiple-rows-in-a-single-form</guid>
    </item>
    <item>
      <title>(SQL) SQL UPDATE SELECT - thomasvdb</title>
      <link>https://snipplr.com/view/20096/sql-update-select</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 23 Sep 2009 04:40:56 UTC</pubDate>
      <guid>https://snipplr.com/view/20096/sql-update-select</guid>
    </item>
  </channel>
</rss>
