I hereby claim:
- I am strayer on github.
- I am strayer (https://keybase.io/strayer) on keybase.
- I have a public key ASDL-9eATKRsw97yAX7vxbrfC3_qs0jfB0yS_cbGm-TqAwo
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
import requests | |
import sys | |
from lxml import etree | |
from io import StringIO | |
if len(sys.argv) < 2 or sys.argv[1] == "-h" or sys.argv[1] == "--help": | |
print("Usage: {} <fritzbox hostname>".format(__file__)) | |
sys.exit(0) |
#!/usr/bin/env python3 | |
import requests | |
import json | |
import sys | |
import os | |
GDATA_URL="https://gdata.youtube.com/feeds/api/playlists/{playlist_id}/?alt=json&v=2&max-results=50" | |
#!/usr/bin/env bash | |
set -e | |
YOUTUBE_FORMATS=$(youtube-dl -F "$1") | |
if [[ "$YOUTUBE_FORMATS" == *"(DASH Video)"* ]]; then | |
VIDEO_NAME=$(youtube-dl --get-filename "$1") | |
VIDEO_NAME_TMP="$VIDEO_NAME.tmp" | |
echo "Filename: $VIDEO_NAME" |
#!/bin/bash | |
rm ~/Library/Application\ Support/Skype/Skype.pid | |
sleep 1 | |
open -n "/Applications/Skype.app" |
[Desktop Entry] | |
Encoding=UTF-8 | |
Version=1.0 | |
Type=Application | |
Name=YNAB | |
Icon=ynab.png | |
Path=/home/sgrunewaldt/.wine_YNAB4/drive_c/Program Files (x86)/YNAB 4 | |
Exec=/home/sgrunewaldt/.bin/ynab | |
StartupNotify=false | |
StartupWMClass=YNAB 4.exe |
FROM alpine:3.3 | |
ENV SPIGOT_BUILDTOOLS_REV=1.8.8 | |
RUN apk add --no-cache --repository http://dl-1.alpinelinux.org/alpine/edge/community/ tini && rm -rf /var/cache/apk/* | |
RUN apk add --no-cache openjdk8-jre && rm -rf /var/cache/apk/* | |
RUN apk add --no-cache --virtual=build-dependencies curl bash git grep && \ | |
mkdir /tmp/minecraft-builder && \ |
I hereby claim:
To claim this, I am signing this object:
#!/usr/local/bin/python3 | |
import sys | |
from urllib.request import urlopen | |
import json | |
from decimal import Decimal | |
import locale | |
def format_eur(eur): | |
locale.setlocale(locale.LC_ALL, "de_DE.UTF-8") | |
return locale.currency(eur, grouping=True, international=True) |
class TituszCryptop < Formula | |
desc "command line crypto portfolio" | |
homepage "https://github.com/titusz/cryptop" | |
head "https://github.com/titusz/cryptop.git" | |
include Language::Python::Virtualenv | |
depends_on :python3 | |
resource "certifi" do |
defmodule ExLCD.HD44780.I2C do | |
@moduledoc """ | |
**ExLCD.HD44780** is the display driver module for Hitachi | |
HD44780 type parallel LCD display controller managed display modules. | |
## Hitachi HD44780 Style Controller (including Sitronix ST7066) | |
The HD44780 is the most ubiquitous character matrix display controller | |
but not the only one. It supports a number of standard operations like | |
moving the cursor, displaying characters and scrolling. It is an 8-bit |