Ruby China
  • Topics
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • Sign Up
  • Sign In
@foxzool
VIP
NO. 896 / 2012-02-02

[email protected]
Deyeen
上海
21 Topics / 108 Replies
4 Followers
2 Following
15 Favorites
GitHub Public Repos
  • bevy_http_client 29

    A simple HTTP client Bevy Plugin for both native and WASM

  • open-lark 21

    飞书开放平台相关接口SDK(非官方)

  • bevy_nokhwa 14

    A bevy plugin for render camera capture at background

  • jigsaw_puzzle 14

    jigsaw puzzle game made by bevy

  • bevy_mqtt 11

    A MQTT client Plugin for Bevy game engine

  • nyt_sudoku 10

    A sudoku puzzle game made by Bevy game engine

  • bevy_cronjob 10

    A simple helper to run cronjobs (at repeated schedule) in Bevy.

  • bevy_octopus 9

    A Low leveling ECS driven network plugin for Bevy.

  • bevy_gstreamer 8

    provide a gstreamer pipeline to bevy

  • bevy_fog_of_war 5

    A Bevy Plugin for Fog of War.

More on GitHub
  • Overview
  • Topics
  • Replies
  • Favorites
  • Following
  • Followers
  • AngularJS 2.0 正在路上.. at November 10, 2014

    已经在用 Emberjs

  • parallelsdesktop 双十一半价 at November 06, 2014

    #1 楼 @kgen 没用过 VM,请教有什么主要区别或者优势么?

  • 平复心情的方法???????? at November 04, 2014

    我刚刚换了 6 年的工作和行业,一个礼拜解决,下定决心就行

  • 这个错误提示是什么意思?如何解决? at November 04, 2014

    user_mail: current_user.email

    冒号打错位置了

  • 用 angular 和 node-webkit 开发桌面客户端,用 rails 提供 api,客户端怎样保存用户登录这些临时信息? at October 11, 2014

    http://blog.tanookilabs.com/post/95919505408/building-an-api-for-a-mobile-client-with-rails 可以参考这个

  • ruby 布尔类型判断迷惑中 at August 20, 2014

    只要记住在 ruby 的条件判断中, false 和 nil 为条件不成立。

    if 0
        printf '没有明额0'
    end
    

    这里条件不成立的原因是 0 的返回值是 0

    #irb
    2.1.2 :001 > 0
     => 0
    
  • 10.9.4 的系统安装 Rails 4.1 后貌似默认的 Ruby 2.0 没了 at August 13, 2014

    rvm use system 就可以回到系统默认版本了

  • 一套 Ruby 网游服务器框架 at August 07, 2014

    nice, 很早之前就想做这么个服务器了

  • rails 中怎么完成定时任务? at August 01, 2014

    用 whenever 这个 gem 来调用 crontab 定时运行脚本任务 https://github.com/javan/whenever

  • 8.1~8.3 双节期间电子书七折优惠 at August 01, 2014

    rspec 已买 :plus1:

  • 2014718 这样格式的字符串转换成日期? at July 18, 2014

    rails 里可以用 Time.parse('20140718')

    但 2014718 这样的时间字符是不行的,不符合标准

  • Ruby 可以用来做游戏 backend 开发吗 at July 14, 2014

    看游戏类型~~,我做过 SLG 页游服务端

  • 庆贺一下,大学终于落停了 at July 09, 2014

    恭喜

  • 大家最近有看中什么新的编程语言么 at November 10, 2013

    Elixir

  • UCloud 正式成为 Ruby China 的赞助商 at August 01, 2013

    #24 楼 @huobazi 我在阿里云备案过两次公司域名,基本上都是一周过审。

  • 分析了一下数据,发现其实智能手机最多的用途是当游戏机。经此而已。 at May 28, 2013

    游戏的 APRU 值高=>游戏赚钱=>更多的市场资源=>更多的游戏

  • 有没有开发 kinect 的朋友? at November 06, 2012

    #1 楼 @hhuai 对,需求不是很复杂,你有兴趣和时间来做么?

  • 关于 ActiveRecord 使用 set_table_name 的诡异问题 at September 20, 2012

    rails3.2 开始就使用下列方法来设置 table name self.table_name = "tmnl_status"

    ·set_table_name· 是 rails3.1 之前的方法

  • RubyConfChina 2012 预热帖 at August 28, 2012

    酷,期待啊

  • 用 git-flow 么 at June 15, 2012

    一直在用

  • [上海][2012年04月24日] Ruby Tuesday 活动公告 at April 24, 2012

    - - ,还在开会,今天没法来了。

  • Ruby China T 恤第二期报名活动开始啦![已结束] at April 19, 2012

    报名

  • [上海][2012年04月24日] Ruby Tuesday 活动公告 at April 17, 2012

    #1 楼 @cqpx - - ,看错时间了,是下周二,已经修正。

  • 如何让 scope 可以携带参数 at March 30, 2012

    api 文档里是

    scope :colored, lambda { |color| where(:color => color) }
    
    

    如果是 ruby 1.9 就可以

    scope :colored, ->(color) { where(:color => color) }
    
    

    不过这个写法好怪。。。很难记忆

  • 如何让 scope 可以携带参数 at March 30, 2012

    #4 楼 @kevinhua 社区是在你翻了文档,认真思考后,没有找到解决方法,再向大家请教的地方,不然我只能回一句: RTFM

  • 类名转化为符号最便捷的方法 at March 29, 2012

    @lgn21st 已经猜中真相了

    class Foobar; end
    Foobar.name.to_sym
    
    
  • 12306 竟然是 rails 做的。。。 at March 26, 2012

    ....rails 就是铁路啊

    另外用http://isitrails.com/ 查过了,不是 Rails 做的

  • GitCafe 啥时候开放?一直在内测? at March 21, 2012

    可以联系 @ghosTM55索要邀请码

  • RubyMine 能把整个项目的 UML 图给画出来吗? at March 15, 2012

    我很早写的一个 blog,看看能否满足你的要求 http://zool.me/rails/2010/12/29/Rails-generate-entity-relationship-diagram-projects/

  • Prev
  • 1
  • 2
  • 3
  • 4
  • Next
关于 / RubyConf / Ruby 镜像 / RubyGems 镜像 / 活跃会员 / 组织 / API / 贡献者
由众多爱好者共同维护的 Ruby 中文社区,本站使用 Homeland 构建,并采用 Docker 部署。
服务器由 赞助 CDN 由 赞助
iOS 客户端 / Android 客户端 简体中文 / English