Skip to content

Instantly share code, notes, and snippets.

View worthy7's full-sized avatar
🎯
Focusing

worthy7

🎯
Focusing
View GitHub Profile
@worthy7
worthy7 / gist:b36509fb2be13231c71b26160722cb48
Created December 12, 2023 09:11
Firebase + Angular i18n notes
How firebase works
3 ways to detect
country by IP
language by accept-language header
cookie override for both.
if nothing found, will use rewrites
@worthy7
worthy7 / convert.bat
Last active November 17, 2021 03:50
Batch file using Sox to recursively convert some audio
for /r %%f in (*.wv) do (
echo "fullname: %%f"
echo "name: %%~nf"
sox "%%f" "%%~nf.flac"
)