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 Twitch Autoclaim | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description try to take over the world! | |
// @author You | |
// @include https://www.twitch.tv/* | |
// @grant none | |
// ==/UserScript== |
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/python3 | |
import pyasn1.codec.der.encoder | |
import pyasn1.type.univ | |
import base64 | |
def recover_key(p, q, e, output_file): | |
"""Recoveres a RSA private key from: | |
p: Prime p | |
q: Prime q | |
e: Public exponent |
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 random | |
import subprocess as sp | |
from time import sleep | |
import re | |
# Change these parameters for your own configuration | |
LDAP_URL="ldap://ldap.internal.example.com:389" | |
BASE_DN="ou=people,dc=example,dc=com" | |
FILTER="(objectClass=inetOrgPerson)" # This is a filter to get only people, change for your own case | |
ATTR=["uid", "givenName", "sn"] |
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 Codingame Header | |
// @namespace http://tampermonkey.net/ | |
// @version 0.3 | |
// @description Places a random animal ASCII art in the header of CodingGame's IDE | |
// @author Cyxo | |
// @include http*://*codingame.com/* | |
// @grant GM_xmlhttpRequest | |
// ==/UserScript== |
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
#! /bin/bash | |
# | |
# Diffusion youtube avec ffmpeg | |
# Configurer youtube avec une résolution 720p. La vidéo n'est pas scalée. | |
VBR="2500k" # Bitrate de la vidéo en sortie | |
FPS="30" # FPS de la vidéo en sortie | |
QUAL="medium" # Preset de qualité FFMPEG | |
YOUTUBE_URL="rtmp://a.rtmp.youtube.com/live2" # URL de base RTMP youtube |