Ruby China
  • Topics
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • Sign Up
  • Sign In
Fred Wu
@fredwu
VIP
NO. 188 / 2011-11-23

墨尔本
109 Topics / 836 Replies
156 Followers
0 Following
0 Favorites
https://fredwu.me/
GitHub Public Repos
  • crawler 952

    A high performance web crawler / scraper in Elixir.

  • angel_nest 774

    Project code name: Angel Nest. :)

  • opq 269

    Elixir queue! A simple, in-memory queue with worker pooling and rate limiting in Elixir.

  • stemmer 153

    An English (Porter2) stemming implementation in Elixir.

  • jquery-inline-confirma... 53

    Inline Confirmation plugin for jQuery. One of the less obtrusive ways of implementing confirmatio...

  • dotfiles 18

    My dotfiles

  • README-xplor 10

    Fred @ Xplor - how to work with me.

  • yield.rb 5

    Aggregated token amounts and values. Supports ApeBoard, YieldWatch, Binance, CoinGecko and more.

  • advent_of_code_2018 4

    https://adventofcode.com/2018/about

  • fredwu.me-v3 3

More on GitHub
  • Overview
  • Topics
  • Replies
  • Favorites
  • Following
  • Followers
  • RubyConf AU 2013 主题总结分享 [Youku 上传完成] at March 07, 2013

    视频陆续的发布了:https://vimeo.com/rubyau/videos

    强烈推荐 Aaron Patterson 的 keynote,非常之搞笑。:D

  • RVM 安装 Ruby 2.0.0 的 OpenSSL 问题 at February 24, 2013

    最简单快速的方案—— Gemfile 里把 source 改为 'http://rubygems.org'

  • RubyConf AU 2013 主题总结分享 [Youku 上传完成] at February 24, 2013

    #18 楼 @ysihaoy Envato 是个非常棒的公司——当年,墨尔本有两家公司我特别想加入,一家是 Envato,一家是 SitePoint。这两家公司我都任职过了,算是“圆梦”过了,呵呵。

    当时是作为一个 PHP 程序员加入 Envato 的。在不到两年的任职间,学习到了非常多的东西,尤其是对于软件工程方面的一些概念。更重要的是,Envato 付我工资让我慢慢的学习和运用 ruby,这一点我至今仍然是非常的感激——这是我职业生涯一个非常重要的转折点。如果当时没有加入 Envato 的话,我现在很可能还是在做 PHP 方面的东西。

    决定离开 Envato 有众多原因。比如,加入后来的公司 PlayUp 让我得到了更快速的在项目开发和团队协作方面的经验累积的机会。跳槽后我能够全职的写 ruby —— 在 Envato 我大部分时间还是在维护 PHP 的项目。另外一个很现实的原因是工资——跳槽给了我 30%+ 的工资涨幅。诸如此类的。

    :)

  • RubyConf AU 2013 主题总结分享 [Youku 上传完成] at February 22, 2013

    这次参加 RubyConf AU,两天总共才睡了 10 个多小时(晚上处理公司的项目),一天两杯咖啡,如同行尸走兽。:(

  • RubyConf AU 2013 主题总结分享 [Youku 上传完成] at February 22, 2013

    #5 楼 @leomao10 我 8 点左右就离开了……

  • RubyConf AU 2013 主题总结分享 [Youku 上传完成] at February 22, 2013

    我没去抱 Aaron Patterson,这会儿无比后悔中。。。T_T

  • Ruby 语言二十岁生日,如果你采访 Matz,你会问什么? at February 19, 2013

    @lgn21st 啊,期待,什么时候进行采访呀?

    • 对于 Refinement 有什么新的想法和计划。
    • 对于 Python 的 decorator 有什么看法—— Ruby 今后会增加 decorator 吗?
    • GIL 是否最终会被去除?
    • 越来越多的应用走向多处理器高并发——很多公司和项目开始使用 nodejs。MRI 在这方面相比处弱势。对此有何想法和计划吗?

    嗯,先就想到这些。:)

  • android 下没法沿用任何 ruby 的东西么? at February 17, 2013

    http://ruboto.org/

  • [澳大利亚悉尼] Ruby On Rails Web 应用开发工程师 at February 13, 2013

    #10 楼 @lgn21st 雪梨是悉尼。=.=

  • [澳大利亚悉尼] Ruby On Rails Web 应用开发工程师 at February 13, 2013

    #5 楼 @aisensiy 在喵本的话,50k 属于代码民工级别,90k 属于 mid-senior 级别。雪梨的话也差不太多。

  • Jeff Atwood 的新项目,开源论坛 Discourse at February 06, 2013

    UI 看上去很不错,试用了下感觉 UX 也不错。

    但开源的代码质量比较一般……

  • 好用的 Vim at January 31, 2013

    如果是和我一样是懒人的话,可以尝试 Janus 或 spf13-vim,我用的是 Janus。:)

  • 想买 tutsplus.com 上的视频,没有 PayPal 怎么办? at January 29, 2013

    #8 楼 @evil850209 选了 Paypal 之后在 Paypal 的支付页面上的。

  • 想买 tutsplus.com 上的视频,没有 PayPal 怎么办? at January 29, 2013

    选 No PayPal account? Pay using your credit or debit card 就好了。

  • 这段代码怎么去重复? at January 25, 2013

    使用方法:

    # without concurrent execution
    BuildDB.new(db_specs, false).output
    
    # with concurrent execution
    BuildDB.new(db_specs, true).output
    

    实现方法:

    class BuildDB
      def initialize(db_specs, concurrent)
        @db_specs   = Collection.new(db_specs)
        @concurrent = concurrent
      end
    
      def output
        wrap_collection(@db_specs).format_output
      end
    
      private
    
      def wrap_collection(subject)
        Collection.new(
          subject.map do |label, options|
            wrap_execution { run label, options }
          end
        ).tap { |c| c.concurrent = @concurrent }
      end
    
      def wrap_execution(&block)
        if @concurrent
          Thread.new { block.call }
        else
          block.call
        end
      end
    
      def run(label, options)
        puts label, options
      end
    
      class Collection < ::Array
        attr_accessor :concurrent
    
        def format_output
          concurrent ? self.map(&:value) : self
        end
      end
    end
    
  • 真有什么手机应用都有啊 at January 23, 2013

    国外也有,而且排行很高…… #_#

  • 基本上能给业界流行的开源源件提交 Patch,都会让人对你刮目相看。 at January 20, 2013

    我算了下,我一共自己发布了 19 个开源项目,和人合作开发了 3 个开源项目,提交 patch 过给 22 个开源项目。 :D

  • 魅族 CEO 骂人,元芳 你怎么看 at January 17, 2013

    J.Wong 的脑残连西方国家的业界都有所耳闻了…… 不算新闻了,嘿嘿。 =。=

  • 看图灵采访 matz 的文章我笑喷了.... at January 15, 2013

    英文翻译版:http://fredwu.me/post/36493181321/an-interview-with-yukihiro-matz-matsumoto

  • 今晚石川顺利牵走北大才女 at January 14, 2013

    男主的真相咧?=v=

  • 我终于知道学好英语的重要性了 at January 12, 2013

    这英语本来就是错的所以随便翻译都可以啊 ^__^

  • [北京][求职][移动互联网][技术总监][首席架构师] at January 12, 2013

    #6 楼 @lgn21st 其实我是要和牛魔王搞基的。。。Orz...

  • [北京][求职][移动互联网][技术总监][首席架构师] at January 12, 2013

    老婆,快出来看上帝!

  • Reddit 联合创始人 Aaron Swartz 自杀 享年 26 岁 at January 12, 2013

    从他的博文可以依稀推算出他应该是患了类似忧郁症的病状…… 可惜了。

  • Rails 应该对 Gems 实行准入许可制度 (转) at January 12, 2013

    #12 楼 @sandybeauty 谢谢!

    看了一下,原文是 2 年多前写的。我也不赞同原文作者的观点。:)

  • Rails 应该对 Gems 实行准入许可制度 (转) at January 12, 2013

    转载的话,贴一下原文链接吧。

  • 月薪 20k+ 有多少?八卦一下 at January 09, 2013

    年薪超过 1m+ 的有多少,出来八卦一下吧。

  • 今日惊喜 Ruby 2.0 RC1,Github 新的 Profile 页面 at January 08, 2013

    新 profile 页面看上去不错哦。:)

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