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 'net/ftp' | |
require 'uri' | |
ftp_hosts_hq = %w( | |
ftp://ftp.halifax.rwth-aachen.de/CCC/27C3/mp4-h264-HQ/ | |
ftp://mirror.fem-net.de/CCC/27C3/mp4-h264-HQ/ | |
ftp://ftp.selfnet.de/CCC/27C3/mp4-h264-HQ/ | |
ftp://ftp.uni-kl.de/CCC/27C3/mp4-h264-HQ/ | |
) |
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
hallo welt |
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 | |
DBUSER=root | |
DBPASS=deinrootpasswort | |
DUMPDIR=./DatabaseDumps | |
DUMPDATE=$(date '+%Y-%m-%d') | |
if [ ! -d $DUMPDIR ] ; then | |
mkdir $DUMPDIR | |
fi |
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
Delivery to the following recipient failed permanently: | |
[email protected] | |
Technical details of permanent failure: | |
Google tried to deliver your message, but it was rejected by the server for the recipient domain airbrake.io by mxa.mailgun.org. [198.61.253.48]. | |
The error that the other server returned was: | |
550 5.1.0 Recipient rejected: <[email protected]> |
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
# using vi mode keys | |
setw -g mode-keys vi | |
# color settings | |
set -g default-terminal "screen-256color" | |
set -g pane-active-border-fg yellow | |
unbind q | |
bind q kill-window |
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
--type-set=haml=.haml | |
--type-set=slim=.slim | |
--type-add=html=.haml,.slim | |
--type-set=sass=.sass,.scss | |
--type-add=css=.sass,.scss | |
--type-set=coffee=.coffee | |
--type-add=js=.js.erb,.coffee |
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
# Task: Implement the rcat utility and get these tests to pass on a system | |
# which has the UNIX cat command present | |
# To see Gregory Brown's solution, see http://github.com/elm-city-craftworks/rcat | |
# Feel free to publicly share your own solutions | |
rrequire "open3" | |
working_dir = File.dirname(__FILE__) | |
gettysburg_file = "#{working_dir}/data/gettysburg.txt" |
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::Specification.new do |s| | |
s.name = 'null' | |
s.version = '0.0.1' | |
s.platform = Gem::Platform::RUBY | |
s.author = 'Gregory Igelmund' | |
s.email = '[email protected]' | |
s.summary = 'Dynamic Null Object' | |
s.description = 'Responds on all methods with itself. Credits to @flori. NullObject is taken from Tins: https://github.com/flori/tins' | |
s.files = ['null.rb'] |
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
--- | |
- hosts: all | |
remote_user: root | |
tasks: | |
- name: Say bar | |
shell: echo "bar" |
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
export TAPAS_HTTP_COOKIE= | |
export HTTP_AUTH= |
OlderNewer