Freelancer.com (formerly GetAFreelancer) is the world's largest outsourcing and crowdsourcing marketplace for small business . We have hundreds of thousands of satisfied customers from all over the world. We connect over employers and freelancers globally from over 234 countries & reg...
Freelancer.com (formerly GetAFreelancer) is the world's largest outsourcing and crowdsourcing marketplace for small business . We have hundreds of thousands of satisfied customers from all over the world. We connect over employers and freelancers globally from over 234 countries & reg...
Rubyconf Brasil 2012 was a blast! I personally still pinch myself every time when I think about it, when I decided to commit to this endeavour back in 2008 neither I nor anyone would ever think that we would be able to make more than 1 Ruby Conference in Brazil. But against all odds w...
#117 Semi-Static Pages (revised) Sep 02, 2012 | 8 minutes | Routing There are many ways to handle static pages in a Rails application. Here I show two approaches including one that uses a RESTful style PagesController to keep the content in the database Subscribe to Watch Episode Twee...
rolling out with feature flags Posted by flyerhzm on September 02, 2012 — 0 comments I just wrote a new post rolling out with feature falgs , it allows you release features with turn on/off switchers, you can use it for a/b testing, performance verification and solve external dependen...
Rubyconf Brasil 2012 was a blast! I personally still pinch myself every time when I think about it, when I decided to commit to this endeavour back in 2008 neither I nor anyone would ever think that we would be able to make more than 1 Ruby Conference in Brazil. But against all odds w...
Atualizar o sistema e instalando ferramentas sudo apt-get -y update sudo apt-get -y install build-essential zlib1g-dev libssl-dev libreadline-dev libyaml-dev libcurl4-openssl-dev curl git-core python-software-properties libsqlite3-0 libsqlite3-dev sqlite3 Instalar Ruby 1.9.3 Verificar...
to track bugs and features. Before submitting a bug report or feature request, check to make sure it hasn't already been submitted. You can indicate support for an existing issue by voting it up. When submitting a bug report, please include a Gist that includes a stack trace and any d...
which is based on PHP. I'm trying to test Wiki system using RoR. However, when googling, I found wiki on RoR, not wiki implemented with RoR. What wiki systems on RoR are available? What is the most popular?
Alright, just for fun I’m kicking off a new blog series. I’m going to publish a new “Deploy a Framework Friday” each week for about the next, well, bunch of weeks. There are a TON of frameworks that are available on PaaS Technologies.
First let’s build a standard ASP.NET MVC Application (yes, you can do the same without the MVC Project, but I STRONGLY recommend never creating a standard ASP.NET application again, EVER). This quick run through assumes you’ve already setup a Cloud Foundry enabled PaaS w/ your already...
Early Stage Web Application Start-Up Seeking Developer/Designer Who We Are: We're three individuals with strong backgrounds in strategic marketing, business management and cutting edge technologies. On the team we have experience in working with Fortune 100 firms as well small startup...
Rubyconf Brasil 2012 was a blast! I personally still pinch myself every time when I think about it, when I decided to commit to this endeavour back in 2008 neither I nor anyone would ever think that we would be able to make more than 1 Ruby Conference in Brazil. But against all odds w...
Look at your Rails unit test suite. Now look at mine. Now look at yours again. Mine are sub-second. Yours aren't. Having a slow unit test suite can hinder an effective test-first or test-driven approach to development. As you add tests, the suite starts to slow down to the point where...
Ruby 1.8.7-p248 dan Ruby 1.9.1-p376 diluncurkan Ruby versi 1.8.7-p248 dan Ruby 1.9.1-p376 telah diluncurkan. Ada berbagai bugs yang dibenahi dalam rilis tersebut. Informasi lebih lanjut: Pengumuman rilis Ruby 1.8.7-p248 Pengumuman rilis Ruby 1.9.1-p376 Anda dipersilakan mengunduh Ruby...
Each of the database adapters is responsible for determining how to handle a boolean column in a way that makes sense for their specific backend. In the case of PostgreSQL and OpenBase this is trivial, since these database backends have a boolean type column built-in. For MySQL - as h...
Baking Pi: Operating Systems Development , how to program the Pi in assembler. RaspCherry Pi , surely would fit into a Model M, too. Protological Control: an Introduction , by Steve Klabnik. Marshall is a programming language for exact real arithmetic based on ideas from Abstract Ston...
require 'digest/md5' class Bird attr_accessor :name private def digest(food) d = Digest::MD5.new d 親クラスで edible? メソッドを定義することで、eat メソッドを簡略化しています。 筆者の模範解答は以下の通りです。 require 'digest/md5' class Bird attr_accessor :name private def digest(food) d = Digest::MD5.new d 共通部分を抜き出すためにブロック を利用していま...