user system total real
Run 1 5.740000 0.080000 5.820000 ( 5.821333)
Run 2 0.160000 0.000000 0.160000 ( 0.174353)
Run 3 0.140000 0.010000 0.150000 ( 0.136421)
Run 4 0.170000 0.000000 0.170000 ( 0.177465)
Run 5 0.170000 0.000000 0.170000 ( 0.173762)
Run 6 0.140000 0.010000 0.150000 ( 0.137906)
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
# VERSION=2.0.0 srcdir=/code/vagrant makepkg -s | |
# libiconv cannot be found | |
pkgname=hashicorp-vagrant | |
pkgver=$VERSION | |
pkgrel=1 | |
pkgdesc="Build and distribute virtualized development environments" | |
arch=('x86_64') | |
url="https://www.vagrantup.com" | |
license=('MIT') |
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
brian@localghost:test % vagrant reload | |
==> global-puppet: Attempting graceful shutdown of VM... | |
==> global-puppet: Checking if box 'bento/ubuntu-16.04' is up to date... | |
==> global-puppet: Verifying vmnet devices are healthy... | |
==> global-puppet: Preparing network adapters... | |
WARNING: The VMX file for this box contains a setting that is automatically overwritten by Vagrant | |
WARNING: when started. Vagrant will stop overwriting this setting in an upcoming release which may | |
WARNING: prevent proper networking setup. Below is the detected VMX setting: | |
WARNING: | |
WARNING: ethernet0.pcislotnumber = "32" |
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
if not exist "C:\Windows\Temp\7z920-x64.msi" ( | |
powershell -Command "(New-Object System.Net.WebClient).DownloadFile('http://www.7-zip.org/a/7z920-x64.msi', 'C:\Windows\Temp\7z920-x64.msi')" <NUL | |
) | |
msiexec /qb /i C:\Windows\Temp\7z920-x64.msi | |
if exist "C:\Users\vagrant\windows.iso" ( | |
move /Y C:\Users\vagrant\windows.iso C:\Windows\Temp | |
) | |
if not exist "C:\Windows\Temp\windows.iso" ( |
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
brian@localghost:dockerdoomd % go run socket.go ±[●●][master] | |
2017/08/12 14:42:34 Starting echo server | |
2017/08/12 14:42:34 Created socket at /tmp/go.sock | |
2017/08/12 14:42:34 about to listen |
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
#1 /bin/bash | |
# $1 == IP | |
sudo iptables -A INPUT -s $1 -j DROP | |
sudo service iptables save | |
sudo iptables -L INPUT -v -n |
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
(ns markov.core) | |
(defn transform | |
[words] | |
(->> words | |
(partition 2 1) | |
(reduce (fn [acc [w next-w]] | |
(update-in acc | |
[w next-w] | |
(fnil inc 0))) |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.define "ubuntu", primary: true do |ubuntu| |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
CENTBOX = "../vagrant-boxes/centos-65-x64-virtualbox-nocm.box" | |
DEBBOX = "../vagrant-boxes/debian-73-x64-virtualbox-nocm.box" | |
SLESBOX = "../vagrant-boxes/sles-11sp1-x64-vbox4210-nocm.box" | |
WINDOZE = "../vagrant-boxes/win2012r2-x64-virtualbox-nocm.box" |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC/GnTS4bPAD38pKX1RoXDxCUVoB6hPmbIn33wPGsIVlJWKvUQcLd4SIBEwWP0CsLZt4pxNCWCCQ8vwgVUBmqUtotvpBZEvzU58qJnzxXBw9t4aULFQB1wiEu/rhN++uFq7b3x/LWyQcjC5bPdcRU6XHI1W1XmZzj1mL+N36kXaYTDQ0nunwToV2qw2ocr9aTGQrRR1r8KKKreUn7BaHJZCTuLy18AcWUntAgYr8gnjMDUYYJw0humFvE03+OHGQH9fn3sTd1/jsRRApU2afXfkXJV3lblhlDNLrgqM1wiyRFOSo5I6MLqmkgu/4vJ7yudEGKDmamFX7XMrIN1XcVbb [email protected] |