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 | |
# Ensure the 'converted' directory exists | |
mkdir -p converted | |
# Initialize a counter for file naming | |
counter=1 | |
# Allowed audio file extensions | |
allowed_extensions="flac mp3 wav" |
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
.container | |
- for i in 1..3 | |
.shaker | |
ul.group | |
- for j in 1..14 | |
li.line |
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 | |
# Default values | |
start_time=0 | |
rtl_flag=false | |
output_file="output.png" | |
downscaling_factor=1 | |
aspect_ratio="16:9" | |
# Parse arguments |
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 | |
# Define the source and target directories. | |
SOURCE_DIR="./originals" | |
TARGET_DIR="./processed" | |
# Ensure ffmpeg is installed. | |
if ! command -v ffmpeg &> /dev/null | |
then | |
echo "ffmpeg could not be found, please install it." |
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
# heic-convert() { | |
# local ext | |
# ext="${1:-jpg}" | |
# for img in *.heic; do | |
# convert "$img" "${img%.heic}.$ext" | |
# done | |
# } | |
# Instead of ^this^, do this: | |
mogrify -format jpg *.heic |
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
# Move the results into their own folder, drag that parent folder into imageOptim, `cd` into it, then: | |
for d in Issue\ */; do | |
cd "$d" | |
convert -compress jpeg -quality 33 -resize 2388x2388\> *.jpg "../${d%/}.pdf" | |
cd .. | |
done |
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
curl https://raw.githubusercontent.com/dariusk/corpora/master/data/technology/new_technologies.json | jq '.technologies[]' | while read technology; do say -v zarvox "$technology" & done |
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
/** | |
* Moves a React component into its own folder in <src>/components/, adds an index.js for | |
* cleaner imports, and updates the import path in other files. | |
* | |
* Based loosely on the structure shown in https://www.joshwcomeau.com/react/file-structure. | |
* | |
* | |
* Usage | |
* ===== | |
* |
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
// This is a small wrapper around React DnD’s provider that switches to a touch | |
// backend as soon as a touch event is detected. | |
import { useEffect, useState } from 'react'; | |
import { DndProvider } from 'react-dnd'; | |
import { HTML5Backend } from 'react-dnd-html5-backend'; | |
const TOUCH_EVENTS = ['touchstart', 'touchmove', 'touchend', 'touchcancel']; | |
function DndProviderWrapper({ children }) { | |
const [dndProps, setDndProps] = useState({ backend: HTML5Backend }); |
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
// Convert a list of 10 colors (eg. generated by https://primer.style/prism/) | |
// to a Firefox theme manifest. | |
// | |
// name: The name of the theme. | |
// colors: An array of 10 colors. | |
// id: The ID of the theme. Format: "[email protected]". | |
// version (optional): The version of the theme. Format: "<major>.<minor>". | |
// | |
// Docs: https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/theme | |
// |
NewerOlder