I hereby claim:
- I am zellio on github.
- I am zellio (https://keybase.io/zellio) on keybase.
- I have a public key whose fingerprint is 3082 B846 4434 D474 15BC 4A91 15C8 50D6 B0E3 D275
To claim this, I am signing this object:
| #!/usr/bin/env ruby | |
| # Download the json blob from here: https://script.google.com/feeds/download/export?format=json&id=[fileId] | |
| require 'json' | |
| path = ARGV[1] | |
| str = File.open(path) { |fh| fh.read } | |
| data = JSON.parse(str, symbolize_names: true) |
| #!/usr/bin/env bash | |
| docker ps --all | awk '{print $1}' | xargs docker rm | |
| docker images | awk '{print $3}' | xargs docker rmi |
| #!/usr/bin/env bash | |
| function __main | |
| { | |
| local -r path="$(realpath "${1:-.}")" | |
| debootstrap --variant=buildd trusty "$1" http://archive.ubuntu.com/ubuntu/ | |
| patch --unified "$path/etc/init/console.conf" <<'EOF' | |
| @@ -3,7 +3,8 @@ | |
| # This service maintains a getty on console from the point the system is | |
| # started until it is shut down again. |
| # Maintainer: Alan Brault <[email protected]> | |
| # Contributor: Thomas Dziedzic < gostrc at gmail > | |
| pkgname=yum-utils | |
| pkgver=1.1.31 | |
| pkgrel=2 | |
| pkgdesc="A collection of utilities and plugins extending and supplementing yum in different ways." | |
| arch=('any') | |
| license=('GPLv2') | |
| url="http://yum.baseurl.org/wiki/YumUtils" |
| #!/usr/bin/env sh | |
| set -f | |
| function error { | |
| echo -en "\e[1;31m>>> ERROR: " | |
| echo -en $1 | |
| echo -e "\e[0m " | |
| } | |
| LoadModule actions_module modules/mod_actions.so | |
| LoadModule fastcgi_module modules/mod_fastcgi.so | |
| LoadModule rewrite_module modules/mod_rewrite.so | |
| FastCgiIpcDir /var/run/php-fpm/ipc | |
| FastCgiExternalServer /var/run/php-fpm/fcgi -appConnTimeout 3 -user apache \ | |
| -group apache -idle-timeout 10 -pass-header Authorization \ | |
| -socket /var/run/php-fpm/socket |
| #!/usr/bin/env bash | |
| bl_dir='/sys/class/backlight/intel_backlight/' | |
| bl_dev="$bl_dir/brightness" | |
| bl_index='/var/acpi/backlight/index' | |
| max_brightness="$(<"${bl_dir}/max_brightness")" | |
| min_brightness=82 | |
| min_index=0 |
| #!/usr/bin/env bash | |
| ### orjf --- Oracle Java RPM Fixer | |
| ## Copyright (c) 2014 Zachary Elliott | |
| ## | |
| ## Authors: Zachary Elliott <[email protected]> | |
| ## URL: | |
| ## Version: 0.1.0 |
I hereby claim:
To claim this, I am signing this object:
| ;;; go-mode.el --- Major mode for the Go programming language | |
| ;; Copyright 2013 The Go Authors. All rights reserved. | |
| ;; Use of this source code is governed by a BSD-style | |
| ;; license that can be found in the LICENSE file. | |
| (require 'cl) | |
| (require 'ffap) | |
| (require 'url) |