is a powerful tool. I use the REPL extensively in development, and I recently added a web REPL to each of our production applications. Context A production REPL is not for the faint of heart. I wouldn't add a REPL to production in 95% of the projects I've been a part of; however, I'm ...
Lessons Learned: First 6 Months of Running a Rails Consultancy Posted by bcardarella on June 21, 2012 — 0 comments Maybe off-topic but we do develop all Rails! I've collected some thoughts and reflected on what has gone right and what has gone wrong (and how it was fixed) for starting...
Added by Jean-Philippe Lang 8 days ago Adds support for Git's smart HTTP protocol to Redmine.pm (#4905 ). Related issues Patch #4905 : Redmine.pm: add support for Git's smart HTTP protocol Files added modified copied renamed deleted View differences trunk extra svn Redmine.pm (diff ) ...
is a powerful tool. I use the REPL extensively in development, and I recently added a web REPL to each of our production applications. Context A production REPL is not for the faint of heart. I wouldn't add a REPL to production in 95% of the projects I've been a part of; however, I'm ...
Thursday, June 21, 2012 at 5:47AM Continuing the march to #1000... About the composed_of removal - Some insight into the Rails development process. action.io - Rails development environment in the browser. Now taking beta signups. Ubuntu 12.04 Ruby on Rails Development Environment - Z...
RSpec's New Expectation Syntax (Coming in 2.11) Myron Marston shows off a new syntax for expectations in RSpec. It looks like "expect(foo).to eq(bar)" versus the more typical "foo.should eq(bar)". What's the motivation? Learn more here. Removing config.threadsafe! from Rails Core Rail...
# Kernel Extensions to support Lisp class Object def lisp_string to_s end end class NilClass def lisp_string "nil" end end class Array # Convert an Array into an S-expression (i.e. linked list). # Subarrays are converted as well. def sexp result = nil reverse.each do |item| item = ite...
Displaying line numbers By Mislav on 21 Jun 2012 Programming blogs have code, and that’s great. But please don’t configure your blogging platform to auto-include line numbers with your code, because it looks like crap when unstyled: Instapaper Reeder for iOS Sidenote: because people w...
Excellent write-up in helping beginners understand the principles of Rails. Keep’m coming! As Christoffer said, pseudo_id could be a helper, I think it fits fine in the model. I’m sometimes unsure whether to put little functions like that as part of the model or as a helper. Personall...
TaskJuggler is a modern and powerful, Free and Open Source Software project management tool. Its new approach to project planing and tracking is more flexible and superior to the commonly used Gantt chart editing tools. TaskJuggler is project management software for serious project ma...
An interface to load weather information based on an approximate user location
Matz recebe o FSF's 2011 Free Software Award O Prémio para o Avanço do Software Livre é dado, anualmente, a alguém que tenha contribuído para o progresso e desenvolvimento do software livre, realizando actividades que estejam de acordo com o espírito do software livre. Este ano, o pré...
Origin is a simple DSL for generating MongoDB selectors and options
RE: Guide - Install Redmine on Debian - Added by François K. about 3 years ago Iuri Souza wrote: I follow your guide for Debian and don´t work. My browser receive list file in /usr/local/lib/redmine-0.8/public. Any idea ??? If you see the files, maybe the mod_passenger doesn't work or...
Agora sim, terminou sem nenhum erro! O que ele fez? Ele continuou a operação de 'rebase' que começamos lá em cima e foi até o fim. Quando os conflitos apareceram vocês devem ter notado que no git status que dei antes apareceu um cara estranho chamado .dotest/. Ele guardou o que faltav...
linalg is a fast, LAPACK-based library for real and complex matrices. Current functionality includes: singular value decomposition, eigenvectors and eigenvalues of a general matrix, least squares, LU, QR, Schur, Cholesky, stand-alone LAPACK bindings. Development Status: 5 - Production...
Web application frameworks are made to help developers building web applications. Some of them also help you with securing the web application. In fact one framework is not more secure than another: If you use it correctly, you will be able to build secure apps with many frameworks. R...
All we have to do to make the list sortable is add the sortable_element helper method to the index view. We’ll pass it the id of the element we want to be sortable, and a URL that is called via an AJAX request so that the updated positions can be stored in the database. As we don’t ye...