Ruby China
  • Topics
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • Sign Up
  • Sign In
黄明和
@h_minghe
Member
NO. 14104 / 2014-07-16

[email protected]
上海
26 Topics / 93 Replies
7 Followers
0 Following
1 Favorites
GitHub Public Repos
  • fx 2205

    A Function as a Service tool makes a function as a container-based service in seconds.

  • YoYo 209

    A dead simple comment engine built on top of AWS lambda and React, alternative comment service to...

  • astro-air-blog 23

    A minimalist, beautiful, responsive blogging program written in Astro.一个简约、漂亮并且支持响应式的博客程序,基于 Astr...

  • EdgeQL 17

    GraphQL on Edge

  • finetune 5

    Github actions for GPT fine tuning

  • Cofe 2

    A blog writing and memo talking app powered by GitHub

  • hono 2

    Ultrafast web framework for Cloudflare Workers.

  • hono-middleware 1

    monorepo for Hono third-party middleware/helpers/wrappers

  • router-1 0

    A configurable, high-performance routing runtime for Apollo Federation 🚀

  • OpenAI 0

    Swift community driven package for OpenAI public API

More on GitHub
  • Overview
  • Topics
  • Replies
  • Favorites
  • Following
  • Followers
  • 有没有好的代码注释 typo 检查工具推荐么 at February 11, 2015

    #1 楼 @nightire

    我是 vim 党。

  • Gmail 客户端收不到邮件 at December 30, 2014

    @kgen 的云梯常年开着,很稳定。

  • Ruby 2.2 发布了 at December 29, 2014

    #22 楼 @donghua 全是日语,史密达了。

  • 我兑现了一个月前的承诺 at December 28, 2014

    说到做到,真男人。

  • 微信订阅号:Ruby 程序员年度总结 (招募贡献者) at December 28, 2014

    #9 楼 @michael_roshen 从社区获得前辈们的很多指导,希望自己也可以做点什么。

  • 有没有什么手机可以 SSH 到服务器的方法呢? at December 28, 2014

    webssh 我在 iphone 一直用这个

  • 单机数据抓取性能提升总结篇 at December 26, 2014

    好文,赞。

  • 微信订阅号:Ruby 程序员年度总结 (招募贡献者) at December 26, 2014

    大家一起来,ruby 更好玩。

  • Ruby 2.2 发布了 at December 26, 2014

    我今天才发现在 ruby 的主要贡献者里有一个女神,https://github.com/yugui

  • 开源项目 获取分享 huoqufenxiang.com at December 26, 2014

    文件的大小是否做了限制呢,和 dropbox 的主要区别是免注册,文件的存在时间设置。

  • 有童鞋一起撸 Leetcode 的 Ruby solution 吗 at December 23, 2014

    #6 楼 @mogodb 撸撸更健康

  • 有童鞋一起撸 Leetcode 的 Ruby solution 吗 at December 23, 2014

    #5 楼 @DeathKing 你也是哈工大的,哪一级呢?

  • 有童鞋一起撸 Leetcode 的 Ruby solution 吗 at December 23, 2014

    #5 楼 @DeathKing 使用任何语言都不能代替你去思考算法本身。想到用 Ruby 只是因为喜爱 Ruby,在实现真正的算法的时候,并不会考虑直接调用 Ruby 比较高层的内置方法。

  • 有童鞋一起撸 Leetcode 的 Ruby solution 吗 at December 23, 2014

    #3 楼 @realwol 邮件已发。

  • 碰到一个奇怪的问题,(0.6/0.2).to_i=? at December 23, 2014

    这和 irb 的版本有关,比如:

    irb 0.9.6(09/06/30)
    0.6/0.2 =>2.9999999999999996
    
    irb 0.9.5(05/04/13)
    0.6/0.2 => 3.0
    
  • 爬虫自动抓取新闻放到自己的网页中怎么实现 at December 23, 2014

    爬虫的 gem 是有的,比如 rspidr,我基于 rspidr 也定制了一个:https://github.com/metrue/rbspider

    放到自己的网页中,也就你要爬内容喽,然后自己渲染页面?

  • 有童鞋一起撸 Leetcode 的 Ruby solution 吗 at December 23, 2014

    #1 楼 @realwol 要不一起撸撸,已经撸了一道题。https://github.com/metrue/Leetcode

  • 如何实时获得 stdout 里的内容? at December 18, 2014

    @nine @hooopo 命名管道最适合。

    写进程 $ cat writer.rb

    require "mkfifo"
    
    if File.pipe?("named_pipe") || File.mkfifo("named_pipe")
      File.open("named_pipe", "w+") do |file|
        10.times do |t|
            file.puts "2"
            file.flush
            sleep 1
        end
      end
    end
    

    读进程 $ cat reader.rb

    file = File.open("named_pipe", 'r+')
    while !file.eof?
       line = file.readline
       puts line
    end
    
  • 如何实时获得 stdout 里的内容? at December 17, 2014

    'ruby sleep.rb' 是单独的进程了,run.rb call 它的时候是获取其的全部的 STDOUT,当然要等它结束之后才能获得。 你可以用管道来解决吧。

  • Coding 移动端客户端代码开源啦! at December 17, 2014

    太好了,从 project 的组织结构或是代码设计,都有很多借鉴的地方,谢谢。

  • Rails 和 Sinatra 谁更适合做 APP 的后台? at August 26, 2014

    现在团队使用 rails 做 app 后台,感觉挺好的,没有使用过 sinatra,不敢评论孰优孰劣。

  • 一份 ruby web 进阶的名词和问题,欢迎补充 at August 08, 2014

    很喜欢这样的 list。

  • [上海][2014年7月20日] 2014 年 7 月 周末聚会 (需报名) at July 16, 2014

    报名,新人,期待加入组织

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