Ruby China
  • 社区
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • 注册
  • 登录
tanker
@tankerwng
会员
第 4167 位会员 / 2012-10-22

[email protected]
大连
4 篇帖子 / 108 条回帖
3 关注者
6 正在关注
240 收藏
GitHub Public Repos
  • ruby_llm 0

    Stop juggling AI SDKs! RubyLLM offers one delightful Ruby interface for OpenAI, Anthropic, Gemini...

  • v2rayN 0

    A GUI client for Windows, Linux and macOS, support Xray and sing-box and others

  • suyu 0

    suyu, pronounced "sue-you" (wink wink) is the continuation of the world's most popular, open-sour...

  • clashfree 0

    clash节点、免费clash节点、免费节点、免费梯子、clash科学上网、clash翻墙、clash订阅链接、clash for Windows、clash教程、免费公益节点、最新clash免...

  • get_subscribe 0

    ✈️ 免费机场 / 免费VPN -> 自动获取免 clash/v2ray/trojan/sr/ssr 订阅链接,间隔12小时持续更新 | 科学上网 | 翻墙

  • free 0

    翻墙、免费翻墙、免费科学上网、免费节点、免费梯子、免费ss/v2ray/trojan节点、蓝灯、谷歌商店、翻墙梯子

  • haijiaoWeb 0

    Config files for my GitHub profile.

  • v2rayfree 0

    v2ray节点、免费节点、免费v2ray节点、最新公益免费v2ray节点订阅地址、免费v2ray节点每日更新、免费ss/v2ray/trojan节点、freefq

  • kexueshangwang 0

    科学上网、免费科学上网、clash节点、免费clash节点、免费梯子、翻墙、免费翻墙,免费公益SSR/V2ray/Shadowrocket/Clash节点/小火箭订阅链接

  • btop 0

    A monitor of resources

More on GitHub
  • 概况
  • 话题
  • 回帖
  • 收藏
  • 正在关注
  • 关注者
  • gitlab 报错:找不到 ruby 命令。看了 Issue 还是没懂这么解决。。 at 2013年12月20日

    env,应该是所有的环境变量。path 不是。

  • gitlab 报错:找不到 ruby 命令。看了 Issue 还是没懂这么解决。。 at 2013年12月20日

    安装完 rvm,这个 source /etc/profile 执行了吗?

  • 求教:Sublime Text 对 .html.erb 文件的自动缩进 at 2013年12月20日

    客气,也没帮上啥忙。不过,https://github.com/CraigWilliams/BeautifyRuby中提到: If you use project-specific rubies and gem sets managed with rvm, then simply set "ruby": "~/.rvm/bin/rvm-auto-ruby", and then the htmlbeautifier gem is found even if it is only installed for this project.

  • 求教:Sublime Text 对 .html.erb 文件的自动缩进 at 2013年12月20日

    htmlbeautifier 是直接 gem install 装的,没用 rvm 之类的。

  • 求教:Sublime Text 对 .html.erb 文件的自动缩进 at 2013年12月20日

    我的是 win7 的,BeautifyRuby 的 Settings-Default: { // Would you prefer a tab or two spaces to represent a tab // The default is two spaces represented by 'space' // anything else will use one tab character "tab_or_space": "space", "ruby": "C:/Ruby200/bin/ruby.exe", "file_patterns": ["\.html\.erb", "\.rb", "\.rake", "Rakefile", "Gemfile"], "html_erb_patterns": ["\.html\.erb"], "run_on_save": false, "save_on_beautify": true }

  • 好像 Ruby 的性能问题始终是个大问题啊! at 2013年12月20日

    这纯属测试语言的所谓性能问题,要是用 c 和汇编的话,会更快的。

  • 好像 Ruby 的性能问题始终是个大问题啊! at 2013年12月20日

    我觉得这种测试没实际太大的意义。

  • Rails 太重?这要辩证的看 at 2013年12月20日

    看看http://robbinfan.com/blog/40/ruby-off-rails@user1,里边有具体的数值对比。

  • Rails 太重?这要辩证的看 at 2013年12月19日

    所以,完全可以按照需要,精简一番。

  • Rails 太重?这要辩证的看 at 2013年12月19日

    robbin 的http://robbinfan.com/blog/40/ruby-off-rails中提到: Rails 调用堆栈过深,URL 请求处理性能很差

    Rails 的设计目标是提供 Web 开发的 最佳实践,所以无论你需要不需要,Rails 默认提供了开发 Website 所有可能的组件,但其中绝大部分你可能一辈子都用不上。例如 Rails 项目默认添加了 20 个 middleware,但其中 10 个都是可以去掉的,我们自己的项目当中手工删除了这些 middleware:

    config.middleware.delete 'Rack::Cache' # 整页缓存,用不上 config.middleware.delete 'Rack::Lock' # 多线程加锁,多进程模式下无意义 config.middleware.delete 'Rack::Runtime' # 记录 X-Runtime(方便客户端查看执行时间) config.middleware.delete 'ActionDispatch::RequestId' # 记录 X-Request-Id(方便查看请求在群集中的哪台执行) config.middleware.delete 'ActionDispatch::RemoteIp' # IP SpoofAttack config.middleware.delete 'ActionDispatch::Callbacks' # 在请求前后设置 callback config.middleware.delete 'ActionDispatch::Head' # 如果是 HEAD 请求,按照 GET 请求执行,但是不返回 body config.middleware.delete 'Rack::ConditionalGet' # HTTP 客户端缓存才会使用 config.middleware.delete 'Rack::ETag' # HTTP 客户端缓存才会使用 config.middleware.delete 'ActionDispatch::BestStandardsSupport' # 设置 X-UA-Compatible, 在 nginx 上设置 其中最夸张的是 ActionDispatch::RequestIdmiddleware,只有在大型应用部署在群集环境下进行线上调试才可能用到的功能,有什么必要做成默认的功能呢?Rails 的哲学是:提供最全的功能集给你,如果你用不到,你自己手工一个一个关闭掉,但是这样带来的结果就是默认带了太多不必要的冗余功能,造成性能损耗极大。

  • 求教:Sublime Text 对 .html.erb 文件的自动缩进 at 2013年12月18日

    gem install htmlbeautifier,你装了吗?@happypeter

  • [上海] 新加坡互联网口碑营销公司诚聘 Ruby 开发工程师 at 2013年09月04日

    同问

  • [广州][猎头] 知名互联网公司招聘 Ruby 高级开发工程师 at 2013年08月08日

    远程吧,远程吧,远程,我就报名。

  • [广州][猎头] 知名互联网公司招聘 Ruby 高级开发工程师 at 2013年08月08日

    又是网易?

  • [北京] 德国咨询公司招聘 Ruby/ROR 工程师 at 2013年07月22日

    可以远程吗?@collapsefz

  • [杭州] 找两名初、中级 Rails 工程师 at 2013年07月12日

    同问

  • 关于德国 it 移民 at 2013年07月04日

    呵呵,投完简历,告诉他们只能 10 月份之后过去,就没动静了。@woody1983

  • [旧金山 / 远程] Groupon 招聘远程 RoR 工程师 表现优秀可提供 2014 年 工作签证 at 2013年06月12日

    薪资待遇方便透露一下吗?@legendben

  • [北京] Spirent (美资) 招聘 Staff Software Technical Leader (JavaScript and Ruby User Interfaces) (要求更新) at 2013年05月23日

    额,好吧。哈哈哈。

  • [北京] Spirent (美资) 招聘 Staff Software Technical Leader (JavaScript and Ruby User Interfaces) (要求更新) at 2013年05月23日

    http://ruby-china.org/topics/11176

  • [北京] Boston Startup Looking for Ruby Developer in Beijing at 2013年05月21日

    哎,我是大连的,可是大连这破 IT 环境,就知道做外包。

  • [北京] Boston Startup Looking for Ruby Developer in Beijing at 2013年05月21日

    好吧,盛安德大连之前联系过我,不过,关于工资这块,让我和客户直接谈,这个,实在有些接受不了。我就和他实话实说了,结果,这盛安德大连哥们居然直接怒了,表示很是气愤,也就不了了之了。@TsingHan

  • [北京] Boston Startup Looking for Ruby Developer in Beijing at 2013年05月21日

    在大连一直 remote 行不行?@alexliu

  • [上海.浦东] 禅海之花里花店寻 Experienced Rails Developer at 2013年05月17日

    所以,我才那个恨啊。@ywjno

  • [上海.浦东] 禅海之花里花店寻 Experienced Rails Developer at 2013年05月17日

    好吧,谢谢了。唉,还是想呆在大连啊。@easymoo

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