Ruby China
  • 社区
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • 注册
  • 登录
@foxzool
高级会员
第 896 位会员 / 2012-02-02

[email protected]
Deyeen
上海
21 篇帖子 / 108 条回帖
4 关注者
2 正在关注
15 收藏
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
  • 概况
  • 话题
  • 回帖
  • 收藏
  • 正在关注
  • 关注者
  • AngularJS 2.0 正在路上.. at 2014年11月10日

    已经在用 Emberjs

  • parallelsdesktop 双十一半价 at 2014年11月06日

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

  • 平复心情的方法???????? at 2014年11月04日

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

  • 这个错误提示是什么意思?如何解决? at 2014年11月04日

    user_mail: current_user.email

    冒号打错位置了

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

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

  • ruby 布尔类型判断迷惑中 at 2014年08月20日

    只要记住在 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 2014年08月13日

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

  • 一套 Ruby 网游服务器框架 at 2014年08月07日

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

  • rails 中怎么完成定时任务? at 2014年08月01日

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

  • 8.1~8.3 双节期间电子书七折优惠 at 2014年08月01日

    rspec 已买 :plus1:

  • 2014718 这样格式的字符串转换成日期? at 2014年07月18日

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

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

  • Ruby 可以用来做游戏 backend 开发吗 at 2014年07月14日

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

  • 庆贺一下,大学终于落停了 at 2014年07月09日

    恭喜

  • 大家最近有看中什么新的编程语言么 at 2013年11月10日

    Elixir

  • UCloud 正式成为 Ruby China 的赞助商 at 2013年08月01日

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

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

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

  • 有没有开发 kinect 的朋友? at 2012年11月06日

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

  • 关于 ActiveRecord 使用 set_table_name 的诡异问题 at 2012年09月20日

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

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

  • RubyConfChina 2012 预热帖 at 2012年08月28日

    酷,期待啊

  • 用 git-flow 么 at 2012年06月15日

    一直在用

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

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

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

    报名

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

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

  • 如何让 scope 可以携带参数 at 2012年03月30日

    api 文档里是

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

    如果是 ruby 1.9 就可以

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

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

  • 如何让 scope 可以携带参数 at 2012年03月30日

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

  • 类名转化为符号最便捷的方法 at 2012年03月29日

    @lgn21st 已经猜中真相了

    class Foobar; end
    Foobar.name.to_sym
    
    
  • 12306 竟然是 rails 做的。。。 at 2012年03月26日

    ....rails 就是铁路啊

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

  • GitCafe 啥时候开放?一直在内测? at 2012年03月21日

    可以联系 @ghosTM55索要邀请码

  • RubyMine 能把整个项目的 UML 图给画出来吗? at 2012年03月15日

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

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