Tutorial search

Tutorials
Stuff
Affiliates

Cool Stuff




The fastest way to master the basics of Adobe Photoshop

Click here to find out how

Photoshop Templates


Featured Photoshop templates - professional ready to use designs for your next project.

View all templates

Learning Ruby - Ruby on Rails tutorial


A complete guide to getting started with Ruby on Rails.
Category: Ruby on Rails tutorials > Basics - Difficulty:


More cool Ruby on Rails tutorials:



Handling SQL injection and XSS in Rails
Handling SQL injection and XSS in Rails
The unfortunate part about learning a new language or technology is that there's typically little focus on security matters. Rails gives you a lot of time-saving helpers and methods, but you still need to understand where your app might be vulnerable. This is a quick overview of protecting your code against SQL injection attacks and cross-site scripting exploits.
Category: Ruby on Rails tutorials > Security - Difficulty:
eRuby: Using Ruby DBI for database connectivity
eRuby: Using Ruby DBI for database connectivity
If you want create a dynamic web page that works on more than just MySQL then try Ruby DBI. Ruby DBI will help you create a single database interface for connecting your web application to multiple database types like MySQL, PostGreSQL and SQL Server. This article also explains some of the typical mistakes made when installing Ruby DBI.
Category: Ruby on Rails tutorials > Database - Difficulty:
eRuby: Using Ruby and MySQL for dynamic web pages
eRuby: Using Ruby and MySQL for dynamic web pages
In a previous tutorial you learned how to get started using the Ruby language as a web scripting language by embedding it in HTML. You need some type of database connectivity to do the cool dynamic stuff. So here is a tutorial written by Markus Jais on how to connect to a MySQL database using Ruby.
Category: Ruby on Rails tutorials > Database - Difficulty:
Filtering Sensitive Logs
Filtering Sensitive Logs
Are you accepting sensitive user data? Passwords, credit card numbers, etc. By default, Rails stores all submitted parameters in plain text in the logs. This episode will show you how to filter this sensitive input so it doesn't show up in the log file.
Category: Ruby on Rails tutorials > Security - Difficulty:
Shortcut Blocks with Symbol to_proc
Shortcut Blocks with Symbol to_proc
It may have a goofy syntax, but the Symbol#to_proc feature Rails adds allows you to do simple blocks very quickly and easily.
Category: Ruby on Rails tutorials > Basics - Difficulty: