Everything not for life is waste of time,like life and work hard.</p></blockquote>
<p>Given the name by myself, <strong>SixKarma</strong>. I'm a green pepper & coder, my job is teaching, but like programming in my spare time, want to try new technology and novel ideal, sometimes develop a few gadgets, refer to VR\MIS\INet, now pay more attention to VR\CPS and so on.</p>
</div>
<!-- Handle Language Change -->
<scripttype="text/javascript">
// get nodes
var$zh=document.querySelector(".zh");
var$en=document.querySelector(".en");
var$select=document.querySelector("select");
// bind hashchange event
window.addEventListener('hashchange',_render);
// handle render
function_render(){
var_hash=window.location.hash;
// en
if(_hash=="#en"){
$select.selectedIndex=1;
$en.style.display="block";
$zh.style.display="none";
// zh by default
}else{
// not trigger onChange, otherwise cause a loop call.