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
# Selection Key | |
SelectionKey=1234567890 | |
# Page Size | |
PageSize=10 | |
# Candidate List Layout | |
CandidateLayout=Vertical | |
# Use Keypad as Selection key | |
UseKeypadAsSelection=False | |
# Add Phrase Forward | |
AddPhraseForward=True |
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 | |
# the x86-64 part is done by @how2hack | |
from pwn import * | |
def check(payload): | |
assert isinstance(payload, bytes) or isinstance(payload, bytearray) | |
for c in payload: | |
if not (0x20 <= c <= 0x7f): | |
return False |
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
p = 13 | |
y = [ | |
(0, 0, 0), | |
(0, 0, 0), | |
(0, 0, 0), | |
(7, 4, 3), | |
(12, 4, 10), | |
(7, 5, 1), | |
] | |
v = [ |
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 random | |
import os | |
import sys | |
from subprocess import Popen, PIPE | |
try: | |
from tqdm import tqdm | |
tqdm_imported = True | |
except ImportError: | |
tqdm = lambda x: x | |
tqdm_imported = False |
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
#include <stdio.h> | |
#define MAXL (24+1) | |
#define MAXD (47+1) | |
#define MAXN (48+1) | |
#define INF (4611686018427387904ll) | |
#define MAXAB(a,b) (((a)>(b))?(a):(b)) | |
typedef long long int lli; |
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
# ---tmux plugin | |
# Automatically start a tmux session upon logging in. Set to false by default. | |
# ZSH_TMUX_AUTOSTART="true" | |
# Only attempt to autostart tmux once. If this is disabled when the previous | |
# option is enabled, then tmux will be autostarted every time you source your | |
# zsh config files. Set to true by default. | |
# ZSH_TMUX_AUTOSTART_ONCE="false" | |
# When running tmux automatically connect to the currently running tmux session |