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
** Invoke load:defaults (first_time) | |
** Execute load:defaults | |
** Invoke setup:check_app (first_time) | |
** Execute setup:check_app | |
cap aborted! | |
Don't know how to build task 'deploy:web:enable' | |
/home/niklas/.rvm/rubies/ruby-2.2.3/lib/ruby/2.2.0/rake/task_manager.rb:62:in `[]' | |
/home/niklas/.rvm/rubies/ruby-2.2.3/lib/ruby/2.2.0/rake/task.rb:353:in `[]' | |
/home/niklas/.rvm/gems/ruby-2.2.3@heute_kaufen/gems/capistrano-3.4.0/lib/capistrano/dsl/task_enhancements.rb:12:in `after' | |
/home/niklas/work/xunde/b2c/lib/capistrano/tasks/backup.rake:22:in `<top (required)>' |
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 | |
set -e | |
sudo aptitude install vim git-core xsane byobu libsane-extras virtualbox-guest-utils ssh | |
SCANSDIR="$HOME/Scanned" | |
mkdir -p $SCANSDIR | |
sudo sed -i "s&exit 0&mount.vboxsf Scanned $SCANSDIR vboxsf\nexit 0&" /etc/rc.local | |
echo "/etc/rc.local" | |
tail -n 5 /etc/rc.local |
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
class CompleteCapture < ActiveRecord::Base | |
TablesName = /\Acomplete_capture(\d+)s\z/ | |
SubClassName = /\ACompleteCapture(\d+)\z/ | |
self.abstract_class = true | |
cattr_accessor :company | |
include CapturedAt | |
class << self |
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
#!/usr/bin/ruby | |
def dpi | |
147 | |
end | |
def desktop | |
system "xrandr --output VGA1 --auto --left-of LVDS1 --output LVDS1 --auto --primary --dpi #{dpi}" | |
system "xset dpms force on" # wake up monitor from power saving mode | |
system "marble-mouse left" |
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
[main] | |
logdir=/var/log/puppet | |
vardir=/var/lib/puppet | |
ssldir=/var/lib/puppet/ssl | |
rundir=/var/run/puppet | |
factpath=$vardir/lib/facter:/home/guy/puppet/modules/rvm/lib/facter | |
prerun_command=/etc/puppet/etckeeper-commit-pre | |
postrun_command=/etc/puppet/etckeeper-commit-post | |
pluginsync=true | |
server=hurlg.lanpartei.de |
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
#!/usr/bin/env ruby | |
medium = ARGV.shift || 'Spinn' | |
user = ENV['USER'] | |
hostname = `hostname`.chomp | |
path = "/media/#{user}/#{medium}" | |
rc = "#{ENV['HOME']}/.bashrc-backup" | |
unless File.directory?(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
CSS-Sprites alternatives | |
https://github.com/flyerhzm/css_sprite | |
* minimagick! | |
* dirty code | |
* hard to customize until refactored | |
https://github.com/railsjedi/sprite |
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
#!/usr/bin/env ruby | |
require 'pathname' | |
# global setup | |
ramdisk = Pathname.new( Dir.home(ENV['USER']) ).join('tmp') | |
if File.read('/etc/mtab').lines.grep(%r~ #{ramdisk} ~).empty? | |
system "mount", ramdisk.to_s | |
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
#!/bin/bash | |
# An own database for every branch | |
# | |
# 1) put this script somewhere, make it executable (chmod +x) | |
# 2) modify your database.yml: | |
# development: | |
# adapter: postgresql | |
# database: "<%= `path/to/stored_script development` %>" | |
# You can specify another environment as first arg. |
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
#!/usr/bin/env ruby-1.9.3-p392@markup_snapshot | |
# Our pixel hero wants to know when we change the HTML layout. This script runs | |
# selected cucumber features in given branch/sha1 and makes snapshots in HTML | |
# and HAML, original and stripped. | |
# | |
# Prerequisites: | |
# you | |
# * have rails project | |
# * use cucumber with capybara |
NewerOlder