Played games from these consoles on Miyoo Mini Plus.
- Intellivision
- Atari 2600
- Vectrex (line drawing, good games)
- Odyssey (difficult to control on miyoo mini)
- Colecovision (complicated controls for miyoo mini)
| @echo off | |
| REM Use: "script.bat Your note here" to append a note to 'daily_note_YYYY_MM_DD.txt'. | |
| REM If no argument given, type note interactively. Press Enter on an empty line to finalize. | |
| REM Note is saved in 'd:\notes'. | |
| setlocal enabledelayedexpansion | |
| REM Creating a Newline variable (the two blank lines are required!) src: https://stackoverflow.com/a/269819/342095 | |
| set NLM=^ |
| // ==UserScript== | |
| // @name Hacker News Story Rank Change Indicator | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2024-09-07_15-42 | |
| // @description Indicate the new stories and stories moving up/down on the front page | |
| // @author SMUsamaShah | |
| // @match https://news.ycombinator.com/ | |
| // @match https://news.ycombinator.com/news | |
| // @match https://news.ycombinator.com/news?p=* | |
| // @match https://news.ycombinator.com/?p=* |
| ##KUSTOMCLIP## | |
| { | |
| "clip_version": 1, | |
| "KUSTOM_GLOBAL": { | |
| "gcol1": { | |
| "index": 0, | |
| "type": "COLOR", | |
| "title": "gcol1", | |
| "value": "#FFAFAFAF", | |
| "key": "gcol1" |
Find duplicate roms on Miyoo Mini (running BusyBox) when roms are zipped (.zip/.7z) and each zip contains just one file.
This command finds and lists all duplicates.
find . \( -name '*.zip' -o -name '*.7z' \) -type f -exec sh -c 'if [ "${1##*.}" = "zip" ]; then echo `unzip -p "{}" | md5sum` "{}"; else echo `7z e "{}" -so | md5sum` "{}"; fi' -- {} \; | sort | awk 'BEGIN{last_hash=""; last_line=""; seen_duplicate=0} {if ($1 == last_hash) {if (!seen_duplicate) print last_line; print $0; seen_duplicate=1} else seen_duplicate=0; last_hash=$1; last_line=$0}'
example output:
91128778a332495f77699eaf3a37fe30 - ./Alleyway.zip
| ; Get path of current wallpaper file from registry | |
| RegRead, TranscodedImageCache, HKEY_CURRENT_USER, Control Panel\Desktop, TranscodedImageCache | |
| WallpaperPath := % BinaryToText(TranscodedImageCache) | |
| ;MsgBox, % WallpaperPath | |
| ; Delte the actual wallpaper image file | |
| FileDelete, % WallpaperPath | |
| ; Select next background, same as desktop right click + Next desktop background | |
| next_bg() |
There are loads of web desktops these days, only few of them are actually any good and fun. This is a list of those.
| // ==UserScript== | |
| // @name Skip Disliked Videos | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.21 | |
| // @description Skip disliked videos. Just press dislike to skip to next one! | |
| // @match https://www.youtube.com/* | |
| // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
| // @grant none | |
| // ==/UserScript== |