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
python facefusion.py run # 3.0.0 | |
[FACEFUSION.CORE] UI layout default could not be loaded | |
--- | |
python install.py --onnxruntime default --skip-conda |
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
❯ zig build -Doptimize=ReleaseFast | |
install | |
└─ install generated to libghostty-macos.a | |
└─ lipo ghostty (libghostty.a) | |
└─ libtool ghostty (libghostty-x86_64-fat.a) | |
└─ zig build-lib ghostty ReleaseFast x86_64-macos.12.0 | |
└─ metallib Ghostty (Ghostty.metallib) | |
└─ metal Ghostty (Ghostty.ir) failure | |
/Code/ghostty/src/renderer/shaders/cell.metal:289:41: error: use of undeclared identifier 'mode' | |
if (uniforms.min_contrast > 1.0f && !(mode & ~(MODE_TEXT | MODE_TEXT_BLINK))) { |
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
#!/usr/bin/env zsh | |
if [ -t 0 ]; then | |
# Argument | |
input="$1" | |
else | |
# STDIN | |
input="$(cat /dev/stdin)" | |
fi |
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" |
NewerOlder