Skip to content

Instantly share code, notes, and snippets.

View Ethcelon's full-sized avatar
👨‍💻

Om Bhallamudi Ethcelon

👨‍💻
View GitHub Profile
def klo(){
kubectl logs -f $1
}
def kli(){
kubectl logs -f $1 -c git-init
}
def kpv(){
kubectl get pv --all-namespaces $@

Code coverter ( converter = Kodeumsetzer )

Task of the code converter is to transform 5bit Fs characters (character = Zeichens)

Letters -> Code converter -> Vorchiffreiren (Encryption)-> Decryption -> Code converter -> Letters

The converter used by T-310 is the ITA2, international telegraph alphabet no.2, described below: Sources: [[1]] [[2]]

Keybase proof

I hereby claim:

  • I am Ethcelon on github.
  • I am omb (https://keybase.io/omb) on keybase.
  • I have a public key whose fingerprint is 5C25 BDF7 2BC0 F308 D39F 301F FF3C F003 9CF5 8E97

To claim this, I am signing this object:

@Ethcelon
Ethcelon / udp_flood.py
Created August 23, 2015 08:18
UDP Flood
class udpFlood(threading.Thread):
def __init__(self, ip, port, size, packets):
threading.Thread.__init__(self)
self.ip = ip
self.port = port
self.size = size
self.packets = packets
self.udp = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
def run(self):
# Scraping a recipie on www.sanjeevkapoor.com
import BeautifulSoup as bs
import requests
r = requests.get("http://www.sanjeevkapoor.com/Recipe/Chocolate-Mille-Feuille.html")
data = r.text
soup = bs.BeautifulSoup(data)
# Now we have the HTML as a soup
# http://www.crummy.com/software/BeautifulSoup/bs3/documentation.html
@Ethcelon
Ethcelon / status.py
Last active December 20, 2015 15:09 — forked from gsathya/status.py
from datetime import datetime
from willie.module import commands, example
# use this to separate different parts of the status
DELIMITER = " ; "
@commands('status')
@example('.status My new status')
def status(bot, trigger):