Ruby China
  • Topics
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • Sign Up
  • Sign In
李华顺
@huacnlee
Admin
NO. 2 / 2011-10-28

[email protected]
长桥证券 (Longbridge)
成都
502 Topics / 9058 Replies
959 Followers
53 Following
105 Favorites
Reward
GitHub Public Repos
  • autocorrect 1412

    A linter and formatter to help you to improve copywriting, correct spaces, words, and punctuation...

  • rails-settings-cached 1104

    Global settings for your Rails application.

  • rucaptcha 697

    Captcha Gem for Rails, which generates captcha image by Rust.

  • zed-theme-macos-classic 97

    A macOS native style theme for Zed, let it same like native app in macOS.

  • vscode-macos-classic.t... 22

    macOS Classic theme for Visual Studio Code

  • zed-extension-action 19

    GitHub Action for automatically bump Zed Extensions version after a release.

  • autocorrect-action 11

    GitHub action for use AutoCorrect as lint

  • zed-autocorrect 6

    AutoCorrect for Zed

  • gpui-workspace 4

    Dock layout UI component for GPUI, that extracted from Zed project.

  • zed-lalrpop 3

    LALRPOP parser grammar support for Zed.

More on GitHub
  • Overview
  • Topics
  • Replies
  • Favorites
  • Following
  • Followers
  • 关于结对编程的效果 at May 03, 2012

    我还不知道什么是“结对编程”

  • 关于下一版本 Ruby China 的功能计划 at May 03, 2012

    只有上面两个新功能我是经过认真的考虑的 没有之前聊过的根据评分排序的方式,也没有关注节点的功能。主要原因是我觉得不合适目前的 Ruby China

  • 请大家帮我分析一下这段创建数据库代码 at May 03, 2012

    idx_key 只是给索引取一个名字而已,如果不要 :name 参数的话,Rails 会自动用前面的 :simple_captcha_data 和 :key 来组合索引名字 ,并且在前面加上 index_ 也就是:index_simple_captcha_data_key , 此外 MySQL 里面对于索引名称长度是有限制的

  • oauth2 新浪微博授权回调错误,求助 at May 03, 2012

    这个错误提示页面好像 Django 我是来打酱油的,你这个截图没法看出问题

  • 如何测试 rails 网站在高并发下的性能? at May 03, 2012

    一直在用 ab 来测

  • ruby 脚本处理文件去重复行 at May 03, 2012

    #2 楼 @y2950896 File.read(fname).split("\n").uniq

  • 请教一个 Feed 的设计方法 at May 02, 2012

    https://github.com/felixclack/redis-timeline 这个 Gem 刚刚研究了一下,设计方式有值得参考的地方,它将每个关联的数据都设置一个 display_name 用于显示内容,查询出来的时候直接从 Redis 里面出来,都不需要关联主数据库查询了。 不过土鳖的是,后面数据存储的实现非常冗余,每个 follower 每个 @ 回复的列表都会有重复的数据。

  • 能否把社区设置成不显示边栏? at May 02, 2012

    下一个版本或许会考虑一下新的布局

  • Mongoid::Criteria 不使用缓存 at May 01, 2012

    类变量和实例变量搞错了

    class Favorite
      def content
        Rails.cache.fetch("favorite:content/#{self.id}", , :expires_in => 1.days ) {
          self[:content]
        }
      end
    end
    
    
  • Ruby-china T-shirt 贴图 at May 01, 2012

    马尾

  • 安装 Octopress 时报错,求办法!! at April 30, 2012

    #10 楼 @hbin 嘿嘿,楼主是我多年的好朋友,习惯了

  • 安装 Octopress 时报错,求办法!! at April 30, 2012

    哦,你妈,Git 都没安装吧

  • 腾讯有用 ruby 吗? at April 28, 2012

    可定有的,据我了解这些大公司什么都有在用,林子大了什么都有

  • Rails 3.2 的 Ajax 向导 at April 28, 2012

    @Rei 换了头像我都不认识你了

  • 为什么我退出后,就无法登录了 at April 28, 2012

    你是修改了密码,然后用新的密码无法登陆,老密码还是可以?

  • 为什么我退出后,就无法登录了 at April 28, 2012

    账号叫什么?

  • 五一了 站长得表示下吧 at April 28, 2012

    #5 楼 @jiffies 别人的工具,我只是偷偷调用而已

  • 五一了 站长得表示下吧 at April 28, 2012

    下片吧!赶紧的! http://720p.so/movies/737

  • 五一了 站长得表示下吧 at April 28, 2012

    我叉,那谁给我发呢

  • 知乎是怎么注册的. 是邀请码吗? at April 28, 2012

    #13 楼 @musicflow 让你们技术过来分享一下一些实现方式吧

  • 知乎是怎么注册的. 是邀请码吗? at April 28, 2012

    #9 楼 @musicflow 这位是姑娘吗?

  • 请教一个 Feed 的设计方法 at April 28, 2012

    这个看起来非常不错,具体可以看 examples 目录的例子 https://github.com/gowalla/chronologic

    不过,后端存储需要用到 Cassandra

  • 请教一个 Feed 的设计方法 at April 28, 2012

    之前用过 timeline_fu,但是不是很理想

  • 草泥马编程语言 at April 28, 2012

    来,写段 Hello World 试试

  • 弱弱的问一下全文检索和 SQL 的搜索有什么区别 at April 28, 2012

    sql like 问题:

    1. 效率低
    2. 无法匹配混合顺序的内容,比如"Ruby 社区 的 技术", SQL 无法搜索任意顺序的排列,而专业的搜索引擎可以实现;
    3. 无法根据内容匹配度排序
  • ruby-china 分页按钮过宽 at April 28, 2012

    @yakjuly @scys77 @kfll @richarddong 你们有试过用键盘左右来翻页么?

  • 弱弱的问一下全文检索和 SQL 的搜索有什么区别 at April 28, 2012

    前者是一门专有的技术用于解决在文本里面搜索内容 后者只是 SQL 里面的条件查询而已

    所以当然是专业的技术好!

  • 一段摘自网络的文章, 通篇讲了两个很难很难的字, 深有感触, 不解释. at April 28, 2012

    主席就是不一样

  • ruby-china 分页按钮过宽 at April 28, 2012

    接下来,把中间的数字去掉吧,只留下 Next 和 Prev

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