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
ffmpeg -framerate 30 -i frame_%03d.png -c:v prores_ks -profile:v 4444 -pix_fmt yuva444p10le -alpha_bits 8 -q:v 20 output.mov |
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
// Based on: https://dfns.dyalog.com/n_sudoku.htm | |
// x(,/{@[x;y;]'(!10)^x*|/p[;y]=p,:,3/:-3!p:!9 9}')/&~*x | |
const solveSudoku = (board) => { | |
const grid = Array.isArray(board[0]) | |
? board | |
: Array.from({ length: 9 }, (_, i) => board.slice(i * 9, (i + 1) * 9)); | |
if (solve(grid)) { | |
return grid; |
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
alias multipull='find . -mindepth 1 -maxdepth 1 -type d | while read -r dir; do echo "\033[32mUpdating:\033[0m $dir\n$(git -C "$dir" remote get-url origin 2>/dev/null || echo "No remote for $dir")"; git -C "$dir" pull || echo "Failed $dir"; echo; 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
[...document.querySelectorAll( 'link[rel~=alternate][type="application/atom+xml"],' + 'link[rel~=alternate][type="application/rss+xml"],' + 'a[rel~=alternate][type="application/atom+xml"],' + 'a[rel~=alternate][type="application/rss+xml"]' )].map(link => link.href); |
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 | |
# Check if the correct number of arguments is provided | |
if [ "$#" -ne 3 ]; then | |
echo "Usage: $0 <source_directory> <destination1> <destination2>" | |
exit 1 | |
fi | |
# Assign arguments to variables | |
source_dir="$1" |
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/zsh | |
usage() { | |
echo "https://github.com/facefusion/facefusion" | |
echo "Usage: $0 -s source_image -t target_image [-r reference_face_position] [-e]" | |
echo " -s: Path to the source image" | |
echo " -t: Path to the target image" | |
echo " -r: Reference face position (default: 0)" | |
echo " -e: Toggle to remove the face enhancer (optional)" | |
exit 1 |
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
device = 'cuda' if torch.cuda.is_available() else 'mps' if torch.backends.mps.is_available() else 'cpu' |
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 | |
ffmpeg_bin="ffmpeg" # v7.1 | |
target_il=-16.0 | |
target_lra=11.0 | |
target_tp=-1.0 | |
samplerate="44100" | |
if [ "$#" -ne 2 ]; then | |
echo "Usage: $0 input.wav output.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
launchctl unload -w ~/Library/LaunchAgents/com.google.keystone.xpcservice.plist | |
launchctl unload -w ~/Library/LaunchAgents/com.google.keystone.agent.plist | |
echo > ~/Library/LaunchAgents/com.google.keystone.xpcservice.plist | |
echo > ~/Library/LaunchAgents/com.google.keystone.agent.plist | |
chmod 644 ~/Library/LaunchAgents/com.google.keystone.xpcservice.plist | |
chmod 644 ~/Library/LaunchAgents/com.google.keystone.agent.plist | |
sudo chown root ~/Library/LaunchAgents/com.google.keystone.xpcservice.plist |
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
import { S3Client, PutObjectCommand, GetObjectCommand, DeleteObjectCommand } from "@aws-sdk/client-s3"; | |
const s3Client = new S3Client({ region: "us-east-1" }); | |
const Bucket = "BUCKET_NAME_GOES_HERE"; | |
export const handler = async (event) => { | |
let statusCode = 200; | |
let body = ``; | |
if (event.requestContext.http.method === "POST") { |
NewerOlder