Discussion Profile themes

anyways
Open your browser's dev console window View attachment 21802 (I'm on Librewolf/Firefox, so it's Ctrl + Shift + I) and copy and paste this and it'll play a little hearty tune
[wholesome]

JavaScript:
const myaudio = document.createElement("audio"); myaudio.autoplay = true; myaudio.loop = true; const myaudiosource = document.createElement("source"); myaudiosource.src = "https://fi.zophar.net/soundfiles/sega-mega-drive-genesis/sonic-cd-jp-scd/01%20-%20Palmtree%20Panic%20Zone%20Past.mp3"; myaudiosource.type = "audio/mpeg"; myaudio.appendChild(myaudiosource);
no
 
mfs wont trust you even if the code quite literally does exactly what it was designed to do.

const myaudio = document.createElement("audio")
Creates an audio element, e.g <audio>

myaudio.autoplay = true; myaudio.loop = true;
Makes it auto play and loop

const myaudiosource = document.createElement("source");
Creates an audio source

myaudiosource.src = "https://fi.zophar.net/soundfiles/sega-mega-drive-genesis/sonic-cd-jp-scd/01%20-%20Palmtree%20Panic%20Zone%20Past.mp3"; myaudiosource.type = "audio/mpeg";
Sets the audio source to a URL which contains an mp3.

myaudio.appendChild(myaudiosource);
Adds the audiosource node to your audio node which for some reason plays the audio without having to add the audio node to the document.

Note that this shouldn't really be used because this site runs on fucking php and people could abuse it without better forethought, basically needs a control bar so people can stop the music, but thankfully firefox has a disable autoplay feature built in
1722199431506.png

so I guess that's fine. This code works on every website though if you inject it in the console.
 
mfs wont trust you even if the code quite literally does exactly what it was designed to do.

const myaudio = document.createElement("audio")
Creates an audio element, e.g <audio>

myaudio.autoplay = true; myaudio.loop = true;
Makes it auto play and loop

const myaudiosource = document.createElement("source");
Creates an audio source

myaudiosource.src = "https://fi.zophar.net/soundfiles/sega-mega-drive-genesis/sonic-cd-jp-scd/01%20-%20Palmtree%20Panic%20Zone%20Past.mp3"; myaudiosource.type = "audio/mpeg";
Sets the audio source to a URL which contains an mp3.

myaudio.appendChild(myaudiosource);
Adds the audiosource node to your audio node which for some reason plays the audio without having to add the audio node to the document.

Note that this shouldn't really be used because this site runs on fucking php and people could abuse it without better forethought, basically needs a control bar so people can stop the music, but thankfully firefox has a disable autoplay feature built in so I guess that's fine. This code works on every website though if you inject it in the console.
nope you're trying to get my ip again
 
billions of obsessed braps above mi
mfs wont trust you even if the code quite literally does exactly what it was designed to do.

const myaudio = document.createElement("audio")
Creates an audio element, e.g <audio>

myaudio.autoplay = true; myaudio.loop = true;
Makes it auto play and loop

const myaudiosource = document.createElement("source");
Creates an audio source

myaudiosource.src = "https://fi.zophar.net/soundfiles/sega-mega-drive-genesis/sonic-cd-jp-scd/01%20-%20Palmtree%20Panic%20Zone%20Past.mp3"; myaudiosource.type = "audio/mpeg";
Sets the audio source to a URL which contains an mp3.

myaudio.appendChild(myaudiosource);
Adds the audiosource node to your audio node which for some reason plays the audio without having to add the audio node to the document.

Note that this shouldn't really be used because this site runs on fucking php and people could abuse it without better forethought, basically needs a control bar so people can stop the music, but thankfully firefox has a disable autoplay feature built in
View attachment 21805
so I guess that's fine. This code works on every website though if you inject it in the console.
I did it, it works. You can trust it. [wholesome]

It did hurt my ears though
 
nope you're trying to get my ip again
hagon run this in your console, it will grab your ip, send it to the authorities and the police will show up outside of your house
Code:
console.log("Hello world!");
 
hagon run this in your console, it will grab your ip, send it to the authorities and the police will show up outside of your house
Code:
console.log("Hello world!");
one time i tried reading a book about python and stopped when i got to that part cuz i didnt trust it
 
Last edited:
one time i tryed reading a book about python and stopped when i got to that part cuz i didnt trust it
i bet hagon is the same guy to not trust "print("hello world")" but would jump at the chance to download some sketchy free fortnite porn hacks cheats and glitches 100% free punjabi software
 
one time i tryed reading a book about python and stopped when i got to that part cuz i didnt trust it
1722200423246.png

the only thing i know abt python is this horrible program which breaks every month that i use to edit stats in this park-building game
 
if you guys want profile music, just compress an mp3 to 1.5mb and hide it in your about section (nvm you cant attach it to the about section)
 
Last edited:
i would put this as my profile song if it ever happened:
listen to it it sounds super good
 
I'd like to have this added, but to have it as a toggle-able setting, so that people who don't like music won't have to hear it.
 
Back
Top