Web | IDE Testing MySQL JavaScript XRails Stylesheet
- http://www.hokstad.com/mini-reviews-of-19-ruby-template-engines.html
... 26 篇回复 | 参与讨论 | 浏览讨论区 Stylesheet | bd7lx | | | | | | | | | 
- http://giantrobots.thoughtbot.com/2009/3/30/2009-rubyist-guide-mac-os-x-development-environment

倾情分享,苹果Mac os X 上做开发用到的
工具和简化安装... 14 篇回复 | 参与讨论 | 浏览讨论区 IDE | bd7lx | | | | | | | | | 
- http://css-sprit.es/

http://css-tricks.com/css-sprites/
CSS Sprites是一种网页图片应用处理方式。它允许你将一个页面涉及到的所有零星图片都包含到一张大图中去,这样一来,当访问该页面时,载入的图片就不会像以前那样一幅一幅地慢慢显示出来了。对于当前网络流行的速度而言,不高于200KB的单张图片的所需载入时间基本是差不多的,所以无需 顾忌这个问题。
按照yahoo的rules for high performance web sites的原则,应当较少Client与Server端间 的HTTP Request次数。通过CSS Sprites方法将多张图片组装成单独的一张图片,可以有效减少HTTP请求 的次数。
当整幅图片载入完成后,你就可以使用CSS方法通过设置背景位置的方式完成所需图片的准确调用。
加速的关键,不是降低重量,而是减少个数。传统切图讲究精细,图片规格越小越好,重量越小越好,其实规格大小无所谓,计算机统一都按byte计算。客户端每显示一张图片都会向服务器发送请求,所以,图片越多请求次数越多,造成延迟的可能性也就越大。
更多中文介绍... 2 篇回复 | 参与讨论 | 浏览讨论区 Stylesheet | bd7lx | | | | | | | | | 
- http://utilitybelt.rubyforge.org/

http://slash7.com/articles/2006/12/21/secrets-of-the-rails-console-ninjas
http://railscn.com/viewthread.php?tid=3429... 27 篇回复 | 参与讨论 | 浏览讨论区 IDE | bd7lx | | | | | | | | | 
- http://blog.jimmy.schementi.com/2009/02/ironrubyinfo.html
ironruby.info 网站追踪其性能每日的变化还有RubySpec的信息

与ruby.exe比较负面的居多,有待改进... 8 篇回复 | 参与讨论 | 浏览讨论区 XRails | bd7lx | | | | | | | | | 
|
Ruby on Rails | Ask Plugins Lists Rails Newbie Tips
- 存储blog内容的话,除了XML方式还有其他比较好的方式么?
我就是想把我的blog内容存下来,以后我的BLOG升级了,一导入,以前的记录就还有,目前是想在网页上做个按钮,一点,就将记录转成XML文件存在硬盘,然后我重新部署网站,再一点,将以前的XML转为数据库,
也就是个网络数据库备份,恢复问题,我在heroku部署,heroku会提供这种数据库备份恢复功能么?要是能提供就太好了。... 2 篇回复 | 参与讨论 | 浏览讨论区 Ask | jinleileiking | | | | | | | | | 
- 想发布你的宝贝gem,安家到:
rubyforge 土气
github 有点麻烦
gemcutter 太简单了
http://gemcutter.org/

http://github.com/qrush/gemcutter/tree/master... 19 篇回复 | 参与讨论 | 浏览讨论区 Plugins | bd7lx | | | | | | | | | 
- http://cfis.savagexi.com/articles/2008/06/16/rails-super-simple-asynchronous-processing
ruby way,列举出4类
* Spawn/Fork - Spawn
* Distributed Objects - BackgroundDRb
* Job Queue - Delayed Job (DJ), BackgroundJob (BJ), BackgroundFu, Starling,
Beanstalkd, Sparrow
* Message Sending - AP4R

队列方式的处理:
http://chinaonrails.com/topic/view/1218.html... 27 篇回复 | 参与讨论 | 浏览讨论区 Consultant Team | bd7lx | | | | | | | | | 
- http://codepad.org/
跟tryruby一样的
http://tryruby.hobix.com/
在线run各种语言C, C++, D, Haskell, OCaml, Perl, Plain Text, Python, Ruby, Scheme, and Tcl

http://dailystartups.blogspot.com/2008/04/test-c-perl-php-ruby-or-python-code.html... 6 篇回复 | 参与讨论 | 浏览讨论区 Lists | bd7lx | | | | | | | | | 
- http://www.metabates.com/2009/07/24/apple-push-notifications-on-rails/
Push Notification Service短信功能是苹果花费一年时间开发的iPhone新功能,利用Apple Push Notification Service时,即使在iPhone上的应用软件退出运行之后,苹果运营的服务器仍可与个别iPhone保持IP连接。应用软件开发人员可以通过苹果的服务器将消息发送到用户的iPhone上。利用这一功能,就无需在后台运行应用软件,因此能够延长电池寿命,减轻微处理器的负荷。
Push Notification Service短信功能的iPhone3.0进行评价时,苹果方面宣称对手RIM和微软的产品在在待机时间方面将比使用这项功能的iPhone3.0少80%。
http://github.com/markbates/apn_on_rails/tree/master
... 3 篇回复 | 参与讨论 | 浏览讨论区 Lists | bd7lx | | | | | | | | | 
|
Architecture | Server Performance Deployment Scaling SOA
- http://blog.evanweaver.com/articles/2009/09/24/ree/
性能如何呢?
... 2 篇回复 | 参与讨论 | 浏览讨论区 Performance | bd7lx | | | | | | | | | 
- http://20bits.com/2008/05/21/an-eventmachine-tutorial/
http://rubyeventmachine.com/
EventMachine 主要的用途是编写网络客户端和服务器之间的事件处理过程,提供众多函数类库的功能调用。
期望的看点:在未来的扩展中能大展身手,和erlang有一拼斗
对事件驱动的IO和架构不甚理解,联想当前的情况,可以有恍悟之感。
EventMachine 在消息系统中的应用,与Juggernaut做聊天chat程序
http://chinaonrails.com/topic/view/912.html
在服务器Thin中,还有Swiftiply
http://chinaonrails.com/topic/view/1166.html... 11 篇回复 | 参与讨论 | 浏览讨论区 Server | bd7lx | | | | | | | | | 
- http://townx.org/blog/elliot/virtualbox-open-source-virtualisation

http://www.virtualbox.org/
相关话题
http://chinaonrails.com/q/xen
VMWare、Virtual PC还有Xen都属于虚拟机软件,VirtualBox 1.5.0最近发布了,新奇之处是seamless windowing mode
,和64位的Windows主机。
而 seamless windowing mode 就是可以把虚拟的 OS 藏起來,只看到应用程序,就好像Wine。
相关的中文评论和资料很多,用google一捞就是一大把。... 13 篇回复 | 参与讨论 | 浏览讨论区 Server | bd7lx | | | | | | | | | 
- http://jqr.github.com/2009/04/24/deploy-your-rails-application-in-2-minutes-with-heroku.html

不完美之处
http://blog.obiefernandez.com/content/2009/04/heroku-and-godaddy-cname.html... 3 篇回复 | 参与讨论 | 浏览讨论区 Deployment | bd7lx | | | | | | | | | 
- Rails程序上线,安全检查单
MVC三个方面的代码细节入手,作者还将承诺补充REST和Ajax的部分
如果做成表格就更加直观,易于操作

http://rubythis.blogspot.com/2006/11/rails-security-checklist.html... 20 篇回复 | 参与讨论 | 浏览讨论区 Server | bd7lx | | | | | | | | | 
|
Events | Open Course Shanghai Beijing Shenzhen
- BeijingonRails的活动,我参加过第一场,目前靠线下,我相信还是有不少人没法尽兴交流。这不,我发现Wave平台是个实时Chat的地方,噪音也小。我嘛,想尝试当个报幕员,用手上剩下的Wave Invite邀请,也方便给大家分享。我的Wave帐号xiaods@gmail.com,有wave帐号就加我。没wave帐号可以给我邮箱发送,我会把剩下的5个帐号用上,然后就是鸡生蛋,蛋生鸡的形成一个Wave。提一下,我不想搞成QQ群,所以只要有3个人以上,咱们可以约个星期三的下午,就Rails Web开发交流
向RobinLu,Joynet之类带动beijing线下活动致敬。
活动行动我会向台湾的Ruby Tuesday活动学习。Go... 15 篇回复 | 参与讨论 | 浏览讨论区 Beijing | xds2000 | | | | | | | | | 
- 什么时候北京在搞ruby培训啊?... 2 篇回复 | 参与讨论 | 浏览讨论区 Beijing | fire9 |
| | | | | | | | 
- 号称第一
http://www.worldruby.com/personal/Ruby-on-Rails-GaoJiKaiFaRuanJianGongChengShiBan.html
里面视频资源有VTC的ruby培训电影

http://training.digitalchina.com/itsm/bbs/ShowPost.asp?ThreadID=192
价格有点贵
4天,培训费用为10000元/人
免费的要坚持下去
http://www.infoq.com/cn/news/2007/11/rails-workshop... 4 篇回复 | 参与讨论 | 浏览讨论区 Open Course | bd7lx | | | | | | | | | 
- http://www.novawave.net/public/rails_messaging_tutorial.html
只是没有完整的zip代码可下载,作者正在做
... 2 篇回复 | 参与讨论 | 浏览讨论区 Open Course | bd7lx | | | | | | | | | 
|
Agile | Books Snippets Ruby JRuby DSL Erlang
- Merb 版本不断演进中,到了1.0.5,里面各种不同的gems依赖性日趋纷乱
如何管理,看Yehuda 施展法术
http://splendificent.com/2008/12/merb-dependencies-and-bundler-conquered-screencast/
config/dependencies.rb
定义依赖的gems和版本号
运行
thor merb:gem:install

尚有其它的技巧,在视频... 19 篇回复 | 参与讨论 | 浏览讨论区 Merb | bd7lx | | | | | | | | | 
- Full Git Clone of Matz Ruby Subversion Repository
各种版本和补丁
抱回家
欣赏,研究,收藏,随便
http://blog.emptyway.com/2008/06/19/full-git-clone-of-matz-ruby-subversion-repository/
您也搂一把,是搂现成的,还是想重复作者的做法

下面是全部的ruby 镜像克隆
用git 捞吧
http://github.com/rubyspec/matzruby/tree/master... 4 篇回复 | 参与讨论 | 浏览讨论区 Ruby | bd7lx | | | | | | | | | 
- http://spin.atomicobject.com/2010/02/01/running-a-ruby-application-with-jruby-complete

java -jar jruby-complete-1.4.0.jar
运行jirb
java -Xmx500m -Xss1024k -jar jruby-complete-1.4.0.jar -e 'load "META-INF/jruby.home/bin/jirb"'
应用前景应该非常广泛
比如桌面的应用
http://chinaonrails.com/topic/view/2689.html... 2 篇回复 | 参与讨论 | 浏览讨论区 JRuby | bd7lx | | | | | | | | | 
- http://blog.fallingsnow.net/2008/09/05/rubinius-status/
不在沉默中爆发,就在沉寂里...
这个梦想的锅还有很多要补的
性能还拿不出手
... 7 篇回复 | 参与讨论 | 浏览讨论区 XRuby | bd7lx | | | | | | | | | 
- 曼德布洛特集合(Mandelbrot set)
曼德勃羅集合
是在复平面上组成分形的点的集合。http://en.wikipedia.org/wiki/Mandelbrot_set
运行下面链接中的代码
http://www.xcombinator.com/2008/02/22/ruby-inject-and-the-mandelbrot-set/
结果图形和下面的很接近

http://blog.xuite.net/sinner66/blog/10158128
有一部电影叫维度;数学漫步(Dimensions: a walk through mathematics)记不得那集里有讲到Fractal
http://www.dimensions-math.org/Dim_ZH_si.htm... 3 篇回复 | 参与讨论 | 浏览讨论区 Snippets | bd7lx | | | | | | | | | 
- http://jan.prima.de/~jan/plok/archives/159-Announcing-Relax-with-CouchDB-by-OReilly.html

抢上沙发
http://chinaonrails.com/topic/view/1290.html... 11 篇回复 | 参与讨论 | 浏览讨论区 Books | bd7lx | | | | | | | | | 
|
Recruitment | Jobs People Gossip Companies
- http://gilesbowkett.blogspot.com/2010/03/programmers-what-to-do-if-you-get-fired.html
不是靠喝汽水能解决的

主要探讨的还是声誉创造机会和财富... 3 篇回复 | 参与讨论 | 浏览讨论区 Jobs | bd7lx | | | | | | | | | 
- 职位描述:
游戏 Webgame 开发
职位1: 中级程序员
要求:
1、1~2年的Rails实践开发经验
2、有扎实的技术基础
3、熟悉linux、mysql等技术
4、能较熟练的阅读相应的英文技术资料
5、工作细心、敬业,踏实、好学
职位2: 高级程序员
要求:
1、Rails 两年以上经验
2、Web开发三年以上经验
3、有系统分析、设计经验
优先考虑 :
1、熟悉设计模式
2、有大访问量系统构架、数据库优化经验... 5 篇回复 | 参与讨论 | 浏览讨论区 Jobs | jingjing | | | | | | | | | 
- 美国结构数据(Factual.com)是一家总部位于洛杉矶的创新公司,致力于将更多更好的结构化数据开放给大众,以便于人们通过数据的利用完成各种研究、开发、创作,发挥数据带来的无限可能性。
现上海办公室急需互联网前端开发工程师。
Job Description:
* utilize javascript, html, and css with our api to develop new ways to visualize data
* communicate responsibly with colleagues in LA and Shanghai to provide swift problem resolution
* create classes for reusable ui elements
* refactor and reorganize html/css into bulletproof and clean code to ensure cross browser compatibility
* deal with bugs using bug tracking and version control
* make sure features are completed according to specification
Requirements:
* have an intermediate to advanced knowledge of HTML/CSS
* be able to write clean, valid, reusable and readable html and css
* be familiar with cross browser issues and how to handle them
* have an intermediate to advanced knowledge of javascript: OO, class methods
* must have excellent english communication skills
* have some prior programming experience (Javascript, Perl, Ruby, Python, etc.)
Preferences:
* experience building web aps using api's or creating api's
* ruby on rails experiences
* understand modern web design and standards
* experience in using ajax to build web apps
Desired Characteristics:
* Able to work independently or with a team
* Good communicator (asks questions)
* Pays attention to detail
* Self motivated
* Keen interest in modern web
* Strong desire to learn
欢迎对该职位感兴趣的朋友将简历发送至 peggy@factual.com, 请注明应聘职位及招聘信息来源。谢谢!... 2 篇回复 | 参与讨论 | 浏览讨论区 Jobs | peggy1031 | | | | | | | | | 
|
Else | Talk Discover Camp Business Site RailsConf
- http://www.slicehost.com/articles/2008/10/22/big-news-today
Slicehost is so good. I hope it won't go downhill.... 2 篇回复 | 参与讨论 | 浏览讨论区 Business | green | | | | | | | | | 

http://en.oreilly.com/rails2010
RAILSCONF 2010 CALL FOR PARTICIPATION IS NOW OPEN
http://www.chadfowler.com/2009/10/27/welcome-to-ben-scofield-railsconf-co-chair
请到能言善讲的Ben来做副主持... 9 篇回复 | 参与讨论 | 浏览讨论区 RailsConf | bd7lx | | | | | | | | | 
|