Skip to content

Instantly share code, notes, and snippets.

View florianbussmann's full-sized avatar
📚
💻

Florian Bussmann florianbussmann

📚
💻
View GitHub Profile
@fbouynot
fbouynot / install_cachet.sh
Last active December 24, 2024 11:41
Cachet 3.x installation
#!/usr/bin/env bash
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation, either version 3 of the License, or (at your
# option) any later version. Please see LICENSE.txt at the top level of
# the source code distribution for details.
#
# @package install_cachet.sh
# @author <[email protected]>
@pratyakshm
pratyakshm / Sideloading_apps_in_WSA.md
Last active February 15, 2025 09:02
Sideloading apps on Windows Subsystem for Android in Windows 11

Sideloading APKs in to Windows Subsystem for Android

Update (9th July, 2022): An app is available that does just this.

Check out WSATools by Simone Franco: https://www.microsoft.com/store/apps/9N4P75DXL6FG


Setting up ADB to work with WSA

  • Launch Windows Subsystem for Android.
@ThEMarD
ThEMarD / gist:cd31bb69731ef004891b128832ed92c3
Last active April 5, 2023 14:00
How to logcat Audio stuff from stock ROMs
Some stock ROMs don't want you using audio logcat level 7 which is required for the audio logs... so for that? You'll need to root your stock ROM with something like Magisk and then use adb with these commands:
adb shell
su
stop
setprop sys.init_log_level 7
logcat -G 4M
start
exit
@arikfr
arikfr / refresh.py
Last active May 3, 2024 10:33
Redash Refresh API usage example with parameters Raw
import os
import requests
import time
from pprint import pprint
def poll_job(s, redash_url, job):
# TODO: add timeout
while job['status'] not in (3,4):
response = s.get('{}/api/jobs/{}'.format(redash_url, job['id']))
@0x646e78
0x646e78 / Gitlab-Docker-certbot.md
Last active March 11, 2019 18:50
gitlab inside docker with certs from Let's Encrypt

Running gitlab inside docker with certs from Let's Encrypt

This will serve SSH and HTTPS (with which I got an A+ from testssl).

Creates three docker containers:

  • gitlab-prostgres
  • gitlab-redis
  • gitlab, which is linked to the other two. This contains nginx, sshd, git, gitlab.