iohyve create ubuntuguest 8G
iohyve set ubuntuguest loader=grub-bhyve
iohyve set ubuntuguest os=debian
iohyve set ubuntuguest ram=512M
iohyve set ubuntuguest cpu=2
iohyve set ubuntuguest con=nmdm1
iohyve install ubuntuguest ubuntu-14.04.3-server-amd64.iso
- Drop in the console:
iohyve console ubuntuguest
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 bb | |
(require '[clojure.string :as str]) | |
(def user (str/capitalize | |
(str (System/getenv "USER")))) | |
(def words-of-inspiration | |
(list "The best way to predict the future is to invent it. -Alan Kay" | |
"A point of view is worth 80 IQ points. -Alan Kay" |
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
# Checkout Emacs | |
$ git clone git://git.sv.gnu.org/emacs.git | |
# Vanilla Emacs requirements | |
$ sudo apt install build-essential autoconf libgtk-3-dev libgnutls28-dev libtiff5-dev libgif-dev libjpeg-dev libpng-dev libxpm-dev libncurses-dev texinfo adwaita-icon-theme-full | |
# Required for Native JSON | |
$ sudo apt install libjansson4 libjansson-dev | |
# Required for GCC |
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
const std = @import("std"); | |
// Errors which can be returned when parsing the command line arguments. | |
const ParseArgsError = error{TooManyArguments}; | |
// The different commands which may be run. | |
const Command = union(enum) { | |
startRepl, | |
runInterpreter: []const u8, | |
}; |
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
function curl_time -d "Measure the response time for a given URL" | |
curl -so /dev/null -w "\ | |
namelookup: %{time_namelookup}s\n\ | |
connect: %{time_connect}s\n\ | |
appconnect: %{time_appconnect}s\n\ | |
pretransfer: %{time_pretransfer}s\n\ | |
redirect: %{time_redirect}s\n\ | |
starttransfer: %{time_starttransfer}s\n\ | |
-------------------------\n\ | |
total: %{time_total}s\n" $argv |
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
# Note, this dockerfile only works if you move the .jar | |
# file into the project directory first. This was done | |
# to get a clean, without any paths, artifact on Gitlab | |
FROM openjdk:8-jre-alpine | |
RUN mkdir -p /app /app/resources | |
WORKDIR /app | |
COPY *-standalone.jar . | |
COPY resources/pegasus/public . | |
CMD java -jar pegasus-0.1.0-SNAPSHOT-standalone.jar |
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
# Iceberg color scheme. | |
[colors] | |
foreground = #d2d4de | |
background = #161821 | |
foreground_bold = #d2d4de | |
cursor = #d2d4de | |
cursor_foreground = #161821 | |
highlight = #6b7089 | |
# black |
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
use std::collections::HashMap; | |
type CharCount = HashMap<char, u16>; | |
fn word_to_hashmap(word: &str) -> CharCount { | |
let mut charcount = HashMap::new(); | |
for c in word.chars() { | |
let c = c.to_lowercase().next().unwrap(); | |
let count = charcount.entry(c).or_insert(0); | |
*count += 1; |
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
~/.e/omnisharp-roslyn (master✓) ./build.sh | |
dnvm is already installed in /Users/wunki/.dnx/dnvm, trying to update | |
=> Source string already in /Users/wunki/.bash_profile | |
Type 'source /Users/wunki/.dnx/dnvm/dnvm.sh' to start using dnvm | |
Downloading dnvm.sh from https://raw.githubusercontent.com/aspnet/Home/dev/dnvm.sh | |
######################################################################## 100.0% | |
Default unstable feed (https://www.myget.org/F/aspnetvnext/api/v2) is being overridden by the value of the DNX_UNSTABLE_FEED variable (https://www.myget.org/F/aspnetcidev/api/v2). | |
dnx-mono.1.0.0-rc2-16444 already installed in /Users/wunki/.dnx | |
Adding /Users/wunki/.dnx/runtimes/dnx-mono.1.0.0-rc2-16444/bin to process PATH |
NewerOlder