Skip to content

Instantly share code, notes, and snippets.

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

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

πŸ³οΈβ€πŸŒˆ
  • Germany
  • 14:29 (UTC +02:00)
View GitHub Profile
@mjkstra
mjkstra / arch_linux_installation_guide.md
Last active September 13, 2025 12: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`
@kabili207
kabili207 / Rclone systemd service.md
Last active September 6, 2025 03:27
Rclone systemd user service

rclone systemd service

Preparation

This service will use the same remote name you specified when using rclone config create. If you haven't done that yet, do so now.

Next, create the mountpoint for your remote. The service uses the location ~/mnt/<remote> by default.

mkdir ~/mnt/dropbox
@sjf
sjf / MainActivity.java
Last active August 5, 2025 13:06
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 September 13, 2025 02:34
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 September 9, 2025 15:34
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