The Ruby Programming Language - Part1
tries to highlight imp points from the book.
0 commentsSave Tags: ruby
Obie Fernandez "Do The Hustle" - how programmers can sell, negotiate, and deal with clients without headaches
Obie Fernandez shares his experience successfully selling consulting services for both Thoughtworks and Hashrocket to help you with the following... more »
1 commentsSave Tags: how-to, ruby
Comparing and Manipulating Strings in Ruby
In this second part of a three-part series focusing on strings in Ruby, you will learn how to test two strings to see if they are the same, and more.... more »
0 commentsSave Tags: ruby
Passenger Brings Rails Apps to Apache
For many years, Apache has been the de facto standard for Web site and application deployment. The open-source Web server, which was originally... more »
0 commentsSave Tags: open source, ruby, web services
Ruby on Rails 2.2 to be Thread Safe
The actual thread safety won’t really matter much to most people, but it’ll surely look nice on your enterprisey check list of Features Your Framework... more »
0 commentsSave Tags: news, open source, ruby, web design
Shoes Tutorial
An introduction to Shoes. Code and graphical pairs. Here is an example of a quick shoes app: Shoes.app { button "PUSH!" }
1 commentsSave Tags: frameworks, how-to, open source, ruby
Josh Peek officially joins the Rails core
Josh has been working on a Google Summer of Code project to bring thread safety to Rails and is just about ready to wrap it up. Rails 2.2 will be... more »
1 commentsSave Tags: frameworks, news, ruby
Erlang Introduction (For the Ruby Guy) part 3
In Erlang your world revolves around processes. Not to be confused with OS processes. Here we are talking about highly light weight threads that can... more »
0 commentsSave Tags: other languages, ruby
Q/A: What Thread-safe Rails Means
There's been a little bit of buzz about David Heinemeier Hansson's announcement that Josh Peek has joined Rails core and is about to wrap up his GSoC... more »
0 commentsSave Tags: java, ruby
Telling a good story - Rspec stories from the trenches
A collection of lessons and guidelines for writing Rspec Stories. With story examples taken from real systems and how they have been improved as I... more »
0 commentsSave Tags: agile, methodology, research, ruby
Getting Started With NetBeans Ruby 6.5
Now that I have most of the online help done for NetBeans Ruby 6.5, I can start updating the tutorials. I have already started getting comments... more »
0 commentsSave Tags: ruby, tools
Easy Ruby development, the Eclipse way
Explore the additional functions and improvements that Aptana RadRails brings to the Ruby developer. Using Eclipse's ubiquitous and common platform... more »
1 commentsSave Tags: eclipse, news, ruby, tools
Where is the Net::SSH bug
Yesterday I spent several hours trying to find the problem with our implementation of OpenSSL Cipher, that caused the Net::SSH gem to fail miserable... more »
0 commentsSave Tags: ruby, security, server, web 2.0
The single assignment cargo cult
Erlang programmers are awfully vocal about the idea of single assignment: unlike virtually every other language on the planet where you are free to... more »
2 commentsSave Tags: other languages, ruby
Ruby: Underuse of Modules
I've been using modules instead of accessing the metaclass directly. "Just in case someone wants to redefine behavior" isn't really a good enough... more »
0 commentsSave Tags: opinion, ruby
Ruby on Erlang
The thought that entered my head and has not left is this: if Ruby can run on top of the Java Virtual Machine and take advantage of all the power of... more »
0 commentsSave Tags: other languages, ruby
JRuby now supports JSR-45 (Debugging Support for Other Languages)
Today while speaking with Charles Nutter today, he mentioned that JRuby now supports JSR-45.
2 commentsSave Tags: java, ruby
Javascript makes me see Red
Just to prove that Canadians don’t have a monopoly on coolness, check out Jesse Sielaff’s Red library. Red is like sass for javascript files. Rather... more »
2 commentsSave Tags: frameworks, javascript, ruby
Multiple vulnerabilities in Ruby
Multiple vulnerabilities have been discovered in Ruby. It's recommended that you upgrade to the latest versions.
0 commentsSave Tags: reviews, ruby
Concurrent Ruby?
Erlang does a couple of things differently. The most obvious one, which makes it so scalable, is the message-passing -- Erlang uses "processes"... more »
0 commentsSave Tags: other languages, ruby
Avoiding Shell Injection in Ruby, Python and PHP.
Shell injections scare me since a long time and I usually prefer to whitelist certain characters/patterns rather than to blacklist. This means that... more »
0 commentsSave Tags: php, python, ruby
Understanding map and reduce
So how do you know when to use map or reduce on a collection? Simple. When iterating through an array, if you don’t want a return value from the... more »
0 commentsSave Tags: ruby
Erlang Introduction (For the Ruby Guy) part 2
In the first part I introduced you to some of the basics in the Erlang language and now it is time to get to know more of the fun parts of the... more »
0 commentsSave Tags: how-to, other languages, ruby
Asynchronous Databases: DBSlayer and HTTP
Scale your database with the help of an asynchronous DB access layer - how to guide for DBSlayer and MySQL.
0 commentsSave Tags: database, how-to, ruby, web services
via