Ruby China
  • 社区
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • 注册
  • 登录
@kikyous
高级会员
第 2564 位会员 / 2012-06-16

[email protected]
西安
88 篇帖子 / 875 条回帖
20 关注者
0 正在关注
13 收藏
GitHub Public Repos
  • ChatGPT-Nuxt-Web 10

  • bootstrap3-sass 4

    bootstrap-sass 3 continue

  • vscode-css-action 3

    A vscode extension help editing scss/less file with color replace and px convert.

  • mitmfile.py 2

    Define and load mitmproxy config easy

  • easy_form 2

    form builder without complex dsl

  • tc-dev-enhance 1

  • vue3-ui-test 0

  • Clash.Meta 0

    A rule-based tunnel in Go.

  • inertia-rails 0

    The Rails adapter for Inertia.js.

  • deno_deploy_cors_proxy 0

    Deno Deploy CORS Proxy

More on GitHub
  • 概况
  • 话题
  • 回帖
  • 收藏
  • 正在关注
  • 关注者
  • Linux 下,chrome 打开 localhost 的 rails 页面各种被禁 at 2012年08月11日

    开机了没有?

  • appfog 真给力呀 at 2012年08月11日

    怎么执行 rake db:migrate 和 seeds 啊?

  • 一个 vim 小细节的疑问 at 2012年08月10日

    #3 楼 @jinleileiking @heliang7 这个是 vim 上最强的补全插件(用着很爽,很快)。不过有几个特性要带有最近 patch 的 vim7.3 https://github.com/Shougo/neocomplcache 推荐配置

    " neocomplcache 
    let g:neocomplcache_enable_insert_char_pre = 1  
    let g:neocomplcache_enable_at_startup = 1
    let g:neocomplcache_enable_auto_select=1
    
    
  • 好书推荐:pragmatic.working.with.unix.processing at 2012年08月05日

    #3 楼 @zw963 你是摆摊子看相的大仙?失敬失敬

  • Rails 其实有点像 Delphi. at 2012年08月04日

    我也是一上来就 rails,ruby 会的不是很多

  • 好书推荐:pragmatic.working.with.unix.processing at 2012年08月04日

    ruby 好像发展的很慢啊,github 上好几天才会有人提交一下

  • 虽不完美,但是时候在你的 Web 项目里集成 web notifications 咯. at 2012年08月03日

    新浪微博意境在用了

  • 各位 Vimer 你的 <Leader> 键映射成哪个了? at 2012年08月03日

    let mapleader="`"

  • rails 文件上传的问题 at 2012年07月29日

    要不单独弄一个 upload model 用 belongs_to ?

  • ruby-china 有没有 gem 推荐这样的功能啊 at 2012年07月28日

    #1 楼 @zlx_star 嗯,谢谢,就是这样的

  • [求助] rails 路由混乱了 at 2012年07月28日

    #6 楼 @hlcfan

    <%= link_to 'Edit', edit_note_path(@note) %> |
    <%= link_to 'Back', notes_path %>
    

    应该就是这两句

  • [求助] rails 路由混乱了 at 2012年07月28日
    Started GET "/messages/1" for 127.0.0.1 at 2012-07-28 16:06:57 +0800
    Processing by MessagesController#show as HTML
      Parameters: {"id"=>"1"}
      [1m[36mUser Load (0.3ms)[0m  [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
      [1m[35mActsAsMessageable::Message Load (0.4ms)[0m  SELECT "messages".* FROM "messages" WHERE "messages"."id" = 1 AND ((sent_messageable_type = 'User' and
     sent_messageable_id = 1 and
     sender_delete = 'f' and sender_permanent_delete = 'f') or
     (received_messageable_type = 'User' and
     received_messageable_id = 1 and
     recipient_delete = 'f' and recipient_permanent_delete = 'f')) ORDER BY created_at desc LIMIT 1
      [1m[36mActsAsMessageable::Message Load (0.4ms)[0m  [1mSELECT "messages".* FROM "messages" WHERE (messages.id = 1 or messages.ancestry like '1/%' or messages.ancestry = '1') ORDER BY created_at desc[0m
      Rendered messages/show.html.erb (2.7ms)
    Completed 500 Internal Server Error in 10ms
    
    ActionController::RoutingError (No route matches {:action=>"edit", :controller=>"notes", :id=>nil}):
      app/views/messages/show.html.erb:18:in `_app_views_messages_show_html_erb__799486363__610448278'
    
    
      Rendered /var/lib/gems/1.9.1/gems/actionpack-3.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
    
  • [求助] rails 路由混乱了 at 2012年07月28日

    #1 楼 @hooopo

    <%= link_to 'Edit', edit_note_path(@note) %> |
    <%= link_to 'Back', notes_path %>
    

    后面这点删除就好了,但是这个应该不影响啊

  • 吐槽~ Firefox 除了 Firebug 还剩下什么能吸引我? at 2012年07月28日

    #2 楼 @_samqiu 我也这么觉得

  • 新装机,把 VIM 插件整理一下,拿出来分享的交流一下 at 2012年07月28日

    ctrlP 比 commandT 好

  • git 比 rails 还难学习 at 2012年07月27日

    #1 楼 @jinleileiking #2 楼 @lichao #3 楼 @Rei #5 楼 @happypeter

    git branch test 新建一个 test 分支 git checkout text切换到新分支 echo modify_on_test_branch >> README

    然后切换到 master 分支,为什么可以看到 modify_on_test_branch 的修改呢?

    还有现在切换到 test 分支,git commit -am 'commit on test branch'

    这样提交之后就在 master 分支看不到 modify_on_test_branch 的修改了,为什么呢?

  • git 比 rails 还难学习 at 2012年07月27日

    #3 楼 @Rei #1 楼 @jinleileiking 嗯,在看这个书

  • 新功能发布公告,同时收集 Ruby 开发小贴士 at 2012年07月25日

    Tips:不要按 Ctrl+W

  • 新功能发布公告,同时收集 Ruby 开发小贴士 at 2012年07月25日

    现在的位置太不显眼了

  • 新功能发布公告,同时收集 Ruby 开发小贴士 at 2012年07月25日

    ubuntu 挺好

    放 tips 的话 ubuntu 中文论坛的那个位置不错

  • ruby-china 的 repo 怎么变那么庞大了? -_- at 2012年07月25日

    用 https 的吧,git 的慢的跟蜗牛一样

  • Passenger 4.0 将推出收费的企业版本,提供更棒的无缝重启功能 at 2012年07月25日

    passenger 性能怎么样

  • 今天买 Web 开发敏捷之道的时候悲剧了。 at 2012年07月23日

    #4 楼 @sytao http://guides.rubyonrails.org/

  • 今天买 Web 开发敏捷之道的时候悲剧了。 at 2012年07月23日

    #4 楼 @sytao 入门看 rails guides 很合适

  • 今天买 Web 开发敏捷之道的时候悲剧了。 at 2012年07月23日

    这本书不好

  • 新发现的 ruby-china 的 bug at 2012年07月23日

    #2 楼 @lgn21st e,这明显是 bug

  • 求 Rails 站内信 gem 插件 at 2012年07月23日

    #3 楼 @huacnlee 这个 gem rails3.2 能用吗?

  • 求 Rails 站内信 gem 插件 at 2012年07月23日

    #1 楼 @kenshin54 嗯,正在看这个

  • 在 rails 3.2.3 中加入 ckediter 的详细步骤 at 2012年07月23日

    这东西不用 gem 也行吧 百度出的一个不错 http://ueditor.baidu.com/website/onlinedemo.html

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