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
sed "s/\[^[[0-9;]*[a-zA-Z]//gi" |
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
INFO global: Vagrant version: 1.2.2 | |
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.2.2/plugins/commands/box/plugin.rb | |
INFO manager: Registered plugin: box command | |
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.2.2/plugins/commands/destroy/plugin.rb | |
INFO manager: Registered plugin: destroy command | |
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.2.2/plugins/commands/halt/plugin.rb | |
INFO manager: Registered plugin: halt command | |
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.2.2/plugins/commands/init/plugin.rb | |
INFO manager: Registered plugin: init command | |
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.2.2/plugins/commands/package/plugin.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
Compiling Cookbooks... | |
[2013-07-28T02:52:13+00:00] INFO: Lxc light-weight provider already initialized -- overriding! | |
================================================================================ | |
Recipe Compile Error in /tmp/vagrant-chef-1/chef-solo-1/cookbooks/lxc/resources/container.rb | |
================================================================================ | |
NameError | |
--------- |
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
aspnet_skeleton::default | |
================================================================================ | |
Recipe Compile Error in /tmp/d20140216-3013-1to7s1t/aspnet_skeleton/recipes/default.rb | |
================================================================================ | |
TypeError | |
--------- | |
nil is not a symbol |
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
time ruby -rbundler/setup test/isolated_test.rb -v | |
Run options: -v --seed 18077 | |
# Running: | |
IsolatedTest#test_default = 0.00 s = . | |
Finished in 0.004037s, 247.7322 runs/s, 495.4644 assertions/s. | |
1 runs, 2 assertions, 0 failures, 0 errors, 0 skips |
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
import jenkins.model.*; | |
pm = Jenkins.instance.pluginManager | |
pm.doCheckUpdatesServer() | |
plugins = pm.plugins | |
# FIXME idempotency needed here | |
plugins.each { | |
if (it.isEnabled()) { | |
it.disable() | |
} |
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
nix-env -i macvim | |
installing `macvim-7.4.479' | |
these derivations will be built: | |
/nix/store/0x0v33h6823klxdqm3hhjm6r9srxjj4c-luajit-2.0.3.drv | |
/nix/store/0zdy26p9fxfbmvav0j15a3ffy9d2iwmc-macvim-7.4.479.drv | |
/nix/store/1vrkqbqrkkmdqs21ydi1l8maws90y561-ruby-1.9.3-p547.drv | |
/nix/store/2633v4gbdinqxfhlncjfb9gl5dj8kbqz-libarchive-3.1.2.drv | |
/nix/store/27sdqrznrmw15n8b89p0prkaix4szpgs-stdenv.drv | |
/nix/store/7mp25ifirn2zgcvjddn0p4j0qla6hlcp-cmake-2.8.12.2.tar.gz.drv | |
/nix/store/8masdmqnkddafsrm1vcx54x20bnrbm7r-macvim-f9c084b97fa9d5cad2448dfd3eff3d9b7f0fac59-src.drv |
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
--- vagrant.lst 2015-02-17 23:43:54.000000000 +0900 | |
+++ digitalocean.lst 2015-02-17 23:43:47.000000000 +0900 | |
@@ -1,8 +1,37 @@ | |
+arping | |
+avahi | |
+avahi | |
ca_root_nss | |
-compat6x | |
curl | |
+dbus |
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
curl -L https://github.com/docker/docker/archive/master.tar.gz | tar xvz --strip-components 4 -C docker.vim docker-master/contrib/syntax/vim |
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 -ns | |
bundle = $F[2] | |
url, basename = if bundle =~ /^[A-Za-z0-9-]+\/[A-Za-z0-9._-]+$/ | |
["https://github.com/#{bundle}/archive/master.tar.gz", File.basename(bundle)] | |
elsif bundle =~ /^[A-Za-z0-9._-]+$/ | |
["https://github.com/vim-scripts/#{bundle}/archive/master.tar.gz", bundle] | |
end | |
system "mkdir -p #{basename}" |