2014年2 月月 发布的文章

Unix时间戳转换Excel时间

时间戳转成正常日期的公式:C2=(A2+8*3600)/86400+70*365+19其中A2表示当时的1249488000数值其中C2就是你需要的结果,C2单元格属性改成日期或者时间格式即可。正常日期转为时间戳格式公式:A2=(C2-70*365-19)*86400-8*3600其中C2表示当时的1249488000数值其中A2就是你需要的结果,A2单元格属性日期格式转成数据格式即可。参考:ht[……]

继续阅读 »

利用cookie-free domain提高网页访问效率-优化网站性能YSlow

原文链接:http://farlee.info/archives/yslow-used-cookie-free-domains-wordpress-blog-website-speed.html使用 cookie-free domains
有什么好处呢?当用户浏览器发送一个静态文件,如图片image、CSS样式表文件时会同时发送同一个域名(或二级域名)下的cookies,但是网站服
务器对发[……]

继续阅读 »

从Java里调用R:设置JRI

JRI允许用户从Java里面调用R的功能,本文介绍Windows 64位环境下在Eclipse里设置JRI的方法。

环境

   Windows 7 64bit
   Eclipse 4.3.1
   R 3.0.2
   rJava 0.9-6

  1. [……]

    继续阅读 »

在Ubuntu上一键安装LAMP

sudo apt-get install lamp-server^

注意不要漏了最末位的^

参考 http://tuxtweaks.com/2012/04/installing-lamp-on-ubuntu-12-04-precise-pangolin/[……]

继续阅读 »