<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>detect &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/detect/</link>
	<description>Feed of posts on WordPress.com tagged "detect"</description>
	<pubDate>Mon, 13 Oct 2008 02:10:56 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[October is Breast Cancer Awareness Month]]></title>
<link>http://kaftan.wordpress.com/?p=137</link>
<pubDate>Sat, 11 Oct 2008 14:55:08 +0000</pubDate>
<dc:creator>Caftans Saga</dc:creator>
<guid>http://caftansaga.com/2008/10/11/october-is-breast-cancer-awareness-month/</guid>
<description><![CDATA[Free mammogram service. Guaranteed to be accurate. Uses vacuum.
I would like to take this opportunit]]></description>
<content:encoded><![CDATA[[caption id="attachment_136" align="alignnone" width="400" caption="Free mammogram service. Guaranteed to be accurate. Uses vacuum."]<a href="http://kaftan.files.wordpress.com/2008/10/mammo.jpg"><img class="size-full wp-image-136 " title="Free mammogram service. Guaranteed to be accurate. Uses vacuum." src="http://kaftan.wordpress.com/files/2008/10/mammo.jpg" alt="Free mammogram service. Guaranteed to be accurate. Uses vaccuum." width="400" height="374" /></a>[/caption]
<p>I would like to take this opportunity to stress to all women out there to take the time to have a mammogram. It could save their life.</p>
<p>The key with breast cancer is early detection, the earlier the cancer is detected, the greater the chances of survival.</p>
<p>Yes it is slightly uncomfortable, but it can provide peace of mind to women in the age range who are most vulnerable to breast cancers.</p>
<p>One in nine women will develop breast cancer at some point in their lives and a woman’s risk of the disease increases with age. A woman’s risk of developing breast cancer by the age of 30 is around one in 2,000 but by the age of 60 it is around one in 25, and by 70 it is one in 15. Four out of five (80 per cent) of all cases of breast cancer occur in women aged 50 and over, despite a common misconception that breast cancer is more likely to occur under the age of 50.</p>
<p>For details on breast cancer and the screening programme, visit the website at <a href="http://www.cancerscreening.nhs.uk">www.cancerscreening.nhs.uk</a>.</p>
<p>And yes, they have a different mammogram than the one in the picture above.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Mobile device recognition]]></title>
<link>http://beradrian.wordpress.com/?p=137</link>
<pubDate>Fri, 10 Oct 2008 14:16:48 +0000</pubDate>
<dc:creator>Adrian</dc:creator>
<guid>http://beradrian.fr.wordpress.com/2008/10/10/mobile-device-recognition/</guid>
<description><![CDATA[Nowadays when you create a web site you should also think to the ones accessing it from a mobile dev]]></description>
<content:encoded><![CDATA[<p>Nowadays when you create a web site you should also think to the ones accessing it from a <strong>mobile device</strong>. But how you can know this?<br />
I'm going to show you next a few methods on how you can do this and present the advantages and disadvantage of each one.</p>
<h4>WURFL</h4>
<p>My favorite method of detecting a mobile device is <a href="http://wurfl.sf.net"><strong>WURFL</strong></a>. WURFL is an open source database of mobile devices capabilities. Every mobile device is identified by its <strong><code>User-Agent</code></strong> string (you can find it in the HTTP headers) and has associated a list of capabilities grouped into categories. How exactly you can use it in .NET you can see <a href="http://beradrian.wordpress.com/2008/09/04/mobile-device-filter-in-aspnet/">here</a>.<br />
You will also have to consult the <strong><code>X_DEVICE_USER_AGENT</code></strong> HTTP header because some mobile providers are <a href="http://wurfl.sourceforge.net/vodafonerant/">rewriting the User Agent<br />
</a>.<br />
More on the <code>User-Agent</code> HTTP header you can find out on <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html">W3C</a> (section 14.43).<br />
I personally like WURFL because it is open source, it tells you more than if the device is mobile or not. The downside is that probably it does not contain info about all the latest mobile devices. But you can easily become a <a href="http://wurflpro.com/static/become_a_contributor.htm">WURFL contributor</a> and submit these info yourself into the <a href="http://wurflpro.com/">WURFL database</a>. Before doing these you should familiarize very well with the <a href="http://www.wurflpro.com/static/top.htm">WURFL documentation</a>.<br />
I also like that the community is very active and the database contains approximately 7000 devices, making it a very effective method and most importantly with no false positives, unlike the next methods.<br />
Moreover, WURFL has a library for accessing the XML database implemented in Java, .NET and PHP.</p>
<h4>UAProf</h4>
<p>If WURFL is a devices database, <strong>UAProf</strong> (User Agent Profile) is a capabilities database for a single device.<br />
The mobile browser could contain an HTTP header usually named <code>x-wap-profile</code> and its value is an URL pointing to the profile described in RDF (see <a href="http://www.openmobilealliance.org/tech/affiliates/wap/wap-248-uaprof-20011020-a.pdf">UAProf specs</a> as PDF).<br />
There are some serious downsides to this method:</p>
<ul>
<li>The name of the HTTP header is not always <code>x-wap-profile</code>. It could also be <code>wap-profile</code> or <code><em>xx</em>-profile</code>, where <em>xx</em> is a number. The <code>Opt</code> header can contain this number.</li>
<li>There is no standard regarding the capabilities naming and grouping</li>
<li>Not all the devices have UAProf</li>
<li>Not all the UAProfs are still available</li>
<li>Retrieving and parsing the UAProf can be quite time consuming</li>
</ul>
<p>Altough you can use an UAProf to define a device in the WURFL database, which should be the preferred way.</p>
<h4>Browser.isMobile (.NET dependent)</h4>
<p>This is the method that I recommend the less because it is .NET dependent, not quite up-to-date and it doesn't offer too many information about the device capabilities. Anyway for your reference I include it as well.</p>
<blockquote><p><code>
<pre>
if (HttpContext.Current.Request.Browser["IsMobileDevice"] == "true")
{
    // the browser IS a mobile device
}
else
{
    // the browser IS NOT a mobile device
}
</pre>
<p></code></p></blockquote>
<p>.</p>
<h4>Next steps</h4>
<p>What you do next, after knowing with each type of device are you dealing with, it's a different story. For sure I wouldn't recommend you to create two versions of the same page. The best way will be to have only one version and to customize the layout using CSS. Then you definitely have to avoid the "evil" HTML table to build your layout. A lot of current mobile browser don't handle very good nested tables. Here a method of finding out also the mobile device capabilities (such as screen width and height) will help you in building a better layout. Altough recommended will be to use percentages instead of fixed sizes.</p>
<p>Another way will be to use XSLT to transform the desktop version into the mobile one. Please keep in mind that the transformation should be made on the server side, as almost certain the device will not have this capacity. This is a good approach and you can even transform the page into WML (or even, why not, VoiceXML) but you will have to sacrifice some performance on the server side. This is acceptable as the mobile device version traffic has a lower bandwidth. I already wrote an <a href="http://beradrian.wordpress.com/2008/09/04/xslt-handler-in-aspnet/">XSLT server side transformer</a> in .NET and should be as simple and straightforward to implement it in Java as well.</p>
<p>In conclusion, I would recommend to use a combination of the above methods for detecting mobile devices and creating mobile web pages.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Workshop: Detecting on-line student plagiarism with Google]]></title>
<link>http://avispector.wordpress.com/?p=873</link>
<pubDate>Thu, 09 Oct 2008 20:16:48 +0000</pubDate>
<dc:creator>avispector</dc:creator>
<guid>http://avispector.fr.wordpress.com/2008/10/09/workshop-detecting-on-line-student-plagiarism-with-google/</guid>
<description><![CDATA[Quick overview: A very simple ICT tip for detecting (and confirming) on-line student plagiarism.
Wor]]></description>
<content:encoded><![CDATA[<p><strong>Quick overview: </strong>A very simple ICT tip for detecting (and confirming) on-line student plagiarism.</p>
<p class="MsoNormal"><strong>Workshop tip: </strong>Do you ever suspect student work of being plagiarized from on-line sources but have no way to prove it?    In the video below, I explain a quick and easy trick to detect plagiarism using the Google search engine.  The video is a two minute excerpt from the the Pearson Adult Career Centre (PACC) "Exploring ICT Resources" workshop that was given on October 8th, 2008.</p>
<p class="MsoNormal"><a href="http://www.digitalsparkles.com/example/plagiarism/plagiarism.html" target="_blank"><img class="alignleft size-full wp-image-631" src="http://avispector.files.wordpress.com/2008/08/vid_icon.jpg?w=35&#38;h=34&#38;h=34" alt="" width="35" height="34" /></a><span style="color:#000000;"><strong>Video Tutorial: </strong></span>To see an on-line video of how to detect plagiarism, click the large <a href="http://www.digitalsparkles.com/example/plagiarism/plagiarism.html" target="_blank">play button</a> below:</p>
<p class="MsoNormal" style="text-align:center;"><a href="http://www.digitalsparkles.com/example/plagiarism/plagiarism.html" target="_blank"><img class="size-full wp-image-880 aligncenter" title="plag2" src="http://avispector.wordpress.com/files/2008/10/plag2.jpg" alt="" width="321" height="275" /></a></p>
<p class="MsoNormal"><img src="/DOCUME~1/Indeo/LOCALS~1/Temp/moz-screenshot-8.jpg" alt="" /></p>
<p class="MsoNormal"><img class="alignnone size-full wp-image-87" title="ict_10" src="http://avispector.wordpress.com/files/2008/06/ict_10.jpg" alt="" width="421" height="57" /></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[What City is this?]]></title>
<link>http://hiddencitysecrets.wordpress.com/?p=17</link>
<pubDate>Fri, 12 Sep 2008 17:11:18 +0000</pubDate>
<dc:creator>Alena</dc:creator>
<guid>http://hiddencitysecrets.fr.wordpress.com/2008/09/12/what-city-is-this/</guid>
<description><![CDATA[This is my City in the photographs!
Is it your City in the photographs?
What City is this?
Guess!
Is]]></description>
<content:encoded><![CDATA[<p>This is my City in the photographs!</p>
<p>Is it your City in the photographs?</p>
<p>What City is this?</p>
<p>Guess!</p>
<p>Is it your Final Answer?</p>
<p>Follow me through my photography adventure!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Detect Invisible Yahoo Messenger]]></title>
<link>http://dotcyber.wordpress.com/?p=22</link>
<pubDate>Wed, 03 Sep 2008 03:51:49 +0000</pubDate>
<dc:creator>dotcyber</dc:creator>
<guid>http://dotcyber.fr.wordpress.com/2008/09/03/detect-invisible-yahoo-messenger/</guid>
<description><![CDATA[Bagi Anda yang suka chatting dengan menggunakan aplikasi Yahoo messenger dengan modus invisible seka]]></description>
<content:encoded><![CDATA[<p>Bagi Anda yang suka chatting dengan menggunakan aplikasi Yahoo messenger dengan modus invisible sekarang tidak bisa bersembunyi lagi karena telah banyak tools dan website yang menyediakan layanan online untuk mendeteksi modus invisible dari Yahoo messenger. Salah satu layanan online yang menyediakan fasilitas untuk mendeteksi modus invisible Yahoo messenger adalah <a href="http://vizgin.com">http://vizgin.com</a> atau <a href="http://invisible-scanner.com">http://invisible-scanner.com</a> Layanan dari situ ini cukup cepat juga untuk saat ini, dan hasilnya juga akurat.<br />
Untuk menggunakan layanan ini Anda tidak perlu login ke YM Anda, cukup masukkan Yahoo ID dari user yang ingin diketahui status online-nya. Selamat mencoba</p>
<p>sumber: rvsdi.com</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[DNA cards to help locals detect disease]]></title>
<link>http://baovietnam2.wordpress.com/2008/08/25/dna-cards-to-help-locals-detect-disease/</link>
<pubDate>Mon, 25 Aug 2008 12:59:16 +0000</pubDate>
<dc:creator>Bao Viet Nam</dc:creator>
<guid>http://baovietnam2.fr.wordpress.com/2008/08/25/dna-cards-to-help-locals-detect-disease/</guid>
<description><![CDATA[by Tran Quynh Hoa
HA NOI — People suffering from hereditary diseases may benefit from a DNA-testin]]></description>
<content:encoded><![CDATA[<p><P align="left"><FONT face="Times New Roman" color="#800000" size="3"><B>by Tran Quynh Hoa</B></FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">HA NOI — People suffering from hereditary diseases may benefit from a DNA-testing programme that Viet Nam plans to introduce by 2010.</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">The programme, implemented by the Ha Noi-based Centre for Genetic Analysis and Technologies, would include ‘DNA cards’ that help in early detection of 10 of the most common hereditary diseases, said Le Dinh Luong, the centre founder and president of the Viet Nam Genetics Society.</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">"Each hereditary disease is a sign of one or more errors in DNA," said Luong. "Today’s genetics technology can find these errors in each person, and warn them of the potential that they may acquire a certain disease."</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">Luong said the programme would include personal DNA cards, which would be made following medical tests on patients. These cards will include advice on treatment and how to prevent or slow down diseases.</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">"DNA disease detection cards could be personalised to find remedies for each disease and each person," said Luong.</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">"The final aim is to give an early diagnosis and improve prevention to boost living standards and longevity."</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">The cards could even be used for three-month-old children in the womb. Obstetric experts said at this early period, doctors could take necessary intervention measures for disease treatment.</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">DNA, Deoxyribonucleic Acid, is the molecule that encodes the entire hereditary history of each individual, and it can be found in almost every cell in the human body. The DNA of every individual is so unique, that with exception of identical twins, no two people among the world’s 8 billion population have the same code.</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">DNA is usually obtained from a blood sample. Experts only need one third of a blood drop from a fingertip for analysis. A cell sample obtained from hair, fingernails or by using a cotton bud to wipe the inside of the mouth, also provide enough DNA data for the planned cards.</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">A DNA disease detection card is expected to cost US$1,000. However, Luong said the cost would quickly drop as new technology becomes available. A similar fall in costs had occurred with Viet Nam’s DNA identity card. Luong said current DNA identity cards cost about VND3 million ($187), 180 times cheaper than initially thought.</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">"DNA cards have become popular around the world, proving their obvious value," said Luong.</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">"Generally speaking, Viet Nam’s DNA technologies can not catch up with world standards for the time being. But DNA technologies for identification and disease detection purposes in the country are very close to world standard."</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">Nguyen Viet Anh, a Ha Noi resident, said he hoped DNA disease detection cards would be available soon.</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">"It’s very important. Some of my relatives have died of several different diseases," said Anh. "I really want to know whether my children and I carry the germs for these diseases so that if they are in danger, there’s the possibility of early intervention."</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">For Hoang Thu Hien, the cards were a fascinating thing but she would rather wait until their price dropped by five times to have it made for her.</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">But others are worried about a possible misuse of the cards once they are made available.</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">Phung Viet Dung said problems related to privacy could occur if DNA disease detection cards become widespread across the country.</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">"What would happen if the cards could not be kept confidential for some reasons?"</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">"Perhaps some couples who want to get married may require each other to show each other’s cards. And that may be the root of an unhappy ending for some."</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">In some other countries in the world where DNA technologies are much more advanced, the issue of DNA cards have stirred endless debate.</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">The US, for instance, is seriously considering a national identification card containing the carrier’s DNA information after the September 11 attacks. The UK has also considered developing a national database containing DNA information on every person in the country.</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">Both plans have encountered strong opposition. Many Americans are worried that such a card system violated individual’s rights to privacy, while the UK’s <I>Telegraph</I> newspaper called the plan "an extremely intimidating prospect".</FONT></P><br />
<P align="left"><FONT face="Times New Roman" size="3">Luong said there would be less opposition if the cards were issued on a voluntary basis. —</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[How to detect a lie--this is life-changing!]]></title>
<link>http://melissacole.wordpress.com/?p=1320</link>
<pubDate>Thu, 14 Aug 2008 14:47:17 +0000</pubDate>
<dc:creator>Melissa Cole</dc:creator>
<guid>http://melissacoleblogs.com/2008/08/14/how-to-detect-a-lie/</guid>
<description><![CDATA[
&#8220;&#8230;in a recent poll, 91% of Americans reported lying on a regular basis.&#8221;

HOLY CO]]></description>
<content:encoded><![CDATA[<blockquote>
<p style="text-align:justify;">"...in a recent poll, 91% of Americans reported lying on a regular basis."</p>
</blockquote>
<h3 style="text-align:center;"><strong><span style="color:#ff004d;">HOLY COW!!!</span></strong></h3>
<p style="text-align:justify;"><span style="color:#ff004d;"><span style="float:left;font-size:100px;line-height:80px;padding-top:1px;padding-right:5px;font-family:geneva;">I</span></span> fancy myself pretty good at unraveling untruths already (and handling the subsequent fall out), but this vidcast by the YouTube guru <a href="http://www.youtube.com/user/Howcast" target="_blank">Howcast</a> gave me some life-changing new tips!</p>
<p style="text-align:center;"><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/tW8KYtvAsrw'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/tW8KYtvAsrw&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p style="text-align:justify;">Shifty eye contact (along with my potent and intuitive senses) usually gives it away for me, but there are a variety of other tell-tale factors that will help you pinpoint exactly who ate your last Tofutti ice cream sandwich and left the empty box in the freezer.</p>
<p style="text-align:justify;">They advise not to bust the culprit right away, and that you should keep the info stored in your back pocket, but how you handle things is totally up to you. And yes, someone really did leave my Tofutti box empty in the freezer (because I knew you were wondering).</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[What is Hearing Impairment?]]></title>
<link>http://lifechums.wordpress.com/?p=505</link>
<pubDate>Wed, 30 Jul 2008 16:30:35 +0000</pubDate>
<dc:creator>lifechums</dc:creator>
<guid>http://lifechums.com/2008/07/30/what-is-hearing-impairment/</guid>
<description><![CDATA[A hearing impairment or hearing loss is a full or partial decrease in the ability to detect or under]]></description>
<content:encoded><![CDATA[<p>A hearing impairment or hearing loss is a full or partial decrease in the ability to detect or understand sounds.</p>
<p>A hearing impairment exists when an individual is not sensitive to the sounds normally heard by its kind. In human beings, the term hearing impairment is usually reserved for people who have relative insensitivity to sound in the speech frequencies.</p>
<p>Hearing loss can be inherited. Both dominant and recessive genes exist which can cause mild to profound impairment. If a family has a dominant gene for deafness it will persist across generations because it will manifest itself in the offspring even if it is inherited from only one parent.</p>
<p>People who are hard of hearing have varying amounts of hearing loss but usually not enough to be considered deaf. Many people who are deaf consider spoken language their primary language and consider themselves "hard of hearing".</p>
<p>People with unilateral hearing loss (single sided deafness/SSD) can hear normally in one ear, but have trouble hearing out of the other ear. Problems with this type of deficit is inability to localize sounds.</p>
<p>Those who lose their hearing later in life, such as in late adolescence or adulthood, face their own challenges. For example, they must adjust to living with the adaptations that make it possible for them to live independently. They may have to adapt to using hearing aids or a cochlear implant, develop speech-reading skills, and/or learn sign language.</p>
<p>Keep visiting: <a href="http://www.lifechums.com">www.lifechums.com</a> more Celebrities featuring Shortly .............</p>
<p><a title="Bookmark and Share" href="http://www.addthis.com/bookmark.php" target="_blank"><img src="http://s9.addthis.com/button1-addthis.gif" border="0" alt="Bookmark and Share" width="125" height="16" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Detect if client browser has cookies enabled?]]></title>
<link>http://liamb.wordpress.com/2008/07/16/detect-if-client-browser-has-cookies-enabled/</link>
<pubDate>Wed, 16 Jul 2008 15:59:21 +0000</pubDate>
<dc:creator>liamb</dc:creator>
<guid>http://liamb.fr.wordpress.com/2008/07/16/detect-if-client-browser-has-cookies-enabled/</guid>
<description><![CDATA[ One of the issues facing web developers that rely on cookies for user identification on a web site ]]></description>
<content:encoded><![CDATA[<p><a href="http://liamb.files.wordpress.com/2008/07/cookie.png"><img style="margin:5px 5px 5px 0;" height="121" alt="Cookie" src="http://liamb.files.wordpress.com/2008/07/cookie-thumb.png" width="100" align="left"/></a> One of the issues facing web developers that rely on <a title="HTTP Cookie" href="http://en.wikipedia.org/wiki/HTTP_cookie">cookies</a> for user identification on a web site is whether the user has enabled <a title="HTTP Cookie" href="http://en.wikipedia.org/wiki/HTTP_cookie">cookies</a> on their web browser or if their web browser supports <a title="HTTP Cookie" href="http://en.wikipedia.org/wiki/HTTP_cookie">cookies</a> at all.</p>
<p>A solution to this problem is to test for <a title="HTTP Cookie" href="http://en.wikipedia.org/wiki/HTTP_cookie">cookie</a> support by creating a <a title="HTTP Cookie" href="http://en.wikipedia.org/wiki/HTTP_cookie">cookie</a> and sending it to the web browser. You then have to test if the <a title="HTTP Cookie" href="http://en.wikipedia.org/wiki/HTTP_cookie">cookie</a> can be retrieved from the client and check if its value has not been modified. </p>
<p>If the <a title="HTTP Cookie" href="http://en.wikipedia.org/wiki/HTTP_cookie">cookie</a> can not be found, you can redirect to a page informing the user that they need to enable their <a title="HTTP Cookie" href="http://en.wikipedia.org/wiki/HTTP_cookie">cookies</a> or use a browser that supports <a title="HTTP Cookie" href="http://en.wikipedia.org/wiki/HTTP_cookie">cookies</a> to access the feature of your web site that is dependant on <a title="HTTP Cookie" href="http://en.wikipedia.org/wiki/HTTP_cookie">cookies</a>. </p>
<p>You can add the following code to the landing page of your web site -</p>
<div style="border-right:gray 1px solid;border-top:gray 1px solid;font-size:8pt;overflow:auto;border-left:gray 1px solid;width:97.5%;cursor:text;max-height:200px;line-height:12pt;border-bottom:gray 1px solid;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;margin:20px 0 10px;padding:4px;">
<div style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;padding:0;">
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:white;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   1:</span> <span style="color:#0000ff;">if</span> (!Page.IsPostBack)</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   2:</span> {</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:white;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   3:</span>     <span style="color:#0000ff;">if</span> (Request.QueryString[<span style="color:#006080;">"AcceptsCookies"</span>] == <span style="color:#0000ff;">null</span>)</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   4:</span>     {</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:white;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   5:</span>         <span style="color:#008000;">// Create a new coookie to test with.</span></pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   6:</span>         Response.Cookies[<span style="color:#006080;">"TestCookie"</span>].Value = <span style="color:#006080;">"Testing"</span>;</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:white;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   7:</span>         Response.Cookies[<span style="color:#006080;">"TestCookie"</span>].Expires = DateTime.Now.AddMinutes(1);</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   8:</span>         Response.Redirect(<span style="color:#006080;">"TestForCookies.aspx?redirect="</span> + Server.UrlEncode(Request.Url.ToString()));</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:white;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   9:</span>     }</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"><span style="color:#606060;">  10:</span>     <span style="color:#0000ff;">else</span></pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:white;border-style:none;margin:0;padding:0;"><span style="color:#606060;">  11:</span>     {</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"><span style="color:#606060;">  12:</span>         Response.Write(<span style="color:#006080;">"Client accepts cookies = "</span> + Request.QueryString[<span style="color:#006080;">"AcceptsCookies"</span>]);</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:white;border-style:none;margin:0;padding:0;"><span style="color:#606060;">  13:</span>     }</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"><span style="color:#606060;">  14:</span> }</pre>
</div>
</div>
<p>Create a TestForCookies.aspx web page that will be redirected to, to perform the actual test for the cookie -</p>
<div style="border-right:gray 1px solid;border-top:gray 1px solid;font-size:8pt;overflow:auto;border-left:gray 1px solid;width:97.5%;cursor:text;max-height:200px;line-height:12pt;border-bottom:gray 1px solid;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;margin:20px 0 10px;padding:4px;">
<div style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;padding:0;">
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:white;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   1:</span> <span style="color:#0000ff;">if</span> (!Page.IsPostBack)</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   2:</span> {</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:white;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   3:</span>     <span style="color:#0000ff;">string</span> redirect = Request.QueryString[<span style="color:#006080;">"redirect"</span>];</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   4:</span>     <span style="color:#0000ff;">int</span> acceptsCookies;</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:white;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   5:</span>&#160; </pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   6:</span>     <span style="color:#0000ff;">if</span> (Request.Cookies[<span style="color:#006080;">"TestCookie"</span>] == <span style="color:#0000ff;">null</span>)</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:white;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   7:</span>     {</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   8:</span>         acceptsCookies = 0;</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:white;border-style:none;margin:0;padding:0;"><span style="color:#606060;">   9:</span>     }</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"><span style="color:#606060;">  10:</span>     <span style="color:#0000ff;">else</span></pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:white;border-style:none;margin:0;padding:0;"><span style="color:#606060;">  11:</span>     {</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"><span style="color:#606060;">  12:</span>         acceptsCookies = 1;</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:white;border-style:none;margin:0;padding:0;"><span style="color:#606060;">  13:</span>         <span style="color:#008000;">// Remove cookie from the client by setting it's expiry to a day</span></pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"><span style="color:#606060;">  14:</span>         <span style="color:#008000;">// before.</span></pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:white;border-style:none;margin:0;padding:0;"><span style="color:#606060;">  15:</span>         Response.Cookies[<span style="color:#006080;">"TestCookie"</span>].Expires = DateTime.Now.AddDays(-1);</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"><span style="color:#606060;">  16:</span>     }</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:white;border-style:none;margin:0;padding:0;"><span style="color:#606060;">  17:</span>&#160; </pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"><span style="color:#606060;">  18:</span>     Response.Redirect(redirect + <span style="color:#006080;">"?AcceptsCookies="</span> + acceptsCookies, <span style="color:#0000ff;">true</span>);</pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:white;border-style:none;margin:0;padding:0;"><span style="color:#606060;">  19:</span> }</pre>
</div>
</div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Kick the Crap out of PC Crap with Free PC Decrapifier!]]></title>
<link>http://billmullins.wordpress.com/?p=581</link>
<pubDate>Mon, 07 Jul 2008 15:33:53 +0000</pubDate>
<dc:creator>billmullins</dc:creator>
<guid>http://billmullins.fr.wordpress.com/2008/07/07/kick-the-crap-out-of-pc-crap-with-free-pc-decrapifier/</guid>
<description><![CDATA[ Is your Windows XP or Vista machine loaded with preinstalled crap? Tired of trying to figure out ho]]></description>
<content:encoded><![CDATA[<p><a href="http://billmullins.files.wordpress.com/2008/07/windowslivewriterkickthecrapoutofpccrapwithfreepcdecrapif-a16dpc-decrapifier2.jpg"><img style="border-width:0;margin:0 20px 0 0;" src="http://billmullins.files.wordpress.com/2008/07/windowslivewriterkickthecrapoutofpccrapwithfreepcdecrapif-a16dpc-decrapifier-thumb.jpg" alt="" width="240" height="187" align="left" /></a> Is your Windows XP or Vista machine loaded with preinstalled crap? Tired of trying to figure out how to get rid of it? Then you’re in luck. Read on.</p>
<p>PC Decrapifier is a free uninstall utility that is specifically designed to remove nearly all of that trial and promotional software that’s been driving you buggy.</p>
<p>The program does not need to be installed, simply unzip and run, or if you prefer you can run this application from a USB drive. You choose the items to be removed from a list, and you can also create a restore point (highly recommended), to undo any changes.</p>
<p>The following is the current list of software and items that PC Decrapifier can detect and remove. The list is generated from the items the program detects on your computer, and you then choose the items to be removed by the program automatically. What could be simpler than that?</p>
<p><strong>Targeted Applications:</strong></p>
<ul>
<li>AOL Install</li>
<li>AOL UK</li>
<li>AOL US</li>
<li>Corel Paint Shop Pro Photo XI</li>
<li>Corel Photo Album 6</li>
<li>Corel Snapfire Plus SE</li>
<li>Corel WordPerfect</li>
<li>Dell Search Assistant</li>
<li>Dell URL Assistant</li>
<li>OpenDNS Blog</li>
<li>Desktop Icons Removes Unnecessary Desktop Icons</li>
<li>Digital Content Portal</li>
<li>Earthlink Setup Files</li>
<li>ESPN Motion</li>
<li>Get High Speed Internet!</li>
<li>Google Desktop</li>
<li>Google Toolbar</li>
<li>HP Rhapsody</li>
<li>Internet Service Offers Launcher</li>
<li>McAfee</li>
<li>Microsoft Office Activation Assistant 2007</li>
<li>Microsoft Office Home and Student 2007</li>
<li>Microsoft Office Standard Edition 2003</li>
<li>MS Plus Digital Media Installer</li>
<li>MS Plus Photo Story 2LEMusicMatch Jukebox</li>
<li>MusicMatch Music Services</li>
<li>muvee autoProducer 5.0</li>
<li>NetZero Installers</li>
<li>Norton AntiSpam</li>
<li>Norton AntiVirus 2005</li>
<li>Norton Ghost 10.0</li>
<li>Norton Internet Security</li>
<li>Norton Internet Security</li>
<li>Norton Protection Center</li>
<li>Norton Security Center</li>
<li>Norton Symantec Live Update</li>
<li>Office 2003 Trial Assistant</li>
<li>Orange Internet</li>
<li>PC-cillin Internet Security 12 Trend Micro</li>
<li>QuickBooks Trial</li>
<li>Reset IE Home and Search Pages</li>
<li>Roxio Express LabelerRoxio Easy Media Creator</li>
<li>Roxio MyDVD LE</li>
<li>Roxio RecordNow</li>
<li>Sonic DLA</li>
<li>Sonic RecordNow Audio</li>
<li>Sonic RecordNow Copy</li>
<li>Sonic Update Manager</li>
<li>Tiscali Internet</li>
<li>Travelocity Gadget</li>
<li>Trend Micro PC-cillin Internet Security 14</li>
<li>Unnecessary Startup Items</li>
<li>Vongo</li>
<li>Wanadoo Europe Installer</li>
<li>Wild Tangent Games</li>
<li>Yahoo! Music Jukebox</li>
<li>Yahoo! Toolbar for Internet Explorer</li>
</ul>
<p><strong>Download at:</strong> <a href="http://www.download.com/PC-Decrapifier/3000-2096_4-10636481.html" target="_blank">Download.com</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Visual Similarity Duplicate Image Finder Compares Images by Content With a Dazzling Speed in the way a Human Does.]]></title>
<link>http://mindgems.wordpress.com/?p=9</link>
<pubDate>Sun, 29 Jun 2008 21:19:22 +0000</pubDate>
<dc:creator>mindgems</dc:creator>
<guid>http://mindgems.fr.wordpress.com/2008/06/29/visual-similarity-duplicate-image-finder-compares-images-by-content-with-a-dazzling-speed-in-the-way-a-human-does/</guid>
<description><![CDATA[Visual Similarity Duplicate Image Finder Compares Images by Content With a Dazzling Speed in the way]]></description>
<content:encoded><![CDATA[<p><img src="http://www.mindgems.com/feeds/images/vsdif-logo.gif" alt="" width="128" height="128" align="left" /><strong><a href="http://www.mindgems.com/products/VS-Duplicate-Image-Finder/VSDIF-About.htm">Visual Similarity Duplicate Image Finder</a> </strong>Compares Images by Content With a Dazzling Speed in the way a Human Does.</p>
<p>The product can <a href="http://www.mindgems.com/products/VS-Duplicate-Image-Finder/VSDIF-Tutorials.htm">find and delete similar and duplicate pictures</a> in different file formats and dimensions based on content comparison. It is not only available as a desktop application, but is already integrated into online stock photography web stores that enable their users to find related images.</p>
<p>The innovative thing here is that in the past it was impossible for a machine to <a href="http://www.mindgems.com/products/VS-Duplicate-Image-Finder/VSDIF-Features.htm">compare the content of two images</a> in the way a person would do. For example it was impossible to detect similarities between two photographs of a person taken from a different angle using a computer. Besides supporting all the widespread image formats the application can detect similarities also between images with different sizes.</p>
<p>What is really interesting here is the speed that Visual Similarity Duplicate Image Finder achieves. Having in mind that image processing is an extremely heavy task the application manages to process thousands of images and gigabytes of data in just minutes. The desktop tool also provides functionality for <a href="http://www.mindgems.com/products/VS-Duplicate-Image-Finder/VSDIF-Download.htm">deleting duplicate pictures</a> and can mark them automatically using criteria set by the user - smallest size, biggest size, smallest dimensions and so on.</p>
<p align="center"><a href="http://www.mindgems.com/products/VS-Duplicate-Image-Finder/VSDIF-About.htm" target="_blank"><img src="http://www.mindgems.com/feeds/images/vs_duplicate_image_finder_main.gif" border="0" alt="Duplicate Image Finder" width="640" height="480" /></a></p>
<p>The corporate version of the product provides an interface via which it can be integrated into third party desktop and web systems.</p>
<p>A lot of products already use the tool in order to provide different features:</p>
<ul>
<li>detection of duplicate documents scanned on a scanner (the tool can detect similar documents even if they are skewed during the scan process)</li>
<li>displaying a similar pictures section on a stock photography web sites and search for similar images based on a sample</li>
<li>identification of a disease or an anomaly in medical software comparing an X-ray image with a database of images with different diseases and more.</li>
</ul>
<p>These are only a part of the industries where such innovation comes extremely handy and solves issues that could not be handled in the past.</p>
<p align="center"><a href="http://www.mindgems.com/products/VS-Duplicate-Image-Finder/VSDIF-About.htm"><img src="http://www.mindgems.com/feeds/images/vs_duplicate_image_finder_set.png" border="0" alt="Duplicate Image Finder" /></a></p>
<p><strong>Visual Similarity Duplicate Image Finder </strong>is a powerful utility for finding similar and duplicate images in a folder and all its subfolders. It has the following features:</p>
<ul>
<li><a href="VSDIF-Download.htm">Find all similar and duplicate images</a> in a folder and all its subfolders using visual compare</li>
<li>Find exact duplicate image files using CRC32 checksum</li>
<li>Find rotated at 90°, 180°, 270°, flipped horizontal and/or vertical and graycaled duplicates</li>
<li>User can adjust the percent of image similarity</li>
<li>Smaller resolution duplicates can be automatically marked for deletion</li>
<li>Smaller file size duplicates can be automatically marked for deletion</li>
<li>Show preview for original and duplicate images</li>
<li>User can select the images for deletion</li>
<li>Duplicate images can be moved to Recycle Bin, custom folder or deleted</li>
<li>Supports many image file formats</li>
<li>Has intuitive interface and rich documentation</li>
</ul>
<p><strong>Supported file formats:</strong></p>
<ul>
<li>JPEG Bitmap (*.jpg;*.jpeg;*.jpe)</li>
<li>Compuserve Bitmap (*.gif)</li>
<li>Portable Network Graphics (*.png)</li>
<li>TIFF Bitmap (*.tif;*.tiff;*.fax;*.g3n;*.g3f)</li>
<li>JPEG2000 Files (*.jp2)</li>
<li>JPEG2000 Code Stream (*.j2k;*.jpc;*.j2c)</li>
<li>Targa (*.tga;*.targa;*.vda;*.icb;*.vst;*.pix)</li>
<li>Paintbrush (*.pcx)</li>
<li>Windows Bitmap (*.bmp;*.dib;*.rle)</li>
<li>Windows Metafile (*.wmf)</li>
<li>Enhanced Windows Metafile (*.emf)</li>
<li>Windows Icon (*.ico)</li>
<li>Windows Cursor (*.cur)</li>
<li>Wireless Bitmap (*.wbmp)</li>
<li>Portable Pixmap (*.pxm;*.ppm)</li>
<li>Adobe Photoshop (*.psd)</li>
</ul>
<p><a href="http://www.mindgems.com/products/VS-Duplicate-Image-Finder/VSDIF-Download.htm">Download Visual Similarity Duplicate Image Finder</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[MetalCrabs Style!]]></title>
<link>http://nerkrew.wordpress.com/?p=44</link>
<pubDate>Mon, 05 May 2008 09:52:19 +0000</pubDate>
<dc:creator>Bachir</dc:creator>
<guid>http://nerkrew.fr.wordpress.com/2008/05/05/metalcrabs-style/</guid>
<description><![CDATA[
Le lecteur K7 Yamaha est branché, le pc pret à enregistrer, on remet ce blog en marche! Tout d]]></description>
<content:encoded><![CDATA[<p><a href="http://nerkrew.wordpress.com/files/2008/05/detect.jpg"><img class="alignnone size-medium wp-image-45" src="http://nerkrew.wordpress.com/files/2008/05/detect.jpg?w=170" alt="" width="170" height="227" /></a></p>
<p>Le lecteur K7 Yamaha est branché, le pc pret à enregistrer, on remet ce blog en marche! Tout d'abord mes excuses les plus plates pour toutes les personnes qui attendaient de la bande magnetique fraiche....</p>
<p>On revient avec un mix exclusif de dj Detect qui sent bon le debut du siècle (ma période hiphopsection) et qui montre bien les Skillz du dj versaillais. Ca cut, ça mixe, ça selectionne (Sound Ink, J Zone, du Fondle'Em, KMD, Mf Doom, Mykah 9...) le son est lourd, tout ce qu'il faut pour avoir entre les mains une bonne K7.<br />
<a href="http://www.divshare.com/download/4413112-0dd">Face A</a><br />
<a href="http://www.divshare.com/download/4413468-6eb">Face B</a></p>
<p>En parlant de bonne K7 je vous ai aussi encodé une mixtape devenue classique "Underground Explorer" de <a href="http://www.myspace.com/djfabandawerundergroundexplorer">dj Fab</a>. Le old timer qui était proche de Detect à l'époque, étant donné qu'il faisait parti du même collectif de dj's "Metalcrabs" (qui comptait également Orgasmic). Vous retrouvez dans cette mixtape des artistes tels que Necro, Mike Laddd, Obscure disorder, Cage, Antipop Consortium, faites moi signe si vous voulez la playlist la voici: <a href="http://nerkrew.files.wordpress.com/2008/05/numeriser0001.jpg"><img src="http://nerkrew.wordpress.com/files/2008/05/numeriser0001.jpg?w=128" alt="" width="128" height="62" class="alignnone size-thumbnail wp-image-46" /></a></p>
<p><a href="http://www.divshare.com/download/4416672-3f6">Face A</a><br />
<a href="http://www.divshare.com/download/4413914-d86">Face B</a></p>
<p>Detect est très vite devenu le spécialiste de la scène underground californienne comme il l'a prouvé avec son cd <a href="http://www.popnews.com/popnews/detect/">"Triple Threat"</a>, tout ca pour vous dire que le prochain mix à venir est également une exclusivité tout droit venu de Los Angeles!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[All things Interconnected]]></title>
<link>http://dablin.wordpress.com/?p=39</link>
<pubDate>Sun, 04 May 2008 04:32:17 +0000</pubDate>
<dc:creator>dablin</dc:creator>
<guid>http://dablin.fr.wordpress.com/2008/05/04/all-things-interconnected/</guid>
<description><![CDATA[Saturday 3rd December 2005 (Extracted LiveJournal♦ Article)
Space and Motion&#8217;s♣ Wave Struc]]></description>
<content:encoded><![CDATA[<p><em>Saturday 3rd December 2005 (Extracted <a href="http://dablin.wordpress.com/livejournal-articles/">LiveJournal</a>♦ Article)</em></p>
<p><a href="http://www.spaceandmotion.com/">Space and Motion's</a>♣ <a href="/tag/Wave Structure of Matter/">Wave Structure of Matter</a> emphasises the <a href="/tag/theory/">theory</a> that all things in the <a href="/tag/universe/">universe</a> are <a href="/tag/interconnected/">interconnected</a> to <a href="/tag/everything-else/">everything else</a>, even if at just some very <a href="/tag/minute-level/">minute level</a>.</p>
<p>With that in <a href="/tag/mind/">mind</a> I become to ponder the <a href="/tag/relationship/">relationship</a> this <a href="/tag/assumption/">assumption</a> has with many <a href="/tag/situations/">situations</a> that has been <a href="/tag/claimed/">claimed</a> to have <a href="/tag/occured/">occurred</a> through-out <a href="/tag/human-history/">human history</a>.</p>
<p>I consider myself a <a href="/tag/realist/">realist</a>, residing around the binds of <a href="/tag/truth/">truth</a> avoiding <a href="/tag/crackpot-theories/">crackpot theories</a> and <a href="/tag/religious-ideas/">religious ideas</a>. I must though maintain an <a href="/tag/open-mind/">open-mind</a>, especially when pursuing the truth, under such <a href="/tag/beliefs/">beliefs</a> that at <a href="/tag/any-time/">any time</a>, new found <a href="/tag/knowledge/">knowledge</a> could very well <a href="/tag/contradict/">contradict</a> one or many of our <a href="/tag/propositions/">propositions</a> about what <a href="/tag/reality/">reality</a> truly is; and thus we are all then required to <a href="/tag/admit/">admit</a> our <a href="/tag/errors/">errors</a> and maintain <a href="/tag/composure/">composure</a> during the <a href="/tag/change/">change</a> when <a href="/tag/realised/">realised</a>. Such errors don't imply <a href="/tag/guilt/">guilt</a> in anyway other then just total <a href="/tag/ignorance/">ignorance</a> of the true <a href="/tag/facts/">facts</a>. Propositions are by their <a href="/tag/nature/">nature</a> subject to <a href="/tag/refinement/">refinement</a>.</p>
<p>I <a href="/tag/watched/">watched</a> a <a href="/tag/documentary/">documentary</a> some time ago on <a href="/tag/animal-planet">Animal Planet</a> regarding <a href="/tag/animals/">animals</a> and their <a href="/tag/extroadinary/">extraordinary</a> <a href="/tag/sensory-abilities/">sensory abilities</a> to <a href="/tag/detect/">detect</a> many things like <a href="/tag/potential/">potential</a> <a href="/tag/natural-disasters/">natural disasters</a> and their <a href="/tag/uncanny/">uncanny</a> <a href="/tag/ability/">ability</a> to <a href="/tag/detect/">detect</a> their <a href="/tag/masters-intentions/">master's intentions</a> to <a href="/tag/return/">return</a> <a href="/tag/home/">home</a> even if they are both spaced hundreds of kilometres in distance apart. Many sceptics may assume inconclusive observations, alternative explanations or even just plain coincidental connections of the facts.</p>
<p>I would have felt impelled to think the same way but for the repetitive nature of the observations. Coincidence must surely only apply in total random conditions otherwise a connection must exist, even if this connection is just time. If time is the common connection between these events especially in repetition at suitably stochastic points of observation then surely a connection of some sort can not be denied.</p>
<p>Many may believe or at least suggest an alternative theory. Spiritualism or Psychic influence are common denominators but a more rational explanation is already available.</p>
<p>In a previous article I made question of the ability for the human being to observe true reality as its complete truth in contrast to our seemingly bounding restraint towards our perceived reality. This implies our reality can be nothing more then what we all as a biological species (or even just human beings) can perceive as reality in the first place.</p>
<p>It is already well known that animals in nature contain differing levels of sensory ability and even alternative means of doing so. Who are we to claim that all other species of life on this planet are bound by the same sense of reality of that of the human being? If our reality is nothing more then our ability to perceive true reality, then the differing methods of perceiving this reality would in its obvious means be nothing short of an alternative reality. These alternatives may by assumption be small and insignificant but I believe this would completely lay bound to the species which perceive it.</p>
<p>But you surely must be wrong - you may ask. If such was true, we would have surely identified these traits already. With all our technology and expanding understanding of reality such things must have already become blatantly obvious.In contrast to what? Our total understanding of reality? Many may claim my observations are unrealistic or conjecture by nature, but I would be greatly interested in finding out whether these same people themselves believe in equally controversial ideas such as the existence of God. In pursuit of the truth my observation could very well be flawed and I do accept that possibility. Either way, an open-mind is the best device toward achieving wisdom.</p>
<p>At any rate, I believe all other life on this planet are as awe-inspiring as reality and are nothing short of it. We are blessed by their existence and without them such a reality would no doubt be a rather mundane and gloomy environment. The significance of other species on earth should never be under-estimated, their presence may be more important then we could ever realise. And who knows, maybe they will in time teach us more about ourselves.</p>
<p><em>Saturday 3rd December 2005 (Extracted LiveJournal Article)</em></p>
<p>**** TAGS/LINKS PENDING***</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Virtualbox How to: Gotchas involved in making a USB external hard disk device work on windows host]]></title>
<link>http://opensourceexperiments.wordpress.com/?p=67</link>
<pubDate>Fri, 25 Apr 2008 16:50:02 +0000</pubDate>
<dc:creator>Gaurav Verma</dc:creator>
<guid>http://opensourceexperiments.fr.wordpress.com/2008/04/25/virtualbox-how-to-gotchas-involved-in-making-a-usb-external-hard-disk-device-work-on-windows-host/</guid>
<description><![CDATA[Preface
Sometime back, I installed Openfiler on a external hard disk (manufacturer: Iomega)that I ha]]></description>
<content:encoded><![CDATA[<h2><strong>Preface</strong></h2>
<p>Sometime back, I installed Openfiler on a external hard disk (manufacturer: Iomega)that I had at home (running Windows Vista Home Premium). This was meant to be a proof of concept and pretty soon, I had to bring it to office desktop (running Windows XP SP2) to make it work with some other virtualbox virtual machines that I had built in my spare time.</p>
<h2><strong>Troubles in recognizing the USB external hard disk on windows XP<br />
</strong></h2>
<p>However, the problem that I faced on Windows XP SP2 host operating system was that the openfiler Virtual machine (using virtualbox 1.5.6 of course) would not recognize the USB external hard disk at all! The same USB device was working fine on windows vista.</p>
<p>After struggling with this problem for a while, I found a quick workaround (Not sure if it is documented in the user manual or not) and also tested some reset steps on windows, which seem to work with the Iomega external USB hard disk.</p>
<p>These steps should also be relevant to other hard disk models in general.</p>
<h2><strong>Some more details...</strong></h2>
<p>In my case, windows had detected the USB drive and had even installed the Virtualbox driver for it. USB support was enabled for the openfiler virtual machine in the settings. The external hard disk was selected, but still no iscsi drive showed up on doing a fdisk -l</p>
<blockquote><p><em><strong>When to know a device is being accessed..</strong></em></p>
<p><em>Well, if the device makes a whirring noise and the light blinks or comes on, it is enough to know that the device is being accessed internally and something good happened in terms of making the USB device work.</em></p></blockquote>
<h2><strong>The setup that worked..</strong></h2>
<p>However, this setup worked after a little tinkering:</p>
<p>Firstly, make sure the USB controller and EHCI controller is enabled. Then choose the USB external hard disk device from the list of all USB devices and enabled it.</p>
<p><a href="http://opensourceexperiments.wordpress.com/files/2008/04/usb-device-setup-for-openfiler-vm-which-did-not-work-out-of-the-box.jpg" target="_blank">Click here for a bigger view</a></p>
<p><a href="http://opensourceexperiments.wordpress.com/files/2008/04/usb-device-setup-for-openfiler-vm-which-did-not-work-out-of-the-box.jpg"><img class="alignnone size-full wp-image-68" src="http://opensourceexperiments.wordpress.com/files/2008/04/usb-device-setup-for-openfiler-vm-which-did-not-work-out-of-the-box.jpg" alt="" width="468" height="504" /></a></p>
<p>Make sure <em><strong>no other</strong></em> Virtual machine is accessing the same USB device. From what I have seen, if the same device is accessed by other virtualbox VMs, an exclusive lock is acquired on it, which makes it difficult to be used by other virtual machines.</p>
<blockquote><p><em>This is true with windows too. Windows will stop seeing the USB hard disk when it is being used by a virtualbox virtual machine. At least, I have seen this behaviour with virtualbox 1.5.6</em></p></blockquote>
<p><a href="http://opensourceexperiments.wordpress.com/files/2008/04/make-sure-other-vms-are-not-using-the-same-usb-drive.jpg" target="_blank">Click here for a bigger view</a></p>
<p><a href="http://opensourceexperiments.wordpress.com/files/2008/04/make-sure-other-vms-are-not-using-the-same-usb-drive.jpg"><img class="alignnone size-full wp-image-69" src="http://opensourceexperiments.wordpress.com/files/2008/04/make-sure-other-vms-are-not-using-the-same-usb-drive.jpg" alt="" width="467" height="349" /></a></p>
<p>Make sure that Windows is able to detect the USB device first. If not, then you need to troubleshoot that first. Usually, powering off the device, unplugging it from the USB port and restarting the windows PC/desktop/laptop works great. (Hey, its windows).</p>
<p>You want to see something like this in your system tray to be sure of this.</p>
<p><a href="http://opensourceexperiments.wordpress.com/files/2008/04/windows-detects-usb-drive.jpg"><img class="alignnone size-full wp-image-70" src="http://opensourceexperiments.wordpress.com/files/2008/04/windows-detects-usb-drive.jpg" alt="" width="329" height="29" /></a></p>
<p>Now you know for a fact that windows, your guest Operating system, detected the USB drive fine. So now, there is a good chance that virtualbox will detect it too.</p>
<h2><strong>Fire it up..</strong></h2>
<p>Power up the virtual machine and check if the USB device got detected. A simple fdisk -l will show it as a iscsi device, with names like /dev/sda, /dev/sdb or so. If you do not see anything of the sort, you can be certain that the device did not get detected. Another visual way to know is to see if the light on USB device comes up or not. No light, no access.</p>
<h2><strong>The manual workaround if the device is still now seen after powering up the virtual machine ..</strong></h2>
<p>However, there is still another trick up our sleeve that can be tried.</p>
<p><a href="http://opensourceexperiments.wordpress.com/files/2008/04/right-click-on-usb-icon-at-bottom.jpg" target="_blank">Click here for a bigger view</a></p>
<p><a href="http://opensourceexperiments.wordpress.com/files/2008/04/right-click-on-usb-icon-at-bottom.jpg"><img class="alignnone size-full wp-image-72" src="http://opensourceexperiments.wordpress.com/files/2008/04/right-click-on-usb-icon-at-bottom.jpg" alt="" width="467" height="83" /></a></p>
<p>At the bottom message bar of the virtual machine, right click on the USB plug icon. You will see that a list of the detected USB devices comes up. Select the external hard disk. Unless another virtual machine is running that is using the same USB device, there is a very good chance that the light on the hard disk will light up like this:</p>
<p><a href="http://opensourceexperiments.wordpress.com/files/2008/04/the-usb-hard-disk-lights-up.jpg"><img class="alignnone size-full wp-image-71" src="http://opensourceexperiments.wordpress.com/files/2008/04/the-usb-hard-disk-lights-up.jpg" alt="" width="468" height="374" /></a></p>
<p>At this point, you may also see a windows dialog box saying that a virtualbox USB device was detected and the driver needs to be loaded:</p>
<p><a href="http://opensourceexperiments.wordpress.com/files/2008/04/virtualbox-usb-device-driver.jpg"><img class="alignnone size-full wp-image-76" src="http://opensourceexperiments.wordpress.com/files/2008/04/virtualbox-usb-device-driver.jpg" alt="" width="468" height="364" /></a></p>
<h2><strong>Double check before you congratulate yourself..<br />
</strong></h2>
<p>All right! So it looks like your device got accessed after all.</p>
<p>There are many ways to confirm if it really got detected by the virtual machine as a scsi device or not:</p>
<p>1) Check the <strong>fdisk -l </strong>command's output:</p>
<p><a href="http://opensourceexperiments.wordpress.com/files/2008/04/fdisk-output-confirmation.jpg" target="_blank">Click here for a bigger view</a></p>
<p><a href="http://opensourceexperiments.wordpress.com/files/2008/04/fdisk-output-confirmation.jpg"><img class="alignnone size-full wp-image-73" src="http://opensourceexperiments.wordpress.com/files/2008/04/fdisk-output-confirmation.jpg" alt="" width="468" height="306" /></a></p>
<p>2) Check the contents of <strong>/proc/scsi/scsi</strong> file:</p>
<p><a href="http://opensourceexperiments.wordpress.com/files/2008/04/proc-scsi-scsi-output.jpg" target="_blank">Click here for a bigger view</a></p>
<p><a href="http://opensourceexperiments.wordpress.com/files/2008/04/proc-scsi-scsi-output.jpg"><img class="alignnone size-full wp-image-74" src="http://opensourceexperiments.wordpress.com/files/2008/04/proc-scsi-scsi-output.jpg" alt="" width="468" height="62" /></a></p>
<p>3) Check the content of <strong>/var/log/messages </strong>or the output of <strong>dmesg </strong>command:</p>
<p><a href="http://opensourceexperiments.wordpress.com/files/2008/04/var-log-messages.jpg" target="_blank">Click here for a bigger view</a></p>
<p><a href="http://opensourceexperiments.wordpress.com/files/2008/04/var-log-messages.jpg"><img class="alignnone size-full wp-image-75" src="http://opensourceexperiments.wordpress.com/files/2008/04/var-log-messages.jpg" alt="" width="468" height="308" /></a></p>
<h2><strong>A quick Recap...</strong></h2>
<p>Once again, if this does not work, just go back to the basics:</p>
<p>1) Power off the USB device (when applicable) and take it out</p>
<p>2) Reboot windows</p>
<p>3) Plug in the USB device</p>
<p>4) Make sure windows detects it</p>
<p>5) Make sure the virtual machine has the USB device enabled in its setup</p>
<p>6) Start up the virtual machine. Make sure no other virtual machine is using the same USB drive.</p>
<p>7) If you do not see the USB device, force it to be attached by right click on USB plug icon in bottom bar of virtualbox VM application window</p>
<p>Hope that helps.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[La Mode - Hugh Jass Mixtape / Saturday Mixtape]]></title>
<link>http://themusikland.wordpress.com/?p=110</link>
<pubDate>Sat, 08 Mar 2008 20:51:58 +0000</pubDate>
<dc:creator>Miguel</dc:creator>
<guid>http://themusikland.fr.wordpress.com/2008/03/08/la-mode-hugh-jass-mixtape-saturday-mixtape/</guid>
<description><![CDATA[
Em primeiro lugar quero dizer que o Saturday Mixtape desta semana atrasou-se porque estive com prob]]></description>
<content:encoded><![CDATA[<div style="text-align:center;"><img src="http://i136.photobucket.com/albums/q195/miguelcm/hugh-jass-20071002052719608-000.jpg" alt="Photobucket" border="0" height="284" width="420" /></div>
<p>Em primeiro lugar quero dizer que o <i><b>Saturday Mixtape </b></i>desta semana atrasou-se porque estive com problemas na internet! Mas cá está! <b>  La Mode - hugh jass Mixtape </b>é a minha escolha desta semana, <b><a href="http://www.myspace.com/lamodedjs" target="_blank">La Mode</a> </b>sempre em grande.<b>TrackList</b></p>
<p><b>01.</b> la mode - Salami<br />
<b>02. </b>Simian Mobile Disco - Hustler (A-Track Remix)<br />
<b>03.</b> Leonard de Leonard - Leonizer Fever<br />
<b>04</b>. Edu K - Gatas Gatas Gatas (Crookers mix)<br />
<b>05.</b> Black Ghosts - Any Way You Choose to give it - (boy 8 bit dub)<br />
<b>06.</b> DatA vs Yelle - J’aime Pas L’art<br />
<b>07. </b>Digitalism - Idealistic (A-Trak_Remix)<br />
<b>08. </b>Cazals - Life is Boring ( La Mode’s Rubber dub dub)<br />
<b>09. </b>boys noize vs Regrets - The Battery<br />
<b>10.</b>Brodinski - bad runner<br />
<b>11.</b>The Presets - My People (DIM Remix)<br />
<b>12.</b>crookers love to edit Timberland boots<br />
<b>13.</b>Detect-DanceDivision (Yuksek Remix)<br />
<b>14.</b>Digitalism - Magnets (la Mode’s Space pirate Remix)<br />
<b>15.</b>Wax stag - Short Road</p>
<p>?????????</p>
<p>Parece estranho os pontos de interrogação? Nada disso..a tracklist está como La Mode tem no <a href="http://blog.myspace.com/index.cfm?fuseaction=blog.view&#38;friendID=159928864&#38;blogID=349255810" target="_blank">Blog do Myspace</a></p>
<p><a href="http://www.zshare.net/audio/66949737d5c22e/" target="_blank"> La Mode - Hugh Jass Mixtape</a> [43:50 /40.14MB]</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Πώς να ξεσκεπάσεις έναν ψεύτη!]]></title>
<link>http://giama.wordpress.com/2008/03/03/how-to-detect-a-lie/</link>
<pubDate>Mon, 03 Mar 2008 10:56:50 +0000</pubDate>
<dc:creator>Cobalus</dc:creator>
<guid>http://giama.fr.wordpress.com/2008/03/03/how-to-detect-a-lie/</guid>
<description><![CDATA[
(posted by cobalus)
]]></description>
<content:encoded><![CDATA[<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/tW8KYtvAsrw'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/tW8KYtvAsrw&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p>(posted by cobalus)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[USB Detect &amp; Launch Version 1.5 Released]]></title>
<link>http://mattcollinge.wordpress.com/2008/02/29/usb-detect-launch-version-15-released/</link>
<pubDate>Fri, 29 Feb 2008 07:10:10 +0000</pubDate>
<dc:creator>Matt Collinge</dc:creator>
<guid>http://mattcollinge.fr.wordpress.com/2008/02/29/usb-detect-launch-version-15-released/</guid>
<description><![CDATA[ USB Detect &amp; Launch allows you to automatically execute a script or application each time a USB]]></description>
<content:encoded><![CDATA[<p><img src="http://www.endpoint.eclipse.co.uk/wordpress/usb-dal-logo90.gif" alt="USB D&#38;L" align="left" /> USB Detect &#38; Launch allows you to automatically execute a script or application each time a USB storage device is plugged into your PC. Different scripts can be executed for different devices and it’s the volume label that determines what action to perform.</p>
<p>Version 1.5 contains new functionality to monitor for any device being plugged in; useful when you have no control over what memory stick is being inserted, but need to fire off a script to perform a particular action.</p>
<p>e.g.</p>
<p><font face="courier new">label:(any)<br />
exec:"c:batchbatch-any.cmd" %1 %2</font></p>
<p>You can find the download on the <a href="http://mattcollinge.wordpress.com/software/usb-detect-and-launch/">USB Detect &#38; Launch page</a>.</p>
]]></content:encoded>
</item>

</channel>
</rss>
