sudo apt-get install flashplugin-nonfree
解决flash 乱码问题:
sudo rm /etc/fonts/conf.d/49-sansserif.conf
sudo apt-get install flashplugin-nonfree
解决flash 乱码问题:
sudo rm /etc/fonts/conf.d/49-sansserif.conf
记得以前在AS1.0时代见到过类似的算法,不过没有多深记忆,今天又用到了。随手记下。以JS为例:
Number.prototype.fixed = function(n){
return Math.round(Number(this)*Math.pow(10,n))/Math.pow(10,n);
}