<?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>mostBlog &#187; Programming</title>
	<atom:link href="http://mostblog.org/category/technology/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://mostblog.org</link>
	<description>Most of the internet</description>
	<lastBuildDate>Tue, 31 Aug 2010 04:17:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Why do most of the Joomla! PHP files start with &#8220;defined(&#8216; JEXEC&#8217;)&#8230;?</title>
		<link>http://mostblog.org/why-do-most-of-the-joomla-php-files-start-with-defined-jexec/</link>
		<comments>http://mostblog.org/why-do-most-of-the-joomla-php-files-start-with-defined-jexec/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 06:31:48 +0000</pubDate>
		<dc:creator>mostBlog</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://mostblog.org/?p=1398</guid>
		<description><![CDATA[Most PHP files within Joomla! 1.5 begin with the following statement: defined(&#8216;_JEXEC&#8217;) or die(&#8216;Restricted access&#8217;); Read more:]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmostblog.org%2Fwhy-do-most-of-the-joomla-php-files-start-with-defined-jexec%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmostblog.org%2Fwhy-do-most-of-the-joomla-php-files-start-with-defined-jexec%2F&amp;source=mostblog&amp;style=normal" height="61" width="50" title="Why do most of the Joomla! PHP files start with defined( JEXEC)...?" alt=" Why do most of the Joomla! PHP files start with defined( JEXEC)...?" /><br />
			</a>
		</div>
<p><a href="http://mostblog.org//HLIC/4d0a8c61569dcf37022577bc0ed93656.jpg" class="liinternal liimagelink"><img class="alignnone" title="http://mostblog.org//HLIC/4d0a8c61569dcf37022577bc0ed93656.jpg" src="http://mostblog.org//HLIC/4d0a8c61569dcf37022577bc0ed93656.jpg" alt="4d0a8c61569dcf37022577bc0ed93656 Why do most of the Joomla! PHP files start with defined( JEXEC)...?" width="600" height="350" /></a></p>
<p>Most PHP files within Joomla! 1.5 begin with the following statement:</p>
<blockquote>
<div dir="ltr">defined(&#8216;_JEXEC&#8217;) or die(&#8216;Restricted access&#8217;);</div>
</blockquote>
<p>Read more: <a href="http://docs.joomla.org/Why_do_most_of_the_Joomla!_PHP_files_start_with_%22defined(" _JEXEC')...%3F" target="_blank" class="liexternal">http://docs.joomla.org/Why_do_most_of_the_Joomla!_PHP_files_start_with_%22defined(&#8216;_JEXEC&#8217;)&#8230;%3F</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mostblog.org/why-do-most-of-the-joomla-php-files-start-with-defined-jexec/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to write SQL queries compatible with most databases</title>
		<link>http://mostblog.org/how-to-write-sql-queries-compatible-with-most-databases/</link>
		<comments>http://mostblog.org/how-to-write-sql-queries-compatible-with-most-databases/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 06:18:13 +0000</pubDate>
		<dc:creator>mostBlog</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://mostblog.org/?p=1395</guid>
		<description><![CDATA[What are ODBC Escape Sequences?   ODBC Escape sequences have included in ODBC standard and allows write SQL queries which compatible with many DBMS. Firebird and Interbase does not contains own implementation for escape sequences and therefore we have implemented them in IBProvider and now users can write compatible SQL queries for Firebird and Interbase]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmostblog.org%2Fhow-to-write-sql-queries-compatible-with-most-databases%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmostblog.org%2Fhow-to-write-sql-queries-compatible-with-most-databases%2F&amp;source=mostblog&amp;style=normal" height="61" width="50" title="How to write SQL queries compatible with most databases" alt=" How to write SQL queries compatible with most databases" /><br />
			</a>
		</div>
<h2>What are ODBC Escape Sequences?</h2>
<p> <br />
ODBC Escape sequences have included in ODBC standard and allows write SQL queries which compatible with many DBMS. Firebird and Interbase does not contains own implementation for escape sequences and therefore we have implemented them in IBProvider and now users can write compatible SQL queries for Firebird and Interbase as for MS SQL Server, Oracle, My SQL, PostgreSQL, DB2 and etc.<br />
At first time ODBC sequences was implemented for ODBC drivers, but bit by bit they was implemented in OLE DB drivers such as Microsoft Ole Db Provider for SQL Server, IBProvider and others.</p>
<p>Read more: <a href="http://www.articlealley.com/article_252290_45.html" target="_blank" class="liexternal">http://www.articlealley.com/article_252290_45.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mostblog.org/how-to-write-sql-queries-compatible-with-most-databases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>25 Most Useful Blogs for Web Design &amp; Development</title>
		<link>http://mostblog.org/25-most-useful-blogs-for-web-design-development/</link>
		<comments>http://mostblog.org/25-most-useful-blogs-for-web-design-development/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 16:41:40 +0000</pubDate>
		<dc:creator>mostBlog</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[complete list]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[Read]]></category>
		<category><![CDATA[Useful]]></category>
		<category><![CDATA[veerle]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web design development]]></category>
		<category><![CDATA[webappers]]></category>

		<guid isPermaLink="false">http://mostblog.org/?p=757</guid>
		<description><![CDATA[25 Most Useful Blogs for Web Design and Development (for the complete list, please click link on the bottom) GoMediaZine WebDesignerWall  Veerle’s Blog Fubiz AdGoodness A List Apart Magazine BittBox AbduzeedoCOLOURlovers CSS Remix FWA Read more: http://www.webappers.com/2009/04/06/25-most-useful-blogs-for-web-design-development/]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmostblog.org%2F25-most-useful-blogs-for-web-design-development%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmostblog.org%2F25-most-useful-blogs-for-web-design-development%2F&amp;source=mostblog&amp;style=normal" height="61" width="50" title="25 Most Useful Blogs for Web Design & Development" alt=" 25 Most Useful Blogs for Web Design & Development" /><br />
			</a>
		</div>
<p><strong>25 Most Useful Blogs for Web Design and Development (for the complete list, please click link on the bottom)</strong></p>
<p><a href="http://www.gomediazine.com/" title="GoMediaZine" target="_blank" class="liexternal liimagelink"><img src="http://mostblog.org//HLIC/ec3095faa8723fba10ae8a2223e3f7d2.jpg" alt="GoMediaZine" title="25 Most Useful Blogs for Web Design & Development" /></a><a href="http://www.gomediazine.com/" title="GoMediaZine" target="_blank" class="liexternal"><strong>GoMediaZine</strong></a> <a href="http://webdesignerwall.com/" title="Web Designer Wall" target="_blank" class="liexternal liimagelink"><img src="http://mostblog.org//HLIC/08af658a514783cc8bde26ede5c3c284.jpg" alt="Web Designer Wall" title="25 Most Useful Blogs for Web Design & Development" /></a><a href="http://webdesignerwall.com/" title="Web Designer Wall" target="_blank" class="liexternal"><strong>WebDesignerWall</strong></a> <a href="http://veerle.duoh.com/" title="Veerle's Blog" target="_blank" class="liexternal liimagelink"><img src="http://mostblog.org//HLIC/a15e23ad66a355eb1e4a00ebf6f91729.jpg" alt="Veerle's Blog" title="25 Most Useful Blogs for Web Design & Development" /></a> <strong><a href="http://veerle.duoh.com/" title="Veerle's Blog" target="_blank" class="liexternal">Veerle’s Blog</a></strong> <a href="http://fubiz.net/" title="Fubiz" target="_blank" class="liexternal liimagelink"><img src="http://mostblog.org//HLIC/698de89feb743b2899432d8368387e47.jpg" alt="Fubiz" title="25 Most Useful Blogs for Web Design & Development" /></a><a href="http://fubiz.net/" title="Fubiz" target="_blank" class="liexternal"><strong>Fubiz</strong></a> <a href="http://www.frederiksamuel.com/blog/" title="AdGoodness" target="_blank" class="liexternal liimagelink"><img src="http://mostblog.org//HLIC/fbb6c9db2fd2062088bea059d521ede1.jpg" alt="Ad Goodness" title="25 Most Useful Blogs for Web Design & Development" /></a><a href="http://www.frederiksamuel.com/blog/" title="AdGoodness" target="_blank" class="liexternal"><strong>AdGoodness</strong></a> <a href="http://www.alistapart.com/" title="A List Apart" target="_blank" class="liexternal liimagelink"><img src="http://mostblog.org//HLIC/5316c37f6891d1a7c1529b67879a8907.jpg" alt="A List Apart" title="25 Most Useful Blogs for Web Design & Development" /></a><a href="http://www.alistapart.com/" title="A List Apart" target="_blank" class="liexternal"><strong>A List Apart Magazine</strong></a> <a href="http://www.bittbox.com/" title="Bittbox" target="_blank" class="liexternal liimagelink"><img src="http://mostblog.org//HLIC/24788b684156108af6e70f373e65371f.jpg" alt="BittBox" title="25 Most Useful Blogs for Web Design & Development" /></a><a href="http://www.bittbox.com/" title="Bittbox" target="_blank" class="liexternal"><strong>BittBox</strong></a> <a href="http://abduzeedo.com/" title="Abduzeedo" target="_blank" class="liexternal liimagelink"><img src="http://mostblog.org//HLIC/5720d7fc852216a001df5a7d7bd698ea.jpg" alt="Abduzeedo" title="25 Most Useful Blogs for Web Design & Development" /></a><a href="http://abduzeedo.com/" title="Abduzeedo" target="_blank" class="liexternal"><strong>Abduzeedo</strong></a><a href="http://www.colourlovers.com/blog/" title="ColourLovers" target="_blank" class="liexternal liimagelink"><img src="http://mostblog.org//HLIC/59eadcfbf8282679d43665d711f66bf4.jpg" alt="ColorLovers" title="25 Most Useful Blogs for Web Design & Development" /></a><a href="http://www.colourlovers.com/blog/" title="ColourLovers" target="_blank" class="liexternal"><strong>COLOURlovers</strong></a> <a href="http://cssremix.com/" title="CSS Remix" target="_blank" class="liexternal liimagelink"><img src="http://mostblog.org//HLIC/ddbdd7753448e6b517e8c71ee158ecc7.jpg" alt="CSS Remix" title="25 Most Useful Blogs for Web Design & Development" /></a><a href="http://cssremix.com/" title="CSS Remix" target="_blank" class="liexternal"><strong>CSS Remix</strong></a> <a href="http://www.thefwa.com/" title="The FWA" target="_blank" class="liexternal liimagelink"><img src="http://mostblog.org//HLIC/6d4a59b4ed277258e23ed2cc05d83748.jpg" alt="FWA" title="25 Most Useful Blogs for Web Design & Development" /></a><a href="http://www.thefwa.com/" title="The FWA" target="_blank" class="liexternal"><strong>FWA</strong></a></p>
<p>Read more: <a href="http://www.webappers.com/2009/04/06/25-most-useful-blogs-for-web-design-development/" title="http://www.webappers.com/2009/04/06/25-most-useful-blogs-for-web-design-development/" target="_blank" class="liexternal">http://www.webappers.com/2009/04/06/25-most-useful-blogs-for-web-design-development/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mostblog.org/25-most-useful-blogs-for-web-design-development/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Top 10 Most Famous Hackers of All Time</title>
		<link>http://mostblog.org/top-10-most-famous-hackers-of-all-time/</link>
		<comments>http://mostblog.org/top-10-most-famous-hackers-of-all-time/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 10:36:47 +0000</pubDate>
		<dc:creator>mostBlog</dc:creator>
				<category><![CDATA[People]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[adrian lamo]]></category>
		<category><![CDATA[Berners]]></category>
		<category><![CDATA[Black]]></category>
		<category><![CDATA[black hat]]></category>
		<category><![CDATA[Crackers]]></category>
		<category><![CDATA[Hackers]]></category>
		<category><![CDATA[Hat]]></category>
		<category><![CDATA[hat hackers]]></category>
		<category><![CDATA[jonathan]]></category>
		<category><![CDATA[jonathan james]]></category>
		<category><![CDATA[Jonathan James Adrian Lamo]]></category>
		<category><![CDATA[Kevin Mitnick]]></category>
		<category><![CDATA[Kevin Poulsen]]></category>
		<category><![CDATA[LeeLinus]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[Linus Torvalds]]></category>
		<category><![CDATA[Morris White]]></category>
		<category><![CDATA[Read]]></category>
		<category><![CDATA[Richard Stallman]]></category>
		<category><![CDATA[Robert Tappan]]></category>
		<category><![CDATA[robert tappan morris]]></category>
		<category><![CDATA[Shimomura]]></category>
		<category><![CDATA[Stephen Wozniak]]></category>
		<category><![CDATA[tappan]]></category>
		<category><![CDATA[Tim Berners-]]></category>
		<category><![CDATA[Tsutomu]]></category>

		<guid isPermaLink="false">http://mostblog.org/?p=316</guid>
		<description><![CDATA[Black Hat Crackers Jonathan James Adrian Lamo Kevin Mitnick Kevin Poulsen Robert Tappan Morris White Hat Hackers Stephen Wozniak Tim Berners-LeeLinus Linus Torvalds Richard Stallman Tsutomu Shimomura Read more about the most famous hackers by clicking the following link: http://www.itsecurity.com/features/top-10-famous-hackers-042407/]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmostblog.org%2Ftop-10-most-famous-hackers-of-all-time%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmostblog.org%2Ftop-10-most-famous-hackers-of-all-time%2F&amp;source=mostblog&amp;style=normal" height="61" width="50" title="Top 10 Most Famous Hackers of All Time" alt=" Top 10 Most Famous Hackers of All Time" /><br />
			</a>
		</div>
<p><strong>Black Hat Crackers<a href="http://bp3.blogger.com/_UxEQXEs0ENQ/R1oe6unFxsI/AAAAAAAAADc/ugoNVcP2oaQ/s400/hackers.jpg" target="_blank" class="liexternal liimagelink"><img class="alignright" title="Top 10 Most Famous Hackers of All Time" src="http://bp3.blogger.com/_UxEQXEs0ENQ/R1oe6unFxsI/AAAAAAAAADc/ugoNVcP2oaQ/s400/hackers.jpg" alt="hackers Top 10 Most Famous Hackers of All Time" width="400" height="294" /></a></strong></p>
<li><strong>Jonathan James</strong></li>
<li><strong>Adrian Lamo</strong></li>
<li><strong>Kevin Mitnick</strong></li>
<li><strong>Kevin Poulsen</strong></li>
<li><strong>Robert Tappan Morris</strong></li>
<p><strong>White Hat Hackers</strong></p>
<li><strong>Stephen Wozniak</strong></li>
<li><strong>Tim Berners-Lee</strong><strong>Linus </strong></li>
<li><strong>Linus Torvalds</strong></li>
<li><strong>Richard Stallman</strong></li>
<li><strong>Tsutomu Shimomura</strong></li>
<p><strong>Read more about the most famous hackers by clicking the following link: <a href="http://www.itsecurity.com/features/top-10-famous-hackers-042407/" title="Top 10 Most Famous Hackers of All Time" target="_blank" class="liexternal">http://www.itsecurity.com/features/top-10-famous-hackers-042407/</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mostblog.org/top-10-most-famous-hackers-of-all-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
