Skip to content

Instantly share code, notes, and snippets.

View chezsick's full-sized avatar
🐦
Bonjour GitHub Et Microsoft !

Newa chezsick

🐦
Bonjour GitHub Et Microsoft !
View GitHub Profile
@chezsick
chezsick / randomsource.py
Last active June 27, 2018 01:42
The Missing Random Source In Python And The Modified On ::::: https://github.com/billpmurphy/blockchain-random
from struct import unpack
source = "" # Here Enter Your Random Source, Do Not Use Stream Like /dev/urandom
file = open(source,"r")
a = file.read()
n = 0
def _rshift(val, n):
"""
@chezsick
chezsick / gentheme.py
Created July 12, 2018 19:40
Get Your Identity Theme, Get Color, Font
# cmd :::: printf "UserName" | python hashsickbt.py 10 | python gentheme.py
import sys
u = bytearray(sys.stdin.read())
f = ['pollerone', 'cairo', 'pompiere', 'gudea', 'sairasemicondensed', 'yrsa', 'vampiroone', 'margarine', 'fresca', 'mate', 'alef', 'patuaone', 'dangrek', 'myanmarsanspro', 'podkova', 'amethysta', 'ewert', 'inder', 'righteous', 'lindenhill', 'harmattan', 'martelsans', 'novacut', 'basic', 'miriamlibre', 'codystar', 'meerainimai', 'oranienbaum', 'bentham', 'aguafinascript', 'jimnightshade', 'notosans', 'alikeangular', 'carme', 'prozalibre', 'sigmarone', 'fasthand', 'novaround', 'eater', 'gfsdidot', 'averagesans', 'carroisgothic', 'lobster', 'aldrich', 'timmana', 'londrinasolid', 'shrikhand', 'graduate', 'paprika', 'quattrocentosans', 'petrona', 'asapvfbeta', 'croissantone', 'andadasc', 'spirax', 'rajdhani', 'limelight', 'antic', 'kurale', 'mina', 'hanalei', 'germaniaone', 'librebarcode128', 'hennypenny', 'mrbedfort', 'adobeblank', 'chango', 'vibur', 'ranga', 'puritan', 'suravaram', 'baloopaaji',
@chezsick
chezsick / catsick.py
Last active August 17, 2018 17:46
Multiplexing And Demultiplexing Data ::::: sickcat :::: prog file0 file1 ... fileN ; sickcut ::::: prog nb_total_file select_file ; all same size
import sys
a = []
for u in sys.argv[1:]:
file = open(u,"r")
a.append(file.read())
s = len(sys.argv[1:])
r = len(min(a))
for n in range(r):
for m in range(s):
@chezsick
chezsick / votepoint.py
Created August 18, 2018 07:48
Vote By Pointes; All Standard Input
import sys
a = []
f = sys.stdin.readlines()
c = [0] * len(f[0].split(";"))
a = f[0].split(";")
for m in f:
for n in range(len(m.split(";"))):
for o in range(len(m.split(";"))):
if a[o] == m.split(";")[n]:
c[o] = int(n + c[o] + 1)
@chezsick
chezsick / videocrypt_yuv.py
Created August 22, 2018 23:25
Videocrypt For YUV ::::: prog encode_or_decode length_line key
import sys
yuv = bytearray(sys.stdin.read())
mode = sys.argv[1]
rows = int(sys.argv[2])
key = sys.argv[3]
keyfile = open(key,"r")
key = bytearray(keyfile.read())
for k in range(len(yuv)/rows):
for j in range(rows):
@chezsick
chezsick / moneypower.py
Last active October 7, 2018 16:19
Generate Your Money Power Wallet, You Can Pay If Total_Pay < Current_Money , If Passed To Negative Your Life Is Terminated
# Debut De Paramettre
money=1000000
min=-1000
max=1000
# Fin De Paramettre
import random
while True:
print(money)
money = money + random.randint(min,max)
if money < 0:
@chezsick
chezsick / truerngpro_rawformat_dump.php
Last active December 29, 2018 07:13
Dump Random From TrueRNGpro As Raw Format
<?php
$mode = $argv[1];
while ($o = fread(STDIN,1))
{
switch (intval(ord($o) / 64))
{
case 0:
$genonehighorder = ord($o) % 16;
break;
case 1:
@chezsick
chezsick / videolisthtml.bash
Last active December 5, 2018 20:44
Generate An Video List As HTML, And Separate Video And Audio; to read an media output :::::: mpv --audio-file=media.oga media.264
parallel "ffmpeg -i {1} -vcodec libx264 -vf scale=720x576 {1.}.flv" ::: *.mp4
parallel "ffmpegthumbnailer -s 150 -i {1} -o {1.}.png" ::: *.mp4
ls *.mp4 | while read n; do basename "$n" .mp4; done | while read n; do printf "<img src=\"$n.png\"/>$n <a href=\"$n.flv\">A Voir</a><br/>\n"; done > list.html
rm *.mp4
@chezsick
chezsick / getdatetimebt.php
Last active September 21, 2019 14:31
Get Date And Time As BLE TOU System ;;; To Get A Another Date ::::::: php getdatetimebt.php $(date -u -d "2010/10/10 10:10:10" +%s) = 71 Foitierre, Samdi, Dimance 9305
<?php
if (!isset($argv[1]))
{
$argv[1] = time();
}
function getdatebt($timestamps)
{
$jour = ["Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samdi","Dimance"];
$sem = ["Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samdi","Dimance"];
return intval($timestamps / 49) + 1 . " Foitierre, " .$sem[intval(($timestamps % 49) / 7)] .", ". $jour[$timestamps % 7];
@chezsick
chezsick / musiclisthtml.bash
Last active November 27, 2018 17:35
Generate A Audio/Musics List As HTML
parallel "waveform --png-color-center ffaa00ff --png-color-outer ff5500ff --png-height 100 --png-width 1000 {1} --png {1.}.png" ::: *.mp3 # Like Soundcoud Style
ls *.mp3 | while read n; do basename "$n" .mp3; done | while read n; do printf "<img src=\"$n.png\"/><br/>$n - <a href=\"$n.mp3\">A Ecoutez</a><br/><br/>\n"; done > list.html