Skip to content

Instantly share code, notes, and snippets.

View boardstretcher's full-sized avatar

boardstretcher boardstretcher

  • Black Mesa Research
  • Detroit, Mi
View GitHub Profile
---
driver:
name: vagrant
customize:
cpus: 1
memory: 2048
verifier:
name: inspec
@boardstretcher
boardstretcher / .rubocop.yml
Created September 19, 2018 16:21
working rubocop yml file for working with visual studio code, ruby and the chef extension
AllCops:
DisplayCopNames: true
DisplayStyleGuide: true
ExtraDetails: false
Bundler/DuplicatedGem:
Enabled: true
Bundler/InsecureProtocolSource:
Enabled: true
Bundler/OrderedGems:
@boardstretcher
boardstretcher / .vimrc
Created January 13, 2018 00:35
vim configuration
" enable syntax highlighting
syntax enable
" show line numbers
set number
" set tabs to have 4 spaces
set ts=4
" indent when moving to the next line while writing code
@boardstretcher
boardstretcher / fixkey.sh
Created January 11, 2018 23:51
fix archlinux keyring issues
pacman -Sy archlinux-keyring
pacman --init
pacman-key --populate archlinux
pacman -Su
@boardstretcher
boardstretcher / get_oracle_jdk_linux_x64.sh
Created June 15, 2017 15:01 — forked from n0ts/get_oracle_jdk_x64.sh
Get latest Oracle JDK package bash shell script
#!/bin/bash
# You must accept the Oracle Binary Code License
# http://www.oracle.com/technetwork/java/javase/terms/license/index.html
# usage: get_jdk.sh <ext> <jdk_version>
# ext: rpm
# jdk_version: default 8
ext=rpm
jdk_version=8
@boardstretcher
boardstretcher / cp_p.sh
Created March 3, 2017 14:35
copy with progress bar
#!/bin/sh
cp_p()
{
strace -q -ewrite cp -- "${1}" "${2}" 2>&1 \
| awk '{
count += $NF
if (count % 10 == 0) {
percent = count / total_size * 100
printf "%3d%% [", percent
for (i=0;i<=percent;i++)
######################################################################
# CREATING THE TEST APP AND ENVIRONMENT
(Log in as a non-root user)
mkdir ~/test-1.0
cd ~/test-1.0
echo echo this is a test > test.sh
chmod +x test.sh
echo just launch the script > README
cd
mkdir -p ~/rpmbuild/SOURCES
@boardstretcher
boardstretcher / print_record.sh
Created January 31, 2017 19:22
print a record from a file
# will catch any records like this:
whatever {
blah
blah
}
awk -v RS='[^\n]*{|}' 'RT ~ /{/{p=RT} /blah/{ print p $0 RT }' input
@boardstretcher
boardstretcher / splitter.py
Created January 25, 2017 17:20
column printer thing with splitting
for l in open("input"):
l=l.strip().split(" ")
for c in l[1:]:
if ">\"" in c:
c=c.split(" ")
else:
c=c.split()
for i in c:
if l[1] != i:
print "%s %s %s" %(l[0],l[1],i)
@boardstretcher
boardstretcher / catter.sh
Created January 24, 2017 15:23
print lines 1 through 10 with cat
num=1
while read line; do
if [[ ($num -ge 1) && ($n -le 10) ]]; then
echo $line | cat -
elif [[ $num -gt 10 ]]; then
break
fi
n=$(( $n + 1 ))