Skip to content

Instantly share code, notes, and snippets.

View Mebus's full-sized avatar
😀

Mebus Mebus

😀
View GitHub Profile
@Mebus
Mebus / -
Last active April 21, 2017 12:29 — forked from anonymous/-
sha256sum alte-picus-platte-750gb.img
2e8d52d91553b2c1414e6f9c8c34d2dff2ba86ce1906d863a5991e5afe25506d alte-picus-platte-750gb.img
@Mebus
Mebus / youtube2tv.py
Last active April 22, 2017 21:07 — forked from anonymous/-
youtube2tv.py
#!/usr/bin/python3
# -*- coding: utf-8 -*-
"""
Author: Mebus
License: MIT
Purpose: Convert files for crappy PHILIPS **SMART**TV
Requirments-Installation:
@Mebus
Mebus / sshclient.go
Created May 11, 2017 17:07 — forked from josephspurrier/sshclient.go
Golang SSH Client
package main
import (
"bufio"
"io/ioutil"
"os/signal"
//"syscall"
"fmt"
"log"
"os"
@Mebus
Mebus / aufgabe3.m
Last active May 15, 2017 23:25
Mechatronik Aufgabe 3.1
% Aufgabe 3.1
y = transpose([5.5 1.5 -3.5 4.5 8.5]);
U = [-1.5 2.5;-0.5 0.25; 4.5 20.25; 7 49; 8 64];
theta = inv((transpose(U)*U))*transpose(U) * y
y_schlange(1:5) = 0;
@Mebus
Mebus / gist:f42ddcbe5719483d88e00396f723f8b8
Created July 7, 2017 08:31 — forked from ev3rywh3re/gist:2587766
Linux: grep command line notes
## Search for scary PHP stuff.
grep "((eval.*(base64_decode|gzinflate))|r57|c99|sh(3(ll|11)))" ./ -roE --include=*.php*
@Mebus
Mebus / pdfmagic.sh
Created July 28, 2017 20:38
PDFMagic
#!/bin/bash
pdftk A=PDFsam_merge-step1-step2.pdf cat Aodd output odd.pdf
pdftk A=PDFsam_merge-step1-step2.pdf cat Aeven output even.pdf
pdfcrop --margins "100 0 0 0" --clip odd.pdf
pdfcrop --margins "0 0 100 0" --clip even.pdf
/* Melbus CDCHGR Emulator
* Program that emulates the MELBUS communication from a CD-changer (CD-CHGR) in a Volvo V70 (HU-xxxx) to enable AUX-input through the 8-pin DIN-contact.
* This setup is using an Arduino Nano 5v clone
*
* The HU enables the CD-CHGR in its source-menue after a successful initialization procedure is accomplished.
* The HU will remove the CD-CHGR everytime the car starts if it wont get an response from CD-CHGR (second init-procedure).
*
* Karl Hagström 2015-11-04
* mod by S. Zeller 2016-03-14
*
# taken from http://www.piware.de/2011/01/creating-an-https-server-in-python/
# generate server.xml with the following command:
# openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes
# run as follows:
# python simple-https-server.py
# then in your browser, visit:
# https://localhost:4443
import BaseHTTPServer, SimpleHTTPServer
import ssl
@Mebus
Mebus / zuendreihenfolge.py
Last active August 5, 2018 08:30
Python3 Skript zur Berechnung des Kurbelsterns aus einer Zündreihenfolge
#!/usr/bin/python3
from prettytable import PrettyTable # pip3 install prettytable
## Modulofunktion
def modulo(zahl):
erg = zahl % 360
return erg + 360 if erg < 0 else erg
# Ausgabe der Berechnung
alphabet = "абвгдеёжзийклмнопрстуфхцчшщъыьэюя"
print(len(alphabet))
aufgaben = [
[31, 12, 16, 15, 16, 14, 10, 19, 20],
[19, 6, 12, 18, 6, 20, 1, 18, 30],
[1, 5, 3, 16, 12, 1, 20],
[10, 15, 8, 6, 15, 6, 18],
[5, 16, 24, 6, 15, 20],
[8, 21, 18, 15, 1, 13, 10, 19, 20],