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
OK_Layout_Begin | |
১২৩৪৫৬৭৮৯০ | |
দূীরটএুিওপেো | |
াসডতগহজকল | |
য়শচআবনমৃ্ | |
!@#৳%^ঞৎ() | |
ধঊঈড়ঠঐউইঔফৈৌ | |
অষঢথঘঃঝখং | |
যঢ়ছঋভণঙঁ। | |
£¥€$₨^&*() |
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
#!/bin/bash | |
# a dumb script to toggle audio input/output mute | |
class="$1" | |
state="$2" | |
target="$3" | |
device="$4" | |
default_device="" | |
default_state="" |
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
captainVersion: 4 | |
services: | |
$$cap_appname-db: | |
image: postgres:12-alpine | |
environment: | |
POSTGRES_USER: $$cap_db_username | |
POSTGRES_PASSWORD: $$cap_db_password | |
POSTGRES_DB: $$cap_db_database |
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
/* | |
i use **super+space** to switch keyboard layouts in my linux desktop. | |
sadly windows does not have this as an option. this script enables that shortcut. | |
disable windows' own hotkey in language settings, then run this script at startup, and win! | |
*/ | |
#NoEnv | |
#Persistent | |
;#NoTrayIcon | |
#SingleInstance Force |
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
#!/bin/sh | |
# a simple script to livetest awesomerc in nested Xephyr | |
# all arguments are passed to awesome verbatim | |
# requirements: xprop, Xephyr, awesome | |
XEPHYR_DISPLAY=":173" | |
XEHPYR_SIZEX=1280 | |
XEPHYR_SIZEY=800 | |
XEPHYR_TITLE="awesomerc-tester" |
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
"""basic twitter api""" | |
from time import time | |
from math import floor, ceil | |
from os import urandom | |
from base64 import standard_b64encode as base64encode | |
import hashlib | |
import hmac | |
from urllib.parse import quote | |
import httplib2 |
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
{ | |
"title":"DIY-untitled", | |
"onScreen":{ | |
"main":[ | |
"1234567890", | |
"qwertyuiop", | |
"asdfghjkl", | |
"[SHIFT][XK:z[UNDO]][XK:x[CUT]][XK:c[COPY]][XK:v[PASTE]]bnm[DEL]", | |
"[TOOL][ALTGR:,][SPACE][][][SYM:.][ENTER]" | |
], |