This file contains 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 Python doc toc | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-04-27 | |
// @description Add table of contents to python doc. | |
// @author You | |
// @match https://docs.python.org/3/library/*.html | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=python.org | |
// @grant none | |
// @run-at document-idle |
This file contains 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
#! /usr/bin/env ruby | |
require 'mini_magick' | |
# gem install mini_magick | |
def resize_image(image_name, output_name) | |
current_scale = 3 | |
if image_name.include?("@3x") | |
current_scale = 3 |
This file contains 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
#!/bin/bash | |
# Raycast Script Command Template | |
# | |
# Duplicate this file and remove ".template." from the filename to get started. | |
# See full documentation here: https://github.com/raycast/script-commands | |
# | |
# Required parameters: | |
# @raycast.schemaVersion 1 | |
# @raycast.title obsidian wiki |
OlderNewer