Skip to content

Instantly share code, notes, and snippets.

@bbb651
bbb651 / FlashpointBrowserExpandAll.user.js
Created May 11, 2022 17:19
Flashpoint Browser Expand All Userscript
// ==UserScript==
// @name Flashpoint Browser expand all
// @namespace https://greasyfork.org/en/users/436563-bbb651
// @match https://nul.sh/misc/flashpoint/
// @grant none
// @version 1.0
// @author Bar Yemini
// @description Expands all games in view to easily see and recognize them by their image.
// @license MIT
// ==/UserScript==
@bbb651
bbb651 / README.md
Created April 13, 2022 17:25
OverTheWire Natas

Level 0

Written in a comment in index.html

Level 1

Written in a comment in index.html

@bbb651
bbb651 / waydroid.sh
Created March 24, 2022 11:35
Build and launch android apps on waydroid
#!/bin/bash
# Get package id from build.gradle
package=$(grep "applicationId" app/build.gradle | cut -d '"' -f 2)
# Build app, exit if fails
./gradlew assemble || exit 1
# Install app in waydroid
waydroid app install app/build/outputs/apk/debug/app-debug.apk