Tutorial and tips for GitHub Actions workflows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| BIG iOS URL SCHEME LIST | |
| HAD TO MAKE A DROPBOX FILE BECAUSE THIS LIST WAS TOO LONG TO POST IN THE COMMENTS OR NOT MAKE THE WORKFLOW APP TAKE FOREVER TO READ IT. | |
| ☠JAILBREAK/SYSTEM APPS | |
| -------------------------- | |
| activator:// | |
| itms-apps:// | |
| itms-services:// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ' Hack to workaround the Powershell Console popup running on a Windows Scheduled Task | |
| ' Powershell limitations: https://github.com/PowerShell/PowerShell/issues/3028 | |
| ' | |
| ' Add this file in the same git root directory as the sync.ps1 | |
| ' | |
| Dim shell,command | |
| Dim oFSO : Set oFSO = CreateObject("Scripting.FileSystemObject") | |
| Dim sScriptDir : sScriptDir = oFSO.GetParentFolderName(WScript.ScriptFullName) | |
| command = "powershell.exe -nologo -File " & sScriptDir & "\sync.ps1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # How to use: | |
| # ./screenshot-tool.sh [export directory] [seconds between screenshots] | |
| # Example: ./screenshot-tool.sh ~/Pictures 5 | |
| # Install scrot if it's not already installed | |
| if ! [ -x "$(command -v scrot)" ]; then | |
| sudo apt install -y scrot | |
| fi | |
| # Set directory to parameter $1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Click to delete | |
| // @author Antonio Bueno | |
| // @namespace userscripts.atnbueno.com | |
| // @description This script deletes page elements if clicked twice while simultaneously pressing Alt, Control, and Shift | |
| // @version 2.0 | |
| // @grant none | |
| // ==/UserScript== | |
| /* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Variables used by Scriptable. | |
| // These must be at the very top of the file. Do not edit. | |
| // icon-color: black; icon-glyph: user-md; | |
| // just replace the url below with the url if the channel you want to use | |
| // image channels only, doesnt supoort text or anything else | |
| const channel = 'https://www.are.na/una/color-tx32pz_qsu0' | |
| const url = 'https://api.are.na/v2/channels/'+channel.substring(channel.lastIndexOf('/') + 1)+'/contents'; | |
| const req = new Request(url) |
Want the Subject field (for bold iMessages) in macOS’ Messages app?
- Quit Messages
- Open Terminal
- Run
defaults write com.apple.MobileSMS MMSShowSubject 1 - Start Messages
This worked for me on a fresh install of macOS 14.1.1 (23B81) (new Mac mini).
Note: On modern versions of macOS, you must enable Privacy & Security > Full Disk Access for your Terminal app in System Settings.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name iOS Shortcut Preview | |
| // @namespace https://www.atnbueno.com/ | |
| // @match https://showcuts.app/share/view | |
| // @match https://www.icloud.com/shortcuts/* | |
| // @version 2.0 | |
| // @grant GM_addStyle | |
| // ==/UserScript== | |
| /* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| tweets from my twitter archive but in order |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Variables used by Scriptable. | |
| // These must be at the very top of the file. Do not edit. | |
| // icon-color: blue; icon-glyph: link; | |
| /** | |
| * GENERATE BEAR BACKLINKS | |
| * | |
| * This script will find and add backlinks in Bear. | |
| * | |
| * !!Please backup your notes before running!! https://bear.app/faq/Backup%20&%20Restore/ |