I hereby claim:
- I am thebaer on github.
- I am is (https://keybase.io/is) on keybase.
- I have a public key whose fingerprint is CEA0 00FB DC41 EF11 E741 4094 9C4C E3A2 7D62 A6FB
To claim this, I am signing this object:
| #!/bin/bash | |
| # Generate new MAC address for accessing time-limited hotspots like Boingo | |
| # Modification may be needed; tested on Chrome OS | |
| # No warranty / guarantees made. Use at your own risk. This probably violates some Terms of Service. | |
| sudo ifconfig wlan0 down | |
| # Source: http://superuser.com/questions/218340/how-to-generate-a-valid-random-mac-address-with-bash-shell | |
| sudo ifconfig wlan0 hw ether $(echo -n 00:60:2F; dd bs=1 count=3 if=/dev/random 2>/dev/null | hexdump -v -e '/1 ":%02X"') | |
| # OS X: | |
| # sudo ifconfig en0 ether $(echo -n 00:60:2F; dd bs=1 count=3 if=/dev/random 2>/dev/null | hexdump -v -e '/1 ":%02X"') |
| Verifying that +baer is my blockchain ID. https://onename.com/baer |
I hereby claim:
To claim this, I am signing this object:
| avgStr := strings.TrimRight(fmt.Sprintf("%.2f", avg), "0") | |
| avgStr = strings.TrimRight(avgStr, ".") |
| #!/bin/bash | |
| BLUE="\033[0;34m" | |
| LBLUE="\033[1;34m" | |
| GRAY="\033[1;30m" | |
| NC="\033[00m" | |
| spacing=" $GRAY█$NC " | |
| case $(date +%u) in |
| #!/bin/bash | |
| # Make the given file(s) the given dimension, by extending the canvas, rather | |
| # than scaling. Made especially for PNGs, since it makes the background | |
| # transparent and all. This programmer in particular has found it useful for | |
| # different-sized icons that end at their exact boundaries, causing headaches | |
| # when developing Android apps. | |
| # Name some args | |
| FINALSIZE=$1 |
| #!/bin/bash | |
| # Standardizes image file names to be usable as Android resources. | |
| # Gotta have some parameters to continue | |
| if [ -z "$1" ]; then | |
| echo "usage: renamer.sh file [file2...]" | |
| echo | |
| exit 1 | |
| fi |
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # If not running interactively, don't do anything | |
| [ -z "$PS1" ] && return | |
| # don't put duplicate lines in the history. See bash(1) for more options | |
| # ... or force ignoredups and ignorespace | |
| HISTCONTROL=ignoredups:ignorespace |
| { | |
| "Getting Started": [ | |
| { | |
| "slug": "what", | |
| "question": "What is LunchTable?", | |
| "answer": "<p>LunchTable is a software platform built for group communication.</p>" | |
| }, | |
| { | |
| "slug": "how", | |
| "question": "How does it work?", |
| /* Hide chat sidebar */ | |
| #pagelet_sidebar { | |
| display: none; | |
| } | |
| .sidebarMode .fbx #globalContainer, .sidebarMode .fbx #pageHead, .sidebarMode #blueBar #pageHead { | |
| padding-right: 0px; | |
| } | |
| /* Hide left sidebar groups: Ads, Apps */ | |
| #adsNav, #appsNav { |