急聘:PHP 网页游戏开发工程师

Posted on 9th March 2010 by Nio in 创业, 工作忙碌 - Tags:

职位信息

* 工作性质:全职
* 工作地点:北京
* 招聘人数:2
* 薪  水:4000~6000
* 工作经验:不限
* 学  历:不限
* 语言能力:不限
* 简历语言:中文
* 其他待遇:年底分红

职位描述

* 热爱游戏,熟悉网络游戏/网页游戏。
* 兴趣广泛,思维活跃,富于想象力及创造力,有较好的逻辑思维能力。
* 工作态度严谨,有耐心重效率,抗压能力强,能适应高强度长时间的研发工作。
* 性格开朗,乐于助人,擅与人相处及沟通,具有良好的团队意识。

技能要求

* 精通 PHP,AJAX,JavaScript 开发,熟练使用 MySQL 数据库。
* 具有大型互联网应用、开发经验。
* 能够承担重要任务承受较强工作压力。
* 有网络游戏开发经验者优先。

公司介绍

北京三思利德科技有限公司,手机游戏和互联网游戏开发及推广。

联系方式

地址:北京市昌平区天通苑
Email: hr@10086.im

*注:请在邮件中注明应聘职位的名称

Working with RESTful Services in CodeIgniter

Posted on 8th February 2010 by Nio in CodeIgniter, 程序人生 - Tags:

Working with RESTful Services in CodeIgniter

CodeIgniter is becoming well known for its power as a PHP based web application framework, but it's not often that we see examples of it being used for anything else. Today we'll learn how we can use CodeIgniter to create a RESTful API for your existing web applications, and demonstrate how to interact with your own API or other RESTful web-services, such as Facebook and Twitter.

就知道工作

Posted on 9th January 2010 by Nio in 创业, 宝宝, 工作忙碌, 日常生活

儿子:爸爸,你陪我玩吧。
我:爸爸正在工作,一会儿陪你玩好吗?
儿子:你怎么一天到晚就知道工作,啥也不干。。。。
我:。。。。儿子,咱们踢球玩吧。。。。

认真想想,一天到晚光想着工作,其它啥也不干,是很错误的 :(
小朋友总是能够一针见血,呵呵 :)

2009年的最后一天

Posted on 31st December 2009 by Nio in 创业, 工作忙碌, 日常生活

2009 年很快就要结束了,回想起这一年,觉得时间过得太快,也很平淡,和朋友合伙创办了思博天宇,做了很多项目,似乎每天都在忙碌,一直没有来得及停下脚步来看一看,也行我们也要偶尔停下来休息休息,这样才能走得更远。不管怎么说,翻过今天,明天必定更美好,感谢我的同事们,祝大家新年快乐 :)

Google Analytics 的异步操作

Posted on 3rd December 2009 by Nio in 程序人生 - Tags:

目前很多网站都使用了 Google Analytics 来跟踪各个页面的访问情况,但经常会出现页面过慢,JS 执行错误等问题,导致统计的结果不准确。现在 Google 提供了一个新的功能─异步跟踪

  • Faster tracking code load times for your web pages due to improved browser execution
  • Enhanced data collection and accuracy
  • Elimination of tracking errors from dependencies when the JavaScript hasn't fully loaded

JS 代码片段:


<script type="text/javascript">
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-XXXXX-X']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script');
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    ga.setAttribute('async', 'true');
    document.documentElement.firstChild.appendChild(ga);
  })();
</script>

更多信息…