<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><!-- generator="wordpress/2.3.3" --><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/" version="2.0">

<channel>
	<title>Johny.org</title>
	<link>http://www.johny.org</link>
	<description>A higher perspective...</description>
	<pubDate>Tue, 22 Jul 2008 07:00:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Johny" type="application/rss+xml" /><item>
		<title>New Woopra Sneak Peek</title>
		<link>http://www.johny.org/2008/07/22/new-woopra-sneak-peek/</link>
		<comments>http://www.johny.org/2008/07/22/new-woopra-sneak-peek/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 05:45:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Reviews]]></category>

		<category><![CDATA[Woopra]]></category>

		<category><![CDATA[sneak peek]]></category>

		<guid isPermaLink="false">http://www.johny.org/2008/07/22/new-woopra-sneak-peek/</guid>
		<description><![CDATA[Here&#8217;s a sneak peek preview of what to expect in the next version of Woopra!
 

&#160;
For all those who are waiting for an invite, post a comment and make sure to put your url in the url section (comments with url in the body will be blocked by akismet) and we will activate your website [...]]]></description>
			<content:encoded><![CDATA[<p align="left">Here&#8217;s a sneak peek preview of what to expect in the next version of <a href="http://www.woopra.com" title="Woopra" target="_blank">Woopra</a>!</p>
<p align="left"> <a href="javascript:void(0)" id="file-link-76" title="Woopra Sneak Peek" class="file-link image"></a></p>
<p style="text-align: center"><a href="http://www.johny.org/wp-content/uploads/2008/07/picture-1.png" title="Woopra Sneak Peek"><img src="http://www.johny.org/wp-content/uploads/2008/07/picture-1.thumbnail.png" alt="Woopra Sneak Peek" /></a></p>
<p align="left">&nbsp;</p>
<p>For all those who are waiting for an invite, post a comment and make sure to put your url in the url section (comments with url in the body will be blocked by akismet) and we will activate your website as soon as possible!</p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p style="text-align: center" align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p class="akst_link"><a href="http://www.johny.org/?p=75&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_75" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.johny.org/2008/07/22/new-woopra-sneak-peek/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Apache Url Rewrite for SEO</title>
		<link>http://www.johny.org/2008/05/13/apache-url-rewrite-for-seo/</link>
		<comments>http://www.johny.org/2008/05/13/apache-url-rewrite-for-seo/#comments</comments>
		<pubDate>Tue, 13 May 2008 05:58:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[SEO]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[apache]]></category>

		<category><![CDATA[htaccess]]></category>

		<category><![CDATA[url redirect]]></category>

		<guid isPermaLink="false">http://www.johny.org/2008/05/13/apache-url-rewrite-for-seo/</guid>
		<description><![CDATA[&#160;
I&#8217;ve been working on a personal business site of mine (I&#8217;ll post the link once I&#8217;m done), it has been listed in googles index recently and to my surprise I&#8217;ve forgotten to optimize the urls on the site and only got the main page indexed. Google ignores everything after the ? for example,  http://johny.org/index.php?post=2&#38;bla=3, [...]]]></description>
			<content:encoded><![CDATA[<p align="left">&nbsp;</p>
<p align="left"><a href="http://www.johny.org/wp-content/uploads/2008/05/seo.jpg" onclick="return false;" title="Direct link to file"><img src="http://www.johny.org/wp-content/uploads/2008/05/seo.thumbnail.jpg" alt="SEO" align="right" height="128" width="166" /></a>I&#8217;ve been working on a personal business site of mine (I&#8217;ll post the link once I&#8217;m done), it has been listed in googles index recently and to my surprise I&#8217;ve forgotten to optimize the urls on the site and only got the main page indexed. Google ignores everything after the ? for example,  http://johny.org/index.php?post=2&amp;bla=3, in this url google will only index http://johny.org/index.php and everything after the ? will be ignored. This is bad if your pages are dynamically generated (like most new websites).</p>
<p align="left">To fix this, you need to create a new file on the root of your website and name it &#8220;.htaccess&#8221;. In this file we will put the redirection rules. This is what mine looks like</p>
<p align="left">&nbsp;</p>
<p align="left"><font color="#3366ff">RewriteEngine on<br />
RewriteRule ^montreal/([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)\.html$      index.php?cat=$1&amp;page=$2 </font></p>
<p align="left">&nbsp;</p>
<p align="left">The first line is required to enable rewrites.</p>
<p align="left">&nbsp;</p>
<p align="left">The second line is the rule I&#8217;m using for the redirects, it looks complicated but it&#8217;s actually very simple!  RewriteRule has 2 parts, the first part, the from part,  &#8220;<font color="#3366ff">^montreal/([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)\.html$</font>&#8221; is to tell apache that if you get a url which looks like this, redirect it to the second part, the to part, which in my case is &#8220;<font color="#3366ff">index.php?cat=$1&amp;page=$2</font>&#8220;</p>
<p align="left">&nbsp;</p>
<p align="left">The links on my page are **.com/montreal/category_example/page_example.html so when someone clicks on it, apache will redirect them to **.com/index.php?cat=category_example&amp;page=page_example. In the from part I have 2 variables which are alpha-numeric, I&#8217;ve defined them by &#8220;<font color="#3366ff">([a-zA-Z0-9_-]+)</font>&#8221; (from a-z, A-Z, 0-9, _-]+)) the variable ends as soon as a character is reached which is not in the range I&#8217;ve defined, in this case it&#8217;s the &#8216;/&#8217;, then the second variable starts which is for the pages. As you can see in my case, I&#8217;m mainly targeting clients from Montreal, that&#8217;s because my main clientele is from there and this keyword inserted in all my links will give me a fair amount of boost in the search engines for the &#8220;montreal&#8221; keyword (which is a <em>must have </em>in my case).</p>
<p align="left">&nbsp;</p>
<p align="left">Hope this helps someone out, let me know if you need any help <img src='http://www.johny.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p class="akst_link"><a href="http://www.johny.org/?p=73&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_73" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.johny.org/2008/05/13/apache-url-rewrite-for-seo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Get your Free Alarm</title>
		<link>http://www.johny.org/2008/04/25/get-your-free-alarm/</link>
		<comments>http://www.johny.org/2008/04/25/get-your-free-alarm/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 23:21:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C#]]></category>

		<category><![CDATA[Project]]></category>

		<category><![CDATA[alarm]]></category>

		<category><![CDATA[clock]]></category>

		<category><![CDATA[free]]></category>

		<guid isPermaLink="false">http://www.johny.org/2008/04/25/get-your-free-alarm/</guid>
		<description><![CDATA[
Every once in a while, I challenge myself, I think of a small application that might be useful to me and time myself to see how much time it took me to write it. The latest one, the one I did yesterday night, was an alarm clock which plays mp3 files as the alarm tone [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.johny.org/wp-content/uploads/2008/04/alarm.png" title="Alarm image"><img src="http://www.johny.org/wp-content/uploads/2008/04/alarm.png" alt="Alarm image" align="right" /></a></p>
<p>Every once in a while, I challenge myself, I think of a small application that might be useful to me and time myself to see how much time it took me to write it. The latest one, the one I did yesterday night, was an alarm clock which plays mp3 files as the alarm tone (took me 2 hours, I&#8217;m not pleased at all). Anyway, I decided to post the app here and maybe someone might use it <img src='http://www.johny.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> I called it FreeAlarm v0.1, it&#8217;s one executable file, no installations or anything and should work on all Windows OS. Let me know what you think of it!</p>
<p>The source code (written in C#)  isn&#8217;t documented (not part of challenge, takes time <img src='http://www.johny.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) but it&#8217;s pretty straight forward, I don&#8217;t mind uploading it if I get requests for it.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-1769136017144685";
/* Johny - Alarm:468x60, created 4/25/08 */
google_ad_slot = "4304428350";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><a href="http://www.johny.org/wp-content/uploads/2008/04/freealarm.zip" title="FreeAlarm">Click here to download FreeAlarm</a></p>
<p class="akst_link"><a href="http://www.johny.org/?p=70&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_70" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.johny.org/2008/04/25/get-your-free-alarm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Woopra Competition Winner</title>
		<link>http://www.johny.org/2008/04/14/woopra-competition-winner/</link>
		<comments>http://www.johny.org/2008/04/14/woopra-competition-winner/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 05:02:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<category><![CDATA[Competition]]></category>

		<category><![CDATA[Woopra]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[invite]]></category>

		<guid isPermaLink="false">http://www.johny.org/2008/04/14/woopra-competition-winner/</guid>
		<description><![CDATA[The first draw for the Woopra competition has taken place, the winner is &#8220;http://blog.dylx-infotech.com/&#8221;. Congratulations  Please let us know what you think of Woopra! For all the others who participated, another draw will take place next monday and you will be automatically included.
Here&#8217;s a video of the draw:





-Johny

Share This
]]></description>
			<content:encoded><![CDATA[<p>The first draw for the Woopra competition has taken place, the winner is &#8220;http://blog.dylx-infotech.com/&#8221;. Congratulations <img src='http://www.johny.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Please let us know what you think of Woopra! For all the others who participated, another draw will take place next monday and you will be automatically included.</p>
<p>Here&#8217;s a video of the draw:</p>
<p><center><br />
<object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/PuTBCIkBi6E&#038;hl=en"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/PuTBCIkBi6E&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object><br />
</center></p>
<p>-Johny<br />
<br/></p>
<p class="akst_link"><a href="http://www.johny.org/?p=69&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_69" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.johny.org/2008/04/14/woopra-competition-winner/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Woopra Invite Competition</title>
		<link>http://www.johny.org/2008/04/05/woopra-invite-competition/</link>
		<comments>http://www.johny.org/2008/04/05/woopra-invite-competition/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 18:09:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<category><![CDATA[Competition]]></category>

		<category><![CDATA[SEO]]></category>

		<category><![CDATA[Woopra]]></category>

		<category><![CDATA[invitation]]></category>

		<category><![CDATA[invite]]></category>

		<guid isPermaLink="false">http://www.johny.org/2008/04/05/woopra-invite-competition/</guid>
		<description><![CDATA[I got Woopra invitations and I am willing to give them away but I don&#8217;t want to give them away to people who won&#8217;t really appreciate it much and therefore I decided to give them out as prizes for small competitions which will happen on Johny.org
For now I came up with 2 competitions:
The first competition [...]]]></description>
			<content:encoded><![CDATA[<p>I got Woopra invitations and I am willing to give them away but I don&#8217;t want to give them away to people who won&#8217;t really appreciate it much and therefore I decided to give them out as prizes for small competitions which will happen on Johny.org</p>
<p>For now I came up with 2 competitions:</p>
<p>The first competition consists of editing the demo video that I&#8217;ve posted, the link to download the video can be found in my previous post. All that is required is to make a 3-5 minutes eye catching experience so you&#8217;ll have to make some transitions, add some background, whatever you find suitable! Make sure you work on the high quality video I posted on Vimeo, the link to download the high quality video can be found in the previous post. Once the video is done, upload on Vimeo, post a comment with a link to the video, every time 10 videos are posted we will choose one and give the winner an invite, therefore for every 10 videos there will be 1 winner (eg: 50 videos = 5 winners&#8230;).</p>
<p>The second competition is simple, simply link to this post! I can see everyone who links here and a software will randomly choose a winner every week! The sooner you link the better since you will be automatically included in the next weeks lottery. For every 100 links there will be 5 invites therefore there&#8217;s a 5% chance to win (which isn&#8217;t really bad).</p>
<p>Good Luck <img src='http://www.johny.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>-Johny</p>
<p><strong>Update:</strong> The first draw will be on Monday April 14th</p>
<p>I came up with a fair way to do the drawings, each website linking will be assigned a number. On Monday I&#8217;ll go on Random.org, generate a number between 1 till &#8220;x number of sites linking&#8221; and the number which pops on the screen will be the winner. To make sure that no one feels bad or cheated, I&#8217;ll record the process and post it on a video sharing website <img src='http://www.johny.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Update:</strong> <strong>Second draw will be on 21/04/08 </strong></p>
<p>For now, here are the numbers assigned:</p>
<p><strike>1 -  http://www.windowsobserver.com/2008/04/08/woopra-invites/</strike> (he has woopra running)</p>
<p><strike>1 - http://www.lnahinu.com/blog</strike></p>
<p><strike>3 - http://blog.dylx-infotech.com/22/woopra-fo&#8230; </strike>(winner on 14/04/08)</p>
<p><strike>2 -http://fredscapes.nl/index.php/2008/04/13/win-een-woopra-invite/</strike></p>
<p><strong>Update: April 21 2008</strong></p>
<p>Not alot of participants so I decided to end the competition, I sent an invite to the 2 remaining candidates.</p>
<p class="akst_link"><a href="http://www.johny.org/?p=67&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_67" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.johny.org/2008/04/05/woopra-invite-competition/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Woopra Live Web Analytics in Action</title>
		<link>http://www.johny.org/2008/04/03/woopra-live-web-analytics-in-action/</link>
		<comments>http://www.johny.org/2008/04/03/woopra-live-web-analytics-in-action/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 12:22:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<category><![CDATA[Client-Server]]></category>

		<category><![CDATA[Database]]></category>

		<category><![CDATA[Domain Name]]></category>

		<category><![CDATA[Hosting]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Project]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[Woopra]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[Live Web Analytics]]></category>

		<guid isPermaLink="false">http://www.johny.org/2008/04/03/woopra-live-web-analytics-in-action/</guid>
		<description><![CDATA[I&#8217;ve been a beta (actually even pre-alpha :P) user of Woopra for a while (one of the first, if not the first),  so it&#8217;s now time to pay my dues by posting a video about it, the video was made with intent to be modified (some editing and adding step by step explanation) and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been a beta (actually even pre-alpha :P) user of <a href="http://www.Woopra.com" title="Woopra" target="_blank">Woopra </a>for a while (one of the first, if not the first),  so it&#8217;s now time to pay my dues by posting a video about it, the video was made with intent to be modified (some editing and adding step by step explanation) and placed on the Woopra demo page but due to lack of time it stayed as scrap and in the meanwhile newer version of Woopra got released and therefore I decided to post it before it becomes totally useless <img src='http://www.johny.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>If you haven&#8217;t heard of Woopra yet, &#8220;Woopra provides real-time stats delivered via a revolutionary client-server application, and includes unique features such as the ability to identify and chat real time with visitors to the monitored site. The beta version of Woopra was quietly unveiled to a select audience of 200 at WordCamp Dallas, but news rapidly spread to over 2 million as buzz began to grow.&#8221;</p>
<p>Enjoy! <img src='http://www.johny.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<center><br />
<object type="application/x-shockwave-flash" data="http://www.vimeo.com/moogaloop.swf?clip_id=858402&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef" height="322" width="451"></p>
<param name="quality" value="best"></param>
<param name="allowfullscreen" value="true"></param>
<param name="scale" value="showAll"></param>
<param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=858402&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef"></param></object><br />
</center></p>
<p>For those interested in an invite to Woopra, I have a small challenge, download the high quality video from <a href="http://www.vimeo.com/download/video:48952803" rel="external nofollow">Vimeo</a> (on the videos page) and edit it. The best edit will receive an invite!</p>
<p class="akst_link"><a href="http://www.johny.org/?p=66&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_66" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.johny.org/2008/04/03/woopra-live-web-analytics-in-action/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Street Soccer</title>
		<link>http://www.johny.org/2008/03/09/street-soccer/</link>
		<comments>http://www.johny.org/2008/03/09/street-soccer/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 00:04:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Crazy Videos]]></category>

		<category><![CDATA[Games]]></category>

		<category><![CDATA[funny]]></category>

		<guid isPermaLink="false">http://www.johny.org/2008/03/09/street-soccer/</guid>
		<description><![CDATA[And I thought I was fairly good in soccer&#8230; It&#8217;s amazing what these guys can do.





Share This
]]></description>
			<content:encoded><![CDATA[<p>And I thought I was fairly good in soccer&#8230; It&#8217;s amazing what these guys can do.<br />
<center><br />
<object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/jWk9VJ3wVX8"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/jWk9VJ3wVX8" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object><br />
</center></p>
<p class="akst_link"><a href="http://www.johny.org/?p=65&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_65" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.johny.org/2008/03/09/street-soccer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cold Boot Attack on Encryption Keys</title>
		<link>http://www.johny.org/2008/03/08/cold-boot-attack-on-encryption-keys/</link>
		<comments>http://www.johny.org/2008/03/08/cold-boot-attack-on-encryption-keys/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 22:32:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.johny.org/2008/03/08/cold-boot-attack-on-encryption-keys/</guid>
		<description><![CDATA[A very interesting research from Princeton with a demo video about cold boot attack on encryption keys which are read from RAM and not the usual hard disk keys.
Here&#8217;s the video:





&#8220;Abstract Contrary to popular assumption, DRAMs used in most modern computers retain their contents for seconds to minutes after power is lost, even at operating [...]]]></description>
			<content:encoded><![CDATA[<p>A very interesting research from Princeton with a demo video about cold boot attack on encryption keys which are read from RAM and not the usual hard disk keys.</p>
<p>Here&#8217;s the video:</p>
<p><center><br />
<object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/JDaicPIgn9U"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/JDaicPIgn9U" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object><br />
</center><br />
&#8220;<strong>Abstract</strong> Contrary to popular assumption, DRAMs used in most modern computers retain their contents for seconds to minutes after power is lost, even at operating temperatures and even if removed from a motherboard. Although DRAMs become less reliable when they are not refreshed, they are not immediately erased, and their contents persist sufficiently for malicious (or forensic) acquisition of usable full-system memory images&#8230;</p>
<p> <a href="http://www.johny.org/2008/03/08/cold-boot-attack-on-encryption-keys/#more-64" class="more-link">(more&#8230;)</a></p>
<p class="akst_link"><a href="http://www.johny.org/?p=64&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_64" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.johny.org/2008/03/08/cold-boot-attack-on-encryption-keys/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Life Quotes</title>
		<link>http://www.johny.org/2008/02/18/life-quotes/</link>
		<comments>http://www.johny.org/2008/02/18/life-quotes/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 08:15:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[quotes]]></category>

		<guid isPermaLink="false">http://www.johny.org/2008/02/18/life-quotes/</guid>
		<description><![CDATA[Here are two quotes that I&#8217;ve come up with and thought I would share for criticism:
1) &#8220;Life is a set of dynamic priorities.&#8221; - JohnyB
I&#8217;m sure that all coders know what a dynamic priority list is, but to those who don&#8217;t, it&#8217;s a list of elements that get updated according to a rule you set [...]]]></description>
			<content:encoded><![CDATA[<p>Here are two quotes that I&#8217;ve come up with and thought I would share for criticism:</p>
<p>1) &#8220;Life is a set of dynamic priorities.&#8221; - JohnyB</p>
<p>I&#8217;m sure that all coders know what a dynamic priority list is, but to those who don&#8217;t, it&#8217;s a list of elements that get updated according to a rule you set in your code. For example when 2 normal users print on the same printer, the first one who presses print will be assigned top priority and the second will get the second spot. But when a super user prints, he will be assigned the first spot on the queue and won&#8217;t wait for the others&#8230; That&#8217;s how I think life works, we have a set of things to do but a limited time, we just have to figure which one goes before the other&#8230;</p>
<p>A real life example would be, you&#8217;re watching TV and the door bell rings, you assign the door a higher priority and go open it and then resume your other lower &#8220;priority&#8221; such as TV.</p>
<p>2) &#8220;The older we get, the dumber we become&#8221; (edited- I actually won&#8217;t take credit for this one as it returned 2 results on google)</p>
<p>Let me know what you think!</p>
<p class="akst_link"><a href="http://www.johny.org/?p=63&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_63" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.johny.org/2008/02/18/life-quotes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Asus Realtek HD audio problem</title>
		<link>http://www.johny.org/2008/02/06/asus-realtek-hd-audio-problem/</link>
		<comments>http://www.johny.org/2008/02/06/asus-realtek-hd-audio-problem/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 22:29:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Help]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[microsoft]]></category>

		<category><![CDATA[asus]]></category>

		<category><![CDATA[motherboard]]></category>

		<category><![CDATA[pk5]]></category>

		<category><![CDATA[realtek]]></category>

		<category><![CDATA[soundcard]]></category>

		<guid isPermaLink="false">http://www.johny.org/2008/02/06/asus-realtek-hd-audio-problem/</guid>
		<description><![CDATA[I recently got a new pc with an Asus P5K motherboard, after reformatting it the built-in sound card was not working anymore.
This is how I fixed it:

From control panel, add/remove, remove these 2 softwares if they are installed, &#8220;Realtek High Definition Audio Driver&#8221; and &#8220;High Definition Audio driver Package - KB888111&#8243;.
Restart Windows
Get the latest Realtek [...]]]></description>
			<content:encoded><![CDATA[<p>I recently got a new pc with an Asus P5K motherboard, after reformatting it the built-in sound card was not working anymore.</p>
<p>This is how I fixed it:</p>
<ol>
<li>From control panel, add/remove, remove these 2 softwares if they are installed, &#8220;Realtek High Definition Audio Driver&#8221; and &#8220;High Definition Audio driver Package - KB888111&#8243;.</li>
<li>Restart Windows</li>
<li><a rel="nofollow" href="http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&amp;PNid=24&amp;PFid=24&amp;Level=4&amp;Conn=3&amp;DownTypeID=3" target="_blank">Get the latest Realtek drivers from here</a>.</li>
<li>Install it, and reboot.</li>
<li>Should be working now!</li>
</ol>
<p>I think this should work on all Asus Motherboards that have a built-in HD Realtek Soundcard.</p>
<p class="akst_link"><a href="http://www.johny.org/?p=62&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_62" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.johny.org/2008/02/06/asus-realtek-hd-audio-problem/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
