name: tufte-viz description: | Ideate and critique data visualizations using Edward Tufte's principles from "The Visual Display of Quantitative Information." Use this skill when: (1) Designing new data visualizations or charts (2) Critiquing or improving existing visualizations (3) Reviewing dashboards or reports for graphical integrity (4) Deciding between visualization approaches (5) Reducing chartjunk or improving data-ink ratio (6) Planning small multiples or high-density displays
| # Create a new clone and branch for parallel development. | |
| # Usage: ga <branch-name> [base-branch] | |
| ga() { | |
| if [[ -z "$1" ]]; then | |
| echo "Usage: ga <branch-name> [base-branch]" | |
| return 1 | |
| fi | |
| local branch="$1" | |
| local repo_name="$(basename "$PWD")" | |
| local repo_url="$(git remote get-url origin)" |
Workaround for Desktop / Allow the repository list to be expanded all the time
How to use :
- try to alt+click the big button
- or right/left click on the left edge of maximized window.
It will toggle the pinning state of repository list view.
When the list view is pinned, it's styles are modified to make it non-modal and always visible.
| // | |
| // NSApplication+NSResponderDebug.swift | |
| // | |
| // Created by Stephan Casas on 3/18/24. | |
| // | |
| import Cocoa; | |
| extension NSApplication { | |
| // ==UserScript== | |
| // @name Twitter - replace X | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description i like birds! | |
| // @author hopper.jerry@gmail.com | |
| // @match https://twitter.com/home | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com | |
| // @grant none | |
| // ==/UserScript== |
| icon.iconset |
Below are a list of System Preference pane URLs and paths that can be accessed with scripting to assist users with enabling macOS security settings without having to walk them through launching System Preferences, finding panes, and scrolling to settings. Not all panes have an accessible anchor and some are OS specific.
To find the Pane ID of a specific pane, open the System Preferences app and select the desired Preference Pane. With the pane selected, open the ScriptEditor.app and run the following script to copy the current Pane ID to your clipboard and display any available anchors:
tell application "System Preferences"
set CurrentPane to the id of the current pane
set the clipboard to CurrentPane| // ==UserScript== | |
| // @name Twitter links To Nitter | |
| // @namespace brazenvoid | |
| // @description Convert twitter URLs to Nitter URLs | |
| // @author brazenvoid | |
| // @include * | |
| // @exclude https://twitter.com/* | |
| // @run-at document-end | |
| // ==/UserScript== |