登录 |
  • 注册
  • 深度剖析 iPhone经济:半数应用年入不足682美元

    2010年06月28日20:36:17 星期一 | 作者:marcian

    新浪科技的一篇文章,姑且看之。
    深度剖析 iPhone经济:半数应用年入不足682美元

    paidike.cn恢复解析,公司网站改版。

    2010年06月28日14:41:25 星期一 | 作者:marcian

    还算不错,尽管审核时间上比预计的要长些.

    新版公司网站上线,以后计划每年一个新版。

    这个周末准备cn上线调试。

    Git

    2010年06月26日11:02:11 星期六 | 作者:marcian

    Linux下的版本控制软件,Apache基金会正在测试git服务。

    官方网站:http://git-scm.com/

    从CVS到SVN再到Git,一位同学说:我在学习cvs 时,别人说svn好,我在学习 svn时 别人说 git好,哈哈,技术总在发展进步。

    对Git了解不多,关注。

    注册了公司商标

    2010年06月25日14:48:35 星期五 | 作者:marcian

    注册了公司商标,为自己的软件产品做准备。

    到目前为止,公司的业务线也已经比较清晰了,目标明确了,就好做事了。

    哭笑不得

    2010年06月23日09:45:32 星期三 | 作者:marcian

    本来打算用paidike.cn来做互联网应用服务网站的域名,但因为实名制审核的原因,被停止解析了,提交了相关资料,看看什么时间可以审核通过,如果真的要求拍照的话,就彻底放弃cn域名,可以提交资料,但是决不接受拍照这种脑残的做法。

    有时候真的怀疑有关部门是不是生活在另一个星球,尽整些妖蛾子。

    再等几天,不行就启用二级域名。

    交规学习

    2010年06月21日20:05:35 星期一 | 作者:marcian

    学了一天交规,真累,明儿还得一天。学学还是蛮有好处的,起码能意识到开车和乘车承担的责任是完全不一样的,尤其是老师给放了一些血淋淋的案例,那种感觉完全不是平常在街头看到交通安全宣传所能比的。

    比较难的是考交规居然要90分及格,满分100啊,这几天还得抽时间看书做模拟题了,下周估计就要考交规了,头大。

    10 个开源 Web 流量分析工具

    2010年06月20日14:41:56 星期日 | 作者:marcian

    内容来自网络,作为资料搜集,原文地址:http://www.reencoded.com/2010/06/11/10-amazing-open-source-web-analytics/

    这些工具大多用PHP/MYSQL开发,所以放到PHP分类下。

    ———————————————–

    1.TraceWatch

    TraceWatch 是一个开源 Web 流量分析程序,支持实时分析,可以提供深度分析报告。

    2.SlimStat

    基于 PHP-MySQL,同时,可以像 Google Analytics 那样,通过 JavaScript 或 PHP 脚本集成到网站。

    3.Piwik


    可以生成站点的详细的实时访问报告,基于 PHP 和 MySQL,也可以像 Google Analytics 那样在前端集成。

    4.Open Web Analytics

    基于 PHP,内置对 WordPress,Gallery 以及 MediaWiki 的支持。

    5.W3Perl

    W3Perl 是一个 Web Log 分析工具。

    6.CrawlTrack

    CrawTrack 是一个很好的 Google Analytics 的开源替用品,提供非常独特的报告,比如,CrawTrack 可以帮你预防诸如 SQL 注射一类的攻击。

    7.BBClone

    BBClone 是一个 Web 计数器,可以提供很详细的访问报告。基于 PHP。

    8.PhpMyVisites


    基于 GNU/GPL 开源协议,可以提供很详细的,有关访问者信息的报告,它的 GUI 界面很有趣而且实用,安装也很简单。

    9.AWStats

    可以提供非常强大的,关于网站,FTP 站点,乃至 Email 服务器的访问分析报告,基于 CGI。

    10.Grape

    Grape 的界面比较简单,功能虽然不多,但很实用。

    纪念一下,一台服务器连续运行254天,今日做了重启。

    2010年06月18日15:28:15 星期五 | 作者:marcian

    服务器反应变慢,例行维护,已经出现了僵尸进程,同时内存使用率已近90%,决定重启,上一次重启到今天254天。

    Linux的稳定不是盖的,Oracle吃内存也不是盖的。

    正式加入学车行列

    2010年06月14日10:47:20 星期一 | 作者:marcian

    起了个大早去东方时尚报名了,下周一上法规课,认真学习,尽快考完,拿到驾照。

    喝酒不开车,开车不喝酒,既然打算拿本,那就告别酒精吧,今天起彻底戒酒。

    好好休息两天,准备paidike.cn的上线调试。

    IRedMail

    2010年06月13日10:17:08 星期日 | 作者:marcian

    Linux下快速搭建邮件服务器的软件包。

    地址:http://www.iredmail.org/

    Linux下为Apache增加模块

    2010年06月10日19:18:54 星期四 | 作者:marcian

    需要给Apache增加Rewrite模块,但又不想重新编译,找了些资料,以下方式可以单独为Apache添加模块。

    1:进入Apache源文件目录,在Apache源码中寻找mod_rewrite.c文件, find . -name mod_rewrite.c。

    2:进入包含mod_rewrite.c文件的目录。

    3:引用当前正在工作的apache的bin目录里的apxs命令,必须是绝对路径, %apache_home%/bin/apxs -c mod_rewrite.c。

    4:继续执行apxs命令,%apache_home%/bin/apxs -i -a -n mod_rewrite mod_rewrite.la。

    5:已经在apache的modules 目录下生成了新的mod_rewrite.so文件。

    6:修改apache配置文件,加载模块,重启apache。

    这种方式同样适用于增加其他模块,假如引用apxs命令不出问题的话。

    几个开源免费的PHP商城系统

    2010年06月09日19:53:13 星期三 | 作者:marcian

    内容来自网络,作为资料收集。

    ————————————————————-

    Magneto is a professional opensource ecommerce solution offering flexibility and control. Magento is amazing and advanced. Unbelievably It is for free. It features clean urls which are great for SEO. The entire set up is completely Scalable, Professional and has a great community support. This Shopping cart also allows smooth Integration with 3rd party apps.

    Opencart is an opensource PHP based shopping cart. OpenCart is easy to use and is SEO optimized comes with a very nice interface. A great feature of OpenCart is that customers can put in their reviews of the products.

    Agoracart is a very popular online shopping cart, written in Perl/MySQL. It includes advanced css manager through which you can alter look of your cart online. AgoraCart also features unlimited product options, up to 4 different tax zones at the same time, tons of shipping and payment gateways/options. The setup options range from a simple template based store to the integration of a complex visual design and support for program modification.

    Cubecart is also a very popular shopping cart. CubeCart V3 is free for download. CubeCart support almost all kind of payment gateways and shipping gateways. Their support forums are lively and many people contribute plugins to the cart. To use CubeCart V4 you must pay but it has many features that V3 doesn’t have.

    PrestaShop is a robust, professional shopping cart that you can use for free. It includes a full featured back end to manage your inventory, orders, shipping, and customers in real time. Your customer’s payments are sent directly to your commercial bank account using the latest security technology. You can even add your own modules to the shopping cart.

    ZenCart is a free, user friendly, open source shopping cart. Zen Cart has been created for the layman users like various merchants and shoppers instead of the developers. Zen Cart also supports multiple payment and shipping options, quantity discounts and coupons. Installation process is simple and easy to do

    Oscommerce is an online shopping cart that offers a wide range of features that allows online stores to be setup fairly quickly. osCommerce is backed by a great and active community. It also supports multiple currencies, allows customers to print invoices from the order screen, and has an easy database backup system. This is immensely popular and probably first shopping cart that everyone tries their hands on

    StoreSprite is a powerful, free PHP/MySQL shopping cart system that is easy to install. It is customizable. . StoreSprite has many advanced features including automatic tax calculation, automatic delivery cost calculations, customer ratings and reviews and featured products.

    ——————————————————–

    目前对opencart比较感兴趣,继续评估。

    WIN7下连接WM以及配置WM J2ME环境。

    2010年06月02日18:49:26 星期三 | 作者:marcian

    1:下载并安装Win7 mobile device center,http://download.microsoft.com/download/0/4/3/0432540e-2d1a-415d-9c9d-a9963e43503e/drvupdate-amd64.exe。

    2: 下载 并安装Jbed模拟器,WM为中文版,则安装中文版,WM为英文版则安装英文版。

    3:将midlet文件拷贝至手机,然后在手机端运行安装。

    智能机操作系统

    2010年06月01日15:07:28 星期二 | 作者:marcian

    1:Nokia S60以及基于S60的UIQ。

    2:MS的Window mobile。

    3:RIM的blackberry。

    4:Google的Android。

    5:Apple的 Iphone。Iphone还得考虑考虑,J2me貌似现在仍然不支持。

    手机软件的开发主要还是考虑这些智能机吧,不再考虑那么多的老款手机了, 尽管就J2ME而言,机型适配工作相对比较容易。今年基本上可以看做是智能手机的普及年,以后新出的手机是以智能机为主了。

    其实对于象UC这样做手机浏览器的,始终都不看好,智能机时代,操作系统厂商自己就可以做浏览器,就像MS的IE一样。第三方的手机浏览器在非智能机时代有一定市场,以后,个人以为会逐渐没落了。