How to use Find with conditions?

I never used but

this may work Post.find(:first,:conditions[ ‘status like ? and active like ?’, 1, 1])

sorry , conditions should be hash

Post.find(:first,:conditions=>[ ‘status like ? and active like ?’, 1, 1])