Skip to content

Instantly share code, notes, and snippets.

View laGameTV's full-sized avatar
👋
Hey there

Lennox laGameTV

👋
Hey there
View GitHub Profile
@laGameTV
laGameTV / function.js
Last active January 1, 2025 18:06
unMarkdownIfy™
function unMarkdownIfy(text, chars) {
if (!chars) chars = ['*', '_', '~', '>', '`', '|']
else chars = chars.split('')
chars.forEach(i => {
text = text.replaceAll(i, "\\" + i)
})
console.log("Thanks for using unMarkdownIfy™ ", text)
return text
}
@laGameTV
laGameTV / function.js
Last active January 1, 2025 18:05
Discord Emoji Regex Validator
const tests = [
"🏥",
"🏠",
"⭐",
"🤖",
"📰",
"🗞️",
"👎",
"🖐️",
"👋",
@laGameTV
laGameTV / .env.example
Last active May 16, 2025 17:54
Deploy Pelican Panel in Dokploy
TIMEZONE=Europe/Berlin
# Panel
# PANEL_DEBUG=false
# PANEL_ENV=production
# PANEL_LOCALE=en
[email protected] # Needs to be changed.
PANEL_URL_SCHEME=https # Needs to be changed.
PANEL_URL=pelican.example.org # Needs to be changed.