<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Muller Digital | Web Programming</title>
	
	<link>http://news.mullerdigital.com</link>
	<description>Web Programming</description>
	<lastBuildDate>Thu, 29 Dec 2011 15:10:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/MullerDigitalWebProgramming" /><feedburner:info uri="mullerdigitalwebprogramming" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>MullerDigitalWebProgramming</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>MySQL remove duplicates</title>
		<link>http://feedproxy.google.com/~r/MullerDigitalWebProgramming/~3/DG3S02wPk4c/</link>
		<comments>http://news.mullerdigital.com/2011/12/09/mysql-remove-duplicates/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 17:27:48 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://news.mullerdigital.com/?p=245</guid>
		<description><![CDATA[DELETE n1 FROM table n1, table n2 WHERE n1.id > 10000 AND n1.id < 11000 AND n1.id > n2.id AND n1.EMAIL = n2.EMAIL; The above MySQL query will delete duplicate email addresses between the id&#8217;s 10000 and 11000. Breaking the query into blocks of 1000 id&#8217;s will reduce strain the MySQL server.]]></description>
			<content:encoded><![CDATA[<p><code>DELETE n1 FROM table n1, table n2 WHERE n1.id > 10000 AND n1.id < 11000 AND n1.id > n2.id AND n1.EMAIL = n2.EMAIL;</code></p>
<p>The above MySQL query will delete duplicate email addresses between the id&#8217;s 10000 and 11000. Breaking the query into blocks of 1000 id&#8217;s will reduce strain the MySQL server.</p>
<img src="http://feeds.feedburner.com/~r/MullerDigitalWebProgramming/~4/DG3S02wPk4c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://news.mullerdigital.com/2011/12/09/mysql-remove-duplicates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://news.mullerdigital.com/2011/12/09/mysql-remove-duplicates/</feedburner:origLink></item>
		<item>
		<title>MySQL find duplicates</title>
		<link>http://feedproxy.google.com/~r/MullerDigitalWebProgramming/~3/3OC7DyWLkKA/</link>
		<comments>http://news.mullerdigital.com/2011/12/09/mysql-find-duplicates/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 17:23:08 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://news.mullerdigital.com/?p=242</guid>
		<description><![CDATA[select EMAIL, count(EMAIL) as cnt from TABLE group by EMAIL having cnt > 1 ORDER BY `cnt` DESC The above MySQL query will find and list the number of multiple duplicate emails in a table.]]></description>
			<content:encoded><![CDATA[<p><code>select EMAIL, count(EMAIL) as cnt<br />
from TABLE<br />
group by EMAIL<br />
having cnt > 1 ORDER BY `cnt` DESC</code></p>
<p>The above MySQL query will find and list the number of multiple duplicate emails in a table.</p>
<img src="http://feeds.feedburner.com/~r/MullerDigitalWebProgramming/~4/3OC7DyWLkKA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://news.mullerdigital.com/2011/12/09/mysql-find-duplicates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://news.mullerdigital.com/2011/12/09/mysql-find-duplicates/</feedburner:origLink></item>
		<item>
		<title>Search web by image</title>
		<link>http://feedproxy.google.com/~r/MullerDigitalWebProgramming/~3/a9uaxVl0BY0/</link>
		<comments>http://news.mullerdigital.com/2011/11/28/search-web-by-image/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 15:45:30 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[Service]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://news.mullerdigital.com/?p=237</guid>
		<description><![CDATA[http://www.tineye.com/ allows you to search the web for similar images to ones uploaded or on the web. UPDATE: Google has this as well: http://www.google.com/insidesearch/searchbyimage.html]]></description>
			<content:encoded><![CDATA[<p><a title="Tin Eye - search web by image" href="http://www.tineye.com/">http://www.tineye.com/</a> allows you to search the web for similar images to ones uploaded or on the web.</p>
<p><strong>UPDATE</strong>: Google has this as well: <a title="Google - search by image" href="http://www.google.com/insidesearch/searchbyimage.html">http://www.google.com/insidesearch/searchbyimage.html</a></p>
<img src="http://feeds.feedburner.com/~r/MullerDigitalWebProgramming/~4/a9uaxVl0BY0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://news.mullerdigital.com/2011/11/28/search-web-by-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://news.mullerdigital.com/2011/11/28/search-web-by-image/</feedburner:origLink></item>
		<item>
		<title>Generate / Create QRcode 2D barcodes ( primarily QRcodes ) in raster and vector formats</title>
		<link>http://feedproxy.google.com/~r/MullerDigitalWebProgramming/~3/5f8JaUcmQtE/</link>
		<comments>http://news.mullerdigital.com/2011/10/19/qrcode-generate-and-create-2d-barcodes-primarily-qrcodes/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 06:16:21 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[Service]]></category>
		<category><![CDATA[2d barcodes]]></category>
		<category><![CDATA[qr codes]]></category>
		<category><![CDATA[raster]]></category>
		<category><![CDATA[vector]]></category>

		<guid isPermaLink="false">http://news.mullerdigital.com/?p=231</guid>
		<description><![CDATA[www.qrstuff.com ? You can generate QR Codes (the most popular 2D barcode) for Website URL, YouTube Video, Google Maps Location, Social Media, iTunes Link, Plain Text, Telephone Number, SMS Message, Email Address, Email Message, Contact Details (VCARD), Event (VCALENDAR), Wifi Login (Android Only), Paypal Buy Now Link. With QRstuff.com you to change colour of the positive [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a title="QR code generator" href="http://www.qrstuff.com/" target="_blank">www.qrstuff.com</a> ? You can generate QR Codes (the most popular 2D barcode) for Website URL, YouTube Video, Google Maps Location, Social Media, iTunes Link, Plain Text, Telephone Number, SMS Message, Email Address, Email Message, Contact Details (VCARD), Event (VCALENDAR), Wifi Login (Android Only), Paypal Buy Now Link. With QRstuff.com you to change colour of the positive QR Code shapes (the dark part).</li>
<li><a href="http://qrcode.littleidiot.be/">qrcode.littleidiot.be</a> ? You can generate QR Codes for Regular text, Hyperlink, Phone number, Email address, meCard, vCard, WiFi settings. There is also the option to download the QR Code in multiple formats, particularly <a title="vector format" href="http://en.wikipedia.org/wiki/Vector_graphics" target="_blank">vector</a> based formats. QR Stuff only does <a title="Raster format" href="http://en.wikipedia.org/wiki/Raster_images" target="_blank">raster</a> (<a title="bitmap images" href="http://en.wikipedia.org/wiki/Bitmap" target="_blank">bitmap</a>) formats.</li>
</ul>
<img src="http://feeds.feedburner.com/~r/MullerDigitalWebProgramming/~4/5f8JaUcmQtE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://news.mullerdigital.com/2011/10/19/qrcode-generate-and-create-2d-barcodes-primarily-qrcodes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://news.mullerdigital.com/2011/10/19/qrcode-generate-and-create-2d-barcodes-primarily-qrcodes/</feedburner:origLink></item>
		<item>
		<title>PHP imagick – website references, manuals and information</title>
		<link>http://feedproxy.google.com/~r/MullerDigitalWebProgramming/~3/rxUrh6NLlVQ/</link>
		<comments>http://news.mullerdigital.com/2011/09/07/php-imagick-website-references-manuals-and-information/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 18:10:45 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[imagick]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://news.mullerdigital.com/?p=227</guid>
		<description><![CDATA[http://eclecticdjs.com/mike/tutorials/php/imagemagick/ http://jamesroberts.name/blog/tag/imagick/ Mikko&#8217;s blog imagick is a more advanced graphics library than the default GD for PHP, but the ImageMagick PHP library imagick is only documented on PHP.net comments, so using the library can be a bit challenging, but the sites above help in using the library.]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://eclecticdjs.com/mike/tutorials/php/imagemagick/" title="http://eclecticdjs.com/mike/tutorials/php/imagemagick/" target="_blank">http://eclecticdjs.com/mike/tutorials/php/imagemagick/</a></li>
<li><a href="http://jamesroberts.name/blog/tag/imagick/" title="http://jamesroberts.name/blog/tag/imagick/" target="_blank">http://jamesroberts.name/blog/tag/imagick/</a></li>
<li><a href="http://valokuva.org/?cat=1" title="http://valokuva.org/?cat=1" target="_blank">Mikko&#8217;s blog</a></li>
</ul>
<p>imagick is a more advanced graphics library than the default GD for PHP, but the ImageMagick PHP library imagick is only documented on <a href="http://php.net/manual/en/book.imagick.php" title="iMagick on PHP.net" target="_blank">PHP.net</a> comments, so using the library can be a bit challenging, but the sites above help in using the library.</p>
<img src="http://feeds.feedburner.com/~r/MullerDigitalWebProgramming/~4/rxUrh6NLlVQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://news.mullerdigital.com/2011/09/07/php-imagick-website-references-manuals-and-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://news.mullerdigital.com/2011/09/07/php-imagick-website-references-manuals-and-information/</feedburner:origLink></item>
		<item>
		<title>Multiple MySQL query with PHP</title>
		<link>http://feedproxy.google.com/~r/MullerDigitalWebProgramming/~3/mxRxsFbfSUA/</link>
		<comments>http://news.mullerdigital.com/2011/05/31/multiple-mysql-query-with-php/#comments</comments>
		<pubDate>Tue, 31 May 2011 15:55:05 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://news.mullerdigital.com/?p=216</guid>
		<description><![CDATA[// Enter multiple query string $query_str = " -- Update table UPDATE t SET id = id + 1; -- Insert into table INSERT INTO example (name, age) VALUES('John Doe', '23' ); "; // Explode string into separate queries $query = explode(';',$query_str); // Loop through exploded queries and execute foreach($query as $index => $sql) { [...]]]></description>
			<content:encoded><![CDATA[<p><code><br />
// Enter multiple query string<br />
$query_str = "<br />
-- Update table<br />
UPDATE t SET id = id + 1;<br />
-- Insert into table<br />
INSERT INTO example (name, age) VALUES('John Doe', '23' );<br />
";<br />
// Explode string into separate queries<br />
$query = explode(';',$query_str);<br />
// Loop through exploded queries and execute<br />
foreach($query as $index => $sql) {<br />
	$result = mysql_query($sql,$conn2) or userDisplayMessage(mysql_error().' '.__FILE__.':'.__LINE__);<br />
}<br />
</code><br />
Or, you can use <a href="http://www.php.net/manual/en/book.mysqli.php" target="_blank">mysqli</a> (MySQL Improved extension), which has a <a href="http://www.php.net/manual/en/mysqli.multi-query.php" target="_blank">mysqli_multi_query</a> function.</p>
<img src="http://feeds.feedburner.com/~r/MullerDigitalWebProgramming/~4/mxRxsFbfSUA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://news.mullerdigital.com/2011/05/31/multiple-mysql-query-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://news.mullerdigital.com/2011/05/31/multiple-mysql-query-with-php/</feedburner:origLink></item>
		<item>
		<title>Secure Google search – encrypted search string and url</title>
		<link>http://feedproxy.google.com/~r/MullerDigitalWebProgramming/~3/KhD5sTCLfYU/</link>
		<comments>http://news.mullerdigital.com/2011/05/16/secure-google-search-encrypted-search-string-and-url/#comments</comments>
		<pubDate>Mon, 16 May 2011 19:03:58 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://news.mullerdigital.com/?p=211</guid>
		<description><![CDATA[https://encrypted.google.com/ If you want to search Google securely, over an encrypted connection, use the above link. This prevents your search from being seen by anyone but you and Google, that includes your ISP. Resources: http://stackoverflow.com/questions/499591/are-https-urls-encrypted Video explaining SSL Security Now, episode #195]]></description>
			<content:encoded><![CDATA[<p><a href="https://encrypted.google.com/">https://encrypted.google.com/</a><br />
If you want to search Google securely, over an encrypted connection, use the above link.<br />
This prevents your search from being seen by anyone but you and Google, that includes your <a href="http://en.wikipedia.org/wiki/Internet_service_provider" target="external">ISP</a>.<br />
Resources:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/499591/are-https-urls-encrypted" target="external">http://stackoverflow.com/questions/499591/are-https-urls-encrypted</a></li>
<li><a href="http://www.youtube.com/watch?v=iQsKdtjwtYI" target="external">Video explaining SSL</a></li>
<li><a href="http://www.grc.com/securitynow.htm" target="external">Security Now</a>, <a href="http://media.grc.com/SN/sn-195-lq.mp3" target="external">episode #195</a></li>
</ul>
<img src="http://feeds.feedburner.com/~r/MullerDigitalWebProgramming/~4/KhD5sTCLfYU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://news.mullerdigital.com/2011/05/16/secure-google-search-encrypted-search-string-and-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://media.grc.com/SN/sn-195-lq.mp3" length="9338693" type="audio/mpeg" />
		<feedburner:origLink>http://news.mullerdigital.com/2011/05/16/secure-google-search-encrypted-search-string-and-url/</feedburner:origLink></item>
		<item>
		<title>Remove .DS_Store from zip files</title>
		<link>http://feedproxy.google.com/~r/MullerDigitalWebProgramming/~3/5d1UlsGY2U4/</link>
		<comments>http://news.mullerdigital.com/2011/03/26/remove-ds_store-from-zip-files/#comments</comments>
		<pubDate>Sat, 26 Mar 2011 20:47:29 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[OSX]]></category>

		<guid isPermaLink="false">http://news.mullerdigital.com/?p=203</guid>
		<description><![CDATA[Open Terminal (/Applications/Utilities/Terminal) zip -d file.zip \*.DS_Store That will remove all .DS_Store files from the zip archive.]]></description>
			<content:encoded><![CDATA[<p>Open <a href="file:///Applications/Utilities/Terminal.app" target="mywin">Terminal</a> (/Applications/Utilities/Terminal)<br />
<code>zip -d file.zip \*.DS_Store</code><br />
That will remove all .DS_Store files from the zip archive.</p>
<img src="http://feeds.feedburner.com/~r/MullerDigitalWebProgramming/~4/5d1UlsGY2U4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://news.mullerdigital.com/2011/03/26/remove-ds_store-from-zip-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://news.mullerdigital.com/2011/03/26/remove-ds_store-from-zip-files/</feedburner:origLink></item>
		<item>
		<title>Generate CSR file for GoDaddy SSL certificate in OSX, using terminal command line and openssl</title>
		<link>http://feedproxy.google.com/~r/MullerDigitalWebProgramming/~3/mXn-OSDHWYw/</link>
		<comments>http://news.mullerdigital.com/2011/01/20/generate-csr-file-for-ssl-certificate-in-osx-using-terminal-command-line-and-openssl/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 07:11:37 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[certificate]]></category>
		<category><![CDATA[GoDaddy]]></category>
		<category><![CDATA[GoDaddy certificate]]></category>
		<category><![CDATA[GoDaddy SSL]]></category>
		<category><![CDATA[OpenSSL]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://news.mullerdigital.com/?p=189</guid>
		<description><![CDATA[This works for generating CSR files required by GoDaddy SSL certificates. This will work with more than just GoDaddy SSL certificates, you can even sign your own certificates. $ openssl genrsa -des3 -out domain.key 2048 You will now have to enter a passphrase $ openssl req -new -key domain.key -out domain.csr You will now have [...]]]></description>
			<content:encoded><![CDATA[<p>This works for generating CSR files required by GoDaddy SSL certificates. This will work with more than just GoDaddy SSL certificates, you can even sign your own certificates.<br />
<code><br />
$ openssl genrsa -des3 -out domain.key 2048<br />
</code><br />
You will now have to enter a passphrase<br />
<code><br />
$ openssl req -new -key domain.key -out domain.csr<br />
</code><br />
You will now have to re-enter your passphrase to confirm, and then you will be prompted to enter all your information. <br />
<b>Enter the domain name you are registering this certificate for when it prompts you:<br />Common Name (eg, YOUR name) []</b></p>
<p>You will now have the CSR file you need to send to the signing authority to issue you your certificate.</p>
<p>Here is the code to generate the CRT file ( if you&#8217;re not using GoDaddy and you want to sign your own )<br />
<code>openssl x509 -req -days 365 -in domain.csr -signkey domain.key -out domain.crt</code></p>
<img src="http://feeds.feedburner.com/~r/MullerDigitalWebProgramming/~4/mXn-OSDHWYw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://news.mullerdigital.com/2011/01/20/generate-csr-file-for-ssl-certificate-in-osx-using-terminal-command-line-and-openssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://news.mullerdigital.com/2011/01/20/generate-csr-file-for-ssl-certificate-in-osx-using-terminal-command-line-and-openssl/</feedburner:origLink></item>
		<item>
		<title>Duplicate row in MySQL</title>
		<link>http://feedproxy.google.com/~r/MullerDigitalWebProgramming/~3/PcteetZ98DY/</link>
		<comments>http://news.mullerdigital.com/2010/12/08/duplicate-row-in-mysql/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 22:06:46 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://news.mullerdigital.com/?p=186</guid>
		<description><![CDATA[INSERT INTO `table` (`col1`, `col2`, `col3`, `col4`) SELECT `col1`, `col2`, `col3`, `col4` FROM `table` WHERE `id`=1; `id` can be anything unique.]]></description>
			<content:encoded><![CDATA[<p><code>INSERT INTO `table` (`col1`, `col2`, `col3`, `col4`) SELECT `col1`, `col2`, `col3`, `col4` FROM `table` WHERE `id`=1;</code><br />
`id` can be anything unique.</p>
<img src="http://feeds.feedburner.com/~r/MullerDigitalWebProgramming/~4/PcteetZ98DY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://news.mullerdigital.com/2010/12/08/duplicate-row-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://news.mullerdigital.com/2010/12/08/duplicate-row-in-mysql/</feedburner:origLink></item>
	</channel>
</rss>

