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
{"keyboard":"tokyo60","keymap":"jnyjny","layout":"LAYOUT_60_hhkb","layers":[["KC_GESC","KC_1","KC_2","KC_3","KC_4","KC_5","KC_6","KC_7","KC_8","KC_9","KC_0","KC_MINS","KC_EQL","KC_BSLS","KC_GRV","KC_TAB","KC_Q","KC_W","KC_E","KC_R","KC_T","KC_Y","KC_U","KC_I","KC_O","KC_P","KC_LBRC","KC_RBRC","KC_BSPC","KC_LCTL","KC_A","KC_S","KC_D","KC_F","KC_G","KC_H","KC_J","KC_K","KC_L","KC_SCLN","KC_QUOT","KC_ENT","KC_LSFT","KC_Z","KC_X","KC_C","KC_V","KC_B","KC_N","KC_M","KC_COMM","KC_DOT","KC_SLSH","KC_LSFT","MO(1)","KC_LALT","KC_LGUI","KC_SPC","KC_RGUI","KC_RALT"],["KC_NO","KC_F1","KC_F2","KC_F3","KC_F4","KC_F5","KC_F6","KC_F7","KC_F8","KC_F9","KC_F10","KC_F11","KC_F12","KC_NO","KC_NO","KC_NO","RGB_TOG","RGB_MOD","RGB_RMOD","BL_TOGG","BL_STEP","KC_NO","KC_NO","KC_NO","KC_NO","KC_NO","KC_UP","KC_NO","KC_NO","KC_NO","KC_VOLD","KC_MUTE","KC_VOLU","KC_NO","KC_NO","KC_NO","KC_NO","KC_HOME","KC_PGUP","KC_LEFT","KC_RGHT","KC_NO","KC_NO","KC_MPRV","KC_MPLY","KC_MNXT","KC_NO","KC_NO","KC_NO","KC_NO","KC_END","KC_PGDN","KC_DOWN |
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 | |
from argparse import ArgumentParser | |
import json | |
import os | |
import requests | |
import sys | |
class ProjectNotFound(Exception): |
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 ctypes | |
import ctypes.util | |
from datetime import datetime | |
libc_path = ctypes.util.find_library("libc") | |
libc = ctypes.cdll.LoadLibrary(libc_path) |
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
import json | |
import os | |
import pathlib | |
from . import db, config | |
sponsored_id_list = config.get_sponsored() | |
class ProductFinder: | |
def get_product_details(ids=[]): | |
ids.extend(sponsored_id_list) | |
cursor = db.cursor() | |
cursor.execute(''' |
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 pyglet | |
class RenderText(pyglet.window.Window): | |
def __init__(self, text, width=512, height=256): | |
super().__init__(width=width, height=height) | |
pyglet.gl.glClearColor(0, 0, 0, 1) # Fixes the problem. | |
self.document = pyglet.text.decode_text(text) |
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 click | |
import numpy as np | |
import matplotlib.pyplot as plt | |
import pandas as pd | |
# Requirements: | |
# python3 -m pip install -U click pandas matplotlib numpy xlwt |
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
from dateutil.parser import parse | |
import re | |
import datetime | |
def get_min_max_amount_of_commits( | |
commit_log: str = commits, year: int = None | |
) -> (str, str): | |
""" | |
Calculate the amount of inserts / deletes per month from the |
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 | |
""" short module description | |
Longer module description goes here. | |
""" | |
from collections import defaultdict | |
from dateutil.parser import parse |
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
# Makefile - Generate HTML, PDF, EPUB, MOBI from ASC | |
# This is how you assign a string to a variable name in 'make'. The | |
# variable name doesn't have to be all caps and the equal doesn't have | |
# to be snugged up to the variable name; it's just how I write | |
# Makefiles | |
FILENAME= the_document | |
# $(IDENTIFIER) is how you reference a 'make' variable, you can use |
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
import hid | |
d = hid.device() | |
d.open(0x2c0d, 1) |
OlderNewer