I hereby claim:
- I am madbuda on github.
- I am lludlow (https://keybase.io/lludlow) on keybase.
- I have a public key ASCEh80hbAnh8nhH9xpVWqTqOu0uI32bxBM4UdxRJlfWMgo
To claim this, I am signing this object:
#!/bin/bash | |
# | |
# Shell script that configures terminator to use solarized theme | |
# colors. Assumes a single terminator profile. Tested on Ubuntu 11.10. | |
# | |
# Solarized theme: http://ethanschoonover.com/solarized | |
# | |
# Original from 79CetiB: | |
# http://www.reddit.com/r/emacs/comments/npfmv/i_need_some_help_with_the_solarized_theme_in_a/c3b4mds | |
# |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Modified Pi-hole script to generate a generic hosts file | |
# for use with dnsmasq's addn-hosts configuration | |
# original : https://github.com/jacobsalmela/pi-hole/blob/master/gravity-adv.sh | |
# Address to send ads to. This could possibily be removed, but may be useful for debugging purposes? | |
destinationIP="0.0.0.0" | |
outlist='/etc/final_blocklist.txt' | |
tempoutlist="$outlist.tmp" |
#include "stdafx.h" | |
#include "windivert.h" | |
#include <string> | |
#include <time.h> | |
using namespace std; | |
typedef struct | |
{ | |
WINDIVERT_IPHDR ip; |
(Inspired by https://medium.com/@icanhazedit/clean-up-unused-github-rpositories-c2549294ee45#.3hwv4nxv5)
Open in a new tab all to-be-deleted github repositores (Use the mouse’s middle click or Ctrl + Click) https://github.com/username?tab=repositories
Use one tab https://chrome.google.com/webstore/detail/onetab/chphlpgkkbolifaimnlloiipkdnihall to shorten them to a list.
Save that list to some path
The list should be in the form of “ur_username\repo_name” per line. Use regex search (Sublime text could help). Search for ' :.*' and replace by empty.
## | |
# Brewfile by Joel Parker Henderson and SixArm.com | |
# | |
# CAUTION: THIS IS A WORK IN PROGRESS. USE AT YOUR OWN RISK. | |
# | |
# We use this Brewfile for our teams and their developer laptops. | |
# | |
# This file installs many apps, including office suites, multimedia suites, | |
# programming langauges and IDEs, unix utilities, and sysadmin tools. | |
# |
## Checkout all branches from remote as tracking branches. | |
UPSTREAM=$1 | |
MYREPO=$2 | |
usage() { | |
echo "Usage:" | |
echo "$0 <upstream-remote> <target-remote>" | |
echo "" |
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
FROM ubuntu:16.04 | |
ENV GIT_URL git://github.com/MyHush/hush.git | |
ENV HUSH_CONF /root/.hush/hush.conf | |
# install dependencies | |
RUN apt-get autoclean && apt-get autoremove && apt-get update && \ | |
apt-get -qqy install --no-install-recommends build-essential \ | |
automake ncurses-dev libcurl4-openssl-dev libssl-dev libgtest-dev \ |
# config file for ansible -- http://ansible.com/ | |
# ============================================== | |
# nearly all parameters can be overridden in ansible-playbook | |
# or with command line flags. ansible will read ANSIBLE_CONFIG, | |
# ansible.cfg in the current working directory, .ansible.cfg in | |
# the home directory or /etc/ansible/ansible.cfg, whichever it | |
# finds first | |
[defaults] |