Keybase proof
I hereby claim:
- I am limeless on github.
- I am benjidude (https://keybase.io/benjidude) on keybase.
- I have a public key ASAZWYpm8Nn6kYy0A9Jap0K8UyaxX0oc5zglufqZ9QORcwo
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
import argparse | |
import logging | |
import sys | |
import signal | |
import gi | |
import json | |
gi.require_version('Playerctl', '2.0') | |
from gi.repository import Playerctl, GLib |
# When HHKB is connected | |
ACTION=="add", SUBSYSTEM=="usb", ENV{XAUTHORITY}="/home/user/.Xauthority", ENV{DISPLAY}=":0", ATTRS{idVendor}=="0853", ATTRS{idProduct}=="0100", RUN+="/home/user/bin/hhkb add" | |
# When HHKB is disconnected. | |
ACTION=="remove", SUBSYSTEM=="usb", ENV{XAUTHORITY}="/home/user/.Xauthority", ENV{DISPLAY}=":0", ATTRS{idVendor}=="0853", ATTRS{idProduct}=="0100", RUN+="/home/user/bin/hhkb remove" |
#!/usr/bin/env bash | |
# Generate 100MB of random tex. | |
cat /dev/urandom | base64 | dd of=/tmp/randomdata bs=1024 count=100k | |
# Test. Repeat for each terminal... | |
# Results are written to bench_XXX.txt | |
# This also shows MB/s very nicely thanks to `dd`. | |
{ time dd if=/tmp/randomdata bs=10240; } 2> bench_XXX.txt | |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# | |
# NOTE: specify the absolutepath to the directory to use when | |
# loading a plugin. '~' expansion is supported. | |
# | |
chunkc core::plugin_dir /usr/local/opt/chunkwm/share/chunkwm/plugins | |
# |
#!/usr/bin/env bash | |
# SPDX-License-Identifier: GPL-2.0 | |
# | |
# Copyright (C) 2016-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. | |
# Killswitch : https://github.com/vpn-kill-switch/homebrew-killswitch | |
die() { | |
echo "[-] Error: $1" >&2 | |
exit 1 | |
} |
#!/usr/bin/env bash | |
# SPDX-License-Identifier: GPL-2.0 | |
# | |
# Copyright (C) 2016-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. | |
die() { | |
echo "[-] Error: $1" >&2 | |
exit 1 | |
} | |
# Change this to your condition. | |
WIFI="en0" |
I hereby claim:
To claim this, I am signing this object:
''' | |
猴子 2 樹上 | |
蛇 2 地上 | |
烏龜 4 水裡 | |
熊 1 樹上 | |
猴子 1 地上 | |
蛇 3 樹上 | |
猴子 3 樹上 | |
OUTPUT: |
lyrics = [] | |
while True: | |
i = input() | |
if i == '===': | |
break | |
i = i.split() | |
for j in i: | |
j = j.lower() | |
if j == "we're": | |
lyrics.append('we') |