This file contains 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
#!/bin/bash | |
while : | |
do | |
clear | |
git --no-pager log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ci) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative --all | |
sleep 1 | |
done |
This file contains 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 ActiveAdmin | |
module Views | |
class IndexAsTable < ActiveAdmin::Component | |
class IndexTableFor < ::ActiveAdmin::Views::TableFor | |
def timestamps_columns | |
column :created_at, :sortable => :created_at do |resource| | |
resource.created_at and resource.created_at.strftime('%b %-d %Y, %l %P') | |
end | |
column :updated_at, :sortable => :updated_at do |resource| |
This file contains 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/initializers/concerns.rb | |
class << ActiveRecord::Base | |
def concerned_with(*concerns) | |
concerns.each do |concern| | |
require_dependency "#{name.underscore}/#{concern}" | |
klass = concern.to_s.classify.constantize rescue nil | |
send(:include, klass) if klass.is_a? Module | |
end | |
end | |
end |
This file contains 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/initializers/config.rb | |
APP_CONFIG = YAML.load_file("#{Rails.root.to_s}/config/config.yml")[Rails.env] | |
def APP_CONFIG.[](key) | |
key = key.to_s | |
if Rails.env=='production' || Rails.env == 'staging' | |
p "APP_CONFIG['#{key}'] not defined." unless self.has_key? key | |
else | |
raise "APP_CONFIG['#{key}'] not defined." unless self.has_key? key |
This file contains 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
#test.rb | |
def mem_usage | |
`ps -o rss= -p #{Process.pid}`.to_i | |
end | |
def random_str(length=1) | |
(Object.new.hash.to_s << Object.new.hash.to_s)[0..(length-1)].to_s | |
end | |
class A |
This file contains 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
from calc import Calc | |
from plan import Plan | |
from datetime import datetime | |
.... | |
class OurTrialPlan(Plan): | |
def __init__(self, start_date, end_date, usage, extra=None): | |
super(OurTrialPlan, self).__init__() | |
self.calc = Calc(start_date, usage) | |
self._extra = extra if type(extra)==dict else {} |
This file contains 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
# solo.rb | |
require File.expand_path('../lib/global_constants.rb', __FILE__) | |
require File.expand_path('../lib/git_addition.rb', __FILE__) | |
root = File.absolute_path(File.dirname(__FILE__)) | |
file_cache_path root | |
cookbook_path [ root + '/cookbooks', root + '/custom_cookbooks'] | |
data_bag_path root + '/data_bags' | |
node_path root + '/nodes' |
This file contains 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 "awesome_print" | |
module XmlParsing | |
require "ox" | |
class Reader < ::Ox::Sax | |
def initialize file_path, target, target_handler | |
@target_handler = target_handler | |
@target = target | |
@file_path = file_path |
This file contains 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
# gem 'ckeditor_rails' # from https://github.com/tsechingho/ckeditor-rails | |
# allow modifying existing template | |
<textarea name="modified_email" class="ckeditor"> | |
<%= File.read "#{Rails.root.to_s}/app/views/user_mailer/do_email.html.erb"%> | |
</textarea> | |
<%= javascript_include_tag "ckeditor-jquery" %> | |
<script type="text/javascript"> | |
$('.ckeditor').ckeditor({ |
This file contains 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
var admin = { | |
init: function(){ | |
admin.set_admin_editable_events(); | |
}, | |
set_admin_editable_events: function(){ | |
$(".admin-editable").live("keypress", function(e){ | |
if ( e.keyCode==27 ) |