Ruby China
  • Topics
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • Sign Up
  • Sign In
Alex Shi
@hlcfan
VIP
NO. 1364 / 2012-03-10

西安
76 Topics / 385 Replies
1 Followers
0 Following
96 Favorites
huh
GitHub Public Repos
  • pokr 54

    Make agile estimating and planning easy with our online planning or scrum poker tool

  • webmock 4

    Webmock for Golang, to stub requests.

  • mux-contrib 1

    Bunch of middlewares make mux easier

  • hlcfan.github.io 0

  • fm 0

    Content agnostic formatter for JSON, XML string. Indent incomplete JSON.

  • geoip 0

    Elixir library to find geo location information given an IP address, hostname or Plug.Conn

  • live_select 0

    Dynamic (multi)selection field for LiveView

  • gock 0

    HTTP traffic mocking and testing made easy in Go ༼ʘ̚ل͜ʘ̚༽

  • dotfiles 0

    ~hlcfan

  • go 0

    The Go programming language

More on GitHub
  • Overview
  • Topics
  • Replies
  • Favorites
  • Following
  • Followers
  • RubyConf China 2015 将于 10月10日-11日 于深圳举办 (内附讲师征集链接) at July 06, 2015

    :thumbsup:

  • [远程] Ruby 中文官网徵求志工 at May 26, 2015

    自荐 https://github.com/hlcfan

  • exception_notification 可以根据不同的错误,发送给不同的人吗? at April 09, 2015

    当然啊 你可以有一个充当 Director 的类来接收 Exception,去判断应该由哪个去处理发送给谁。

  • 高手对决 -- 博客服务器被黑的故事 at February 01, 2015

    感觉又在看《电脑爱好者》或者《网友世界》,,,

  • [西安][2015年1月18日] 15 年 的 Rails Girls 来咯~ at December 25, 2014

    学员不能申请了,,,

  • 安装 therubyracer 0.9.9 的时候报错, at December 06, 2014

    #6 楼 @towonzhou 找个 marvericks 的机器

  • Rails 4.2.0 rake db:migrate 报错 at December 02, 2014

    确定 migration 文件语法没有错误?

  • 安装 therubyracer 0.9.9 的时候报错, at December 02, 2014

    我猜你的系统是 Yosemite 吧,找一个装好 libv8 的系统,把 libv8.a 考到需要的地方

  • 动态定义路由 at November 18, 2014

    #3 楼 @ane 可以想办法把所有的 path 写到数据库里

  • RubyConf San Diego 2014 直播 at November 18, 2014

    刚离开圣地亚哥 早知道机票就晚一点了 sigh,,,

  • MBP 回车键翘起来了 怎么破? at September 11, 2014

    @huacnlee @kgen 我扣下来 在按回去 还是很松,,,不会是下边坏了吧

  • 如何介绍 Ruby on Rails? at August 13, 2014

    来个 5 分钟建立博客的演示? 我也叫 Alex :)

  • render json 返回到客户端的对象 id 减小或者增加一位数 at August 02, 2014

    还是用字符串吧

  • Mac OS X 10.10 升级失败,咋办?[已解决] at August 02, 2014

    更新完 beta,一切 ok

  • 有人用过 xmpp 的客户端吗 at July 30, 2014

    try faye?

  • 我想做一个解决 it 男单身问题的网站 靠谱么 at May 21, 2014

    其实这是解决不了的问题,因为女的总是比男的少。而 IT 男大多没有太多时间花在谈情说爱上。所以,没毕业的,赶紧在学校搞定了吧 😃

  • ruby-china 网站一直没有样式 at May 19, 2014

    的确,上午是有一段时间 upyun 的静态文件出问题了 210.74.149.155 陕西省西安市 联通

  • 舌尖上的域聘 (16 日 新菜品) at May 17, 2014

    还有工夫做这么精美的饭菜

  • 家里小狗昨天死了,好难过 at May 15, 2014

    老死的?哎,我家也死过,病死,忘记了打疫苗。全家好几天很阴沉。

  • 西安的小伙伴在哪里?西安的活动在哪里? at May 05, 2014

    #2 楼 @bigpig85 @yorzi 也给我个邀请吧

  • 一表关联多个外键的问题 at May 05, 2014

    添加外键的字段应该定义到 Migration 中

  • 西安的小伙伴在哪里?西安的活动在哪里? at May 05, 2014

    在这里在这里~

  • 想知道有哪些合适 (最好免费) 的平台可以用来部署小规模应用? at April 20, 2014

    去买个年付 800 左右的 vps,随意弄

  • 读 Ruby on Rails Tutorial 遇到的问题 at April 15, 2014

    你没有定义 $grayLight 啊,顶部只定义了 $grayMediumLight: #eaeaea;

  • Github 开发的心编辑器 Atom 邀请码 at March 11, 2014

    #131 楼 @floger [email protected] thx alot.

  • Ruby 中那些你绕不过的「坑」(译) at March 11, 2014

    #27 楼 @hooopo 是啊,的却有意思。

    • way 1 method = Foo.method('bar=') method.call(3) => "OK"
    • way 2

      Foo.send('bar=', 3) => "'OK"
      
    • way 3

      eval "Foo.bar = 3" => 3
      
  • Ruby 中那些你绕不过的「坑」(译) at March 11, 2014

    Rails 代码中捕捉异常一直写的是 rescue Exception => e ,我觉得没有什么大问题,因为 rescue 代码块已经做了处理,不会存在因为捕捉 Interrupt 和 SignalException 让程序 hang 住,而且有些异常是未知的,所以打出所有的异常是可行的。

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