Skip to content

Instantly share code, notes, and snippets.

View ego-lay-atman-bay's full-sized avatar
💭
Hello there!

ego-lay_atman-bay ego-lay-atman-bay

💭
Hello there!
View GitHub Profile
@ego-lay-atman-bay
ego-lay-atman-bay / Unlock wmw for free.md
Last active September 20, 2024 15:52
Unlock Where's My Water? paid content for free

Here is a SQL script to unlock all the paid content in Where's My Water? for free.

All you need to do is open water.db in a SQL editor, like DB Browser, then run this script.

@ego-lay-atman-bay
ego-lay-atman-bay / probe-android.bat
Created June 6, 2024 20:33
Probe your android device to get all of it's specs to be used to create a copy in DummyDroid.
@ECHO off
echo Build:
echo|set /p=Model:
adb shell getprop ro.product.model
echo|set /p=Manufacturer:
adb shell getprop ro.product.manufacturer
echo|set /p=Brand:
adb shell getprop ro.product.brand
echo|set /p=Product:
adb shell getprop ro.product.name
@ego-lay-atman-bay
ego-lay-atman-bay / bee-movie-script.txt
Last active February 16, 2024 15:35
Bee Movie script. This is a modification of https://gist.github.com/Ukaye-dev/ad8c0265b5b895f6347d20f57e60a59e which fixes many spelling mistakes
According to all known laws
of aviation,
there is no way a bee
should be able to fly.
Its wings are too small to get
its fat little body off the ground.
// definition
function loadScript(scriptUrl) {
console.log('loading script', scriptUrl);
const script = document.createElement('script');
script.src = scriptUrl;
document.body.appendChild(script);
return new Promise((res, rej) => {
script.onload = function() {
res({message: 'script loaded'});