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
| 0-00.usa.cc | |
| 0-mail.com | |
| 0.pl | |
| 001.igg.biz | |
| 0039.cf | |
| 0039.ga | |
| 0039.gq | |
| 0039.ml | |
| 007addict.com | |
| 00b2bcr51qv59xst2.cf |
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
| # config/routes.rb | |
| resources :documents do | |
| scope module: 'documents' do | |
| resources :versions do | |
| post :restore, on: :member | |
| end | |
| resource :lock | |
| 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
| class ValueObject < Struct | |
| def self.[](*args) | |
| if args.length > 0 | |
| new(*args) | |
| else | |
| new(:null) | |
| end | |
| end | |
| def [](*args) |
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
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |
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
| task :kill_postgres_connections => :environment do | |
| db_name = ActiveRecord::Base.configurations[Rails.env.to_s]['database'] | |
| raise "No database name found in #{Rails.env} configuration." if db_name.nil? | |
| sh = <<EOF | |
| ps xa \ | |
| | grep postgres: \ | |
| | grep #{db_name} \ | |
| | grep -v grep \ | |
| | awk '{print $1}' \ | |
| | xargs kill |
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
| <%= form_for @bookshelf do |f| %> | |
| <%= f.error_messages %> | |
| <p> | |
| <%= f.label :name %><br /> | |
| <%= f.text_field :name %> | |
| </p> | |
| <% @books.each do |book| %> | |
| <%= check_box_tag "books[#{book.id}]", "1", @bookshelf.books.include?(book) %> | |
| <%= book.name %> |
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
| ruleset a60x294 { | |
| meta { | |
| name "explicit-event-data-test" | |
| description << | |
| explicit-event-data-test | |
| >> | |
| author "Mike Grace" | |
| logging on | |
| } |