<?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-3389665660621433219</id><updated>2011-04-21T18:46:37.641-07:00</updated><category term='web project'/><title type='text'>W.PSD</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://wpsdnet.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://wpsdnet.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>wpsdnet</name><uri>http://www.blogger.com/profile/16707290780300733350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>14</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3389665660621433219.post-7279116669907370123</id><published>2009-04-26T03:23:00.000-07:00</published><updated>2009-04-26T03:30:38.806-07:00</updated><title type='text'>CODE: between JS and PHP with JSON</title><content type='html'>Found one thing that i unable to do until now&lt;br /&gt;&lt;br /&gt;In the javascript if you use a formated json ( $H way ) you can't put it directly with document.write or in case you using Ajax prototype&lt;br /&gt;the $(elementID).update(json) or $(elementID).innerHTML = json&lt;br /&gt;will break your code, unless you use ajax mode send it to server first and let the php create it.&lt;br /&gt;&lt;br /&gt;The solution :&lt;br /&gt;you need to write it exactly like when you write using php and html there's no direct method to do this in prototype.&lt;br /&gt;I guess that's mean don't write a html thing in your js if you want a clean code let the php handle it nicely.&lt;br /&gt;&lt;br /&gt;In case you need this than try searching php equivalent to htmlentites or addslashes it usually work....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3389665660621433219-7279116669907370123?l=wpsdnet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wpsdnet.blogspot.com/feeds/7279116669907370123/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://wpsdnet.blogspot.com/2009/04/code-between-js-and-php-with-json.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/7279116669907370123'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/7279116669907370123'/><link rel='alternate' type='text/html' href='http://wpsdnet.blogspot.com/2009/04/code-between-js-and-php-with-json.html' title='CODE: between JS and PHP with JSON'/><author><name>wpsdnet</name><uri>http://www.blogger.com/profile/16707290780300733350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3389665660621433219.post-5972692279241189253</id><published>2009-04-17T08:41:00.000-07:00</published><updated>2009-04-24T02:21:56.467-07:00</updated><title type='text'>CODE: JSON from JS &gt; PHP</title><content type='html'>JSON from JS to PHP was much more easier or maybe difficult if you don't know how to use AJAX again I recommend using prototype as it's simplify ajax method a lot. &lt;span style="color: rgb(0, 0, 0);"&gt;You can get the code in &lt;a style="color: rgb(51, 51, 255);" href="http://www.prototypejs.org/"&gt; &lt;/a&gt;&lt;/span&gt;&lt;a style="color: rgb(51, 51, 255);" href="http://www.prototypejs.org/"&gt;&lt;cite&gt;www.&lt;b&gt;prototype&lt;/b&gt;js.org&lt;/cite&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(102, 0, 0);"&gt;jsfile.js&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;/span&gt;to preapare a json variable that compatible with php we use prototype's $H method add a slashes in every quote and then format to json with "toJSON()" function ( You might think of using slashes when passing variable from php to js using addslashes method, trust me it's not working. But correct me if you found another solution ).&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;&lt;span style="font-style: italic;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;function send_json_to_php() {&lt;br /&gt;var preparejson = $H&lt;span style="color: rgb(0, 0, 0);"&gt;({name:'Violetx', occupation:'characterx', age:30 });&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;/span&gt;  var json = preparejson.toJSON();&lt;br /&gt;&lt;br /&gt;//below is an ajax function -- prototype way&lt;br /&gt;new Ajax.Request('php_accept_json.php',{&lt;br /&gt;parameters: 'json='+json&lt;br /&gt;});&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(153, 0, 0);"&gt;php_accept_json.php&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;$json = $_POST['json'];&lt;br /&gt;$decode = json_decode(stripslashes($json));&lt;br /&gt;print_r($json);&lt;br /&gt;&lt;br /&gt;*Don't forget you need to stripslashes first before do json_decode&lt;br /&gt;&lt;br /&gt;//you will get below result&lt;br /&gt;stdClass Object&lt;br /&gt;(&lt;br /&gt; [name] =&gt; Violetx&lt;br /&gt; [occupation] =&gt; characterx&lt;br /&gt; [age] =&gt; 30&lt;br /&gt;)&lt;br /&gt;&lt;br /&gt;which you can access each value like this $json-&gt;name, $json-&gt;age, etc.&lt;br /&gt;&lt;br /&gt;Easy ? yep , this is only small thing but it will greatly help programmer. From &lt;a style="color: rgb(51, 51, 255);" href="http://wpsdnet.blogspot.com/2009/04/code-json-from-php-js.html"&gt;CODE: JSON from PHP &gt; JS&lt;/a&gt; article you remember we send a PHP json variable to javascript. you can pass that variable directly using ajax back to PHP and php still can read it using the same method in php_accecpt_json.php.&lt;br /&gt;&lt;br /&gt;You can imagine the advantage yourself&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;----------END----------&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3389665660621433219-5972692279241189253?l=wpsdnet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wpsdnet.blogspot.com/feeds/5972692279241189253/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://wpsdnet.blogspot.com/2009/04/code-json-from-js-php.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/5972692279241189253'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/5972692279241189253'/><link rel='alternate' type='text/html' href='http://wpsdnet.blogspot.com/2009/04/code-json-from-js-php.html' title='CODE: JSON from JS &amp;gt; PHP'/><author><name>wpsdnet</name><uri>http://www.blogger.com/profile/16707290780300733350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3389665660621433219.post-1217184899911678308</id><published>2009-04-17T08:09:00.000-07:00</published><updated>2009-04-17T09:01:30.810-07:00</updated><title type='text'>CODE: JSON from PHP &gt; JS</title><content type='html'>&lt;span style="color: rgb(0, 0, 0);"&gt;Ok for you love JSON this is how to pass json value to each language&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(153, 0, 0);"&gt;PHPJSON&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;php &gt; $test = array('name'=&gt;'Violetx', 'occupation'=&gt; 'characterx', 'age'=&gt; 30 );&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;php &gt; $json = htmlentities(json_encode($test));&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;php &gt; you can pass the $json to js using DOM like this&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt; onclick="jsfunction(\''.$json.'\')"&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(0, 0, 0);"&gt;Note:remember here if you use echo to wirte the third php line you need the backslash and quote ( \' ) between the value you want to give to js. the $json is a string, if you directly write with html you need quote ( ' )  only&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;We use htmlentities to make the json_encoded variable readable in html.&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;The code will pass nicely to your javascript function.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(102, 0, 0);"&gt;JSJSON&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;I use&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt; prototype&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);"&gt; js for manipulating js you can get the code in &lt;a style="color: rgb(51, 51, 255);" href="http://www.prototypejs.org/"&gt; &lt;/a&gt;&lt;/span&gt;&lt;a style="color: rgb(51, 51, 255);" href="http://www.prototypejs.org/"&gt;&lt;cite&gt;www.&lt;b&gt;prototype&lt;/b&gt;js.org&lt;/cite&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;js &gt; function jsfunction(json) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;js &gt;    var string = json.evalJSON();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;js &gt;    alert(string.name +' '+ string.occupation+' '+string.age);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;js &gt; }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;in your JS function you can directly  evalJSON it ( if you use prototype ) and viola you can directly access it like above code ( string.name, etc) .&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 0, 0); font-weight: bold;"&gt;What's the advantage ?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;Suppose you using DOM onclick to js and you need to give 3 or more value to javascript function, you end up something like this onclick="jsfunction(value,value,value,value)" .&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;Then in your javascript function you need to give each of them a variable name that sometime ( if you not strict in coding ) different than the variable  name you set in the php ( suppose you get the four value from database and it's render automaticly for each row ) &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;and later on maybe you need to put a mode value, a type value and so on and make your DOM onclick longer and longer and messy, and if you can manage it with array, I believe you will prefer do it with array.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;by using above method you simplify :&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-weight: bold;"&gt;From&lt;/span&gt;  onclick = "jsfunction(value,value,value,value)"&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-weight: bold;"&gt;To&lt;/span&gt;       $array = array('var1'=&gt;value,'var2'=&gt;value,'var3'=&gt;value,'var4'=&gt;value);&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-weight: bold;"&gt;From&lt;/span&gt;  jsfunction(var1,var2,var3,var4)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-weight: bold;"&gt;To&lt;/span&gt;       jsfunction(json)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-weight: bold;"&gt;From&lt;/span&gt;  defining variable name twice&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-weight: bold;"&gt;To&lt;/span&gt;       defining variable name once and use for the rest of the code&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Note: if you using prototype remember to enable mod_deflate for apache and strip all white space and comment from it, you can use the tool from the web.&lt;br /&gt;&lt;/span&gt;&lt;a style="color: rgb(51, 51, 255);" href="http://wpsdnet.blogspot.com/2009/04/code-json-from-js-php.html"&gt;&lt;span&gt;&lt;br /&gt;Next &gt; CODE: JSON from JS &gt; PHP&lt;/span&gt;&lt;/a&gt;&lt;span style="font-style: italic;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3389665660621433219-1217184899911678308?l=wpsdnet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wpsdnet.blogspot.com/feeds/1217184899911678308/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://wpsdnet.blogspot.com/2009/04/code-json-from-php-js.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/1217184899911678308'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/1217184899911678308'/><link rel='alternate' type='text/html' href='http://wpsdnet.blogspot.com/2009/04/code-json-from-php-js.html' title='CODE: JSON from PHP &amp;gt; JS'/><author><name>wpsdnet</name><uri>http://www.blogger.com/profile/16707290780300733350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3389665660621433219.post-9216656733344498066</id><published>2009-03-16T07:10:00.000-07:00</published><updated>2009-03-16T07:13:35.557-07:00</updated><title type='text'>The day when we share...</title><content type='html'>Share your love ..... that`s good ( universal of course )&lt;br /&gt;Share your money ... donating that`s good also&lt;br /&gt;Share your stuff .... be careful it might not return&lt;br /&gt;&lt;br /&gt;Share your data .... it's time for collaboration&lt;br /&gt;Share your idea ... same as above&lt;br /&gt;Share your movie ... that's where torrent come in&lt;br /&gt;Share your hobby ... find something similar&lt;br /&gt;Share your apps ... open source on its way&lt;br /&gt;&lt;br /&gt;Share your privacy .... hell no !!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3389665660621433219-9216656733344498066?l=wpsdnet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wpsdnet.blogspot.com/feeds/9216656733344498066/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://wpsdnet.blogspot.com/2009/03/day-when-we-share.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/9216656733344498066'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/9216656733344498066'/><link rel='alternate' type='text/html' href='http://wpsdnet.blogspot.com/2009/03/day-when-we-share.html' title='The day when we share...'/><author><name>wpsdnet</name><uri>http://www.blogger.com/profile/16707290780300733350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3389665660621433219.post-8967566409918282159</id><published>2009-03-16T07:05:00.000-07:00</published><updated>2009-03-16T07:09:35.275-07:00</updated><title type='text'>Long live...</title><content type='html'>Long live ubuntu ( yeahh cant wait for jaunty and koala )&lt;br /&gt;Long live nomachine ( it can access mac to not just windows and linux )&lt;br /&gt;Long live google ( repair the docs and spreadsheedt please )&lt;br /&gt;Long live zoho ( can you share doc with google ... guess not )&lt;br /&gt;Long live openoffice ( cmon beat msoffice already )&lt;br /&gt;Long live windows 7 ( dont steal x server layout please... )&lt;br /&gt;Long live ......&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3389665660621433219-8967566409918282159?l=wpsdnet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wpsdnet.blogspot.com/feeds/8967566409918282159/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://wpsdnet.blogspot.com/2009/03/long-live.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/8967566409918282159'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/8967566409918282159'/><link rel='alternate' type='text/html' href='http://wpsdnet.blogspot.com/2009/03/long-live.html' title='Long live...'/><author><name>wpsdnet</name><uri>http://www.blogger.com/profile/16707290780300733350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3389665660621433219.post-3785485247347879334</id><published>2009-02-22T04:07:00.000-08:00</published><updated>2009-02-22T04:13:40.061-08:00</updated><title type='text'>ubuntu vs window</title><content type='html'>nothing is perfect in this world yeah&lt;br /&gt;especially man made but together they can overcome it haha&lt;br /&gt;&lt;br /&gt;my windows day&lt;br /&gt;i have to update all my av as fw and so many anti product&lt;br /&gt;proud how strong my protection could be and later found there still a virus in the computer trojan spyware etc&lt;br /&gt;getting slow day by day&lt;br /&gt;find a lot of new software to play around&lt;br /&gt;games you just need to put in the cd install and play&lt;br /&gt;&lt;br /&gt;my ubuntu day&lt;br /&gt;what a refreshing os speed ok&lt;br /&gt;proud how clean my computer be without the anti stuff&lt;br /&gt;don't care about it anymore&lt;br /&gt;cool compiz effect&lt;br /&gt;less software to play around especially it stressfull when installing something advance but terminal has it's own attractiveness&lt;br /&gt;anyway there's a lot of web application now who care easier to install&lt;br /&gt;for games i restart the computer first and boot to windows&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3389665660621433219-3785485247347879334?l=wpsdnet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wpsdnet.blogspot.com/feeds/3785485247347879334/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://wpsdnet.blogspot.com/2009/02/ubuntu-vs-window.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/3785485247347879334'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/3785485247347879334'/><link rel='alternate' type='text/html' href='http://wpsdnet.blogspot.com/2009/02/ubuntu-vs-window.html' title='ubuntu vs window'/><author><name>wpsdnet</name><uri>http://www.blogger.com/profile/16707290780300733350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3389665660621433219.post-8088055807746041241</id><published>2009-02-21T03:09:00.001-08:00</published><updated>2009-02-22T04:07:12.011-08:00</updated><title type='text'>Kamma is man made ?</title><content type='html'>the final answer is  no&lt;br /&gt;&lt;br /&gt;kamma seed is created by panca kanda&lt;br /&gt;the one who sow is panca kanda also&lt;br /&gt;&lt;br /&gt;but not the mind&lt;br /&gt;the mind is pure&lt;br /&gt;&lt;br /&gt;when we no longer cling to panca kanda&lt;br /&gt;the panca kanda still receive the kamma fruit&lt;br /&gt;&lt;br /&gt;but no the mind&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3389665660621433219-8088055807746041241?l=wpsdnet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wpsdnet.blogspot.com/feeds/8088055807746041241/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://wpsdnet.blogspot.com/2009/02/kamma-is-man-made.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/8088055807746041241'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/8088055807746041241'/><link rel='alternate' type='text/html' href='http://wpsdnet.blogspot.com/2009/02/kamma-is-man-made.html' title='Kamma is man made ?'/><author><name>wpsdnet</name><uri>http://www.blogger.com/profile/16707290780300733350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3389665660621433219.post-2919035402752688046</id><published>2009-02-18T20:49:00.000-08:00</published><updated>2009-02-18T20:54:40.501-08:00</updated><title type='text'>Beijing Spring Snow</title><content type='html'>yes you read it right&lt;br /&gt;snow struck Beijing again this year on spring and that's mean no snow in the winter , the most clear reason for this is global warming of course, and that's also me  we still not contribute enough for green by the way the snow is man made ( half man made, you need the other half from nature way -- cloud )&lt;br /&gt;&lt;br /&gt;Happy snow day it's thick enough for snow war :D&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3389665660621433219-2919035402752688046?l=wpsdnet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wpsdnet.blogspot.com/feeds/2919035402752688046/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://wpsdnet.blogspot.com/2009/02/beijing-spring-snow.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/2919035402752688046'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/2919035402752688046'/><link rel='alternate' type='text/html' href='http://wpsdnet.blogspot.com/2009/02/beijing-spring-snow.html' title='Beijing Spring Snow'/><author><name>wpsdnet</name><uri>http://www.blogger.com/profile/16707290780300733350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3389665660621433219.post-2910615611238326190</id><published>2009-02-09T05:02:00.000-08:00</published><updated>2009-02-09T05:15:37.735-08:00</updated><title type='text'>Reality raw version</title><content type='html'>First version i use the most popular electronic device PC as an example&lt;br /&gt;&lt;br /&gt;What is computer ? check oxford&lt;br /&gt;What is operating system ? check dictionary&lt;br /&gt;i bet you would get plenty of explanation there&lt;br /&gt;&lt;br /&gt;For those who don't care about specific explanation will say as long as it helping me create blog, website, playing, listen to music , browsing you can care less about other things even the history of computer.&lt;br /&gt;&lt;br /&gt;Take a look inside your casing. You'll found a lot of stuff there a board, a fan, a processor, a cable, a power supply, memory graphic card,etc than look deeper you'll found a tiny black square with a lot of leg a round thingy etc, what inside them ? many than look deep again than you'll see there are common thing in every of them from big to small  "electricity" ( 1 and 0 )&lt;br /&gt;&lt;br /&gt;the point is electronic device need electricity if there aren't any it's a junk your email program os&lt;br /&gt;won't even there. and with only electricity computer won't be there neither you still need to create the pcb, count device, bla bla, than memory harddisk, than a computer (it's the last product)&lt;br /&gt;So It was build on top of other things that build on top of other things ... that powered by electricity&lt;br /&gt;&lt;br /&gt;how about human how about the reality of life ? how about the reality around us which one is true which one is fake which one is illusion which one is real ?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3389665660621433219-2910615611238326190?l=wpsdnet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wpsdnet.blogspot.com/feeds/2910615611238326190/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://wpsdnet.blogspot.com/2009/02/reality-raw-version.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/2910615611238326190'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/2910615611238326190'/><link rel='alternate' type='text/html' href='http://wpsdnet.blogspot.com/2009/02/reality-raw-version.html' title='Reality raw version'/><author><name>wpsdnet</name><uri>http://www.blogger.com/profile/16707290780300733350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3389665660621433219.post-3732664375902472707</id><published>2009-02-09T04:54:00.000-08:00</published><updated>2009-02-09T05:02:38.947-08:00</updated><title type='text'>Extreme raw version</title><content type='html'>What is extreme ? check the dictionary :D&lt;br /&gt;is it something that 180 degree different that what you do now ?&lt;br /&gt;&lt;br /&gt;Lets take Sidartha Gautama story as example&lt;br /&gt;he had a life full of joy full of happy party everyday no bad view no ugly view&lt;br /&gt;than he had a 6 year striving himself&lt;br /&gt;before he found the middle way&lt;br /&gt;&lt;br /&gt;extreme joyfulnes --------------------- middle ----------------------- extreme suffering&lt;br /&gt;&lt;br /&gt;now if you are in the extreme joyfulness than would you call the path  the way to the middle extreme or the path full to the extreme suffering is the real extreme ?&lt;br /&gt;&lt;br /&gt;another example if you are to fat ( 200 - 300 kg ) than you going on diet let say lost 100 kg it's also extreme path to take right ? but by loosing that you will become normal&lt;br /&gt;&lt;br /&gt;the point is simple sometime we need to take extreme measure to return to normal when you arrive there let go the extreme path or you'll go to the other side of extreme&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3389665660621433219-3732664375902472707?l=wpsdnet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wpsdnet.blogspot.com/feeds/3732664375902472707/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://wpsdnet.blogspot.com/2009/02/extreme-raw-version.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/3732664375902472707'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/3732664375902472707'/><link rel='alternate' type='text/html' href='http://wpsdnet.blogspot.com/2009/02/extreme-raw-version.html' title='Extreme raw version'/><author><name>wpsdnet</name><uri>http://www.blogger.com/profile/16707290780300733350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3389665660621433219.post-5017937584948313857</id><published>2009-01-30T18:09:00.000-08:00</published><updated>2009-01-30T18:10:06.333-08:00</updated><title type='text'>Bad English</title><content type='html'>Sorry for my bad english still learning and improving for TOEFL :D&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3389665660621433219-5017937584948313857?l=wpsdnet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wpsdnet.blogspot.com/feeds/5017937584948313857/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://wpsdnet.blogspot.com/2009/01/bad-english.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/5017937584948313857'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/5017937584948313857'/><link rel='alternate' type='text/html' href='http://wpsdnet.blogspot.com/2009/01/bad-english.html' title='Bad English'/><author><name>wpsdnet</name><uri>http://www.blogger.com/profile/16707290780300733350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3389665660621433219.post-1060956519326047440</id><published>2009-01-30T17:58:00.000-08:00</published><updated>2009-01-30T18:10:42.019-08:00</updated><title type='text'>Love Ubuntu</title><content type='html'>been using this os for 6-7 month&lt;br /&gt;learn much and love it ever since hahahhaha&lt;br /&gt;&lt;br /&gt;better security and faster than that cha bi (xp) well vista is good but i dont have the real one, it's expensive and the only one to get it it's ilegal hahahah&lt;br /&gt;&lt;br /&gt;well everything free for ubuntu&lt;br /&gt;&lt;br /&gt;i chek the windows 7 beta nice looking there change all the layout more user friendly soft looking os&lt;br /&gt;going to compete with os x hehe but still cant beat the compiz style yeahhhhh . it said that it will be faster in log os hibernate log off shutdown stuff but which one faster jaunty jackalope or windows 7 cant wait to compare it as jaunty jackalope going to make this faster also&lt;br /&gt;&lt;br /&gt;my opinion for ubuntu&lt;br /&gt;&gt; best security&lt;br /&gt;&gt; good office tools&lt;br /&gt;&gt; good image tools&lt;br /&gt;&gt; definetly free&lt;br /&gt;&gt; good coding tools&lt;br /&gt;&gt; fast&lt;br /&gt;&gt; fast for vmware also &gt; if you need to use other os software&lt;br /&gt;&gt; FREE&lt;br /&gt;&gt; good movie and music player + manager&lt;br /&gt;&gt; can mount ntfs&lt;br /&gt;&gt; one chat for all (msn yahoo etc ) and fast&lt;br /&gt;&lt;br /&gt;the only drawback i found now is&lt;br /&gt;&gt; play games ( we have to pay for this one the free one doesn't work 100%)&lt;br /&gt;well because most game developer create game for windows and osx ( even they are different )&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3389665660621433219-1060956519326047440?l=wpsdnet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wpsdnet.blogspot.com/feeds/1060956519326047440/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://wpsdnet.blogspot.com/2009/01/love-ubuntu.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/1060956519326047440'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/1060956519326047440'/><link rel='alternate' type='text/html' href='http://wpsdnet.blogspot.com/2009/01/love-ubuntu.html' title='Love Ubuntu'/><author><name>wpsdnet</name><uri>http://www.blogger.com/profile/16707290780300733350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3389665660621433219.post-4900224426410957963</id><published>2009-01-30T17:52:00.000-08:00</published><updated>2009-01-30T17:57:00.209-08:00</updated><title type='text'>Image safe</title><content type='html'>wow learn a new stuff there in php ( though again its an old stuff in the society )&lt;br /&gt;&lt;br /&gt;preventing our image to be cache by other website its a good thing . safe our server some bandwith&lt;br /&gt;but i wonder will it prevent google from crawl it&lt;br /&gt;&lt;br /&gt;good thing always cost something ... err good security always cost something now if i apply this image security it won't show in google search ehhh....  got to try it&lt;br /&gt;&lt;br /&gt;and second thing in image protection to prevent guest from save as our image ( its a private image and you can only see in our website thing ) the one i discover is when you save the image on your computer it will show nothing there .. how do they do it ( they didn't share the code i have to buy the code need to find a wayyyyyy around things )&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3389665660621433219-4900224426410957963?l=wpsdnet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wpsdnet.blogspot.com/feeds/4900224426410957963/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://wpsdnet.blogspot.com/2009/01/image-safe.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/4900224426410957963'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/4900224426410957963'/><link rel='alternate' type='text/html' href='http://wpsdnet.blogspot.com/2009/01/image-safe.html' title='Image safe'/><author><name>wpsdnet</name><uri>http://www.blogger.com/profile/16707290780300733350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3389665660621433219.post-9004739518391921063</id><published>2009-01-30T17:48:00.000-08:00</published><updated>2009-01-30T17:52:07.634-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='web project'/><title type='text'>Calendar coding</title><content type='html'>phew i know its old stuff on the web, but you sometime want to makes your own.I finnish all the calendar basic code except one the leap week i still can't think of the exact formula to count it. Hope to use this soon in my web application.&lt;br /&gt;&lt;br /&gt;There is  a lot of calendar system to ( the js pop up thingy ) but i got problem to edit it to my own style so i decide to create one here with the most powerful tool js and prototype&lt;br /&gt;&lt;br /&gt;ahh ... such a long day&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3389665660621433219-9004739518391921063?l=wpsdnet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wpsdnet.blogspot.com/feeds/9004739518391921063/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://wpsdnet.blogspot.com/2009/01/calendar-coding.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/9004739518391921063'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3389665660621433219/posts/default/9004739518391921063'/><link rel='alternate' type='text/html' href='http://wpsdnet.blogspot.com/2009/01/calendar-coding.html' title='Calendar coding'/><author><name>wpsdnet</name><uri>http://www.blogger.com/profile/16707290780300733350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
