<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-34089553</id><updated>2012-02-17T01:06:38.254-03:00</updated><category term='Code'/><category term='Life'/><category term='Firefox'/><category term='Language C'/><category term='Counter-Strike'/><category term='Mathematics'/><category term='Graphics'/><category term='Game'/><category term='Javascript'/><category term='Music'/><category term='Visual Basic'/><category term='Gmail'/><category term='Project'/><category term='Problem'/><category term='Video'/><category term='Blog'/><category term='Test'/><category term='Computer'/><title type='text'>Fong-Wan Chau</title><subtitle type='html'>I do what I want to do.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>44</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-34089553.post-5534933170133175495</id><published>2008-09-04T22:55:00.006-04:00</published><updated>2008-09-04T23:26:17.485-04:00</updated><title type='text'>Firefox bugged with caption tag</title><content type='html'>&lt;p&gt;I discovered this bug after install &lt;a href="http://www.google.com/chrome"&gt;Google Chrome Beta 2&lt;/a&gt;. The label &amp;lt;caption&amp;gt; in Firefox is placed outside of Table, but &amp;lt;caption&amp;gt; is a subelement of &amp;lt;table&amp;gt;.&lt;/p&gt;
&lt;h4&gt;How I discovered this bug?&lt;/h4&gt;
&lt;p&gt;If I set a margin-top and margin-bottom for a &amp;lt;table&amp;gt; with &amp;lt;caption&amp;gt;, 
among them there will be a space, which is the margin of the table. This problem will not be introduced in other browsers such as Internet Explorer 7, Opera and Google Chrome Beta 2.&lt;/p&gt;
&lt;h4&gt;Resource&lt;/h4&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.w3.org/TR/html4/struct/tables.html#h-11.2.2"&gt;Table Captions: The CAPTION element&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-5534933170133175495?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/5534933170133175495/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=5534933170133175495&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/5534933170133175495'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/5534933170133175495'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2008/09/firefox-bugged-with-caption-tag.html' title='Firefox bugged with caption tag'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-8457448143674466334</id><published>2008-07-11T23:20:00.006-04:00</published><updated>2008-10-26T17:02:09.262-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Problem'/><category scheme='http://www.blogger.com/atom/ns#' term='Javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Code'/><title type='text'>img.onload Error with Internet Explorer</title><content type='html'>&lt;p&gt;The following javascript codes doesn't work in &lt;abbr title="Internet Explorer"&gt;IE&lt;/abbr&gt; when loading a second time:&lt;/p&gt;
&lt;code&gt;var i = new Image();
i.src = "image address";
i.onload = function() {
  /* function */
}&lt;/code&gt;
&lt;h4&gt;Solved by Codetrinis:&lt;/h4&gt;
&lt;p&gt;This problem is because the second time that loads the image is read from the cache, therefore is loaded complete before reaching &lt;code&gt;img.onload&lt;/code&gt;. The solution is as follows:&lt;/p&gt;
&lt;code&gt;var i = new Image();
i.onload = function() {
  /* function */
}
i.src = "image address"&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-8457448143674466334?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/8457448143674466334/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=8457448143674466334&amp;isPopup=true' title='13 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/8457448143674466334'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/8457448143674466334'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2008/07/imgonload-error-with-internet-explorer.html' title='img.onload Error with Internet Explorer'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>13</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-2517956980660766094</id><published>2008-05-31T14:07:00.010-04:00</published><updated>2008-09-20T12:37:57.834-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Gmail'/><category scheme='http://www.blogger.com/atom/ns#' term='Code'/><category scheme='http://www.blogger.com/atom/ns#' term='Firefox'/><title type='text'>How to make Gmail open the mailto link in Firefox</title><content type='html'>&lt;p&gt;&lt;a href="http://www.mozilla.com/en-US/firefox/"&gt;Firefox 3&lt;/a&gt; have a very useful feature, which allows users to decide how to handle certain protocol, for example, we can specify use &lt;a href="http://www.gmail.com/"&gt;Gmail&lt;/a&gt; to open the mailto link. But the options in Firefox only &lt;a href="http://mail.yahoo.com/"&gt;Yahoo! Mail&lt;/a&gt; can be elected, how can do it?&lt;/p&gt;
&lt;p&gt;First, in the address bar type "&lt;a href="about:config"&gt;about:config&lt;/a&gt;", and then in the top of the "filters" enter "gecko.handlerService.allowRegisterFromDifferentHost".&lt;/p&gt;
&lt;p&gt;Then in the screen should only see one information, double click under it and let it become a value from the false to true.&lt;/p&gt;
&lt;p&gt;If you use the Gmail, please copy under the code to address bar and press "Enter" key.&lt;/p&gt;
&lt;code&gt;javascript:window.navigator.registerProtocolHandler("mailto","https://mail.google.com/mail/?extsrc=mailto&amp;url=%s","GMail");&lt;/code&gt;
&lt;p&gt;If you use the Google Apps (such as &lt;a href="http://www.cgtworld.com/"&gt;CGT World&lt;/a&gt; mail), please copy under the code to address bar and press "Enter" key. We should remember replace the "example.com" with your mailbox domain name (CGT World mail as an example, is replaced cgtworld.com).&lt;/p&gt;
&lt;code&gt;javascript:window.navigator.registerProtocolHandler("mailto","https://mail.google.com/a/example.com/mail/?extsrc=mailto&amp;url=%s","GMail")&lt;/code&gt;
&lt;p&gt;Press the "Enter" key will be to see Firefox after asking if you set to handle mailto Links Gmail applications, we certainly have to press the "New application" button.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-2517956980660766094?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/2517956980660766094/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=2517956980660766094&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/2517956980660766094'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/2517956980660766094'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2008/05/how-to-make-gmail-open-mailto-link-in.html' title='How to make Gmail open the mailto link in Firefox'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-6274711593805194221</id><published>2008-02-24T16:15:00.002-03:00</published><updated>2008-02-24T16:26:04.590-03:00</updated><title type='text'>Problem with Router</title><content type='html'>&lt;p&gt;Today I repared 2 problems on the Internet connection.&lt;/p&gt;
&lt;p&gt;First, the problem was, when I shared the internet connection type PPPoE by a router, could only access some Web sites, such as Google, but can not be accessed elsewhere. This problem was resolved by the end modifying the value MTU of the router to 1480 (default 1498).&lt;/p&gt;
&lt;p&gt;Then came another problem, some computers have speed of 2.4 mbps that is normal, and others are accessed by only 1.2 mbps, half of the connection. This problem was resolved modifying the value of the TTL, 64 to 128.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-6274711593805194221?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/6274711593805194221/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=6274711593805194221&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/6274711593805194221'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/6274711593805194221'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2008/02/problem-with-router.html' title='Problem with Router'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-1990703261456638277</id><published>2007-05-19T09:00:00.005-04:00</published><updated>2008-09-20T12:38:48.396-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Problem'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Project'/><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic'/><title type='text'>About fotos_posse.zip malware</title><content type='html'>&lt;p&gt;Today, I can see a lot of people have a HEUR/Malware infected, so I will publish some information about this malware and how can clear it.&lt;/p&gt;
&lt;h4&gt;Information&lt;/h4&gt;
&lt;p&gt;This malware is a Visual Basic project, made by a user named Fire Angel. The user is using operation system Microsoft Windows XP in Spanish, has registed a site in lycos.es (already deleted).&lt;/p&gt;
&lt;p&gt;The malware is copied to "C:\fotos_posse.zip", "C:\server.exe" and "C:\WINDOWS\System32\sp2.exe"&lt;/p&gt;
&lt;p&gt;That create 2 key in register:&lt;/p&gt;
&lt;code&gt;HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskmgr
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\WindowsSp2&lt;/code&gt;
&lt;h4&gt;How can I clear the virus? (OS in Spanish)&lt;/h4&gt;
&lt;p&gt;You only need to download this "antimalware": &lt;a href="http://c0d3tr1nis.googlepages.com/3Cv2.zip"&gt;3Cv2.zip&lt;/a&gt;
&lt;p&gt;Or clear it manual:&lt;/p&gt;
&lt;p&gt;First, open "Inicio" -&gt; "Ejecutar", type "cmd".&lt;/p&gt;
&lt;p&gt;In the "black window" type that:&lt;/p&gt;
&lt;code&gt;@ECHO OFF
@ECHO @ECHO OFF &gt; C:\AUTOEXEC.BAT
@ECHO @ECHO CODETRINIS COMPUTER CENTER &gt;&gt; C:\AUTOEXEC.BAT
@ECHO @DEL C:\fotos_posse.zip /F /Q &gt;&gt; C:\AUTOEXEC.BAT
@ECHO @DEL C:\server.exe /F /Q &gt;&gt; C:\AUTOEXEC.BAT
@ECHO @DEL C:\WINDOWS\System32\sp2.exe /F /Q &gt;&gt; C:\AUTOEXEC.BAT
@ECHO @REG DELETE HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskmgr /f &gt;&gt; C:\AUTOEXEC.BAT
@ECHO @REG DELETE HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /va /f &gt;&gt; C:\AUTOEXEC.BAT
@ECHO @DELETE C:\AUTOEXEC.BAT &gt;&gt; C:\AUTOEXEC.BAT
@ECHO @ECHO OFF &gt; C:\3C.BAT
@ECHO @ECHO CODETRINIS COMPUTER CENTER &gt;&gt; C:\3C.BAT
@ECHO @DEL C:\fotos_posse.zip /F /Q &gt;&gt; C:\3C.BAT
@ECHO @DEL C:\server.exe /F /Q &gt;&gt; C:\3C.BAT
@ECHO @DEL C:\WINDOWS\System32\sp2.exe /F /Q &gt;&gt; C:\3C.BAT
@ECHO @REG DELETE HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskmgr /f &gt;&gt; C:\3C.BAT
@ECHO @REG DELETE HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /va /f &gt;&gt; C:\3C.BAT
@ECHO @DELETE C:\3C.BAT &gt;&gt; C:\3C.BAT
@REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce /v 3CProj /d C:\3C.BAT
@ATTRIB C:\3C.BAT +S +H&lt;/code&gt;
&lt;p&gt;In finish, restart your computer and all clear.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-1990703261456638277?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/1990703261456638277/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=1990703261456638277&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/1990703261456638277'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/1990703261456638277'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/05/about-fotospossezip-malware.html' title='About fotos_posse.zip malware'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-9111638805042509574</id><published>2007-03-17T21:43:00.000-04:00</published><updated>2008-11-13T01:57:38.500-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Test'/><category scheme='http://www.blogger.com/atom/ns#' term='Life'/><title type='text'>Test my IQ again</title><content type='html'>&lt;div align="center"&gt;
&lt;div class="imgtext" style="width:320px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_JRrv6_-8JRo/RfyZtIxf7kI/AAAAAAAAAFU/wbgtumEiRB0/s1600-h/IQ+Test.png"&gt;&lt;img src="http://2.bp.blogspot.com/_JRrv6_-8JRo/RfyZtIxf7kI/AAAAAAAAAFU/wbgtumEiRB0/s320/IQ+Test.png" alt="My IQ Point" width="320" height="213" border="0" align="absmiddle" /&gt;&lt;/a&gt;
&lt;p&gt;My IQ Point&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Today I was bored, so let my mother do the IQ test, and then I was tested my IQ again: above 145 point!&lt;/p&gt;
&lt;p&gt;I think I already have the correct answers, but the page say that is not available to published, so I don't will published the correct answers, you can publish your point here with comment.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-9111638805042509574?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/9111638805042509574/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=9111638805042509574&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/9111638805042509574'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/9111638805042509574'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/03/test-my-iq-again.html' title='Test my IQ again'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_JRrv6_-8JRo/RfyZtIxf7kI/AAAAAAAAAFU/wbgtumEiRB0/s72-c/IQ+Test.png' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-4706854238555083405</id><published>2007-03-13T20:38:00.000-04:00</published><updated>2008-11-13T01:57:38.627-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Test'/><category scheme='http://www.blogger.com/atom/ns#' term='Life'/><title type='text'>Test your IQ</title><content type='html'>&lt;div align="center"&gt;
&lt;div class="imgtext" style="width:320px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_JRrv6_-8JRo/RfdFhkk1-yI/AAAAAAAAAFM/MHu2V-FxSAk/s1600-h/IQ+Test.png"&gt;&lt;img src="http://1.bp.blogspot.com/_JRrv6_-8JRo/RfdFhkk1-yI/AAAAAAAAAFM/MHu2V-FxSAk/s320/IQ+Test.png" alt="My IQ Point" width="320" height="213" border="0" align="absmiddle" /&gt;&lt;/a&gt;
&lt;p&gt;My IQ Point&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Today I was tested my IQ: 133 point!&lt;/p&gt;
&lt;p&gt;You can test your IQ in: &lt;a href="http://www.iqtest.dk/main.swf" title="IQ Tester"&gt;http://www.iqtest.dk/&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-4706854238555083405?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/4706854238555083405/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=4706854238555083405&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/4706854238555083405'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/4706854238555083405'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/03/test-your-iq.html' title='Test your IQ'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_JRrv6_-8JRo/RfdFhkk1-yI/AAAAAAAAAFM/MHu2V-FxSAk/s72-c/IQ+Test.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-8210447736591202592</id><published>2007-02-28T18:43:00.003-03:00</published><updated>2008-09-20T12:40:00.303-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Problem'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><title type='text'>Install PHP 5 and MySQL 5 in Windows XP</title><content type='html'>&lt;p&gt;I have Windows XP SP2 and installed IIS, one day I need make a website with &lt;a href="http://www.php.net/"&gt;PHP&lt;/a&gt; and &lt;a href="http://www.mysql.com/"&gt;MySQL&lt;/a&gt;, so I'm installed &lt;strong&gt;PHP 5.2.1 for Win32&lt;/strong&gt; and &lt;strong&gt;MySQL 5.0.27 for Win32&lt;/strong&gt;. But I got a problem: the website PHP can't make connection with MySQL.&lt;/p&gt;
&lt;p&gt;When PHP 5+, MySQL is no longer enabled by default, so the php_mysql.dll DLL must be enabled inside of php.ini. Also, PHP needs access to the MySQL client library. A file named libmysql.dll is included in the Windows PHP distribution and in order for PHP to talk to MySQL this file needs to be available to the Windows systems path.&lt;/p&gt;
&lt;p&gt;So, I opened &lt;strong&gt;php.ini&lt;/strong&gt; in my PHP directory, used Cltr+F to find the keyword "php_mysql.dll" and I got this result:&lt;/p&gt;
&lt;code&gt;;extension=php_mysql.dll&lt;/code&gt;
&lt;p&gt;I was removed the ";":&lt;/p&gt;
&lt;code&gt;extension=php_mysql.dll&lt;/code&gt;
&lt;p&gt;Later, I was found "mysql.default_port" and modified his valor to my port(default: 3306), and I was found "mysql.default_host" and modified to "localhost":&lt;/p&gt;
&lt;code&gt;
; Default port number for mysql_connect().  If unset, mysql_connect() will use
; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
; at MYSQL_PORT.
mysql.default_port = 3306
&lt;/code&gt;
&lt;code&gt;
; Default host for mysql_connect() (doesn't apply in safe mode).
mysql.default_host = localhost
&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-8210447736591202592?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/8210447736591202592/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=8210447736591202592&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/8210447736591202592'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/8210447736591202592'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/02/install-php-5-and-mysql-5-in-windows-xp.html' title='Install PHP 5 and MySQL 5 in Windows XP'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-2046351568026768213</id><published>2007-02-23T02:12:00.000-03:00</published><updated>2008-11-13T01:57:38.788-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Problem'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><title type='text'>Google Maps China Bug</title><content type='html'>&lt;div align="center"&gt;
&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_JRrv6_-8JRo/Rd54ud_GgTI/AAAAAAAAAE4/7YMKXWSAxf4/s1600-h/Google+Maps+China+Bug.png"&gt;&lt;img src="http://4.bp.blogspot.com/_JRrv6_-8JRo/Rd54ud_GgTI/AAAAAAAAAE4/7YMKXWSAxf4/s320/Google+Maps+China+Bug.png" alt="Google Maps China Bug" width="320" height="213" border="0" align="absmiddle" class="imgtext" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;When set 2000mi/2000km in the maps, where Chile, there was writed "智力", but must be "智利".&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-2046351568026768213?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/2046351568026768213/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=2046351568026768213&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/2046351568026768213'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/2046351568026768213'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/02/google-maps-china-bug.html' title='Google Maps China Bug'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_JRrv6_-8JRo/Rd54ud_GgTI/AAAAAAAAAE4/7YMKXWSAxf4/s72-c/Google+Maps+China+Bug.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-5296833053659989566</id><published>2007-02-23T01:13:00.001-03:00</published><updated>2008-08-24T00:49:02.317-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Game'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Project'/><category scheme='http://www.blogger.com/atom/ns#' term='Counter-Strike'/><title type='text'>Arica Players Database</title><content type='html'>&lt;p&gt;To statistics Counter-Strike players in Arica city, and to facilitate the communication, I made a special trip to the Arica Counter-Strike gamers database.&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://spreadsheets.google.com/pub?key=pZSasyH4I5pdebnZrNzToXA"&gt;Link of the Database&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-5296833053659989566?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/5296833053659989566/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=5296833053659989566&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/5296833053659989566'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/5296833053659989566'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/02/arica-players-database.html' title='Arica Players Database'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-8576034605144292188</id><published>2007-02-08T19:50:00.001-03:00</published><updated>2008-11-13T01:57:38.969-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Problem'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><title type='text'>Steam Translation Bug</title><content type='html'>&lt;div align="center"&gt;
&lt;div class="imgtext" style="width:320px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_JRrv6_-8JRo/RcuqGmrRVdI/AAAAAAAAAEs/J0jEK_BcfHw/s1600-h/Bug.png"&gt;&lt;img src="http://1.bp.blogspot.com/_JRrv6_-8JRo/RcuqGmrRVdI/AAAAAAAAAEs/J0jEK_BcfHw/s320/Bug.png" alt="Steam Translation Bug" width="320" height="213" border="0" align="absmiddle" /&gt;&lt;/a&gt;
&lt;p&gt;请要将您的密码透露给任何人。&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Today I found a bug of translation in &lt;a href="http://www.steampowered.com"&gt;Steam&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;"请要将您的密码透露给任何人。", it mean: "Please tell your password to anyone.".&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-8576034605144292188?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/8576034605144292188/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=8576034605144292188&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/8576034605144292188'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/8576034605144292188'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/02/steam-translation-bug.html' title='Steam Translation Bug'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_JRrv6_-8JRo/RcuqGmrRVdI/AAAAAAAAAEs/J0jEK_BcfHw/s72-c/Bug.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-7029634894262092864</id><published>2007-02-08T19:37:00.000-03:00</published><updated>2008-11-13T01:57:39.146-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Problem'/><category scheme='http://www.blogger.com/atom/ns#' term='Game'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Counter-Strike'/><title type='text'>Steam Counter-Strike 1.6 Error</title><content type='html'>&lt;div align="center"&gt;
&lt;div class="imgtext" style="width:320px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_JRrv6_-8JRo/RcunvWrRVcI/AAAAAAAAAEg/W63HJxHzKBo/s1600-h/Bug.png"&gt;&lt;img src="http://4.bp.blogspot.com/_JRrv6_-8JRo/RcunvWrRVcI/AAAAAAAAAEg/W63HJxHzKBo/s320/Bug.png" alt="Steam Counter-Strike 1.6 Error" width="320" height="115" border="0" align="absmiddle" /&gt;&lt;/a&gt;
&lt;p&gt;Invalid userinfo in connect command&lt;/p&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;h4&gt;Solutioned by Codetrinis:&lt;/h4&gt;
&lt;p&gt;Join the "Friends" in Steam and change your Name to standard letters.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-7029634894262092864?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/7029634894262092864/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=7029634894262092864&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/7029634894262092864'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/7029634894262092864'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/02/steam-counter-strike-16-error.html' title='Steam Counter-Strike 1.6 Error'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_JRrv6_-8JRo/RcunvWrRVcI/AAAAAAAAAEg/W63HJxHzKBo/s72-c/Bug.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-2986237643213618329</id><published>2007-02-05T10:32:00.000-03:00</published><updated>2007-02-05T10:38:34.796-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Life'/><title type='text'>Bill Gates' 11 Rules</title><content type='html'>&lt;p&gt;In Bill Gates' Book for high school and college graduates, there is a list of 11 things they did not learn in school, which include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Life is not fair, get used to it.&lt;/li&gt;
&lt;li&gt;The world won't care about your self-esteem. The world will expect you to accomplish something before you feel good about yourself.&lt;/li&gt;
&lt;li&gt;You will not make 40 thousand dollars a year right out of high school. You won't be a vice president with a car phone, until you earn both.&lt;/li&gt;
&lt;li&gt;If you think your teacher is tough, wait till you get a boss. He doesn't have tenure.&lt;/li&gt;
&lt;li&gt;Flipping burgers is not beneath your dignity. Your grandparents had a different word for burger flipping; they called it opportunity.&lt;/li&gt;
&lt;li&gt;If you mess up, it's not your parents' fault, so don't whine about our mistakes, learn from them.&lt;/li&gt;
&lt;li&gt;Before you were born, your parents weren't as boring as they are now. They got that way from paying your bills, cleaning your clothes and listening to you talk about how cool you are. So before you save the rain forest from the parasites of your parents' generation, try "delousing" the closet in your won room.&lt;/li&gt;
&lt;li&gt;Your school may have done away with winners and losers, but life has not. In some schools they have abolished failing grades; they'll give you as many times as you want to get the right answer. This doesn't bear the slightest resemblance to anything in real life.&lt;/li&gt;
&lt;li&gt;Life is not divided into semesters. You don't get summers off and very few employers are interested in helping you find yourself. Do that on your own time.&lt;/li&gt;
&lt;li&gt;Television is Not real life. In real life people actually have to leave the coffee shop and to jobs.&lt;/li&gt;
&lt;li&gt;Be nice to herds. Chances are you'll end up working for one.&lt;/li&gt;
&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-2986237643213618329?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/2986237643213618329/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=2986237643213618329&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/2986237643213618329'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/2986237643213618329'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/02/bill-gates-11-rules.html' title='Bill Gates&apos; 11 Rules'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-4676829434229806719</id><published>2007-02-04T10:20:00.000-03:00</published><updated>2007-02-04T10:50:38.994-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Game'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Counter-Strike'/><title type='text'>CSP Map Pack Released</title><content type='html'>&lt;p&gt;The &lt;a href="http://www.cspromod.com/"&gt;Counter-Strike Promod&lt;/a&gt; maps are available for public download! There released csp_dust_b1, csp_inferno_b1, csp_nuke_b1, and csp_train_b1 (b1 being short for beta 1), and all are available at the following download links:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://i2.divo.net/i2/csp_mappack_b1.zip"&gt;Download csp_mapback_b1.zip&lt;/a&gt; - Hosted by &lt;a href="http://www.divo.net/"&gt;Divo Networks&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h4&gt;What is CS Promod?&lt;/h4&gt;
&lt;p&gt;CS Promod is a mod for Half-Life 2. Everything will be created as a mod on the Half-Life 2 (Source) engine, and the "base" version of CS Promod will be entirely based upon CS 1.6 and CS 1.5.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-4676829434229806719?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.cspromod.com/?page=forum&amp;action=viewTopic&amp;id=951' title='CSP Map Pack Released'/><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/4676829434229806719/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=4676829434229806719&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/4676829434229806719'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/4676829434229806719'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/02/csp-map-pack-released.html' title='CSP Map Pack Released'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-8671057231916168605</id><published>2007-02-01T12:59:00.000-03:00</published><updated>2007-02-03T20:06:52.896-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Game'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Video'/><title type='text'>Science Strikes Back</title><content type='html'>This movie made by Zachariah Scott. It basically features Kliener running through the whole of HL2 to get revenge for the killing of Lamar.
Wow! Amazing!!!
&lt;div align="center"&gt;&lt;object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab#version=9,0,28,0" height="350" width="425"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/vPA6QzlaFO4" /&gt;
&lt;param name="quality" value="high" /&gt;
&lt;param name="menu" value="false" /&gt;
&lt;param name="wmode" value="transparent" /&gt;
&lt;embed src="http://www.youtube.com/v/vPA6QzlaFO4" width="425" height="350" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"&gt;&lt;/embed&gt;
&lt;/object&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-8671057231916168605?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/8671057231916168605/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=8671057231916168605&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/8671057231916168605'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/8671057231916168605'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/02/science-strikes-back.html' title='Science Strikes Back'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-6710898540445635028</id><published>2007-01-31T16:32:00.000-03:00</published><updated>2007-02-03T20:46:50.960-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Game'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Video'/><title type='text'>Half-Hour Half-Life</title><content type='html'>&lt;p&gt;In the &lt;a href="http://bbs.steamcn.com/index.php?fromuid=13523"&gt;SteamCN forum&lt;/a&gt; I was saw this movie, is great!&lt;/p&gt;
&lt;p&gt;This is a segmented Half-Life speedrun, done by Blake "Spider-Waffle" Piepho. He had the idea for this in year 2000, started working on it in 2003, and completed it in October 2006.&lt;/p&gt;
&lt;p&gt;This run was done through many small segments in aim of achieving a high level of perfection. The final time from start to the death blow on Nihilanth is 29:41.&lt;/p&gt;
&lt;div align="center"&gt;&lt;object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab#version=9,0,28,0" height="350" width="425"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/YTUOn2EUFhk" /&gt;
&lt;param name="quality" value="high" /&gt;
&lt;param name="menu" value="false" /&gt;
&lt;param name="wmode" value="transparent" /&gt;
&lt;embed src="http://www.youtube.com/v/YTUOn2EUFhk" width="425" height="350" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"&gt;&lt;/embed&gt;
&lt;/object&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-6710898540445635028?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/6710898540445635028/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=6710898540445635028&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/6710898540445635028'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/6710898540445635028'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/01/half-hour-half-life.html' title='Half-Hour Half-Life'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-6322081343419359147</id><published>2007-01-31T15:00:00.000-03:00</published><updated>2007-01-31T15:04:03.830-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Life'/><title type='text'>The Programmer's Bill of Rights</title><content type='html'>&lt;h4&gt;1. Every programmer shall have two monitors&lt;/h4&gt;
&lt;p&gt;With the crashing prices of LCDs and the ubiquity of dual-output video cards, you'd be crazy to limit your developers to a single screen. The productivity benefits of doubling your desktop are well documented by now. If you want to maximize developer productivity, make sure each developer has two monitors.&lt;/p&gt;
&lt;h4&gt;2. Every programmer shall have a fast PC&lt;/h4&gt;
&lt;p&gt; Developers are required to run a lot of software to get their jobs done: development environments, database engines, web servers, virtual machines, and so forth. Running all this software requires a fast PC with lots of memory. The faster a developer's PC is, the faster they can cycle through debug and compile cycles. You'd be foolish to pay the extortionist prices for the extreme top of the current performance heap-- but always make sure you're buying near the top end. Outfit your developers with fast PCs that have lots of memory. Time spent staring at a progress bar is wasted time.&lt;/p&gt;
&lt;h4&gt;3. Every programmer shall have their choice of mouse and keyboard&lt;/h4&gt;
&lt;p&gt;In college, I ran a painting business. Every painter I hired had to buy their own brushes. This was one of the first things I learned. Throwing a standard brush at new painters didn't work. The "company" brushes were quickly neglected and degenerated into a state of disrepair. But painters who bought their own brushes took care of them. Painters who bought their own brushes learned to appreciate the difference between the professional $20 brush they owned and cheap disposable dollar store brushes. Having their own brush engendered a sense of enduring responsibility and craftsmanship. Programmers should have the same relationship with their mouse and keyboard-- they are the essential, workaday tools we use to practice our craft and should be treated as such.&lt;/p&gt;
&lt;h4&gt;4. Every programmer shall have a comfortable chair&lt;/h4&gt;
&lt;p&gt;Let's face it. We make our livings largely by sitting on our butts for 8 hours a day. Why not spend that 8 hours in a comfortable, well-designed chair? Give developers chairs that make sitting for 8 hours not just tolerable, but enjoyable. Sure, you hire developers primarily for their giant brains, but don't forget your developers' other assets.&lt;/p&gt;
&lt;h4&gt;5. Every programmer shall have a fast internet connection&lt;/h4&gt;
&lt;p&gt;Good programmers never write what they can steal. And the internet is the best conduit for stolen material ever invented. I'm all for books, but it's hard to imagine getting any work done without fast, responsive internet searches at my fingertips.&lt;/p&gt;
&lt;h4&gt;6. Every programmer shall have quiet working conditions&lt;/h4&gt;
&lt;p&gt;Programming requires focused mental concentration. Programmers cannot work effectively in an interrupt-driven environment. Make sure your working environment protects your programmers' flow state, otherwise they'll waste most of their time bouncing back and forth between distractions.&lt;/p&gt;
&lt;p style="padding-top:16px;"&gt;The few basic rights we're asking for are easy. They aren't extravagant demands. They're fundamental to the quality of work life for a software developer. If the company you work for isn't getting it right, making it right is neither expensive nor difficult. Demand your rights as a programmer! And remember: you can either change your company, or you can change your company.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-6322081343419359147?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.codinghorror.com/blog/archives/000666.html' title='The Programmer&apos;s Bill of Rights'/><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/6322081343419359147/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=6322081343419359147&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/6322081343419359147'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/6322081343419359147'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/01/programmers-bill-of-rights.html' title='The Programmer&apos;s Bill of Rights'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-7402513250067563786</id><published>2007-01-30T09:02:00.000-03:00</published><updated>2007-01-30T19:31:13.199-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Music'/><title type='text'>Gloomy Sunday</title><content type='html'>&lt;p&gt;"Gloomy Sunday" (from Hungarian "Szomorú Vasárnap", IPA: ['sɒmɒɾuː 'vɐʃaɾnɐp]) is a song written by the Hungarian self-taught pianist and composer Rezső Seress in 1933. According to urban legend, it inspired hundreds of suicides. When the song was first marketed in America, it became known as the "Hungarian suicide song". There is no sytematic substantiation for such claims, as it is not documented where any such allegations appear in press coverage or other publications of the time.&lt;/p&gt;
&lt;p&gt;Numerous versions of the song have been recorded and released. Phil Elwood, writing in JazzWest.com, cites the following words of Michael Brooks, taken from Brooks' program notes accompanying the 10-CD set, "Lady Day" - the Complete Billie Holiday on Columbia, 1933-1944:&lt;br /&gt;
&lt;span style="font-weight:bold;font-style:italic"&gt;"Gloomy Sunday reached America in 1936 and, thanks to a brilliant publicity campaign, became known as The Hungarian Suicide Song. Supposedly after hearing it, distraught lovers were hypnotized into heading straight out of the nearest open window, in much the same fashion as investors after October, 1929; both stories are largely urban myths."&lt;/span&gt;&lt;/p&gt;
&lt;h4&gt;Urban legends&lt;/h4&gt;
&lt;p&gt;There have been several urban legends regarding the song over the years, mostly involving it being allegedly connected with various numbers of suicides, and radio networks reacting by purportedly banning the song. Sources propagating the legend fail to provide substantiation for claims of suicides or radio bans. The legend may have inspired Spider Robinson's short story "The Law of Conservation of Pain", part of the Callahan's Crosstime Saloon series.&lt;/p&gt;
&lt;p&gt;In 1968, Seress jumped to his death from his apartment. The New York Times Archive holds the obituary of Rezső Seress, where he is credited with causing suicides. The article reads:&lt;br /&gt;
&lt;span style="font-weight:bold;font-style:italic"&gt;"Budapest, January 13. Rezsoe Seres, whose dirge-like song hit, 'Gloomy Sunday' was blamed for touching off a wave of suicides during the nineteen-thirties, has ended his own life as a suicide it was learned today.&lt;br /&gt;
Authorities disclosed today that Mr. Seres jumped from a window of his small apartment here last Sunday, shortly after his 69th birthday. The decade of the nineteen-thirties was marked by severe economic depression and the political upheaval that was to lead to World War II. The melancholy song written by Mr. Seres, with words by his friend, Ladislas Javor, a poet, declares at its climax, 'My heart and I have decided to end it all.' It was blamed for a sharp increase in suicides, and Hungarian officials finally prohibited it. In America, where Paul Robeson introduced an English version, some radio stations and nightclubs forbade its performance. Mr. Seres complained that the success of 'Gloomy Sunday' actually increased his unhappiness, because he knew he would never be able to write a second hit.&lt;br /&gt;
- New York Times, 1968"&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;According to QI, the BBC banned the playing of Gloomy Sunday up till 2002.&lt;/p&gt;
&lt;p&gt;In 1997 Billy Mackenzie, vocalist with Scottish band The Associates (who recorded a cover of Holiday's version in 1982), committed suicide near his father's home in Dundee.&lt;/p&gt;
&lt;p&gt;The codifying of the urban legend appears in an article attributed to "D.P. MacDonald" and titled "Overture to Death", the text of which has been reproduced and disseminated countless times online. According to the website of Phespirit the article was originally published by the 'Justin and Angi' site to augment their now defunct "Gloomy Sunday Radio Show". Their introduction to the article reads:&lt;br /&gt;
&lt;span style="font-weight:bold;font-style:italic"&gt;"This message was forwarded to us by a visitor to our web site. There is some good historical information on the song intermixed with some information of more dubious repute. The accounts begin to take on the feel of a satiric e-mail chain letter after a while, but then, sometimes truth is indeed stranger than fiction. The story does read a little bit like the script of a segment from Strange Universe! So take this with a grain of salt ..... The text was [supposedly] quoted from the Cincinatti (sic) Journal of Ceremonial Magick, vol I, no I, printed in 1976."&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-7402513250067563786?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://en.wikipedia.org/wiki/Gloomy_Sunday' title='Gloomy Sunday'/><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/7402513250067563786/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=7402513250067563786&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/7402513250067563786'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/7402513250067563786'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/01/gloomy-sunday.html' title='Gloomy Sunday'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-353629158425384841</id><published>2007-01-21T02:15:00.001-03:00</published><updated>2008-07-13T00:23:25.212-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Game'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><title type='text'>How to install "Codename Gordon" in Steam</title><content type='html'>&lt;p&gt;Recently, I discovered that I haven't the game "Codename Gordon" in Steam games list, and if I search in Google I only found the individual game without Steam. Finally, I found the address of installation in the Steam website. To install it only need to click:
&lt;a href="steam://install/92" title="Install 'Codename Gordon'"&gt;Install "Codename Gordon"&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-353629158425384841?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/353629158425384841/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=353629158425384841&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/353629158425384841'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/353629158425384841'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/01/how-can-i-install-codename-gordon-in.html' title='How to install &quot;Codename Gordon&quot; in Steam'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-2952915416330995016</id><published>2007-01-20T14:54:00.000-03:00</published><updated>2008-11-13T01:57:39.403-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Game'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Life'/><category scheme='http://www.blogger.com/atom/ns#' term='Counter-Strike'/><title type='text'>My CGT graduates</title><content type='html'>&lt;p&gt;Yesterday, today held a Counter-Strike Championships, which is called the "Cyberathletle Gamer Tournament". This is my graduates.&lt;/p&gt;
&lt;div align="center"&gt;&lt;div class="imgtext" style="width:320px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_JRrv6_-8JRo/RbJYNH4rx9I/AAAAAAAAAEU/osZ0I9vtmAw/s1600-h/Diploma.png"&gt;&lt;img src="http://4.bp.blogspot.com/_JRrv6_-8JRo/RbJYNH4rx9I/AAAAAAAAAEU/osZ0I9vtmAw/s320/Diploma.png" alt="My CGT graduates" width="320" height="197" border="0" /&gt;&lt;/a&gt;
&lt;p&gt;My CGT graduates&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-2952915416330995016?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/2952915416330995016/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=2952915416330995016&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/2952915416330995016'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/2952915416330995016'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/01/my-cgt-graduates.html' title='My CGT graduates'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_JRrv6_-8JRo/RbJYNH4rx9I/AAAAAAAAAEU/osZ0I9vtmAw/s72-c/Diploma.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-5967487476107719843</id><published>2007-01-08T23:00:00.000-03:00</published><updated>2008-11-13T01:57:39.799-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><title type='text'>The Steam client has just been updated</title><content type='html'>&lt;h4&gt;Contrast of memory used and style:&lt;/h4&gt;
&lt;div align="center"&gt;&lt;div class="imgtext" style="width:320px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_JRrv6_-8JRo/RaMUXleLWlI/AAAAAAAAAD0/dGHr2Z_x_1U/s1600-h/steam1.png"&gt;&lt;img src="http://3.bp.blogspot.com/_JRrv6_-8JRo/RaMUXleLWlI/AAAAAAAAAD0/dGHr2Z_x_1U/s320/steam1.png" alt="Old Steam" width="320" height="166" border="0" align="absmiddle" /&gt;&lt;/a&gt;
&lt;p&gt;Old Steam&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;
&lt;div align="center"&gt;&lt;div class="imgtext" style="width:319px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_JRrv6_-8JRo/RaMUlFeLWmI/AAAAAAAAAD8/EG4DhB8wSrk/s1600-h/steam2.png"&gt;&lt;img src="http://1.bp.blogspot.com/_JRrv6_-8JRo/RaMUlFeLWmI/AAAAAAAAAD8/EG4DhB8wSrk/s320/steam2.png" alt="New Steam" width="319" height="164" border="0" align="absmiddle" /&gt;&lt;/a&gt;
&lt;p&gt;New Steam&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Today is January 8th 2007, the Steam client has just been updated with a few new features. They are:&lt;/p&gt;
&lt;h4&gt;Guest Passes&lt;/h4&gt;
&lt;p&gt;Guest Passes allow owners of certain Steam games (purchased either via Steam or at retail) to let their friends play games for free, for a limited time trial. The first game to take advantage of this new feature will be Day of Defeat: Source. Beginning the week of January 8th, owners of DoD:S will each receive a guest pass to give to a friend. So if you own Day of Defeat: Source, watch your games list for your guest pass to appear, and then send it to a friend.&lt;/p&gt;
&lt;h4&gt;Background client updates&lt;/h4&gt;
&lt;p&gt;Since the Steam client was first released, it has always kept itself up to date -- but now it'll do so without making you wait during startup. Instead, it will acquire new updates in the background and then (once they're downloaded) ask if you'd like to restart &amp; apply them. Steam will also let you know what's new whenever a new update is ready to apply.&lt;/p&gt;
&lt;h4&gt;Games list Favorites&lt;/h4&gt;
&lt;p&gt;Steam's catalog of games has grown quite a bit over the past year or so. If you're like most Steam users, the list of games you own has grown pretty long. Time to organize! Soon you'll be able to try out the new Favorites feature in the My Games tab of Steam. Once you've selected a game as a Favorite, it's available for quick access at the top of your list. If you wish, you can also collapse the Installed and Uninstalled sections, leaving only your Favorites in view.&lt;/p&gt;
&lt;h4&gt;New look&lt;/h4&gt;
&lt;p&gt;Steam's getting a new coat of paint. We've stripped away all the non-essentials and created a new streamlined appearance, and it'll be available in five different colors: Default, Ice, Sand, Obsidian, and Grey.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-5967487476107719843?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://storefront.steampowered.com/v/index.php?area=whats_new' title='The Steam client has just been updated'/><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/5967487476107719843/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=5967487476107719843&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/5967487476107719843'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/5967487476107719843'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/01/steam-client-is-updated.html' title='The Steam client has just been updated'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_JRrv6_-8JRo/RaMUXleLWlI/AAAAAAAAAD0/dGHr2Z_x_1U/s72-c/steam1.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-1407545055550575248</id><published>2007-01-07T22:40:00.000-03:00</published><updated>2007-01-09T02:02:27.701-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><title type='text'>SteamCN forum returns</title><content type='html'>&lt;p&gt;Because a strong earthquake struck off the southern tip of Taiwan and the earthquake has damaged six submarine fiber-optic communications cables, restricting internet access to millions of users in Asia and Australia. After several days of trying to connect the &lt;a href="http://bbs.steamcn.com/index.php?fromuid=13523"&gt;SteamCN forum&lt;/a&gt;(China server), finally I can normal visit.&lt;/p&gt;
&lt;p&gt;The forum is not the official Steam forum, but will have a very high level, so if you're chinese I suggest to you visit this forum.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-1407545055550575248?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/1407545055550575248/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=1407545055550575248&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/1407545055550575248'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/1407545055550575248'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/01/steamcn-forum-returns.html' title='SteamCN forum returns'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-5766096116053927179</id><published>2007-01-05T14:20:00.002-03:00</published><updated>2008-09-20T12:44:51.687-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Problem'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><title type='text'>My computer has been attacked?</title><content type='html'>&lt;p&gt;My firewall alert me that my computer often received from the IP 66.117.5.* and 66.180.205.* of the UDP data packets, whether it be attacked?&lt;/p&gt;
&lt;code&gt;UDP data packets from 66.180.205.*
Reciber Port:23732
Sender Port:4679

UDP data packets from 66.117.5.*
Reciber Port:23732
Sender Port:4679&lt;/code&gt;
&lt;h4&gt;Answered by Codetrinis:&lt;/h4&gt;
&lt;p&gt;Don't worry, your computer is protected by firewall and receiving only some of those warning of potential virus scan your computer.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-5766096116053927179?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/5766096116053927179/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=5766096116053927179&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/5766096116053927179'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/5766096116053927179'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/01/my-computer-has-been-attacked.html' title='My computer has been attacked?'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-6843924826499213737</id><published>2007-01-04T16:50:00.000-03:00</published><updated>2008-11-13T01:57:39.955-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Problem'/><category scheme='http://www.blogger.com/atom/ns#' term='Blog'/><title type='text'>How to change language if you are an expat in a foreign country</title><content type='html'>&lt;p&gt;There have been complaints of people whose mother tongue is, for example, English, but is living in a foreign country, eg. China. When they log into their Blogger Dashboard, it is all in that foreign language and they have problems understanding it. For such cases, it is easy to change the language even if you are living in a foreign country. Sign into Dashboard, then at the top right hand corner of the Dashboard is this:&lt;/p&gt;
&lt;div align="center"&gt;&lt;a href="http://4.bp.blogspot.com/_JRrv6_-8JRo/RZ6s4FeLWkI/AAAAAAAAADo/4c7pqumQuh4/s1600-h/profile.png" target="_blank" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img src="http://4.bp.blogspot.com/_JRrv6_-8JRo/RZ6s4FeLWkI/AAAAAAAAADo/4c7pqumQuh4/s320/profile.png" alt="Hand corner of the Dashboard" width="200" height="216" border="0" align="absmiddle" class="imgtext" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;Right at the bottom is a link "Change Language". Click that and change the language to your preferred language.&lt;p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-6843924826499213737?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://blogger-tricks.blogspot.com/2007/01/how-to-change-language-if-you-are.html' title='How to change language if you are an expat in a foreign country'/><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/6843924826499213737/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=6843924826499213737&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/6843924826499213737'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/6843924826499213737'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/01/how-to-change-language-if-you-are-expat.html' title='How to change language if you are an expat in a foreign country'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_JRrv6_-8JRo/RZ6s4FeLWkI/AAAAAAAAADo/4c7pqumQuh4/s72-c/profile.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-549429858429052210</id><published>2007-01-02T20:06:00.000-03:00</published><updated>2008-11-13T01:57:40.305-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Problem'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><title type='text'>Power issue off [part 2]</title><content type='html'>&lt;p style="padding-bottom:16px;"&gt;Article previous: &lt;a href="http://codetrinis.blogspot.com/2006/12/issus-power-off.html"&gt;Power issue off [part 1]&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In article previous I had showed all the parts burned, and today I bought the parts and I tried to install it.&lt;/p&gt;
&lt;div align="center"&gt;&lt;div class="imgtext" style="width:320px;"&gt;&lt;a href="http://3.bp.blogspot.com/_JRrv6_-8JRo/RZ6Q81eLWiI/AAAAAAAAADQ/M-6gohWjr_w/s1600-h/DSC00037.JPG" target="_blank" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img src="http://3.bp.blogspot.com/_JRrv6_-8JRo/RZ6Q81eLWiI/AAAAAAAAADQ/M-6gohWjr_w/s320/DSC00037.JPG" alt="The hole is small" width="320" height="240" border="0" align="absmiddle" /&gt;&lt;/a&gt;
&lt;p&gt;The hole is small, I need to increase the intensity&lt;/p&gt;&lt;/div&gt;
&lt;div class="imgtext" style="width:320px;"&gt;&lt;a href="http://4.bp.blogspot.com/_JRrv6_-8JRo/RZ6dBFeLWjI/AAAAAAAAADY/Y9Mjdmc3Cog/s1600-h/DSC00038.JPG" target="_blank" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img src="http://4.bp.blogspot.com/_JRrv6_-8JRo/RZ6dBFeLWjI/AAAAAAAAADY/Y9Mjdmc3Cog/s320/DSC00038.JPG" alt="The tool to increase the hole" width="320" height="240" border="0" align="absmiddle" /&gt;&lt;/a&gt;
&lt;p&gt;This is the tool to increase the hole&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-549429858429052210?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/549429858429052210/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=549429858429052210&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/549429858429052210'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/549429858429052210'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/01/power-issus-off-part-2.html' title='Power issue off [part 2]'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_JRrv6_-8JRo/RZ6Q81eLWiI/AAAAAAAAADQ/M-6gohWjr_w/s72-c/DSC00037.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-1801659999309612431</id><published>2007-01-01T07:14:00.000-03:00</published><updated>2007-01-02T23:30:33.251-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Game'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Counter-Strike'/><title type='text'>HLTV Known Bugs &amp; Issues</title><content type='html'>&lt;h4&gt;Demo voice playback is choppy, can I fix this?&lt;/h4&gt;
&lt;p&gt;Certainly! This is a well known bug that is very easy to fix. It is just another three step process. &lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;Start a “New Game” on the map of your choice.&lt;/li&gt;
  &lt;li&gt;in console, type and submit “sv_voicecodec voicespeex” then “sv_voicequality 5” without the quotations.&lt;/li&gt;
  &lt;li&gt;Lastly, repeat the play/viewdemo process and voices should now be fixed!&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Useful fact: The same process can be used to fix live HLTV voices (if applicable).&lt;/p&gt;
&lt;h4&gt;Models do not appear in demo&lt;/h4&gt;
&lt;p&gt;Many people use a command known as “cl_minmodels 1”. What this  does, is limit one player model per team (Counter-Terrorist or  Terrorist). By having this command active, and watching a demo, you are  unable to see many different player models. To fix this, simply do the  following:&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;Open up the console (~) either before or during demo playback.&lt;/li&gt;
  &lt;li&gt;Type “cl_minmodels 0”, submit and enter. Your problem is now fixed!&lt;/li&gt;
&lt;/ol&gt;
&lt;h4&gt;Demo appears to be sluggish or laggy&lt;/h4&gt;
&lt;p&gt;  Upon initially loading a demo, one may experience weird or slow  performance. While there is no official reason known for this, one can  assume it is due in part to all the demo resources being processed for  the first time and at once. To solve this problem simply let the demo  run and it will correct itself. Remember, with viewdemo you can always  rewind to see what you may have missed.&lt;/p&gt;
&lt;h4&gt;My old demos will not play&lt;/h4&gt;
&lt;p&gt;  This is not a bug, but rather a compatibility issue. Over the years  Counter-Strike has received many changes to it's code and supporting  engine. As a result, older demos may not be fully compatible with the  latest version of CS. This is not a quick fix, and the only known way  to view such demo would involve possessing an older copy of CS on your  computer and placing the demo appropriately. With that said, it is not  a very practical solution. Unfortunately many will be out of luck here.&lt;/p&gt;
&lt;h4&gt;I cannot hear my own voice upon demo playback&lt;/h4&gt;
&lt;p&gt;Another simple fix. If you want to record your own in-game voice in  your demos you need to turn on a certain command; voice_loopback.  Voice_loopback does just what it says, it loops back your voice for you  to hear and your demo to record.&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;Open console before recording.&lt;/li&gt;
  &lt;li&gt;Type and submit &amp;quot;voice_loopback 1&amp;quot;&lt;/li&gt;
  &lt;li&gt;Record your demo!&lt;/li&gt;
&lt;/ol&gt;
&lt;h4&gt;I can't see the scoreboard&lt;/h4&gt;
&lt;p&gt;In order to see the scoreboard in a demo, you must have entered a game  of CS at least once prior to the demo viewing session. That is to say,  when you start up CS you must either create or join a game at least  once before attempting to view a demo. This is because many files  needed to properly view demos will stay in the cache until they are  needed, and for some reason demos don't ask for these files. Simply  start a game at least once, and then your demo will become viewable.&lt;/p&gt;
&lt;h4&gt;I cannot use spaces in my demo&lt;/h4&gt;
&lt;p&gt;A common issue, easily fixed. Usually when recording a demo you can  type &amp;quot;record mydemo&amp;quot;, however, when you want to use spaces you must put  the demo name in quotations.&lt;/p&gt;
&lt;p&gt;Example:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;record &amp;quot;my demo&amp;quot; - &lt;strong&gt;Right&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;record my demo&lt;strong&gt; - Wrong&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-1801659999309612431?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.gotfrag.com/cs/story/29656/' title='HLTV Known Bugs &amp; Issues'/><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/1801659999309612431/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=1801659999309612431&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/1801659999309612431'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/1801659999309612431'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2007/01/hltv-known-bugs-issues.html' title='HLTV Known Bugs &amp; Issues'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-8174808441149941104</id><published>2006-12-31T21:34:00.000-03:00</published><updated>2007-01-02T23:23:29.110-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><title type='text'>Kill locked process</title><content type='html'>&lt;p&gt;If you found some suspicious process in the Process List and with Task Manager can not kill, what can you do?&lt;/p&gt;
&lt;h4&gt;1. Using "taskkill" command for Windows XP&lt;/h4&gt;
&lt;p&gt;First, you have to know what is the process name that you are going to kill it.&lt;/p&gt;
&lt;p&gt;Operation: Click "Start" -&gt; "Ejecute", type "taskkill /im NAME" (The NAME is the process name).&lt;/p&gt;
&lt;h4&gt;2. Using built-in tools for Windows 2000 or Windows XP&lt;/h4&gt;
&lt;p&gt;From Windows 2000, Windows system built-in a debugging tool: Ntsd. The Ntsd can kill most of process because the process will exit together with the tool, so if you use the command line Ntsd out a process and then quit the Ntsd can kill the process.&lt;/p&gt;
&lt;p&gt;Operation: Click "Start" -&gt; "Ejecute", type "ntsd -c q -p PID" (The PID you can find in the Task Manager).&lt;/p&gt;
&lt;h4&gt;3. The use of specialized software to kill the process&lt;/h4&gt;
&lt;p&gt;Task Manager can not kill the process, you can use specialized software to kill. Have a lot of specialized software can kill the process, for sample: "Kill Process", "IceSword".&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-8174808441149941104?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.cpcw.com/disp.php?aid=475&amp;cid=41' title='Kill locked process'/><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/8174808441149941104/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=8174808441149941104&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/8174808441149941104'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/8174808441149941104'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/12/kill-system-process.html' title='Kill locked process'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-2843724442533005185</id><published>2006-12-30T09:11:00.003-03:00</published><updated>2008-09-20T12:45:25.065-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Project'/><category scheme='http://www.blogger.com/atom/ns#' term='Mathematics'/><category scheme='http://www.blogger.com/atom/ns#' term='Language C'/><category scheme='http://www.blogger.com/atom/ns#' term='Code'/><title type='text'>[CODE]Rabbits and Chickens</title><content type='html'>&lt;p&gt;It is a code of a program and is using for calculate an exercise that had in the test of mathematical Olympic championship, completed in July 12, 2005.&lt;/p&gt;
&lt;h4&gt;The question is:&lt;/h4&gt;
&lt;p&gt;Rabbits and chickens are in cage, counting from above there are 35 heads, counting from below there are 94 feet. How many chickens and how many rabbits are in the cage?&lt;/p&gt;
&lt;h4&gt;The C++ code:&lt;/h4&gt;
&lt;code&gt;/* r_and_c.c */
#include &amp;lt;CONIO.H&amp;gt;
#include &amp;lt;STDIO.H&amp;gt;
int main(void)
{
 int Head, Feet;
 printf("Please input total feets:");scanf("%d", &amp;Feet);
 printf("Please input total heads:");scanf("%d", &amp;Head);
 clrscr();
 if(Head &amp;gt; (Feet / 2)) printf("Feets don't enough.");
 else if(Feet &amp;gt; (Head * 4)) printf("Feets have much.");
 else{
  int Temp;
  Temp = (Feet / 2) - Head;
  printf("Rabbit have %d\n", Temp);
  printf("Chicken have %d\n", Head - Temp);
 }
 getch();
 return(0);
}&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-2843724442533005185?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/2843724442533005185/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=2843724442533005185&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/2843724442533005185'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/2843724442533005185'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/12/coderabbit-and-chicken.html' title='[CODE]Rabbits and Chickens'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-9097058958611146251</id><published>2006-12-29T22:12:00.000-03:00</published><updated>2006-12-29T22:32:38.726-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blog'/><title type='text'>The blog was updated</title><content type='html'>&lt;p&gt;Yesterday, I registered in Google Adsense. The reason is because I need money to repair hardware (I do not receive anything). I waited for a day, also today, Google Adsense endorsed my application. I begin to modify my blog, and when I am looking for articles to modify I found some very good blogsite. for example &lt;a href="http://sunr.blogspot.com/" target="_blank"&gt;"Sunr"&lt;/a&gt; and &lt;a href="http://gooooogleadsense.blogspot.com/" target="_blank"&gt;"Google Adsense Guild"&lt;/a&gt;.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-9097058958611146251?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/9097058958611146251/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=9097058958611146251&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/9097058958611146251'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/9097058958611146251'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/12/blog-was-updated.html' title='The blog was updated'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-8112598241434160951</id><published>2006-12-28T13:48:00.000-03:00</published><updated>2008-11-13T01:57:40.444-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Life'/><title type='text'>My new photograph</title><content type='html'>&lt;div align="center"&gt;
&lt;div class="imgtext" style="width:105px;"&gt;&lt;a href="http://photos1.blogger.com/blogger/8146/3751/320/profile2.png" target="_self" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img src="http://photos1.blogger.com/blogger/8146/3751/1600/profile2.png" alt="Old photograph" width="96" height="96" border="0" align="absmiddle" /&gt;&lt;/a&gt;
&lt;p&gt;Old photograph&lt;/p&gt;&lt;/div&gt;
&lt;div class="imgtext" style="width:244px;"&gt;&lt;a href="http://3.bp.blogspot.com/_JRrv6_-8JRo/RZP1p9T6jGI/AAAAAAAAAC0/p-ttOAwRWtY/s1600-h/Me_edt_244_315.jpg" target="_self" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img src="http://3.bp.blogspot.com/_JRrv6_-8JRo/RZP1p9T6jGI/AAAAAAAAAC0/p-ttOAwRWtY/s320/Me_edt_244_315.jpg" alt="New photograph" width="244" height="315" border="0" align="absmiddle" /&gt;&lt;/a&gt;
&lt;p&gt;New photograph&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;This is my new photograph. I'm already using it in my profile. My brother, Feng Hua, said that my old photograph was not professional. In order to project a more professional appearance, I had this new photograph of myself taken. (The text was corrected by an anonymous. :D)&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-8112598241434160951?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/8112598241434160951/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=8112598241434160951&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/8112598241434160951'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/8112598241434160951'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/12/my-new-photographs.html' title='My new photograph'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_JRrv6_-8JRo/RZP1p9T6jGI/AAAAAAAAAC0/p-ttOAwRWtY/s72-c/Me_edt_244_315.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-3898092904960111023</id><published>2006-12-27T15:38:00.000-03:00</published><updated>2008-11-13T01:57:41.190-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Problem'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><title type='text'>Power issue off [part 1]</title><content type='html'>&lt;p&gt;Today, my friend, Orlando, send to me a burned power issue.&lt;/p&gt;
&lt;div align="center"&gt;
&lt;div class="imgtext" style="width:320px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_JRrv6_-8JRo/RZK-ptT6jBI/AAAAAAAAAB4/h8xXFGpz83Y/s1600-h/DSC00017.JPG"&gt;&lt;img src="http://1.bp.blogspot.com/_JRrv6_-8JRo/RZK-ptT6jBI/AAAAAAAAAB4/h8xXFGpz83Y/s320/DSC00017.JPG" alt="Orlando's power issue" width="320" height="240" border="0" align="absmiddle" /&gt;&lt;/a&gt;
&lt;p&gt;This is Orlando's power issue.&lt;/p&gt;&lt;/div&gt;
&lt;div class="imgtext" style="width:320px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_JRrv6_-8JRo/RZK_g9T6jCI/AAAAAAAAACA/1VP5KlZoefI/s1600-h/DSC00018.JPG"&gt;&lt;img src="http://2.bp.blogspot.com/_JRrv6_-8JRo/RZK_g9T6jCI/AAAAAAAAACA/1VP5KlZoefI/s320/DSC00018.JPG" alt="Capacitor is burst opened" width="320" height="240" border="0" align="absmiddle" /&gt;&lt;/a&gt;
&lt;p&gt;In the begin, I aware of the burst opened of the capacitor.&lt;/p&gt;&lt;/div&gt;
&lt;div class="imgtext" style="width:320px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_JRrv6_-8JRo/RZMNwtT6jDI/AAAAAAAAACQ/oYoBsPlM1Ks/s1600-h/DSC00025.jpg"&gt;&lt;img src="http://2.bp.blogspot.com/_JRrv6_-8JRo/RZMNwtT6jDI/AAAAAAAAACQ/oYoBsPlM1Ks/s320/DSC00025.jpg" alt="The voltage switching" width="313" height="320" border="0" /&gt;&lt;/a&gt;
&lt;p&gt;The power issue were burned because of careless Orlando mobile the voltage switching.&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;After checking only these parts were burned (already made a down):&lt;/p&gt;
&lt;div align="center"&gt;
&lt;div class="imgtext" style="width:320px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_JRrv6_-8JRo/RZMRItT6jEI/AAAAAAAAACc/KoWghJJ9T88/s1600-h/DSC00026.JPG"&gt;&lt;img src="http://2.bp.blogspot.com/_JRrv6_-8JRo/RZMRItT6jEI/AAAAAAAAACc/KoWghJJ9T88/s320/DSC00026.JPG" alt="Capacitor" width="320" height="240" border="0" /&gt;&lt;/a&gt;
&lt;p&gt;Capacitor: 470μF 200V&lt;/p&gt;&lt;/div&gt;
&lt;div class="imgtext" style="width:320px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_JRrv6_-8JRo/RZMR2dT6jFI/AAAAAAAAACk/Jf43FhZYbXU/s1600-h/DSC00027.JPG"&gt;&lt;img src="http://1.bp.blogspot.com/_JRrv6_-8JRo/RZMR2dT6jFI/AAAAAAAAACk/Jf43FhZYbXU/s320/DSC00027.JPG" alt="Fuse" width="320" height="240" border="0" /&gt;&lt;/a&gt;
&lt;p&gt;Fuse: 6.3A 250V&lt;/p&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;p style="padding-top:16px;"&gt;Next article: &lt;a href="http://codetrinis.blogspot.com/2007/01/power-issus-off-part-2.html"&gt;Power issue off [part 2]&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-3898092904960111023?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/3898092904960111023/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=3898092904960111023&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/3898092904960111023'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/3898092904960111023'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/12/issus-power-off.html' title='Power issue off [part 1]'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_JRrv6_-8JRo/RZK-ptT6jBI/AAAAAAAAAB4/h8xXFGpz83Y/s72-c/DSC00017.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-387829309378203035</id><published>2006-12-25T14:19:00.000-03:00</published><updated>2008-11-13T01:57:41.525-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Problem'/><category scheme='http://www.blogger.com/atom/ns#' term='Game'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><title type='text'>HLTV Error</title><content type='html'>&lt;div align="center"&gt;
&lt;div class="imgtext" style="width:410px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_JRrv6_-8JRo/RZBp8dT6jAI/AAAAAAAAABs/0WDdT0QXr1s/s1600-h/HLTV-Error.png"&gt;&lt;img src="http://2.bp.blogspot.com/_JRrv6_-8JRo/RZBp8dT6jAI/AAAAAAAAABs/0WDdT0QXr1s/s320/HLTV-Error.png" alt="HLTV Error" width="320" height="162" border="0" align="absmiddle" /&gt;&lt;/a&gt;
&lt;p&gt;WARNING! System::RunFrame: system time difference &lt;= 0.&lt;/p&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;h4&gt;Solved by Codetrinis:&lt;/h4&gt;
&lt;p&gt;This problem may be related to some processor AMD. You can install the "AMD Dual-Core Optimizer" to solve the problem.&lt;/p&gt;
&lt;p&gt;The AMD Dual-Core Optimizer can help improve some PC gaming video performance by compensating for those applications that bypass the Windows API for timing by directly using the RDTSC (Read Time Stamp Counter) instruction. Applications that rely on RDTSC do not benefit from the logic in the operating system to properly account for the affect of power management mechanisms on the rate at which a processor core's Time Stamp Counter (TSC) is incremented. The AMD Dual-Core Optimizer helps to correct the resulting video performance effects or other incorrect timing effects that these applications may experience on dual-core processor systems, by periodically adjusting the core time-stamp-counters, so that they are synchronized.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-387829309378203035?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/387829309378203035/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=387829309378203035&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/387829309378203035'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/387829309378203035'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/12/hltv-error.html' title='HLTV Error'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_JRrv6_-8JRo/RZBp8dT6jAI/AAAAAAAAABs/0WDdT0QXr1s/s72-c/HLTV-Error.png' height='72' width='72'/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-2081787125761741504</id><published>2006-12-20T13:07:00.000-03:00</published><updated>2008-11-13T01:57:42.239-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Problem'/><category scheme='http://www.blogger.com/atom/ns#' term='Game'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Graphics'/><title type='text'>Graphics Error</title><content type='html'>&lt;div align="center"&gt;
&lt;div class="imgtext" style="width:320px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_JRrv6_-8JRo/RYlgx9T6i5I/AAAAAAAAAAY/H0pEhSmiYUo/s1600-h/de_dust20000.jpg"&gt;&lt;img src="http://1.bp.blogspot.com/_JRrv6_-8JRo/RYlgx9T6i5I/AAAAAAAAAAY/H0pEhSmiYUo/s320/de_dust20000.jpg" alt="Graphics Error in CS:S" width="320" height="240" border="0" align="absmiddle" /&gt;&lt;/a&gt;
&lt;p&gt;Graphics Error in Counter-Strike Source&lt;/p&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;h4&gt;Answered by Jacob Koeck (EVGA Customer Service):&lt;/h4&gt;
&lt;p&gt;This problem may be related to a power issue, and you will want to check the voltages in your bios setup. You can usually get into your bios setup by tapping F1, F2, or Del upon boot. There should be a hardware monitor under a power section somewhere or a PC Health status section that will list the voltage readings. You will want to make sure that the 12v rail is not dropping below 11.80v. This would indicate that the machine is becoming underpowered and is most likely the source of the problem.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-2081787125761741504?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/2081787125761741504/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=2081787125761741504&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/2081787125761741504'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/2081787125761741504'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/12/graphics-error.html' title='Graphics Error'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_JRrv6_-8JRo/RYlgx9T6i5I/AAAAAAAAAAY/H0pEhSmiYUo/s72-c/de_dust20000.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-370101913025918472</id><published>2006-12-04T19:16:00.000-03:00</published><updated>2006-12-30T08:58:31.244-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blog'/><title type='text'>New blog established</title><content type='html'>&lt;p&gt;Today, I established a new blog: "&lt;a href="http://conoceya.blogspot.com/" title="Go to 'Conoce Ya!'" target="_blank"&gt;Conoce Ya!&lt;/a&gt;". The blog's purpose is to let all our friends can better understand each other.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-370101913025918472?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/370101913025918472/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=370101913025918472&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/370101913025918472'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/370101913025918472'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/12/new-blog-was-created.html' title='New blog established'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-116242178688389601</id><published>2006-11-01T19:53:00.000-03:00</published><updated>2006-12-31T09:16:48.905-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Project'/><category scheme='http://www.blogger.com/atom/ns#' term='Life'/><title type='text'>4 poems</title><content type='html'>&lt;p&gt;I was wrote 4 poem in the morning. I found that I was a good poet.&lt;/p&gt;
&lt;h4&gt;1. Dearest Heart&lt;/h4&gt;
&lt;p style="text-indent:0em;"&gt;The world is complicit.&lt;br /&gt;
The world is hard&lt;br /&gt;
I'm living with loving.&lt;br /&gt;
But I will remain deeply in my heart.&lt;br /&gt;
&lt;br /&gt;
I'm waiting for her love.&lt;br /&gt;
I will make the treasure.&lt;br /&gt;
We will do a longer exist.&lt;br /&gt;
But we are late to retrace our steps.&lt;br /&gt;
&lt;br /&gt;
The water has long gone under the bridge.&lt;br /&gt;
So here let me come close to you.&lt;br /&gt;
I have no desire to see you anymore.&lt;br /&gt;
I will forget forever all about you.&lt;br /&gt;
&lt;br /&gt;
I can't hold back anymore this burning feeling.&lt;br /&gt;
This is the moment to bid you my last farewell.&lt;br /&gt;
You know that the world is complicit.&lt;br /&gt;
Bye forever.&lt;/p&gt;
&lt;h4&gt;2. Holiday&lt;/h4&gt;
&lt;p style="text-indent:0em;"&gt;Holiday is the true day.&lt;br /&gt;
We're living in the city.&lt;br /&gt;
We're walking in the road.&lt;br /&gt;
We're running in the street.&lt;br /&gt;
&lt;br /&gt;
Holiday is the fun day.&lt;br /&gt;
We're funning in the city.&lt;br /&gt;
We're going to sing.&lt;br /&gt;
We're going to dance.&lt;br /&gt;
&lt;br /&gt;
Holiday is the game day.&lt;br /&gt;
We're playing in the city.&lt;br /&gt;
We will lose the cash.&lt;br /&gt;
We will show we style.&lt;br /&gt;
&lt;br /&gt;
Holiday is the lucky day.&lt;br /&gt;
We're agree have this day.&lt;br /&gt;
That we can fun.&lt;br /&gt;
That we can game.&lt;/p&gt;
&lt;h4&gt;3. My live&lt;/h4&gt;
&lt;p style="text-indent:0em;"&gt;The street is good and clean.&lt;br /&gt;
My live is full happiness.&lt;br /&gt;
But when you're being in my live.&lt;br /&gt;
My live is change.&lt;br /&gt;
&lt;br /&gt;
The air is best and clear.&lt;br /&gt;
I'm living with love for you.&lt;br /&gt;
But when you're being love by other.&lt;br /&gt;
My world is change.&lt;br /&gt;
&lt;br /&gt;
The sky is black and dark.&lt;br /&gt;
My heart was break and lost.&lt;br /&gt;
I lost my own. I lost my style.&lt;br /&gt;
I lost my heart for your cause.&lt;br /&gt;
&lt;br /&gt;
The world will be blue and clean.&lt;br /&gt;
I will live with trust and hope.&lt;br /&gt;
I will forget you forever.&lt;br /&gt;
I will returns in my live.&lt;/p&gt;
&lt;h4&gt;4. Rainbow&lt;/h4&gt;
&lt;p style="text-indent:0em;"&gt;Someone see the rainbow way is high.&lt;br /&gt;
There's my bridge that I want be with you.&lt;br /&gt;
We're standing there to see the sky.&lt;br /&gt;
And we will hear the song of wind.&lt;br /&gt;
&lt;br /&gt;
Somebody see the rainbow skies are blue.&lt;br /&gt;
That is your dreams that really do come true.&lt;br /&gt;
The dreams of you're going to kiss me.&lt;br /&gt;
And I will kiss you with my love.&lt;br /&gt;
&lt;br /&gt;
Someday you will wish upon a star&lt;br /&gt;
And wake up the clouds are far behind you.&lt;br /&gt;
You're sitting here to wish your star.&lt;br /&gt;
And I will sit with you wait you wish the star.&lt;br /&gt;
&lt;br /&gt;
Somewhere the bluebirds fly over the rainbow.&lt;br /&gt;
Birds fly over the rainbow but why can't I?&lt;br /&gt;
If the little bluebirds fly can happy.&lt;br /&gt;
Birds fly beyond the rainbow but why can't I?&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-116242178688389601?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/116242178688389601/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=116242178688389601&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/116242178688389601'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/116242178688389601'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/11/4-poems.html' title='4 poems'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-116224366716483514</id><published>2006-10-30T17:34:00.000-03:00</published><updated>2006-12-31T09:16:53.341-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Life'/><title type='text'>I hurt my leg on Saturday</title><content type='html'>&lt;p&gt;Saturday, I hurt my legs when I riding a bicycle on the way towards to home of my friend. This photograph was taken on Sunday, then I have good legs a lot. :)&lt;/p&gt;
&lt;div align="center"&gt;&lt;a href="http://photos1.blogger.com/blogger/8146/3751/1600/hurt%20leg.jpg" target="_self" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img class="imgtext" src="http://photos1.blogger.com/blogger/8146/3751/320/hurt%20leg.jpg" alt="Hurt leg" width="320" height="240" border="0" align="absmiddle" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-116224366716483514?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/116224366716483514/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=116224366716483514&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/116224366716483514'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/116224366716483514'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/10/i-hurt-my-leg-in-saturday.html' title='I hurt my leg on Saturday'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-116216689760012089</id><published>2006-10-29T21:01:00.000-03:00</published><updated>2006-12-31T09:17:01.939-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Game'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Counter-Strike'/><title type='text'>For the "Counter-Strike"</title><content type='html'>&lt;p&gt;Today, I re-configured my computer so that I can better play the "Counter-Strike".&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I inserted my mouse in the USB port, because USB port provide 125Hz, and PS/2 port only 40Hz(Windows9X) or 60Hz(WindowsNT).&lt;/li&gt;
&lt;li&gt;I used cracked file "usbport.sys" to replace a system file. The cracked file can up the USB rate above 125Hz, my USB rate is 500Hz now.&lt;/li&gt;
&lt;li&gt;I adjusted the desktop resolution and games resolution to 640*480.&lt;/li&gt;
&lt;li&gt;I changed the clicking sensitivity for the mouse on the Regedit, the clicking sensitivity for the mouse is 1 now.&lt;/li&gt;
&lt;li&gt;I reduced the sensitivity of the mouse on Windows, I chose the sensitivity "
3".&lt;/li&gt;
&lt;li&gt;But in the "Counter-Strike" need higher mouse sensitivity, because in which the mouse moving very slowly. I adjusted the mouse sensitivity to "9" in the "Counter-Strike".&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Now, I try to play the "Counter-Strike", I feel terrific, I can killed more player! You want to try to change your computer?&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-116216689760012089?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/116216689760012089/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=116216689760012089&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/116216689760012089'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/116216689760012089'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/10/about-cs.html' title='For the &quot;Counter-Strike&quot;'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-116216585448569962</id><published>2006-10-29T20:31:00.005-03:00</published><updated>2008-09-20T12:46:07.838-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Project'/><category scheme='http://www.blogger.com/atom/ns#' term='Language C'/><category scheme='http://www.blogger.com/atom/ns#' term='Code'/><title type='text'>[CODE]Encrytion</title><content type='html'>&lt;p&gt;This is my other project, completed in June 5, 2006. This is a program for encrypted information.&lt;/p&gt;
&lt;h4&gt;The C++ code:&lt;/h4&gt;
&lt;code&gt;/* codified.c */
#include &amp;lt;CONIO.H&amp;gt;
#include &amp;lt;STDIO.H&amp;gt;
#include &amp;lt;STRING.H&amp;gt;
void coding(char string[])
{
 int key = 1;
 int Len = strlen(string);
 for(int I = 0;I &amp;lt;= Len-1; I++)
 {
  if(string[I] != ' ') string[I] += key;
  else string[I] = '8';
  key++;
  if(key &amp;gt; 3) key = 1;
 }
 int Div = Len / 2;
 if(Div &amp;lt;= 0) Div = 1;
 int N;
 for(int M = 0;M &amp;lt; Div;M++)
 {
  N = 0;
  while(M+N &amp;lt; Len)
  {
   printf("%c", string[M+N]);
   N += Div;
  }
  putchar(' ');
 }
 putchar('\b');
}
int main(void) {
 char *Text;
 int I = 0;
 clrscr();
 printf("Text:");
 while((Text[I] = getchar()) != '\n')
 {
  I++;
 }
 Text[strlen(Text) - 1] = '\0';
 printf("Code:");coding(Text);
 getch();
 return(0);
}&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-116216585448569962?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/116216585448569962/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=116216585448569962&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/116216585448569962'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/116216585448569962'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/10/codeencrytion.html' title='[CODE]Encrytion'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-116216626481951610</id><published>2006-10-29T19:51:00.002-03:00</published><updated>2008-09-20T12:49:56.632-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Project'/><category scheme='http://www.blogger.com/atom/ns#' term='Language C'/><category scheme='http://www.blogger.com/atom/ns#' term='Code'/><title type='text'>[CODE]Login</title><content type='html'>&lt;p&gt;This is a DOS login program, a password can show star, not just a hidden input.&lt;/p&gt;
&lt;h4&gt;The C++ code:&lt;/h4&gt;
&lt;code&gt;/* login.c */
#include &amp;lt;CONIO.H&amp;gt;
#include &amp;lt;PROCESS.H&amp;gt;
#include &amp;lt;STDIO.H&amp;gt;
#include &amp;lt;STDLIB.H&amp;gt;
#include &amp;lt;STRING.H&amp;gt;

int main(void)
{
 char valUser[10] = &amp;quot;&amp;quot;; /*Set All='\0'*/
 char valPass[10] = &amp;quot;&amp;quot;; /*Set All='\0'*/
 clrscr(); /*Clear Screen*/
 printf(&amp;quot;Username:&amp;quot;);
 scanf(&amp;quot;%10s&amp;quot;,valUser); /*Input Username*/
 printf(&amp;quot;Password:&amp;quot;);
 for(int I = 0;(valPass[I] = getch()) != '\r' &amp;amp;&amp;amp; I &amp;lt; 8;++I)
 {
  putchar('*');
 } /*Input Password*/
 valPass[strlen(valPass) - 1] = '\0'; /*Set '\r'='\0' */
 putchar('\n'); /*New Line*/
 if((strcmp(valUser,&amp;quot;Admin&amp;quot;) == 0) &amp;amp;&amp;amp; (strcmp(valPass,&amp;quot;C0DE&amp;quot;) == 0))
 {
  printf(&amp;quot;Login!&amp;quot;);
 }
 else
 {
  printf(&amp;quot;Login failed.&amp;quot;);
 } /*If Username is Admin And Password is C0DE Then Login.*/
 getch();
 return(0);
}&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-116216626481951610?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/116216626481951610/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=116216626481951610&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/116216626481951610'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/116216626481951610'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/10/codelogin.html' title='[CODE]Login'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-116165097800444482</id><published>2006-10-23T21:45:00.001-03:00</published><updated>2008-09-20T12:51:52.152-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Project'/><category scheme='http://www.blogger.com/atom/ns#' term='Visual Basic'/><category scheme='http://www.blogger.com/atom/ns#' term='Code'/><title type='text'>[CODE]Timer</title><content type='html'>&lt;p&gt;This is the third project, completed on December 12, 2005, is a timer.&lt;/p&gt;
&lt;h4&gt;The Visual Basic code:&lt;/h4&gt;
&lt;code&gt;'frmMain.frm
VERSION 5.00
Object = &amp;quot;{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0&amp;quot;; &amp;quot;COMDLG32.OCX&amp;quot;
Begin VB.Form frmMain 
   Appearance      =   0  'Flat
   BackColor       =   &amp;amp;H80000005&amp;amp;
   BorderStyle     =   1  'Fixed Single
   Caption         =   &amp;quot;Timer&amp;quot;
   ClientHeight    =   3225
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   4710
   Icon            =   &amp;quot;frmMain.frx&amp;quot;:0000
   LinkTopic       =   &amp;quot;Timer&amp;quot;
   MaxButton       =   0   'False
   MinButton       =   0   'False
   NegotiateMenus  =   0   'False
   ScaleHeight     =   3225
   ScaleWidth      =   4710
   StartUpPosition =   2  'Center Screen
   Begin VB.Timer tmrTimer 
      Enabled         =   0   'False
      Interval        =   1
      Left            =   0
      Top             =   0
   End
   Begin VB.CommandButton cmdStop 
      Appearance      =   0  'Flat
      Cancel          =   -1  'True
      Caption         =   &amp;quot;107&amp;quot;
      Enabled         =   0   'False
      Height          =   180
      Left            =   0
      Style           =   1  'Graphical
      TabIndex        =   15
      Top             =   0
      Width           =   90
   End
   Begin VB.CommandButton cmdStart 
      Appearance      =   0  'Flat
      Caption         =   &amp;quot;106&amp;quot;
      Enabled         =   0   'False
      Height          =   180
      Left            =   0
      Style           =   1  'Graphical
      TabIndex        =   14
      Top             =   0
      Width           =   90
   End
   Begin VB.Frame fraSet 
      Appearance      =   0  'Flat
      BackColor       =   &amp;amp;H80000005&amp;amp;
      Caption         =   &amp;quot;100&amp;quot;
      ForeColor       =   &amp;amp;H80000008&amp;amp;
      Height          =   3135
      Left            =   0
      TabIndex        =   0
      Top             =   0
      Width           =   4575
      Begin VB.CommandButton cmdExec 
         Appearance      =   0  'Flat
         Caption         =   &amp;quot;..&amp;quot;
         Height          =   255
         Left            =   840
         Style           =   1  'Graphical
         TabIndex        =   16
         Top             =   1320
         Width           =   255
      End
      Begin MSComDlg.CommonDialog cmoOpen 
         Left            =   0
         Top             =   0
         _ExtentX        =   847
         _ExtentY        =   847
         _Version        =   393216
         DefaultExt      =   &amp;quot;exe&amp;quot;
         DialogTitle     =   &amp;quot;Start&amp;quot;
         Filter          =   &amp;quot;Program (*.exe)|*.exe&amp;quot;
         InitDir         =   &amp;quot;C:\&amp;quot;
      End
      Begin VB.TextBox txtShow 
         Appearance      =   0  'Flat
         Height          =   270
         Index           =   1
         Left            =   480
         MaxLength       =   250
         TabIndex        =   12
         Top             =   1320
         Width           =   375
      End
      Begin VB.TextBox txtShow 
         Appearance      =   0  'Flat
         Height          =   270
         Index           =   0
         Left            =   480
         MaxLength       =   250
         TabIndex        =   11
         Top             =   960
         Width           =   375
      End
      Begin VB.OptionButton optMeans 
         Appearance      =   0  'Flat
         BackColor       =   &amp;amp;H80000005&amp;amp;
         Caption         =   &amp;quot;103&amp;quot;
         ForeColor       =   &amp;amp;H80000008&amp;amp;
         Height          =   255
         Index           =   1
         Left            =   720
         TabIndex        =   9
         Top             =   600
         Width           =   855
      End
      Begin VB.OptionButton optMeans 
         Appearance      =   0  'Flat
         BackColor       =   &amp;amp;H80000005&amp;amp;
         Caption         =   &amp;quot;102&amp;quot;
         ForeColor       =   &amp;amp;H80000008&amp;amp;
         Height          =   255
         Index           =   0
         Left            =   120
         TabIndex        =   8
         Top             =   600
         Value           =   -1  'True
         Width           =   1000
      End
      Begin VB.ComboBox cboTime 
         Appearance      =   0  'Flat
         Height          =   300
         Index           =   2
         ItemData        =   &amp;quot;frmMain.frx&amp;quot;:0442
         Left            =   2280
         List            =   &amp;quot;frmMain.frx&amp;quot;:052C
         TabIndex        =   6
         Text            =   &amp;quot;0&amp;quot;
         Top             =   200
         Width           =   530
      End
      Begin VB.ComboBox cboTime 
         Appearance      =   0  'Flat
         Height          =   300
         Index           =   1
         ItemData        =   &amp;quot;frmMain.frx&amp;quot;:0616
         Left            =   1320
         List            =   &amp;quot;frmMain.frx&amp;quot;:0700
         TabIndex        =   4
         Text            =   &amp;quot;0&amp;quot;
         Top             =   200
         Width           =   530
      End
      Begin VB.ComboBox cboTime 
         Appearance      =   0  'Flat
         Height          =   300
         Index           =   0
         ItemData        =   &amp;quot;frmMain.frx&amp;quot;:07EA
         Left            =   360
         List            =   &amp;quot;frmMain.frx&amp;quot;:0844
         TabIndex        =   2
         Text            =   &amp;quot;0&amp;quot;
         Top             =   200
         Width           =   530
      End
      Begin VB.Label lblCommand 
         Appearance      =   0  'Flat
         AutoSize        =   -1  'True
         BackColor       =   &amp;amp;H80000005&amp;amp;
         BackStyle       =   0  'Transparent
         Caption         =   &amp;quot;105&amp;quot;
         ForeColor       =   &amp;amp;H80000008&amp;amp;
         Height          =   180
         Left            =   105
         TabIndex        =   13
         Top             =   1320
         Width           =   270
      End
      Begin VB.Label lblMessenge 
         Appearance      =   0  'Flat
         AutoSize        =   -1  'True
         BackColor       =   &amp;amp;H80000005&amp;amp;
         BackStyle       =   0  'Transparent
         Caption         =   &amp;quot;104&amp;quot;
         ForeColor       =   &amp;amp;H80000008&amp;amp;
         Height          =   180
         Left            =   105
         TabIndex        =   10
         Top             =   960
         Width           =   270
      End
      Begin VB.Label lblTime 
         Appearance      =   0  'Flat
         AutoSize        =   -1  'True
         BackColor       =   &amp;amp;H80000005&amp;amp;
         BackStyle       =   0  'Transparent
         Caption         =   &amp;quot;110&amp;quot;
         ForeColor       =   &amp;amp;H80000008&amp;amp;
         Height          =   180
         Index           =   2
         Left            =   2880
         TabIndex        =   7
         Top             =   240
         Width           =   270
      End
      Begin VB.Label lblTime 
         Appearance      =   0  'Flat
         AutoSize        =   -1  'True
         BackColor       =   &amp;amp;H80000005&amp;amp;
         BackStyle       =   0  'Transparent
         Caption         =   &amp;quot;109&amp;quot;
         ForeColor       =   &amp;amp;H80000008&amp;amp;
         Height          =   180
         Index           =   1
         Left            =   1920
         TabIndex        =   5
         Top             =   240
         Width           =   270
      End
      Begin VB.Label lblTime 
         Appearance      =   0  'Flat
         AutoSize        =   -1  'True
         BackColor       =   &amp;amp;H80000005&amp;amp;
         BackStyle       =   0  'Transparent
         Caption         =   &amp;quot;108&amp;quot;
         ForeColor       =   &amp;amp;H80000008&amp;amp;
         Height          =   180
         Index           =   0
         Left            =   960
         TabIndex        =   3
         Top             =   240
         Width           =   270
      End
      Begin VB.Label lblSet 
         Appearance      =   0  'Flat
         AutoSize        =   -1  'True
         BackColor       =   &amp;amp;H80000005&amp;amp;
         BackStyle       =   0  'Transparent
         Caption         =   &amp;quot;101&amp;quot;
         ForeColor       =   &amp;amp;H80000008&amp;amp;
         Height          =   180
         Left            =   105
         TabIndex        =   1
         Top             =   240
         Width           =   270
      End
   End
End
Attribute VB_Name = &amp;quot;frmMain&amp;quot;
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Const BColor1 As String = &amp;amp;HFF8080, BColor2 As String = &amp;amp;HFFC0C0
Dim txtTime(0 To 2) As Integer
Dim I As Integer

Private Sub cboTime_Change(Index As Integer)
    With cboTime.Item(Index)
        If (IsNumeric(.Text) = True) Then
            If (.Text &amp;lt; 0) Then
                .Text = 0
            Else
                Select Case Index
                    Case 0
                        If .Text &amp;gt; 23 Then .Text = 23
                    Case Else
                        If .Text &amp;gt; 59 Then .Text = 59
                End Select
            End If
        Else
            .Text = 0
            .SetFocus
        End If
        .Text = CInt(.Text)
    End With
End Sub

Private Sub cmdExec_Click()
    cmoOpen.ShowOpen
    txtShow.Item(1).Text = cmoOpen.FileName
End Sub

Private Sub cmdStart_Click()
    If optMeans(1).Value = True Then
        txtTime(0) = Hour(Time)
        txtTime(1) = Minute(Time)
        txtTime(2) = Second(Time)
    End If
    tmrTimer.Enabled = True
    For I = 0 To 1
        txtShow.Item(I).Locked = True
        cboTime.Item(I).Locked = True
        optMeans.Item(I).Enabled = False
    Next
    cboTime.Item(2).Locked = True
    cmdStop.Enabled = True
    cmdStart.Enabled = False
    cmdStop.Default = True
End Sub

Private Sub cmdStop_Click()
    tmrTimer.Enabled = False
    For I = 0 To 2
        cboTime(I).Locked = False
        txtTime(I) = 0
    Next
    For I = 0 To 1
        optMeans.Item(I).Enabled = True
        txtShow(I).Locked = False
    Next
    cmdStart.Enabled = True
    cmdStop.Enabled = False
    cmdStart.Default = True
End Sub

Private Sub Form_Load()
    Me.BackColor = BColor1
    fraSet.BackColor = BColor1
    For I = 0 To 2
        cboTime.Item(I).BackColor = BColor2
        txtTime(I) = 0
    Next
    For I = 0 To 1
        optMeans.Item(I).BackColor = BColor1
        txtShow.Item(I).BackColor = BColor2
    Next
    cmdExec.BackColor = BColor2
    cmdStart.BackColor = BColor2
    cmdStop.BackColor = BColor2
    LoadRes
    cmdStart.Default = True
End Sub

Private Sub Form_Resize()
    'txtShow(0) Resize
    txtShow.Item(0).Left = lblMessenge.Left + lblMessenge.Width
    txtShow.Item(0).Top = lblMessenge.Top
    txtShow.Item(0).Height = lblMessenge.Height
    txtShow.Item(0).Width = lblTime.Item(2).Left - txtShow.Item(0).Left + lblTime.Item(2).Width
    
    'cmdExec Resize
    cmdExec.Left = lblCommand.Left + lblCommand.Width + txtShow(1).Width
    cmdExec.Top = lblCommand.Top
    cmdExec.Height = lblCommand.Height + 70
    cmdExec.Width = 300
    
    'txtShow(1) Resize
    txtShow.Item(1).Left = txtShow.Item(0).Left
    txtShow.Item(1).Top = lblCommand.Top
    txtShow.Item(1).Height = lblCommand.Height
    txtShow.Item(1).Width = txtShow.Item(0).Width - cmdExec.Width
    
    'fraSet Resize
    fraSet.Left = 100
    fraSet.Top = 100
    fraSet.Height = lblCommand.Top + lblCommand.Height + 150
    fraSet.Width = txtShow.Item(0).Left + txtShow.Item(0).Width + 120
    
    'Other Resize
    lblSet.Top = fraSet.Top + 150
    
    cboTime.Item(0).Left = lblSet.Left + lblSet.Width
    cboTime.Item(0).Top = lblSet.Top - 50
    
    lblTime.Item(0).Left = cboTime(0).Left + cboTime(0).Width + 50
    lblTime.Item(0).Top = lblSet.Top
    lblTime.Item(0).Height = lblSet.Height
    lblTime.Item(0).Width = 250
    
    cboTime.Item(1).Left = lblTime(0).Left + lblTime(0).Width + 20
    cboTime.Item(1).Top = lblSet.Top - 50
    
    lblTime.Item(1).Left = cboTime(1).Left + cboTime(1).Width + 50
    lblTime.Item(1).Top = lblSet.Top
    lblTime.Item(1).Height = lblTime.Item(0).Height
    lblTime.Item(1).Width = lblTime.Item(0).Width
    
    cboTime.Item(2).Left = lblTime(1).Left + lblTime(1).Width + 20
    cboTime.Item(2).Top = lblSet.Top - 50
    
    lblTime.Item(2).Left = cboTime(2).Left + cboTime(2).Width + 50
    lblTime.Item(2).Top = lblSet.Top
    lblTime.Item(2).Height = lblTime.Item(0).Height
    lblTime.Item(2).Width = lblTime.Item(0).Width
    
    'cmdStart Resize
    cmdStart.Left = Me.ScaleWidth / 2 - cmdStart.Width - 100
    cmdStart.Top = fraSet.Top + fraSet.Height + 100
    cmdStart.Height = 380
    cmdStart.Width = 1050
    
    'cmdStop Resize
    cmdStop.Left = Me.ScaleWidth / 2 + 100
    cmdStop.Top = fraSet.Top + fraSet.Height + 100
    cmdStop.Height = cmdStart.Height
    cmdStop.Width = cmdStart.Width
    
    'optMeans Resize
    optMeans.Item(0).Left = cmdStart.Left
    optMeans.Item(1).Left = cmdStop.Left
    
    Me.Width = (fraSet.Left * 3) + fraSet.Width
    Me.Height = cmdStart.Top + cmdStart.Height + 450
End Sub

Private Sub tmrTimer_Timer()
    If Hour(Time) = txtTime(0) + cboTime.Item(0).Text And Minute(Time) = txtTime(1) + cboTime.Item(1).Text And Second(Time) = txtTime(2) + cboTime.Item(2).Text Then
        On Error Resume Next
        Dim Temp
        cmdStop_Click
        If (txtShow.Item(1) &amp;lt;&amp;gt; &amp;quot;&amp;quot;) Then
            Temp = Shell(txtShow.Item(1), vbNormalFocus)
            If (Temp = vbNullString) Then Temp = MsgBox(&amp;quot;Error: &amp;quot; &amp;amp; txtShow.Item(1), vbCritical)
        End If
        If (txtShow.Item(0) &amp;lt;&amp;gt; &amp;quot;&amp;quot;) Then
            Temp = MsgBox(txtShow.Item(0), 64)
        End If
        Err = 0
    End If
End Sub

Private Sub LoadRes()
    Me.Caption = LoadResString(111)
    fraSet.Caption = LoadResString(100)
    lblSet.Caption = LoadResString(101)
    optMeans(0).Caption = LoadResString(102)
    optMeans(1).Caption = LoadResString(103)
    lblMessenge.Caption = LoadResString(104)
    lblCommand.Caption = LoadResString(105)
    cmdStart.Caption = LoadResString(106)
    cmdStop.Caption = LoadResString(107)
    lblTime(0).Caption = LoadResString(108)
    lblTime(1).Caption = LoadResString(109)
    lblTime(2).Caption = LoadResString(110)
End Sub

Private Sub txtShow_Change(Index As Integer)
    If (txtShow.Item(Index).Text &amp;lt;&amp;gt; &amp;quot;&amp;quot;) Then
        cmdStart.Enabled = True
    Else
        cmdStart.Enabled = False
    End If
End Sub
&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-116165097800444482?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/116165097800444482/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=116165097800444482&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/116165097800444482'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/116165097800444482'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/10/codetimer.html' title='[CODE]Timer'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-116052793113389633</id><published>2006-10-10T20:50:00.000-04:00</published><updated>2006-12-30T08:55:40.966-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Test'/><category scheme='http://www.blogger.com/atom/ns#' term='Life'/><title type='text'>Schoolmates are angry!</title><content type='html'>&lt;p&gt;I had a test of geometry in the morning, but I prohibits anybody copied to me in the test, because the teacher was watching over me. Now, a lot of schoolmates are angry with me. :(&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-116052793113389633?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/116052793113389633/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=116052793113389633&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/116052793113389633'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/116052793113389633'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/10/schoolmates-are-angry.html' title='Schoolmates are angry!'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-115785576278250672</id><published>2006-09-09T22:25:00.001-04:00</published><updated>2008-09-20T12:53:23.723-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Project'/><category scheme='http://www.blogger.com/atom/ns#' term='Language C'/><category scheme='http://www.blogger.com/atom/ns#' term='Code'/><title type='text'>[CODE]Self-replication</title><content type='html'>&lt;p&gt;This is the second project, completed on December 10, 2005. This is a sample program of self-replication, it can self-replication to C:\Test.exe.&lt;/p&gt;
&lt;h4&gt;The C++ code:&lt;/h4&gt;
&lt;code&gt;/* cpself.c */
#include &amp;lt;STDIO.H&amp;gt;
#include &amp;lt;CONIO.H&amp;gt;
int main(int argc, char *argv[])
{
 clrscr();
 if(argc != 0)
 {
  FILE *in,*out;
  in=fopen(argv[0],&amp;quot;rb&amp;quot;);
  if((out = fopen(&amp;quot;C:\\TEST.EXE&amp;quot;,&amp;quot;wb&amp;quot;)) == NULL) return(1);
  while(!feof(in))
  {
   fputc(fgetc(in),out);
  }
  fclose(in);
  fclose(out);
 }
 return(0);
}&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-115785576278250672?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/115785576278250672/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=115785576278250672&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/115785576278250672'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/115785576278250672'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/09/codecopy-self.html' title='[CODE]Self-replication'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-115785498629110050</id><published>2006-09-09T19:34:00.002-04:00</published><updated>2008-09-20T12:55:42.838-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Project'/><category scheme='http://www.blogger.com/atom/ns#' term='Code'/><title type='text'>[CODE]Varidator of the RUT</title><content type='html'>&lt;p&gt;This is my first project, was completed in September 28, 2005. This is a code, used to verification of the RUT(chile identity card numbers).&lt;/p&gt;
&lt;h4&gt;The JavaScript code:&lt;/h4&gt;
&lt;code&gt;/* checkrut.js */
function CheckRUT(RUT) {
 var Temp1 = '';
 var Sign = &amp;quot; .-&amp;quot;;
 var Numbers = &amp;quot;1234567890kK&amp;quot;;
 for(var I = 0;I &amp;lt;= (RUT.length-1);I++) {
  if (Sign.indexOf(RUT.charAt(I).toLowerCase()) == -1) Temp1 += RUT.charAt(I).toLowerCase();
 }
 if (Temp1.length &amp;lt; 8) return &amp;quot;litter&amp;quot;;
 for(var I = 0;I &amp;lt; Temp1.length;I++) {
  if (Numbers.indexOf(Temp1.charAt(I).toLowerCase()) == -1) return false;
 }
 var StartNum = 2;
 var Temp2 = 0;
 for(var I = (Temp1.length - 2);I &amp;gt;= 0;I--) {
  Temp2 += (Temp1.charAt(I).toLowerCase() * StartNum);
  if (StartNum == 7) StartNum = 2;
  else StartNum++;
 }
 var Temp3 = (Temp2 % 11);
 var Temp4 = '';
 if (Temp3 == 1) Temp4 = &amp;quot;k&amp;quot;;
 else if (Temp3 == 0) Temp4 = &amp;quot;0&amp;quot;;
 else Temp4 = (11 - Temp3);
 if (Temp4 != Temp1.charAt(Temp1.length - 1).toLowerCase()) return &amp;quot;nothing&amp;quot;;
 else return true;
}&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-115785498629110050?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/115785498629110050/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=115785498629110050&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/115785498629110050'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/115785498629110050'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/09/codevaridator-of-rut.html' title='[CODE]Varidator of the RUT'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-34089553.post-115775446701456903</id><published>2006-09-08T18:27:00.000-04:00</published><updated>2006-12-28T19:54:54.758-03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blog'/><title type='text'>Welcome</title><content type='html'>&lt;p&gt;Hello friends, this is my new blog, I am sure it would be an interesting blog. I saw here in my "PC Magazine - Chile (September, 2006)". I chose to build my blog here because I want to publish my life and some projects. I updated the blog might have been very slow, because I don't have a Internet access. I need to update my blog to a cyberbar but I don't have &lt;strong&gt;time&lt;/strong&gt; and &lt;strong&gt;money&lt;/strong&gt;. T.T&lt;/p&gt;
&lt;p&gt;Ok, let's we fun in my blog!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34089553-115775446701456903?l=codetrinis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codetrinis.blogspot.com/feeds/115775446701456903/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34089553&amp;postID=115775446701456903&amp;isPopup=true' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/115775446701456903'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34089553/posts/default/115775446701456903'/><link rel='alternate' type='text/html' href='http://codetrinis.blogspot.com/2006/09/welcome.html' title='Welcome'/><author><name>Fong-Wan Chau</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/-wzdtBoqEvbM/TiHvKi7wxRI/AAAAAAAAAIw/JN-9sVwJaFA/s220/AIbEiAIAAABECNigq732_Pbm1wEiC3ZjYXJkX3Bob3RvKihjY2I4ZmU3MzZiMjY0NGVkOTUzODc1N2Q4MGM1OWIxZDM5NWE3ZDZmMAGt75na4vq8uiatejBNMjr98-n6zw.jpg'/></author><thr:total>5</thr:total></entry></feed>
