recent posts
Posted by Jamsi on Jul 30th, 2011
Installed ruby 1.9.2 via RVM and getting the following error?
no such file to load -- openssl
Try getting RVM to install the required openssl files. Unfortunately this means removing ruby and installing it again.
rvm pkg install openssl
rvm remove...
Posted by Jamsi on May 25th, 2011
I recently had the task of getting resque workings to start from Ubuntu’s upstart daemon.
First I created a bash script with the following;
#!/bin/bash
# Load RVM into the shell
source "$HOME/.rvm/scripts/rvm"
# Switch to the right...
Posted by Jamsi on May 19th, 2011
I recently went to implement Valum’s Fileupload script with a Ruby on Rails jQuery project I was working on.
One thing I figured out is that all requests in Rails3 must send also send the X-CSRF-Token. Now normally the rails.js jQuery adapter...
Posted by Jamsi on Apr 28th, 2011
Error converting data type varchar to datetime
Are you getting the above error?
Run the following under your app user.
select @@Language, @@Langid
If it says us_english then you’re probably hitting errors when parsing dates as DD/MM/YYYY.
We...
popular posts
recent comments
- Atul_shukla: Thanx a lot........Really G8 Tips!! for Eclipse Beginners....
- Zachary: The tip of adding "border:0" resolved my problems in Firefox...
- Srinivas: In my case, after adding those codes, the same exception wil...
- Mr. Black: I got a error in this line "str = request.body.read".
Er...
- Vidhuran: Thanks, this worked like a beauty :-)
I'm on ubuntu and usi...