Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Rajkumar S

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Create a date 4 weeks ago from the current date

// description of your code here

   1  
   2  t = 4.weeks.ago

Assign a variable a value if it's nil

There is a nifty way to give a variable a value if it's nil

   1  
   2  a[i] ||=0


This is useful when you want to assign a value to an array and it's not yet initialized.
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS