personal-website/js/data.js

42 lines
1020 B
JavaScript
Raw Normal View History

const URL_REGEX = /((([A-Za-z]{3,9}:(?:\/\/)?)(?:[\-;:&=\+\$,\w]+@)?[A-Za-z0-9\.\-]+|(?:www\.|[\-;:&=\+\$,\w]+@)[A-Za-z0-9\.\-]+)((?:\/[\+~%\/\.\w\-_]*)?\??(?:[\-\+=&;%@\.\w_]*)#?(?:[\.\!\/\\\w]*))?)/;
2024-04-20 09:13:46 -05:00
const LINKS = {
'gitea': 'https://git.sador.me/sadorowo',
2024-04-20 09:13:46 -05:00
'instagram': 'https://instagram.com/sadorowo',
'immich': 'https://photos.sador.me/',
'email': 'mailto:contact@sador.me'
}
const MUSIC_METADATA = {
'heavy metal': [
'Poisonblack',
'Metallica'
],
'gothic metal': [
'Draconian',
'Beseech',
'To/Die/For',
'For My Pain...',
'Charon',
'Entwine'
],
'death suicidal black metal': [
'minuta agonii',
'Decalius'
],
'black metal': [
'Behemoth',
'Venom',
'Mgła',
'Watain',
'Bathory',
2024-04-20 09:13:46 -05:00
'Carpathian Forest',
'Darkthrone'
],
'nu metal': [
'Slipknot',
'Evanescence'
],
'other genres': [
'Rammstein'
2024-04-20 09:13:46 -05:00
]
}