Ruby China
  • 社区
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • 注册
  • 登录
Jasl
@jasl
管理员
第 1107 位会员 / 2012-02-21

[email protected]
北京
126 篇帖子 / 3954 条回帖
396 关注者
11 正在关注
82 收藏
Ass♂we♂can
GitHub Public Repos
  • wx_pay 461

    An unofficial simple wechat pay gem

  • zk_dcap_verifier_poc 1

  • substrate 0

    Substrate: The platform for blockchain innovators

  • parity-common 0

    Collection of crates used in Parity projects

  • polkadot-sdk 0

    The Parity Polkadot Blockchain SDK

  • pjs-rs 0

    A javascript runtime with pjs embebed

  • agave 0

    Web-Scale Blockchain for fast, secure, scalable, decentralized apps and marketplaces.

  • ngine 0

    A nostr application framework

  • derive_more 0

    Some more derive(Trait) options

  • cybros-experimental 0

More on GitHub
  • 概况
  • 话题
  • 回帖
  • 收藏
  • 正在关注
  • 关注者
  • 北京组团去 RubyConfChina [ 准备买 16 日 下午的动车去上海] at 2012年11月08日

    @karma 嗯

  • 北京组团去 RubyConfChina [ 准备买 16 日 下午的动车去上海] at 2012年11月08日

    @sundevilyang 联系下 @karma 他也是个体户去的

  • 北京组团去 RubyConfChina [ 准备买 16 日 下午的动车去上海] at 2012年11月08日

    @karma 呢?

  • 新的文艺站 hua.li 上线,适合给有妹子的 geek 用 at 2012年11月08日

    recipes starred 这里有一个强化 capistrano 的 gem https://github.com/AF83/capistrano-af83

  • 北京组团去 RubyConfChina [ 准备买 16 日 下午的动车去上海] at 2012年11月07日

    @sundevilyang 可以

  • 开贴收集大家觉得优质的订阅资源 at 2012年11月07日

    http://blog.jasl.me/favourite/ 我的 不过我平时看的都跟编程关系不大。。。强烈推荐http://acfun.tv

  • 买了票,但大会两天因故不能出席,赠送给第一个回复者 at 2012年11月06日

    @leekelby @jjym 好基友同时亮相哇

  • carrierwave 的不能更新的问题。 at 2012年11月06日

    @g_tree user.avatar.store! File.read("path/to/file") 这样呗。file 提前准备。。。或许有更好的方法

  • carrierwave 的不能更新的问题。 at 2012年11月06日

    @g_tree 我是说你可以这么做。。。爬虫往 db 里导入数据的时候我就是这么做的。。。。

  • carrierwave 的不能更新的问题。 at 2012年11月06日

    假设 mount_as :avatar 可以 user.avatar.store! File.read("path/to/file") 来手动赋值

  • 五角场周边住宿 at 2012年11月06日

    美刀么。。。 @hpyhacking 你怎么过去定了么 文洋开了个帖子 我 at 你了

  • 请问使用 oh-my-zsh 之后怎么在 irb 里输入中文 at 2012年11月05日

    @shawnyu 感谢!

  • 你们有用 Ruby 写过什么样的非 Web 项目? at 2012年11月05日

    当 shell 用....

  • 怎样写给手机客户端用的接口? at 2012年11月05日

    参考下 devise 的 api,应该就是 ruby-china 的方案,然后 https 传输保证 auth_token 不泄露 算是比较简单的方案了

  • blog 首页文章怎么部分显示…… at 2012年11月05日

    truncate 不过对中文有些不太友善 具体原因可以 google 不过一般够用了

  • 北京组团去 RubyConfChina [ 准备买 16 日 下午的动车去上海] at 2012年11月05日

    @sundevilyang 15 楼我 at 的俩人啦 @karma 我年初去上海出差的经历看 完全没必要提前订 高铁随时有票

  • 请问一下关于 rake assets:precompile 的问题 at 2012年11月05日

    @sandybeauty https://github.com/jasl/start_up/blob/master/doc/start_up.conf.sample 我这里有一个参考的 nginx conf

  • 北京组团去 RubyConfChina [ 准备买 16 日 下午的动车去上海] at 2012年11月05日

    #14 楼 @sundevilyang 我的想法是 周五 都翘半天班 中午出发 坐高铁的话 可以直接在南站买票 然后 4 个小时左右到上海 这样可以晚饭前到然后解决住宿问题

  • 北京组团去 RubyConfChina [ 准备买 16 日 下午的动车去上海] at 2012年11月05日

    #14 楼 @sundevilyang 我随意。。。什么票?

  • 北京组团去 RubyConfChina [ 准备买 16 日 下午的动车去上海] at 2012年11月05日

    @karma @hpyhacking

  • 北京组团去 RubyConfChina [ 准备买 16 日 下午的动车去上海] at 2012年11月05日

    我也去 @karmaQ @happyhacking

  • 请问一下关于 rake assets:precompile 的问题 at 2012年11月05日

    @sandybeauty 应该是 nginx 配置有关系 production 下 rails 是不处理静态请求的

  • 请问一下关于 rake assets:precompile 的问题 at 2012年11月03日
    NEED_TO_COMPILE_STYLESHEET_EXT = %w(.scss .sass .coffee .erb)
    def precompile_assets
      assets = []
    
      %w(app vendor).each do |source|
        %w(images javascripts stylesheets).each do |kind|
          Dir[Rails.root.join("#{source}/assets/#{kind}/**", ASSET_FORMAT)].each do |path|
            next if File.basename(path)[0] == '_'
    
            ext = File.extname(path)
            path = path[0..-ext.length-1] if NEED_TO_COMPILE_STYLESHEET_EXT.include? ext
    
            assets << Pathname.new(path).relative_path_from(Rails.root.join("#{source}/assets/#{kind}"))
          end
        end
      end
    
      assets
    end
    config.assets.precompile = precompile_assets
    

    @huacnlee 添加新的 asset 还要修改 production.rb 多麻烦...

  • Rails 学习推荐书籍列表 at 2012年11月03日

    linux 入门 推荐《鸟哥的 linux 私房菜》台湾人写的 也是整理自他的 blog,很风趣

  • 尼玛!下雪了 at 2012年11月03日

    因为今天北京 ruby-china 聚会改周六了哇 下雨的形势也要相应变化一下

  • URL shortner at 2012年11月03日

    @hooopo 量特别大的时候 crc 碰撞率会很高吧...

  • [北京][11 月 3 日] 上午 [Code for Fun]+ 下午 [Ruby Open Party] at 2012年11月03日

    @jefffreylam 有事没来,去上海 rubyconf 你们有讨论了?

  • 这里提供一台阿里云主机作为新手部署测试使用 (3 个月有效) at 2012年11月03日

    https://github.com/jasl/start_up/blob/master/config/deploy.rb https://github.com/jasl/start_up/blob/master/lib/tasks/cdn.rake https://github.com/jasl/start_up/blob/master/config/environments/production.rb capistrano+assets 分发到又拍云+vendor 里 assets 预编译

  • 我预测 11 月 3 日 不会下雨 at 2012年11月02日

    3 日星期六 白天 中雨 高温 8℃ 无持续风向 微风 夜间 中到大雨 低温 1℃ 北风 4-5 级 from http://www.weather.com.cn/weather/101010100.shtml

  • [北京][2012年10月21日] Ruby 活动 有机械键盘、鼠标垫、卫衣等礼品 at 2012年10月31日

    @ywencn 拉♂回♂来 @hisea @jjym @congteng 还有谁在这有 id 的。。。。

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