Skip to content

Instantly share code, notes, and snippets.

View theSuess's full-sized avatar
🔭

Dominik Süß theSuess

🔭
View GitHub Profile
@theSuess
theSuess / Dockerfile
Created January 14, 2020 16:18
Proxmark3 builder
FROM devkitpro/devkitarm AS builder
ENV DEVKITPRO=/opt/devkitpro/
ENV DEVKITARM=$DEVKITPRO/devkitARM
ENV PATH=${PATH}:${DEVKITARM}/bin
RUN apt-get update && apt-get install -y p7zip git build-essential libreadline5 libreadline-dev libusb-0.1-4 libusb-dev libqt4-dev perl pkg-config wget libncurses5-dev gcc-arm-none-eabi libstdc++-arm-none-eabi-newlib libpcsclite-dev pcscd

Es wird Zugang zur DNS Verwaltung benötigt sowie dieses tool: https://github.com/Neilpang/acme.sh

Beispiel Ablauf für ein Wildcard Zertifikat *.staging.demo.com

curl -s -X POST https://auth.acme-dns.io/register

Response:

{

Keybase proof

I hereby claim:

  • I am theSuess on github.
  • I am thesuess (https://keybase.io/thesuess) on keybase.
  • I have a public key whose fingerprint is 5F47 944E 5C5F 009A 86B2 D0CA 8F35 542E E29F EB82

To claim this, I am signing this object:

### Keybase proof
I hereby claim:
* I am thesuess on github.
* I am thesuess (https://keybase.io/thesuess) on keybase.
* I have a public key whose fingerprint is 5339 33F7 AAFF 5EBF C024 80BB 1420 BA57 69F6 4D24
To claim this, I am signing this object:
import flash.events.MouseEvent;
btn_save.addEventListener(MouseEvent.CLICK, handl_save);
btn_done.addEventListener(MouseEvent.CLICK, handl_done);
var namen: Array = ["AA", "BB", "CC", "DD"]; //names of racers
var platz: Array = [new Array(), new Array(), new Array(), new Array()]; //2D array. places that the user assigns the names. There can be more races, so that's why it's 2D.
var curRound: int = 0;
//BUTTON - this part works perfectly
@theSuess
theSuess / CustomPreferenceActivity.java
Created October 4, 2014 15:35
Android Map start location chooser
package com.trumpstuff.mapdemo;
import android.os.Bundle;
import android.preference.PreferenceActivity;
import android.preference.PreferenceManager;
/**
* Created on 04.10.2014.
*/
public class CustomPreferenceActivity extends PreferenceActivity {
@theSuess
theSuess / designer.html
Created August 18, 2014 17:35
designer
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">