Skip to content

Instantly share code, notes, and snippets.

View lfuelling's full-sized avatar
⚠️
thisisunsafe

Lerk lfuelling

⚠️
thisisunsafe
View GitHub Profile
@lfuelling
lfuelling / .bash_profile
Last active August 29, 2015 14:06
.bash_profile (Mac)
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@lfuelling
lfuelling / jenkins_custom.css
Created January 30, 2015 10:38
Jenkins Custom CSS
body {
background: #ffffff;
background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #ffffff));
background: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
background: -o-linear-gradient(top, #ffffff 0%, #ffffff 100%);
background: -ms-linear-gradient(top, #ffffff 0%, #ffffff 100%);
background: linear-gradient(top, #ffffff 0%, #ffffff 100%); }
h1, h2, h3, h4, h5, h6 {
@lfuelling
lfuelling / install_syslinux.sh
Created March 4, 2015 14:30
Syslinux Install script
#!/bin/bash
clear
set -e
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root" 1>&2
exit 1
fi
echo "Do you REALLY want to do this? (y/N)"
read a
if [[ $a == "Y" || $a == "y" ]]; then
@lfuelling
lfuelling / wifi-aliases.sh
Created February 6, 2017 13:17
Bash aliases for wifi and darkmode
#!/bin/bash
# Wifi
alias wstat="networksetup -getairportpower en0"
alias won="networksetup -setairportpower en0 on"
alias woff="networksetup -setairportpower en0 off"
# Darkmode
alias darkon='osascript -e "tell application \"System Events\" to tell appearance preferences to set dark mode to true"'
alias darkoff='osascript -e "tell application \"System Events\" to tell appearance preferences to set dark mode to false"'
@lfuelling
lfuelling / Dockerfile
Last active February 9, 2017 22:00
dradis-ce Dockerfile (alpha)
FROM ruby:2.2
##
# Docker image for Dradis-ce.
# This is NOT the final version!
##
MAINTAINER Lukas Fülling (lukas@k40s.net)
# Install dependencies using apt
@lfuelling
lfuelling / spectre.c
Created January 8, 2018 23:57 — forked from ErikAugust/spectre.c
Spectre example code
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#ifdef _MSC_VER
#include <intrin.h> /* for rdtscp and clflush */
#pragma optimize("gt",on)
#else
#include <x86intrin.h> /* for rdtscp and clflush */
#endif
@lfuelling
lfuelling / mac.sh
Last active April 25, 2018 23:33
macOS initial config
#!/usr/bin/env bash
# mac.sh — Based on: https://mths.be/macos
# Close any open System Preferences panes, to prevent them from overriding
# settings we’re about to change
osascript -e 'tell application "System Preferences" to quit'
# Ask for the administrator password upfront
sudo -v
@lfuelling
lfuelling / showCows.sh
Created July 13, 2019 11:33
See all the available cows on your system!
#!/bin/bash
cowsay -l | xargs -n 1 | tail -n +5 | while read line; do cowsay -f $line $line && sleep 1; done
@lfuelling
lfuelling / halcyon.conf
Last active July 13, 2019 12:52
"jUsT uPlOaD AnD rUn iT"
<VirtualHost *:80>
ServerName {{ halcyon_domain }}
Redirect permanent / https://{{ halcyon_domain }}/
Redirect permanent (.*) https://{{ halcyon_domain }}/
</VirtualHost>
<VirtualHost *:443>
ServerName {{ halcyon_domain }}
@lfuelling
lfuelling / PRIVACY.md
Created February 9, 2020 02:13
Generic Data Privacy Statement For Offline Apps On Google Play

Privacy

This app does not connect to the internet or collect any data on it's own.

The exception of this is preferences the user sets or values the user enters. Those will be stored on the device and might get backuped to Google if this is configured. The backup has to be configured in the Android System settings.

This statement does not cover functionality that is provided by Google (eg. the PlayStore analytics).