Skip to content

Instantly share code, notes, and snippets.

View Belissimo-T's full-sized avatar
πŸ³οΈβ€πŸŒˆ

Pipifax (mit der Lupe πŸ”Ž) Belissimo-T

πŸ³οΈβ€πŸŒˆ
  • Germany
  • 02:56 (UTC +02:00)
View GitHub Profile
@mjkstra
mjkstra / arch_linux_installation_guide.md
Last active July 7, 2025 08:23
A modern, updated installation guide for Arch Linux with BTRFS on an UEFI system
@MorphyDK
MorphyDK / wifi-to-eth-route.sh
Created September 24, 2020 13:08
Share Wifi with Eth devices ( Wireguard )
#!/bin/bash
# Share Wifi with Eth device
# Original source:
# https://raw.githubusercontent.com/arpitjindal97/raspbian-recipes/master/wifi-to-eth-route.sh
# This script is created to work with Raspbian Stretch
# but it can be used with most of the distributions
# by making few changes.
#
# Make sure you have already installed `dnsmasq`
@szydan
szydan / gist:88d42a124a81fa060f2b47c63557e5a3
Last active April 1, 2023 15:53
Raspberry pi - wifi wlan0 -> eth0 bridge
#!/bin/bash
# Share Wifi with Eth device
#
#
# This script is created to work with Raspbian Stretch
# but it can be used with most of the distributions
# by making few changes.
#
# Make sure you have already installed `dnsmasq`
@sjf
sjf / MainActivity.java
Last active May 2, 2025 05:39
Android screen overlay example. Draws a button over other apps.
package io.sjf.overlay;
import android.annotation.TargetApi;
import android.content.Intent;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.provider.Settings;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
@sundowndev
sundowndev / GoogleDorking.md
Last active July 7, 2025 21:46
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@MarvinJWendt
MarvinJWendt / wordlist-german.txt
Created September 7, 2017 03:19
All german words (german wordlist).
This file has been truncated, but you can view the full file.
AA
AAA
Aachen
Aachener
Aachenerin
Aachenerinnen
Aachenern
Aacheners
Aachens
Aal
@bjoernQ
bjoernQ / AndroidManifest.xml
Created October 14, 2013 13:02
Creating a System Overlay (Always on Top over all Apps) in Android
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.mobilej.overlay"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="14" />
<application android:label="SystemOverlay" >
<activity
@endolith
endolith / frequency_estimator.py
Last active February 26, 2025 04:36
Frequency estimation methods in Python
from __future__ import division
from numpy.fft import rfft
from numpy import argmax, mean, diff, log, nonzero
from scipy.signal import blackmanharris, correlate
from time import time
import sys
try:
import soundfile as sf
except ImportError:
from scikits.audiolab import flacread