Below is a list of alternative GitHub accounts which I (@jimeh) use, and have full control over.
This document was GPG signed with:
package main | |
import ( | |
"fmt" | |
"os" | |
"os/exec" | |
"strings" | |
"sync" | |
) |
/* ==UserStyle== | |
@name GitHub Dark Diff Color Customizer (customized) | |
@namespace StylishThemes | |
@version 2.0.4-custom | |
@description A diff color customization style, colorblind friendly by default | |
@author StylishThemes and contributors | |
@homepageURL https://github.com/StylishThemes/Feature-Override-Styles/ | |
@supportURL https://github.com/StylishThemes/Feature-Override-Styles/issues/new/choose | |
@updateURL https://gist.githubusercontent.com/jimeh/57b7e6e6e0107036c167f10f87a55861/raw/github-dark-diff-color-customizer.css | |
@license MIT |
#!/bin/sh | |
[ -n "$DEBUG" ] && set -x | |
check_http() { | |
wget -T 1 -S -q -O - "$1" 2>&1 | head -1 | | |
grep -E 'HTTP.+\s2[0-9]{2}' > /dev/null 2>&1 | |
return $? | |
} | |
check_tcp() { |
function bluetooth(power) | |
print("Setting bluetooth to " .. power) | |
result = hs.execute("blueutil --power " .. power) | |
if result.rc ~= 0 then | |
print("Unexpected result executing `blueutil`: rc=" .. result.rc .. " type=" .. result.type .. " output=" .. result.output) | |
end | |
end | |
function f(event) |
AllCops: | |
TargetRubyVersion: 2.4 |
# Let hubot chime in on certain discussions... | |
module.exports = (robot) -> | |
robot.hear /rewrite/i, (msg) -> | |
if shouldSpeak(0.1) | |
msg.send("#{msg.random(rewriteImages)}#.png") | |
robot.hear /refactor/i, (msg) -> | |
if shouldSpeak(0.1) |
class Tmux < Formula | |
desc "Terminal multiplexer" | |
homepage "https://tmux.github.io/" | |
stable do | |
url "https://github.com/tmux/tmux/releases/download/2.2/tmux-2.2.tar.gz" | |
sha256 "bc28541b64f99929fe8e3ae7a02291263f3c97730781201824c0f05d7c8e19e4" | |
end | |
head do |
package main | |
import ( | |
"bufio" | |
"net" | |
) | |
type Client struct { | |
incoming chan string | |
outgoing chan string |