This file contains hidden or 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
// ==UserScript== | |
// @name KiCanvas GitHub | |
// @version 1 | |
// @match https://github.com/* | |
// @grant GM_setValue | |
// ==/UserScript== | |
let deinitKiCanvas; // function | |
let initialView; // null || HTMLElement |
This file contains hidden or 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 bash | |
set -euo pipefail | |
CONFIGURATION_SOURCE="${CONFIGURATION_SOURCE:-}" | |
DISK_DEVICE="${DISK_DEVICE:-auto}" | |
BYPASS_VIRT="${BYPASS_VIRT:-false}" | |
PARTITION_SCHEME="${PARTITION_SCHEME:-bios}" | |
BOOT_SIZE="${BOOT_SIZE:-512MiB}" | |
log() { |
This file contains hidden or 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
๐ฅ๐ฅ๐ฅ๐๐ง๐ ฐ๏ธ๐ ฐ๐ฆ๐ซ | |
๐ฆ๐ฑ๐ฉ๐ฟ๐ฆ๐ธ๐ฆ๐ฉ๐ฆ๐ด๐ฆ๐ฎ๐ฆ๐ถ๐ฆ๐ฌ | |
โ๐ฆ๐ทโ๐ฆ๐ฒ๐ฆ๐ผ๐ฆ๐จ๐ฆ๐บ๐ฆ๐น | |
๐ฆ๐ฟ๐๐ ฑ๏ธ๐ ฑ๐ง๐ธ๐ง๐ญ๐ง๐ฉ๐ง๐ง | |
๐ง๐พ๐ง๐ช๐ง๐ฟ๐ง๐ฏ๐ง๐ฒ๐ง๐น๐ง๐ด๐ง๐ฆ | |
๐ง๐ผ๐ง๐ป๐ง๐ท๐ฎ๐ด๐ป๐ฌ๐ง๐ณ๐ง๐ฌ๐ง๐ซ | |
๐ง๐ฎ๐๐๐ฐ๐ญ๐จ๐ฒ๐จ๐ฆ๐ฎ๐จโ | |
๐จ๐ปโ๐ง๐ถ๐ฐ๐พ๐จ๐ซ๐ช๐ฆ๐น๐ฉ๐จ๐ฑ | |
๐จ๐ณ๐จ๐ฝ๐๐จ๐ต๐จ๐จ๐จ๐ด๐ฐ๐ฒ๐จ๐ฌ | |
๐จ๐ฉ๐จ๐ฐ๐จ๐ท๐ญ๐ท๐จ๐บ๐จ๐ผ๐จ๐พ๐จ๐ฟ |
This file contains hidden or 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 os, re, pathlib, subprocess, csv | |
if os.getuid() != 0: | |
print("You need to be root to run this script") | |
exit(0) | |
mounted = False | |
with open("/proc/mounts", "r") as f: | |
for line in f.readlines(): |
This file contains hidden or 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 library.lcd.lcd_comm import Orientation | |
from library.lcd.lcd_comm_rev_a import LcdCommRevA | |
from PIL import Image | |
import time, threading, inputs, sys, random, select, termios, tty | |
from importlib import reload | |
lcd_comm = LcdCommRevA() | |
lcd_comm.Reset() |
This file contains hidden or 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
ngrok | |
requests |
This file contains hidden or 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
Add-Type -TypeDefinition @' | |
using System.Runtime.InteropServices; | |
[Guid("5CDF2C82-841E-4546-9722-0CF74078229A"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] | |
interface IAudioEndpointVolume { | |
// f(), g(), ... are unused COM method slots. Define these if you care | |
int f(); int g(); int h(); int i(); | |
int SetMasterVolumeLevelScalar(float fLevel, System.Guid pguidEventContext); | |
int j(); | |
int GetMasterVolumeLevelScalar(out float pfLevel); |
This file contains hidden or 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 sys | |
import pygame | |
from pygame.locals import * | |
pygame.init() | |
clock = pygame.time.Clock() | |
pygame.joystick.init() | |
joysticks = [pygame.joystick.Joystick(i) for i in range(pygame.joystick.get_count())] |