This script detects apps with not yet updated versions of Electron.
Repo: https://github.com/tkafka/detect-electron-apps-on-mac
See:
This script detects apps with not yet updated versions of Electron.
Repo: https://github.com/tkafka/detect-electron-apps-on-mac
See:
| // ==UserScript== | |
| // @name Twitter age bypass | |
| // @version 1.0.2 | |
| // @description A simple userscript for bypassing Twitter media age verification | |
| // @author voc | |
| // @namespace https://github.com/Vocaned | |
| // @downloadURL https://gist.github.com/Vocaned/6bb15f28530194f25dfff7ae8327846e/raw/twitter-age-bypass.user.js | |
| // @match https://x.com/* | |
| // @match https://twitter.com/* | |
| // @grant none |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <ctype.h> | |
| #include <openssl/sha.h> | |
| #define TARGET_PREFIX "20250327" | |
| #define MAX_WORDS 256 | |
| #define MAX_TEXT 2048 | |
| #define MAX_ATTEMPTS (1ULL << 32) // 2^32 attempts (~4.3B, enough for 8-char prefix) |
| --[[ | |
| -- This script seamlessly* plays videos in a SurfaceGui in order. It's a bit | |
| -- hacky for a few reasons (mainly Roblox limitations & random delays with | |
| -- VideoFrames) but the biggest one being that Roblox only allows you to upload | |
| -- 3, 30 second videos per month (...lol). | |
| -- | |
| -- * - technically, because of a hack (see line 99), we end each clip early by 0.05 seconds | |
| -- | |
| -- INSTRUCTIONS: | |
| -- 1. Create a SurfaceGui somewhere |
| https://www.roblox.com | |
| https://api.roblox.com | |
| https://abtesting.roblox.com | |
| https://accountinformation.roblox.com | |
| https://accountsettings.roblox.com | |
| https://adconfiguration.roblox.com | |
| https://ads.roblox.com | |
| https://apis.roblox.com | |
| https://assetdelivery.roblox.com | |
| https://auth.roblox.com |
List of freely available resources to study computer graphics programming.
| $ grep -P "^[ABCDEFabcdefOoIi]{6,6}$" /usr/share/dict/words | tr 'OoIi' '0011' | tr '[:lower:]' '[:upper:]' | awk '{print "#" $0}' | |
| #ACAD1A | |
| #B0BB1E | |
| #DEBB1E | |
| #AB1DED | |
| #ACAC1A | |
| #ACCEDE | |
| #AC1D1C | |
| #BAB1ED | |
| #BA0BAB |
Due to various reasons (such as Apple developer account termination), apps you had previously purchased can no longer be downloaded from the App Store or iTunes. However, it turns out these applications can still be accessed. Third party .ipa downloading tools such as iMazing, ipatool, and ipatool-py use a special endpoint that allows downloading removed apps.
This app must have been purchased on your Apple ID beforehand. You cannot download any app ever made. Apple only lets you download apps you had bought or downloaded in the past.
I reccomend using the ipatool-py method, because it is easier. However, if you are unable to use it, I have left the original iMazing method for you to follow.
(See also installing Distroboxm, which is included in SteamOS 3.5 and newer: https://distrobox.it/ )
(See also installing Nix package manager: https://determinate.systems/posts/nix-on-the-steam-deck )
You can install Homebrew (a package manager for macOS and Linux) without disabling the read-only partition with sudo steamos-readonly disable.
The package manager can be used alongside Flatpaks. Some software is only available on Flathub, and some software is only available on Homebrew.
Ever want to start watching a channel's uploaded videos starting from the current video you are on in chronological order? Well then, this bookmarket is for you!
javascript:l=window.location.href;if(l.includes("youtube.com/watch?v=")){u=new URL(l);u.searchParams.set("list","ULcxqQ59vzyTk");window.open(u.toString(),"_self");};