This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import requests | |
import re | |
import shutil | |
def download(id): | |
r = requests.get("http://www.breakbeat-paradise.com/bb_download.php?sampleid={}".format(id)) | |
html = r.text | |
url = re.search('http://.+\.zip', html).group(0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[options] | |
font = Iosevka Term Medium 10 | |
allow_bold = true | |
audible_bell = false | |
visible_bell = false | |
urgent_on_bell = true | |
clickable_url = true | |
scrollback_lines = 32767 | |
search_wrap = true | |
cursor_blink = off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################# | |
# ┏━┓┏━┓╺┳╸┏━┓┏━┓╻┏━┓┏━┓┏┓╻ # | |
# ┣┳┛┣━┫ ┃ ┣━┛┃ ┃┃┗━┓┃ ┃┃┗┫ # | |
# ╹┗╸╹ ╹ ╹ ╹ ┗━┛╹┗━┛┗━┛╹ ╹ # | |
# ~kamiheku # | |
############################# | |
# [ basic settings ] ########################################################## | |
# root/escape key, not used much |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// vim: sw=2:sts=2:expandtab | |
// crkbd -- kamiheku | |
#include QMK_KEYBOARD_H | |
// ┄─╼━━━━━━━━ layers ━━━━━━━━╾─┄ // | |
#define _QWERTY 0 // | |
#define _NUM 1 // | |
#define _SYM 2 // | |
// ┄─╼━━━━ layer toggles ━━━━━╾─┄ // |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define LAYOUT_split_3x6_3_reverse( \ | |
k0b, k09, k08, k07, k06, k05, k04, k03, k02, k01, k00, k0a,\ | |
k1b, k19, k18, k17, k16, k15, k14, k13, k12, k11, k10, k1a,\ | |
k2b, k29, k28, k27, k26, k25, k24, k23, k22, k21, k20, k2a,\ | |
k37, k36, k35, k34, k33, k32 \ | |
) \ | |
{ \ | |
{ k00, k01, k02, k03, k04, k05, k06, k07, k08, k09 }, \ | |
{ k10, k11, k12, k13, k14, k15, k16, k17, k18, k19 }, \ | |
{ k20, k21, k22, k23, k24, k25, k26, k27, k28, k29 }, \ |