Skip to content

Instantly share code, notes, and snippets.

::Chef::Recipe.send(:include, Opscode::OpenSSL::Password)
app = data_bag_item('apps', 'bulletin_board')
app['mysql_root_password'][node.chef_environment] = node['mysql']['server_root_password']
app['databases'][node.chef_environment]['password'] = secure_password
app.save
chef_gem 'mysql' do
action :install
end
<?
/**
* A Flash model.
* @package hydra_flash
* @version 0.1
*/
session_start();
require 'rubygems'
require 'rmeetup2'
RMeetup2::Base.authentication_method = :api_key
RMeetup2::Base.api_key = '5c4a7449656e481b691f4a113174d'
RMeetup2::Base.get(:events, group_id: '1555691').data['results'].count
<style>
table {
-webkit-transform:rotate(90deg);
margin-top: 200px;
}
table tr td {
height: 20px;
white-space: nowrap;
class Video < ActiveRecord::Base
after_save :background_process_attachment
def background_process_attachment
video = self.class.find(id)
return if video.nil?
to_process = []
to_fetch = []
Testing
module Feeds
module Cache
extend ActiveSupport::Concern
module InstanceMethods
def redis_client
uri = URI.parse(ENV["REDISTOGO_URL"] || "http://localhost:6379/")
@redis ||= Redis.new(host: uri.host, port: uri.port, password: uri.password)
end
end
module RPG
class Battle
ARENAS = [:town, :desert, :jungle, :mountain, :boat]
attr_accessor :fighters
attr_reader :battleground
def initialize(fighter_a, fighter_b)
@fighters = [fighter_a, fighter_b]
class Hero
attr_reader :hp
def initialize
@hp = 100
end
def hit!(force)
@hp -= force
end
class Hero
attr_reader :hp
def initialize
@hp = 100
end
def hit!(force)
@hp -= force
end