Skip to content

Instantly share code, notes, and snippets.

View h3x4d3c1m4l's full-sized avatar

Sander in 't Hout h3x4d3c1m4l

View GitHub Profile
@h3x4d3c1m4l
h3x4d3c1m4l / project_folder_info.py
Created January 17, 2024 12:16
Show Flutter/NodeJS project subfolder info
import os
import json
from subprocess import PIPE, Popen
from tabulate import tabulate
def is_flutter_project(directory):
return os.path.isfile(os.path.join(directory, "pubspec.yaml"))
def is_nodejs_project(directory):
return os.path.isfile(os.path.join(directory, "package.json"))
@h3x4d3c1m4l
h3x4d3c1m4l / Dump Bluetooth keys.ps1
Last active June 2, 2022 07:08
PowerShell script for dumping Bluetooth keys (e.g. for importing into Linux)
#
# Dump Windows Bluetooth encryption keys.
# (e.g. for importing into Linux, so you don't have to repair your HID devices, headphones, etc.)
#
# Script by: Sander in 't Hout (h3x4d3c1m4l)
# License : WTFPL
#
# Note: This script needs to be run as SYSTEM user, due to registry key permissions
# You can do this with PsExec: https://docs.microsoft.com/en-us/sysinternals/downloads/psexec
#