<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>Ken Guest's online diary &#187; linux</title>
	<atom:link href="http://blogs.linux.ie/kenguest/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.linux.ie/kenguest</link>
	<description>php, linux, pear, mysql etc etc</description>
	<lastBuildDate>Fri, 21 Oct 2011 18:13:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>A new Openstreetmap API framework for PHP.</title>
		<link>http://blogs.linux.ie/kenguest/2011/10/21/a-new-openstreetmap-api-framework-for-php/</link>
		<comments>http://blogs.linux.ie/kenguest/2011/10/21/a-new-openstreetmap-api-framework-for-php/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 17:38:38 +0000</pubDate>
		<dc:creator>kenguest</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/kenguest/?p=371</guid>
		<description><![CDATA[So over the last while, I've been working on a PHP package imaginitively named <a href="https://github.com/kenguest/Services_Openstreetmap">Services_Openstreetmap</a>, for interacting with the <a href="http://wiki.openstreetmap.org/wiki/API_v0.6">openstreetmap API</a>. I initially needed it so I could search for certain POIs and tabulate the results; it's now also capable of adding data to the openstreetmap database - nodes and other elements can be created, updated and so on. It will even access the details of the user that is being used to modify that data, which is one difference between it and <a href="http://wiki.openstreetmap.org/wiki/Develop/Frameworks#Single_Purpose_Client_Libraries_for_API0.6_.28the_RESTful_API.29">the other single purpose OSM frameworks</a>.

So why the big fanfare now? Well I'm happy enough with it now to let other people look at and use it and also I've submitted it to the <a href="http://pear.php.net/pepr/">PEAR Pepr process</a>, and the grilling that entails, so it can be included in the PEAR repository.
]]></description>
			<content:encoded><![CDATA[<p>So over the last while, I&#8217;ve been working on a PHP package imaginatively named <a href="https://github.com/kenguest/Services_Openstreetmap">Services_Openstreetmap</a>, for interacting with the <a href="http://wiki.openstreetmap.org/wiki/API_v0.6">openstreetmap API</a>. I initially needed it so I could search for certain POIs and tabulate the results; it&#8217;s now also capable of adding data to the openstreetmap database &#8211; nodes and other elements can be created, updated and so on. It will even access the details of the user that is being used to modify that data, which is one difference between it and <a href="http://wiki.openstreetmap.org/wiki/Develop/Frameworks#Single_Purpose_Client_Libraries_for_API0.6_.28the_RESTful_API.29">the other single purpose OSM frameworks</a>.</p>
<p>So why the big fanfare now? Well I&#8217;m happy enough with it now to let other people look at and use it and also I&#8217;ve <a href="http://pear.php.net/pepr/pepr-proposal-show.php?id=667">submitted i</a>t to the <a href="http://pear.php.net/pepr/">PEAR Pepr process</a>, and the grilling that entails, so it can be included in the PEAR repository.</p>
<p>And if this pushes more people to using Openstreetmap (or PEAR for that matter) all the better!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.linux.ie/kenguest/2011/10/21/a-new-openstreetmap-api-framework-for-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adding colour to your mysql prompt</title>
		<link>http://blogs.linux.ie/kenguest/2011/04/20/adding-colour-to-your-mysql-prompt/</link>
		<comments>http://blogs.linux.ie/kenguest/2011/04/20/adding-colour-to-your-mysql-prompt/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 11:29:13 +0000</pubDate>
		<dc:creator>kenguest</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/kenguest/?p=359</guid>
		<description><![CDATA[Adding colour to your mysql prompt can be a good way to indicate where you are running the mysql CLI client from. This is how to do it with rlwrap.]]></description>
			<content:encoded><![CDATA[<p>I almost made a critical mistake on the production mysql database for one of my projects yesterday, which definitely would not have been a Good Thing if it had happened; even though I do have a custom prompt set up for mysql &#8211; when they&#8217;re all so similar you don&#8217;t always take heed.</p>
<p>So now, along with having the mysql prompt defined as <em>prompt=&#8217;\h@\u (\d) > &#8216;</em> in the [mysql] section of my ~/.my.cnf file (so host, username and database name are included in the prompt), I have also installed rlwrap and set up an alias in my .bashrc:</p>
<p><code><br />
if [ -x /usr/bin/rlwrap ]; then<br />
        alias mysql='/usr/bin/rlwrap -a -pGREEN /usr/bin/mysql'<br />
fi<br />
</code>                                                        </p>
<p>This displays the mysql prompt in green, after checking that rlwrap is available, which I have configured for my development environment only &#8211; now I just need to train myself to be extra careful for when the prompt isn&#8217;t coloured.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.linux.ie/kenguest/2011/04/20/adding-colour-to-your-mysql-prompt/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Packt launches fifth annual Open Source Awards</title>
		<link>http://blogs.linux.ie/kenguest/2010/09/02/packt-launches-fifth-annual-open-source-awards/</link>
		<comments>http://blogs.linux.ie/kenguest/2010/09/02/packt-launches-fifth-annual-open-source-awards/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 10:21:58 +0000</pubDate>
		<dc:creator>kenguest</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/kenguest/?p=349</guid>
		<description><![CDATA[Packt launches fifth annual Open Source Awards

The 2010 Open Source Awards was launched last month by Packt, inviting people to visit <a href="http://www.PacktPub.com">www.PacktPub.com</a> and submit nominations for their favorite Open Source project. Now in its fifth year, the Award has been adapted from the established Open Source CMS Award with the wider aim of encouraging, supporting, recognizing and rewarding all Open Source projects. 
WordPress won the 2009 Open Source Content Management System (CMS) Award in what was a very close contest with MODx and SilverStripe. While MODx was the first runner up, SilverStripe, a Most Promising CMS Award winner in 2008, made its way to the second runner up position in its first year in the Open Source CMS Award final.
The 2010 Award will feature a prize fund of $24,000 with several new categories introduced. While the Open Source CMS Award category will continue to recognize the best content management system, Packt is introducing categories for the Most Promising Open Source Project, Open Source E-Commerce Applications, Open Source JavaScript Libraries and Open Source Graphics Software.  CMSes that won the Overall CMS Award in previous years will continue to compete against one another in the Hall of Fame CMS category. 
These new categories will ensure that the Open Source Awards is the ultimate platform to recognise excellence within the community while supporting projects both new and old. “We believe that the adaption of the Award and the new categories will provide a new level of accessibility, with the Award recognizing a wider range of Open Source projects; both previous winners while at the same time, encouraging new projects” said Julian Copes, organizer of this year’s Awards.
Packt has opened up nominations for people to submit their favorite Open Source projects for each category at <a href="http://ww.PacktPub.com/open-source-awards-home">http://www.PacktPub.com/open-source-awards-home</a> . The top five in each category will go through to the final, which begins in the last week of September. For more information on the categories, please visit Packt’s website <a href="http://www.PacktPub.com/blog/packt’s-2010-open-source-awards-announcement">http://www.PacktPub.com/blog/packt’s-2010-open-source-awards-announcement</a>  
]]></description>
			<content:encoded><![CDATA[<p>Packt launches fifth annual Open Source Awards</p>
<p>The 2010 Open Source Awards was launched last month by Packt, inviting people to visit <a href="http://www.PacktPub.com">www.PacktPub.com</a> and submit nominations for their favorite Open Source project. Now in its fifth year, the Award has been adapted from the established Open Source CMS Award with the wider aim of encouraging, supporting, recognizing and rewarding all Open Source projects.<br />
WordPress won the 2009 Open Source Content Management System (CMS) Award in what was a very close contest with MODx and SilverStripe. While MODx was the first runner up, SilverStripe, a Most Promising CMS Award winner in 2008, made its way to the second runner up position in its first year in the Open Source CMS Award final.<br />
The 2010 Award will feature a prize fund of $24,000 with several new categories introduced. While the Open Source CMS Award category will continue to recognize the best content management system, Packt is introducing categories for the Most Promising Open Source Project, Open Source E-Commerce Applications, Open Source JavaScript Libraries and Open Source Graphics Software.  CMSes that won the Overall CMS Award in previous years will continue to compete against one another in the Hall of Fame CMS category.<br />
These new categories will ensure that the Open Source Awards is the ultimate platform to recognise excellence within the community while supporting projects both new and old. “We believe that the adaption of the Award and the new categories will provide a new level of accessibility, with the Award recognizing a wider range of Open Source projects; both previous winners while at the same time, encouraging new projects” said Julian Copes, organizer of this year’s Awards.<br />
Packt has opened up nominations for people to submit their favorite Open Source projects for each category at <a href="http://www.PacktPub.com/open-source-awards-home">http://www.PacktPub.com/open-source-awards-home</a> . The top five in each category will go through to the final, which begins in the last week of September. For more information on the categories, please visit Packt’s website <a href="http://www.PacktPub.com/blog/packt’s-2010-open-source-awards-announcement">http://www.PacktPub.com/blog/packt’s-2010-open-source-awards-announcement</a>  </p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.linux.ie/kenguest/2010/09/02/packt-launches-fifth-annual-open-source-awards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Book Review: jQuery 1.3 with PHP</title>
		<link>http://blogs.linux.ie/kenguest/2009/12/13/book-review-jquery-1-3-with-php/</link>
		<comments>http://blogs.linux.ie/kenguest/2009/12/13/book-review-jquery-1-3-with-php/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 23:46:53 +0000</pubDate>
		<dc:creator>kenguest</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/kenguest/?p=292</guid>
		<description><![CDATA[[caption id="attachment_298" align="alignleft" width="100" caption="jQuery 1.3 with PHP"]<a href="http://www.packtpub.com/jquery-1-3-with-php/book"><img src="http://blogs.linux.ie/kenguest/files/2009/12/verens_book.png" alt="jQuery 1.3 with PHP" title="jQuery 1.3 with PHP" width="100" height="123" class="size-full wp-image-298" /></a>[/caption] Before I start this review proper, I need to disclose one nugget of information first: The author, Kae Verens, and I are both currently serving as members of the Irish PHP Users Group Committee and have known each other for quite a few years. If you believe I can remain impartial and objective (as I hope you do - because I am), read on:

This is the first book sent to me from Packt where I wasn't left dizzy from trying to understand just what it is the author was trying to get across. It looks like their proof-reader was awake for this one - totally awesome.

jQuery, as the vast majority of us already know, is a JavaScript library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. In other words it does all the heavy lifting and takes care of cross-browser compatibility issues so you don't have to and thus allows you to focus on the work that you need to do without all those distractions.

"jQuery 1.3 with PHP" is aimed "for PHP application developers who want to improve their user interfaces through jQuery's capabilities and responsiveness". Over the course of ten chapters Verens starts the off with an introduction, then a series of 'Quick Tricks' that almost immediately help you add some measure of "Web 2.0" functionality to what I'd term a "web 0.2 application" rather sharply.
The book ends with a chapter on Optimization - some of which you are bound to already know and some which are complete gems.

In the middle are chapters with mini-projects on tabs and accordians, forms and form validation, file management, calendars (and how to make your own google-calendar-like application), image manipulation, drag and drop and data tables. 
In each case, projects are analysed and the required steps for each are outlined in the simplest terms - no extraneous buzzwords are used or are the projects over-analysed for the sake of pedantry.

I was a little surprised in some places where, for example, the json encoded output was not created via json_encode; but then thought not everyone is going to have PHP 5.2 or greater installed. Thumb forward a few pages and this is mentioned. So all's o k.

It was good to see Kae suggesting use of the PEAR Validate package (or similar) in the Forms and Forms Validation chapter (chapter 4). I had to wonder if there was a PEAR package for creating and shunting down jQuery validation rules to the client - and found that there isn't. That's something to consider for later on, I guess.

The rest of the book is similarly both easy to read and easy to understand - my first port of call for learning how to do something that I'd almost term exotic with jQuery and with PHP in the background is usually Google but that is going to change (actually it already has).

Honestly, I wouldn't be surprised if this books working title was "JQuery and PHP: The HowTo" -  it is that good.
Now, this book is not for learning jQuery - that is not within its remit, but I would heartily recomend "jQuery 1.3 with PHP" by Kae Verens to anyone wanting to utilise jQuery from a PHP background.]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_298" class="wp-caption alignleft" style="width: 110px"><a href="http://www.packtpub.com/jquery-1-3-with-php/book"><img src="http://blogs.linux.ie/kenguest/files/2009/12/verens_book.png" alt="jQuery 1.3 with PHP" title="jQuery 1.3 with PHP" width="100" height="123" class="size-full wp-image-298" /></a><p class="wp-caption-text">jQuery 1.3 with PHP</p></div> Before I start this review proper, I need to disclose one nugget of information first: The author, Kae Verens, and I are both currently serving as members of the Irish PHP Users Group Committee and have known each other for quite a few years. If you believe I can remain impartial and objective (as I hope you do &#8211; because I am), read on:</p>
<p>This is the first book sent to me from Packt where I wasn&#8217;t left dizzy from trying to understand just what it is the author was trying to get across. It looks like their proof-reader was awake for this one &#8211; totally awesome.</p>
<p>jQuery, as the vast majority of us already know, is a JavaScript library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. In other words it does all the heavy lifting and takes care of cross-browser compatibility issues so you don&#8217;t have to and thus allows you to focus on the work that you need to do without all those distractions.</p>
<p>&#8220;jQuery 1.3 with PHP&#8221; is aimed &#8220;for PHP application developers who want to improve their user interfaces through jQuery&#8217;s capabilities and responsiveness&#8221;. Over the course of ten chapters Verens starts the off with an introduction, then a series of &#8216;Quick Tricks&#8217; that almost immediately help you add some measure of &#8220;Web 2.0&#8243; functionality to what I&#8217;d term a &#8220;web 0.2 application&#8221; rather sharply.<br />
The book ends with a chapter on Optimization &#8211; some of which you are bound to already know and some which are complete gems.</p>
<p>In the middle are chapters with mini-projects on tabs and accordians, forms and form validation, file management, calendars (and how to make your own google-calendar-like application), image manipulation, drag and drop and data tables.<br />
In each case, projects are analysed and the required steps for each are outlined in the simplest terms &#8211; no extraneous buzzwords are used or are the projects over-analysed for the sake of pedantry.</p>
<p>I was a little surprised in some places where, for example, the json encoded output was not created via json_encode; but then thought not everyone is going to have PHP 5.2 or greater installed. Thumb forward a few pages and this is mentioned. So all&#8217;s o k.</p>
<p>It was good to see Kae suggesting use of the PEAR Validate package (or similar) in the Forms and Forms Validation chapter (chapter 4). I had to wonder if there was a PEAR package for creating and shunting down jQuery validation rules to the client &#8211; and found that there isn&#8217;t. That&#8217;s something to consider for later on, I guess.</p>
<p>The rest of the book is similarly both easy to read and easy to understand &#8211; my first port of call for learning how to do something that I&#8217;d almost term exotic with jQuery and with PHP in the background is usually Google but that is going to change (actually it already has).</p>
<p>Honestly, I wouldn&#8217;t be surprised if this books working title was &#8220;JQuery and PHP: The HowTo&#8221; &#8211;  it is that good.<br />
Now, this book is not for learning jQuery &#8211; that is not within its remit, but I would heartily recomend &#8220;jQuery 1.3 with PHP&#8221; by Kae Verens to anyone wanting to utilise jQuery from a PHP background.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.linux.ie/kenguest/2009/12/13/book-review-jquery-1-3-with-php/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>OpenStreetMapping Nenagh</title>
		<link>http://blogs.linux.ie/kenguest/2009/06/16/openstreetmap-nenagh/</link>
		<comments>http://blogs.linux.ie/kenguest/2009/06/16/openstreetmap-nenagh/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 23:38:17 +0000</pubDate>
		<dc:creator>kenguest</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/kenguest/?p=232</guid>
		<description><![CDATA[<p>
So yesterday I had a quick interview with a journalist from the <a href="http://www.nenaghguardian.ie/">Nenagh Guardian</a> - my local paper - about this <a href="http://www.openstreetmap.org">OpenStreetMap</a> (OSM) mapping malarky.
</p><p>
As most of you will probably know OSM is to printed atlases from AA, Ordnance Survery etc, as wikipedia is to encyclopedias. People can contribute data to the project through a variety of activities: going out and actually mapping an area with a sat nav or gps unit [even a mobile phone with GPS in it such as an iphone, nokia n95 or whatever], tracing data off Yahoo [and other] aerial imagery, filing bugs on the openstreetbugs website or literally drawing in information via the <a href="http://walking-papers.org/">walking papers map making website</a>. And better again, this is about providing free geographic data such as street maps to anyone who wants them.
</p><p>
Anyway...I mentioned how the OpenStreetMap map of Nenagh is more complete than even the latest commercially available maps for Garmin and Google Maps and listed off a few ways how OSM could be used commercially: by real estate agents, courier companies, how being able to pin-point where all the amenities are would be useful for tourists, and so on.
</p><p>
Compare the <a href="http://www.openstreetmap.org/?lat=52.8597&#38;lon=-8.2171&#38;zoom=13&#38;layers=0B00FTF">Open Street Map of Nenagh</a> with the <a href="http://maps.google.com/maps/mm?ie=UTF8&#38;hl=en&#38;ll=52.865451,-8.205757&#38;spn=0.029949,0.077248&#38;z=14">Google Map</a> of the area - as you can see, there's still quite a bit of work to be done - Millers Brook needs to be marked as such along with the various groves, avenues etc that comprise that estate.  Plus all the amenities, shops [perhaps even their opening hours] and the Shannon Development Industrial Centre still need to be added - as I'm sure are some other small portions of the town that I've unknowingly neglected.
</p><p>
It's fair to say that this will never be finished - existing housing estates will be extended, there will always be urban development plans that when implemented would also need to be included on the map.
</p><p>
It would also be cool to have the new <a href="http://www.irishcycling.com/publish/news/art_3853.shtml">"Nenagh Cycling Hub"</a> rendered on the <a href="http://www.opencyclemap.org/">opencyclemap.org</a> website.
</p><p>
I discovered the <a href="http://www.openstreetbrowser.org/?zoom=14&#38;lat=52.86454&#38;lon=-8.20313&#38;layers=B000FFFFFFFTT">OpenStreetBrowser</a> site to be a great test of the data that myself and others have entered - it's also a great way of demonstrating just what can be done with OSM data.
</p><p>
If you happen to spot something that I've missed please either drop me a comment  or use the <a href="http://openstreetbugs.appspot.com/?lon=-8.201031371537702&#38;lat=52.861420715690564&#38;zoom=13">openstreetbugs website</a>.
</p>
<p>On a related note: it would be good to see a PEAR/PHP based client/component for interfacing with the OpenStreetMap server so that interesting apps utilising that data could be implemented on the LAMP stack - something to go alongside the <a href="http://pear.php.net/package/Services_GeoNames">Services_GeoNames package from pear</a> ;-)</p>]]></description>
			<content:encoded><![CDATA[<p>
So yesterday I had a quick interview with a journalist from the <a href="http://www.nenaghguardian.ie/">Nenagh Guardian</a> &#8211; my local paper &#8211; about this <a href="http://www.openstreetmap.org">OpenStreetMap</a> (OSM) mapping malarky.
</p>
<p>
As most of you will probably know OSM is to printed atlases from AA, Ordnance Survery etc, as wikipedia is to encyclopedias. People can contribute data to the project through a variety of activities: going out and actually mapping an area with a sat nav or gps unit [even a mobile phone with GPS in it such as an iphone, nokia n95 or whatever], tracing data off Yahoo [and other] aerial imagery, filing bugs on the openstreetbugs website or literally drawing in information via the <a href="http://walking-papers.org/">walking papers map making website</a>. And better again, this is about providing free geographic data such as street maps to anyone who wants them.
</p>
<p>
Anyway&#8230;I mentioned how the OpenStreetMap map of Nenagh is more complete than even the latest commercially available maps for Garmin and Google Maps and listed off a few ways how OSM could be used commercially: by real estate agents, courier companies, how being able to pin-point where all the amenities are would be useful for tourists, and so on.
</p>
<p>
Compare the <a href="http://www.openstreetmap.org/?lat=52.8597&amp;lon=-8.2171&amp;zoom=13&amp;layers=0B00FTF">Open Street Map of Nenagh</a> with the <a href="http://maps.google.com/maps/mm?ie=UTF8&amp;hl=en&amp;ll=52.865451,-8.205757&amp;spn=0.029949,0.077248&amp;z=14">Google Map</a> of the area &#8211; as you can see, there&#8217;s still quite a bit of work to be done &#8211; Millers Brook needs to be marked as such along with the various groves, avenues etc that comprise that estate.  Plus all the amenities, shops [perhaps even their opening hours] and the Shannon Development Industrial Centre still need to be added &#8211; as I&#8217;m sure are some other small portions of the town that I&#8217;ve unknowingly neglected.
</p>
<p>
It&#8217;s fair to say that this will never be finished &#8211; existing housing estates will be extended, there will always be urban development plans that when implemented would also need to be included on the map.
</p>
<p>
It would also be cool to have the new <a href="http://www.irishcycling.com/publish/news/art_3853.shtml">&#8220;Nenagh Cycling Hub&#8221;</a> rendered on the <a href="http://www.opencyclemap.org/">opencyclemap.org</a> website.
</p>
<p>
I discovered the <a href="http://www.openstreetbrowser.org/?zoom=14&amp;lat=52.86454&amp;lon=-8.20313&amp;layers=B000FFFFFFFTT">OpenStreetBrowser</a> site to be a great test of the data that myself and others have entered &#8211; it&#8217;s also a great way of demonstrating just what can be done with OSM data.
</p>
<p>
If you happen to spot something that I&#8217;ve missed please either drop me a comment  or use the <a href="http://openstreetbugs.appspot.com/?lon=-8.201031371537702&amp;lat=52.861420715690564&amp;zoom=13">openstreetbugs website</a>.
</p>
<p>On a related note: it would be good to see a PEAR/PHP based client/component for interfacing with the OpenStreetMap server so that interesting apps utilising that data could be implemented on the LAMP stack &#8211; something to go alongside the <a href="http://pear.php.net/package/Services_GeoNames">Services_GeoNames package from pear</a> <img src='http://blogs.linux.ie/kenguest/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<style type="text/css">#map_1 {padding: 0; margin: 0;}#map_1 img{padding: 0; margin: 0;border:none;margin-top:0px;margin-right:0px;margin-left:0px;margin-bottom:0px;}</style><div id="map_1" style="width:450px; height:450px; overflow:hidden;padding:0px;"><script type="text/javascript" src="http://www.openlayers.org/api/OpenLayers.js"></script><script type="text/javascript" src="http://www.openstreetmap.org/openlayers/OpenStreetMap.js"></script><script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script><script type="text/javascript">/* <![CDATA[ */(function($) { map = new OpenLayers.Map ("map_1", {            controls:[              new OpenLayers.Control.Navigation(),              new OpenLayers.Control.PanZoom(),              new OpenLayers.Control.Attribution()              ],          maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34),          maxResolution: 156543.0399,          numZoomLevels: 19,          units: "m",          projection: new OpenLayers.Projection("EPSG:900913"),           displayProjection: new OpenLayers.Projection("EPSG:4326")      } );var layerMapnik = new OpenLayers.Layer.OSM.Mapnik("Mapnik");var layerTah    = new OpenLayers.Layer.OSM.Osmarender("Osmarender");var layerCycle  = new OpenLayers.Layer.OSM.CycleMap("CycleMap");var layerGooglePhysical   = new OpenLayers.Layer.Google("Google Physical", {type: google.maps.MapTypeId.TERRAIN} );var layerGoogleStreet     = new OpenLayers.Layer.Google("Google Street", {type: google.maps.MapTypeId.ROADMAP} );var layerGoogleHybrid     = new OpenLayers.Layer.Google("Google Hybrid", {type: google.maps.MapTypeId.HYBRID} );var layerGoogleSatellite  = new OpenLayers.Layer.Google("Google Satellite", {type: google.maps.MapTypeId.SATELLITE} );map.addLayers([layerMapnik, layerTah, layerCycle, layerGooglePhysical, layerGoogleStreet, layerGoogleHybrid, layerGoogleSatellite]);map.addControl(new OpenLayers.Control.LayerSwitcher());    function osm_getTileURL(bounds) {        var res = this.map.getResolution();        var x = Math.round((bounds.left - this.maxExtent.left) / (res * this.tileSize.w));        var y = Math.round((this.maxExtent.top - bounds.top) / (res * this.tileSize.h));        var z = this.map.getZoom();        var limit = Math.pow(2, z);        if (y < 0 || y >= limit) {            return OpenLayers.Util.getImagesLocation() + "404.png";        } else {            x = ((x % limit) + limit) % limit;            return this.url + z + "/" + x + "/" + y + "." + this.type;        }    }var lonLat = new OpenLayers.LonLat(-8.21,52.86).transform(map.displayProjection,  map.projection);map.setCenter (lonLat,13);var markers = new OpenLayers.Layer.Markers( "Marker" );map.addLayer(markers);var data = {};var currentPopup;data.icon = new OpenLayers.Icon("http://blogs.linux.ie/kenguest/wp-content/plugins/osm/icons/marker_posts.png",     new OpenLayers.Size(2,2),     new OpenLayers.Pixel(-1, -1));var ll = new OpenLayers.LonLat(-8.208,52.865).transform(map.displayProjection,  map.projection);     var feature = new OpenLayers.Feature(markers, ll, data);feature.closeBox = true;feature.popupClass = OpenLayers.Class(OpenLayers.Popup.FramedCloud, {"autoSize": true, minSize: new OpenLayers.Size(150,150),"keepInMap": true } );feature.data.popupContentHTML = "";feature.data.overflow = "hidden";var marker = new OpenLayers.Marker(ll,data.icon.clone());marker.feature = feature;var markerClick = function(evt) {  if (this.popup == null) {    this.popup = this.createPopup(this.closeBox);    map.addPopup(this.popup);    this.popup.show();  }   else {    this.popup.toggle();  }  OpenLayers.Event.stop(evt);};markers.addMarker(marker);})(jQuery)/* ]]&gt; */ </script></div>
]]></content:encoded>
			<wfw:commentRss>http://blogs.linux.ie/kenguest/2009/06/16/openstreetmap-nenagh/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Save Nenagh Hospital</title>
		<link>http://blogs.linux.ie/kenguest/2009/01/31/save-nenagh-hospital/</link>
		<comments>http://blogs.linux.ie/kenguest/2009/01/31/save-nenagh-hospital/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 23:24:14 +0000</pubDate>
		<dc:creator>kenguest</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/kenguest/?p=222</guid>
		<description><![CDATA[I&#8217;m back home from a &#8220;Save Nenagh Hospital&#8221; rally earlier on today &#8211; I estimated the number of people there to be at least two thousand. As you might infer, this is quite serious &#8211; the Health Service Executive in Ireland have already made the first steps in downgrading and then closing the General Hospital [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m back home from a &#8220;Save Nenagh Hospital&#8221; rally earlier on today &#8211; I estimated the number of people there to be at least two thousand.</p>
<p>As you might infer, this is quite serious &#8211; the Health Service Executive in Ireland have already made the first steps in downgrading and then closing the General Hospital in Nenagh. Already there are plans for numerous cuts, including a proposal to remove 24-hour accident and emergency services at the hospital in favour of the introduction of advance paramedics to partly replace the present service.</p>
<p>The only numbers important to the HSE, it seems, are those balanced on their accounts sheets &#8211; not the number of lives that will be lost, the number of minutes late that ambulances will arrive to road accidents, the ill and those in need.</p>
<p>Representatives of the HSE were invited to attend but did not &#8211; most likely because they know no matter how they try they can not make sense of their own arguments. In short, they can not justify what they are proposing.</p>
<p>Google for phrases such as &#8220;<a href="http://www.google.com/search?q=save+nenagh+hospital">save nenagh hospital</a>&#8221; and &#8220;<a href="http://www.google.com/search?q=friends+of+nenagh+hospital">friends of nenagh hospital</a>&#8221; to see just how serious and important this is &#8211; you&#8217;ll find links such as <a href="http://www.irishtimes.com/newspaper/ireland/2009/0122/1232474672569.html">this article in the Irish Times (Doctors to fight cuts at Nenagh hospital)</a>.</p>
<p>Please add your voice by joining the <a href="http://www.facebook.com/group.php?gid=47507165339">Save Nenagh Hospital</a> group on facebook, by writing to your political representatives and by writing to the papers.</p>
<p>Don&#8217;t let Nenagh become the next <a href="http://www.google.com/search?q=monaghan+hospital+death">Monaghan</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.linux.ie/kenguest/2009/01/31/save-nenagh-hospital/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7 things&#8230;</title>
		<link>http://blogs.linux.ie/kenguest/2009/01/14/7-things/</link>
		<comments>http://blogs.linux.ie/kenguest/2009/01/14/7-things/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 20:57:10 +0000</pubDate>
		<dc:creator>kenguest</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/kenguest/?p=207</guid>
		<description><![CDATA[I got tagged by Chuck for this &#8220;7 Things&#8221; meme. So here are 7 things you may not know about me: I first met my wife at her house warming party seven years ago &#8211; it took four years for anything to happen though! I&#8217;m so happy it finally did though! My first computer was [...]]]></description>
			<content:encoded><![CDATA[<p>I got tagged by <a href="http://thenazg.blogspot.com/">Chuck</a> for this &#8220;7 Things&#8221; meme. So here are 7 things you may not know about me:</p>
<ol>
<li>
I first met my wife at her house warming party seven years ago &#8211; it took four years for anything to happen though! I&#8217;m so happy it finally did though!</li>
<li>
My first computer was a ZX Spectrum 48K that was bought when I was seven years old &#8211; I&#8217;ve since progressed through BBC computers, Apple Macs and then onto PCs. I also had a accounts on the <a href="http://www.wit.ie/">WRTC</a> vax &#8211; VMS and OSF/1.</li>
<li>
I&#8217;ve similarly gone through a number of differing computer languages: Basic in various incarnations (ZX Basic, BBC Basic, VB), Z80 Assembler, HyperCard (yes, really), C, C++, JavaScript, Perl, PHP, Python, ColdFusion, Java.</li>
<li>
I might be Irish but my surname isn&#8217;t.</li>
<li>
I read a lot of fantasy: Gemmell, Eddings, Tolkien, Pratchett; though I also enjoy Tom Clancy and Dale Brown novels.</li>
<li>
I&#8217;m long-sighted in one eye and short-sighted in the other: one good reason why I&#8217;ve never been that good at sports.
</li>
<li>
I am an active <a href="http://pear.php.net/user/kguest/">PEAR developer</a>.
</li>
</ol>
<h3>Tagging Others</h3>
<p>I&#8217;m supposed to tag 7 other people who then repeat the whole process:</p>
<ul>
<li><a href="http://blogs.linux.ie/frankly/">Proinnsias Breathnach</a> for being such a good friend all this time. And because he doesn&#8217;t blog enough.</li>
<li><a href="http://verens.com/">Kae Verens</a> for having a name that sounds the same as his first inital &#8211; and for helping out loads at the IPUG stand at last year&#8217;s Irish Opensource Technology Conference.</li>
<li><a href="http://ocaoimh.ie/">Donncha O Caoimh</a> for his trojan work back in the day with the ILUG CMS and for WordPress mu.</li>
<li><a href="http://jaime.hemmett.org/blog/">Jaime Hemmett</a> for her exuberance and energy she&#8217;s brought to the Irish PHP scene.</li>
<li><a href="http://aj.mc-kee.com/">AJ McKee</a> for starting the Irish PHP Users Group in the first place!</li>
<li><a href="http://taint.org/">Justin Mason</a> for Spam Assassin, SiteScooper and being an all round nice guy.</li>
<li><a href="http://blogs.linux.ie/fuzzbucket/">Fuzzix</a> for his levity and humour. That plus he&#8217;s a ZX head like myself.</li>
</ul>
<h3>Rules</h3>
<ul>
<li>
<p>Link your original tagger(s), and list these rules on your blog.</p>
</li>
<li>
<p>Share seven facts about yourself in the post &#8211; some random, some weird.</p>
</li>
<li>
<p>Tag seven people at the end of your post by leaving their names and the links to their blogs.</p>
</li>
<li>
<p>Let them know they&#8217;ve been tagged by leaving a comment on their blogs and/or Twitter</p>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blogs.linux.ie/kenguest/2009/01/14/7-things/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP for Enterprise/Business Whitepaper</title>
		<link>http://blogs.linux.ie/kenguest/2009/01/08/phpwhitepaper/</link>
		<comments>http://blogs.linux.ie/kenguest/2009/01/08/phpwhitepaper/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 19:43:46 +0000</pubDate>
		<dc:creator>kenguest</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/kenguest/?p=203</guid>
		<description><![CDATA[I'm very proud to have been involved as an editor and help with the translation and update of the <a href="http://www.afup.org/">AFUP's</a> <a href="http://www.afup.org/article.php3?id_article=231">PHP en Enterprise livre blanc</a> into the <a href="http://www.php.ie/Markup/Html/files/PHPWhitePaper.pdf">PHP for Enterprise/Business Whitepaper</a>: as far as I know this is the first full English language translation and update of the work done by the Association Française des Utilisateurs de PHP (French PHP Users Group). Also there is a lot of new content in the Whitepaper that with regards to how PHP is now utilised in Enterprise. Figures have been updated and techniques available in later versions of PHP have been referenced.
<br />
We've had an interesting time translating and updating the content - especially as I don't know French let alone their idioms. Many thanks to <a href="http://www.vediovis.fr/">Stéphane Lambert</a> for his boundless energy and devotion to getting us this far!
<br />
Thanks also to <a href="http://pear.php.net">PEAR</a> President and fellow IPUG member <a href="http://blog.agoraproduction.com/">David Coallier</a> who also helped with the translation work and not forgetting Derick Rethans and Peter Keung who also assisted in fine-tuning our work into something a bit more fluent and graceful ;-)
<br />
I would be remiss to not mention <a href="http://www.blacknight.com/">Blacknight</a> who have sponsored the IPUG from the start - without them there truly would not be a <a href="http://www.php.ie">php.ie</a>!
<br />
If I've left anybody out - please remind me!
<br />
All in all, as Chairman of the Irish PHP Users Group, I can say this is an exciting moment for us to have achieved - we've given something tangible back to the PHP Community as a whole and to top things off we've published the Whitepaper under the Open Licence Content - you may
freely use it if you clearly acknowledge the Irish PHP Users Group and if you retain the Open Content Licence. This means you can localise the Whitepaper to your own language and national figures if you so desire.
<br />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m very proud to have been involved as an editor and help with the translation and update of the <a href="http://www.afup.org/">AFUP&#8217;s</a> <a href="http://www.afup.org/article.php3?id_article=231">PHP en Enterprise livre blanc</a> into the <a href="http://www.php.ie/Markup/Html/files/PHPWhitePaper.pdf">PHP for Enterprise/Business Whitepaper</a>: as far as I know this is the first full English language translation and update of the work done by the Association Française des Utilisateurs de PHP (French PHP Users Group). Also there is a lot of new content in the Whitepaper that with regards to how PHP is now utilised in Enterprise. Figures have been updated and techniques available in later versions of PHP have been referenced.<br />
<br />
We&#8217;ve had an interesting time translating and updating the content &#8211; especially as I don&#8217;t know French let alone their idioms. Many thanks to <a href="http://www.vediovis.fr/">Stéphane Lambert</a> for his boundless energy and devotion to getting us this far!<br />
<br />
Thanks also to <a href="http://pear.php.net">PEAR</a> President and fellow IPUG member <a href="http://blog.agoraproduction.com/">David Coallier</a> who also helped with the translation work and not forgetting <a href="http://derickrethans.nl/">Derick Rethans</a> and Peter Keung who also assisted in fine-tuning our work into something a bit more fluent and graceful <img src='http://blogs.linux.ie/kenguest/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
<br />
I would be remiss to not mention <a href="http://www.blacknight.com/">Blacknight</a> who have sponsored the IPUG from the start &#8211; without them there truly would not be a <a href="http://www.php.ie">php.ie</a>!<br />
<br />
If I&#8217;ve left anybody out &#8211; please remind me!<br />
<br />
All in all, as Chairman of the Irish PHP Users Group, I can say this is an exciting moment for us to have achieved &#8211; we&#8217;ve given something tangible back to the PHP Community as a whole and to top things off we&#8217;ve published the Whitepaper under the Open Licence Content &#8211; you may<br />
freely use it if you clearly acknowledge the Irish PHP Users Group and if you retain the Open Content Licence. This means you can localise the Whitepaper to your own language and national figures if you so desire.<br /></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.linux.ie/kenguest/2009/01/08/phpwhitepaper/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Is PHP vulnerable software?</title>
		<link>http://blogs.linux.ie/kenguest/2008/08/26/is-php-vulnerable-software/</link>
		<comments>http://blogs.linux.ie/kenguest/2008/08/26/is-php-vulnerable-software/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 12:47:18 +0000</pubDate>
		<dc:creator>kenguest</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[linux.ie]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/kenguest/?p=196</guid>
		<description><![CDATA[<p>Thanks to <a href="http://www.jansch.nl/2008/08/26/apple-microsoft-and-php-are-vulnerable/">Ivo Jansch</a>, I spotted Matt Assay mentioning in his article on cnet that <a href="http://news.cnet.com/8301-13505_3-10004048-16.html">PHP headlines</a> in IBM's list of most vulnerable software and I have to say this is complete balderdash on the part of IBM.
</p>
He quotes from the report:
<blockquote>Another commonality between these three vendors is that they are all written in PHP. If we look back over last year’s disclosures and apply the new CPE methodology to them, we would uncover another newcomer to the top five list, PHP itself, which would rank number four in the 2007 top five vendor list.
</blockquote>
<p>
What are featuring in IBM's top ten of vulnerable that makes the report insinuate that the PHP language is a security risk are Jooma, Wordpress and Drupal. How PHP would feature in a list of "vendors" is beside the point - if a construction company were to build a house where the windows don't close fully, the security alarm doesn't work and where bare wires are exposed you don't "blame" the windows, alarm system and cabling. The responsibility rests with the construction company and/or the individual contractors hired by that company. Similarly, we can't "blame" PHP for bad software architecture and security risks present in Joomla, Wordpress or Drupal - the onus is on the software developers and architects to design secure [web] applications. 
</p>
<p>
They should, at the least, ensure input data is of the expected type, of certain values; handle uploaded files in a secure and cautious manner that they don't overwrite files crucial to the health/security of the system running the application or the application itself; use an audit trail for checking against attacks, ensure security in depth against SQL injections, Cross Site Vulnerabilities, Command Injection and ... I could go on but won't - <a href="http://www.google.com/search?q=php+security+best+practices">search for php security best practices</a>, get the Zend PHP 5 Certification Study Guide, check out the  <a href="http://phpsec.org/library/">library resource at the PHP Security Consortium</a>.
</p>
<p>
Now where's ruby, cobol, C, and z80A assembly language on that list? And why is Linux mentioned there as a vendor?
</p>]]></description>
			<content:encoded><![CDATA[<p>Thanks to <a href="http://www.jansch.nl/2008/08/26/apple-microsoft-and-php-are-vulnerable/">Ivo Jansch</a>, I spotted Matt Assay mentioning in his article on cnet that <a href="http://news.cnet.com/8301-13505_3-10004048-16.html">PHP headlines</a> in IBM&#8217;s list of most vulnerable software and I have to say this is complete balderdash on the part of IBM.
</p>
<p>He quotes from the report:</p>
<blockquote><p>Another commonality between these three vendors is that they are all written in PHP. If we look back over last year’s disclosures and apply the new CPE methodology to them, we would uncover another newcomer to the top five list, PHP itself, which would rank number four in the 2007 top five vendor list.
</p></blockquote>
<p>
What are featuring in IBM&#8217;s top ten of vulnerable that makes the report insinuate that the PHP language is a security risk are Jooma, WordPress and Drupal. How PHP would feature in a list of &#8220;vendors&#8221; is beside the point &#8211; if a construction company were to build a house where the windows don&#8217;t close fully, the security alarm doesn&#8217;t work and where bare wires are exposed you don&#8217;t &#8220;blame&#8221; the windows, alarm system and cabling. The responsibility rests with the construction company and/or the individual contractors hired by that company. Similarly, we can&#8217;t &#8220;blame&#8221; PHP for bad software architecture and security risks present in Joomla, WordPress or Drupal &#8211; the onus is on the software developers and architects to design secure [web] applications.
</p>
<p>
They should, at the least, ensure input data is of the expected type, of certain values; handle uploaded files in a secure and cautious manner that they don&#8217;t overwrite files crucial to the health/security of the system running the application or the application itself; use an audit trail for checking against attacks, ensure security in depth against SQL injections, Cross Site Vulnerabilities, Command Injection and &#8230; I could go on but won&#8217;t &#8211; <a href="http://www.google.com/search?q=php+security+best+practices">search for php security best practices</a>, get the Zend PHP 5 Certification Study Guide, check out the  <a href="http://phpsec.org/library/">library resource at the PHP Security Consortium</a>.
</p>
<p>
Now where&#8217;s ruby, cobol, C, and z80A assembly language on that list? And why is Linux mentioned there as a vendor?</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.linux.ie/kenguest/2008/08/26/is-php-vulnerable-software/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Andrii Nikitin’s son Needs Help &#8211; ASAP</title>
		<link>http://blogs.linux.ie/kenguest/2008/07/14/andrii-nikitin%e2%80%99s-son-needs-help-asap/</link>
		<comments>http://blogs.linux.ie/kenguest/2008/07/14/andrii-nikitin%e2%80%99s-son-needs-help-asap/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 20:02:39 +0000</pubDate>
		<dc:creator>kenguest</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux.ie]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/kenguest/?p=179</guid>
		<description><![CDATA[(<a href="http://www.theopenforce.com/2008/07/andrii-nikitin.html">Reposted from Zack Urlocker’s blog</a>, via Vidyut Luther and <a href="http://www.planetmysql.org/">planet MySQL</a>. I don't usually repost such things but a 2.5 year old's health is at stake so I'm making an exception. If you use mysql at all - and even if you don't - please dig deep.)
<br />
Andrii Nikitin, one of the MySQL support engineers located in Ukraine, has asked for help from MySQLers and so I’m sharing this information to the community at large. Andrii’s son Ivan, who is 2 1/2, is in need of a bone marrow transplant operation. This will require going to a clinic in Europe that will not be covered by regular insurance. So Andrii has aksed to see if we could help raise funds. The cost is expected to be $150,000 - $250,000 (94,000 - 157,000 euro). A huge amount for an engineer from Ukraine to cover. But a small amount by many people could make a big difference.
<br />
Many MySQLers have kicked in to help out, but more is needed. Ivan’s health has taken a turn for the worse recently and the issue is now quite pressing. Even a small donation could mean the difference between life and death for Ivan.
<br />
I hope some of you who use MySQL or have young kids will join me in making a donation today. You can do so by using Paypal, by sending a cheque to MySQL, or via wire transfer.
<br />
Paypal:
<a href="http://tinyurl.com/6rxjsz">Paypal</a>
Or
by check payable to:
<pre>
MySQL, Inc.
Mail to: MySQL, Inc.
Attn: Linda Dong
20450 Stevens Creek Blvd #350
Cupertino, CA 95014

or
US wire transfer:

MySQL Inc: 7396643001
SWIFT: NDEAUS3N

or
International wire transfer in any currency:
Bank: Nordea Bank
Bank address: Stockholm, Sweden
Bank account: 3259 17 03868
IBAN: SE27 3000 0000 0325 9170 3868
SWIFT: NDEASESS
</pre>
Thanks to those who have donated already. A child’s life is precious and I hope we can give Ivan a chance.]]></description>
			<content:encoded><![CDATA[<p>(<a href="http://www.theopenforce.com/2008/07/andrii-nikitin.html">Reposted from Zack Urlocker’s blog</a>, via <a href="http://www.phpcult.com/blog/">Vidyut Luther</a> and <a href="http://www.planetmysql.org/">planet MySQL</a>. I don&#8217;t usually repost such things but a 2.5 year old&#8217;s health is at stake so I&#8217;m making an exception. If you use mysql at all &#8211; and even if you don&#8217;t &#8211; please dig deep.)<br />
<div id="attachment_182" class="wp-caption alignright" style="width: 310px"><a href="http://blogs.linux.ie/kenguest/files/2008/07/andrii-and-ivan.jpg"><img src="http://blogs.linux.ie/kenguest/files/2008/07/andrii-and-ivan.jpg" alt="Andrii and his son Ivan" width="300" height="225" class="size-medium wp-image-182" /></a><p class="wp-caption-text">Andrii and his son Ivan</p></div><br />
<br />
Andrii Nikitin, one of the MySQL support engineers located in Ukraine, has asked for help from MySQLers and so I’m sharing this information to the community at large. Andrii’s son Ivan, who is 2 1/2, is in need of a bone marrow transplant operation. This will require going to a clinic in Europe that will not be covered by regular insurance. So Andrii has asked to see if we could help raise funds. The cost is expected to be €150,000 &#8211; €250,000. A huge amount for an engineer from Ukraine to cover. But a small amount by many people could make a big difference.<br />
<br />
Many MySQLers have kicked in to help out, but more is needed. Ivan’s health has taken a turn for the worse recently and the issue is now quite pressing. Even a small donation could mean the difference between life and death for Ivan.<br />
<br />
I hope some of you who use MySQL or have young kids will join me in making a donation today. You can do so by using Paypal, by sending a cheque to MySQL, or via wire transfer.<br />
<br />
Paypal:<br />
<a href="http://tinyurl.com/6rxjsz">Paypal</a><br />
Or<br />
by check payable to:</p>
<pre>
MySQL, Inc.
Mail to: MySQL, Inc.
Attn: Linda Dong
20450 Stevens Creek Blvd #350
Cupertino, CA 95014

or
US wire transfer:

MySQL Inc: 7396643001
SWIFT: NDEAUS3N

or
International wire transfer in any currency:
Bank: Nordea Bank
Bank address: Stockholm, Sweden
Bank account: 3259 17 03868
IBAN: SE27 3000 0000 0325 9170 3868
SWIFT: NDEASESS
</pre>
<p>Thanks to those who have donated already. A child’s life is precious and I hope we can give Ivan a chance.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.linux.ie/kenguest/2008/07/14/andrii-nikitin%e2%80%99s-son-needs-help-asap/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

