This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ::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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <? | |
| /** | |
| * A Flash model. | |
| * @package hydra_flash | |
| * @version 0.1 | |
| */ | |
| session_start(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| table { | |
| -webkit-transform:rotate(90deg); | |
| margin-top: 200px; | |
| } | |
| table tr td { | |
| height: 20px; | |
| white-space: nowrap; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Testing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Hero | |
| attr_reader :hp | |
| def initialize | |
| @hp = 100 | |
| end | |
| def hit!(force) | |
| @hp -= force | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Hero | |
| attr_reader :hp | |
| def initialize | |
| @hp = 100 | |
| end | |
| def hit!(force) | |
| @hp -= force | |
| end |