Skip to content

Instantly share code, notes, and snippets.

View vspiewak's full-sized avatar

Vincent Spiewak vspiewak

View GitHub Profile
#!/usr/bin/env bash
#
# curl -L bit.ly/2yy0s3O | tr -d '\r' | sh
check_arch_iso() {
command -v pacstrap
if [ "$?" -ne "0" ]
then
whiptail --msgbox "Arch Linux ISO not mounted, can't install" --title "Arch ISO error" 7 45 3>&1 1>&2 2>&3
echo "Can't install. exit."
### Keybase proof
I hereby claim:
* I am vspiewak on github.
* I am vspiewak (https://keybase.io/vspiewak) on keybase.
* I have a public key whose fingerprint is 4A87 31EB C997 8CD5 A62D 7D54 7FC3 AD73 F074 316C
To claim this, I am signing this object:
@vspiewak
vspiewak / gist:c203d38508e35e7887a45f72a1727682
Last active April 21, 2017 16:27
input-test-concourse-job-parameters-resource
[{
"ref": "launch 2",
"params": {
"my_param_1": 80,
"PARAM2": "hello"
}
},
{
"ref": "launch 1",
"params": {
@vspiewak
vspiewak / bumpme
Last active January 18, 2017 10:00
Wed Jan 18 10:00:31 UTC 2017

Keybase proof

I hereby claim:

  • I am vspiewak on github.
  • I am vspiewak (https://keybase.io/vspiewak) on keybase.
  • I have a public key whose fingerprint is CF0A 41B5 AC38 2D1C 77FD 81DE 4600 7964 5654 EF94

To claim this, I am signing this object:

{
"title": "Twitter Survey ™ - Step 1",
"services": {
"query": {
"idQueue": [],
"list": {
"0": {
"query": "*",
"alias": "",
"color": "#7EB26D",
@vspiewak
vspiewak / gist:6786104
Last active December 24, 2015 10:39
Twitter Surver Mobiles index: mobiles tweets terms: iphone, android, blackberry
{
"title": "Twitter Survey ™",
"services": {
"query": {
"idQueue": [],
"list": {
"0": {
"query": "*",
"alias": "",
"color": "#7EB26D",
@vspiewak
vspiewak / conkyrc
Created February 24, 2013 03:29
conkyrc white & blue theme 8 cpu, 4 core temp, 2 acpi temp
background no
use_xft yes
xftfont 123:size=8
xftalpha 0.1
update_interval 1
total_run_times 0
own_window yes
own_window_type normal
own_window_transparent yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
@vspiewak
vspiewak / Params.java
Last active December 11, 2015 23:29
param int, A, String
package net.agilegeeks.walkthrough.samples;
class A {
private String name;
A (String name) {
this.name = name;
}