Skip to content

Instantly share code, notes, and snippets.

View joshuaavalon's full-sized avatar
🎯
Focusing

Joshua Avalon joshuaavalon

🎯
Focusing
View GitHub Profile
@joshuaavalon
joshuaavalon / MusicBrainz expanded.inc
Created June 27, 2024 06:48
MusicBrainz map3tag custom
##############################################################################
#
# WebSourceScript for Mp3tag, fetching Metadata from MusicBrainz.org
# Version v2.00
#
# This file will be called by a *.src file. It does not run independently.
#
##############################################################################
# This *.inc file together with all the linked *.src files must be placed
# in your Mp3tag sources directory, on Windows 10 found in this folder:
@joshuaavalon
joshuaavalon / README.md
Created June 25, 2024 15:39
Disable Jellyfin Internal metadata provider

Edit system.xml and add the below XML

@joshuaavalon
joshuaavalon / snippets.json
Created October 6, 2023 07:01
VSCode user snippets
{
"uuid": {
"prefix": "uuid",
"body": "${UUID}",
"description": "Generate UUID"
},
"now-date": {
"prefix": "now-date",
"body": "$CURRENT_YEAR-$CURRENT_MONTH-$CURRENT_DATE",
"description": "Generate current date YYYY-MM-DD"
@joshuaavalon
joshuaavalon / semver.sh
Created January 13, 2021 02:38
Parse semantic version
#!/usr/bin/env sh
function semverParseInto() {
local RE='[^0-9]*\([0-9]*\)[.]\([0-9]*\)[.]\([0-9]*\)\([0-9A-Za-z-]*\)';
eval $2=`echo $1 | sed -e "s#$RE#\1#"`;
eval $3=`echo $1 | sed -e "s#$RE#\2#"`;
eval $4=`echo $1 | sed -e "s#$RE#\3#"`;
eval $5=`echo $1 | sed -e "s#$RE#\4#"`;
}
# Atom Beautify - Debugging information
The following debugging information was generated by `Atom Beautify` on `Wed Jan 04 2017 11:25:25 GMT+0800 (China Standard Time)`.
---
## Table Of Contents
- [Versions](#versions)
- [Original file to be beautified](#original-file-to-be-beautified)
- [Original File Contents](#original-file-contents)