def str_to_pushs(s):
ret = []
for p in reversed([s[i:i+4] for i in range(0, len(s), 4)]):
p = p[::-1]
if len(p) != 4:
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
/* Reduce left and right margins in the chat area */ | |
.BEjUKc .cFc9ae { | |
margin-left: 10px; | |
margin-right: 10px; | |
width: auto; | |
max-width:none; | |
} | |
.cFc9ae { | |
background-color: #282828 !important; | |
} |
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
# ~/.zim/modules/prompt/external-themes/lean/lean.plugin.zsh | |
# lean prompt theme | |
# by Miek Gieben: https://github.com/miekg/lean | |
# | |
# Based on Pure by Sindre Sorhus: https://github.com/sindresorhus/pure | |
# Colors used: (see Vim's iceberg theme) | |
# 242 is the gray that is used. | |
# 110 is the blue. | |
# 150 is the yellow. | |
# |
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
# Debian Apple Keyboard :) | |
XKBMODEL="pc105" | |
XKBLAYOUT="fr" | |
XKBVARIANT="latin9" | |
XKBOPTIONS="" | |
BACKSPACE="guess" | |
# setxkbmap fr mac |
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 python | |
# -*- coding: utf-8 -*- | |
# | |
# HelpDeskZ <= v1.0.2 - Unauthenticated Shell Upload | |
# @SakiiR | |
import sys | |
import requests | |
import hashlib | |
from time import time |
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 python | |
# -*- coding: utf-8 -*- | |
# | |
# SakiiR @ Hexpresso | |
# cc XeR & BitK | |
# Let's go now (: | |
# | |
# --+ Python 2 +-- | |
import random |
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 python | |
import base64 | |
import sys | |
# The real flag is beguinning with 'FLAG{' | |
FLAG = "DX8YDEgOJGQGElwMFH5tLwAGAmd4ahJ4H1Y1J2wcOUQ4BWwfKkAtFHU2GWwYFHE2Pl0tEk4=" | |
KEY = "[REVOKED]" # You have to find the real one (I removed the real one) | |
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 python | |
# coding: utf-8 | |
import sys | |
import hashlib | |
FLAG = [ | |
"800618943025315f869e4e1f09471012", | |
"d20caec3b48a1eef164cb4ca81ba2587", | |
"7fc56270e7a70fa81a5935b72eacbe29", |
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
{ | |
"vim.useSystemClipboard": true, | |
"window.zoomLevel": 1, | |
"explorer.confirmDragAndDrop": false, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"eslint.options": { | |
"configFile": ".eslintrc.js" | |
}, | |
"editor.formatOnSave": true, | |
// Enable/disable default JavaScript formatter (For Prettier) |