
Originally Posted by
Joker
The Files I'm providing are the source files for an HTML / Web Based Junk Code Generator. It's really easy to use and user friendly. +Rep and Thanks Appreciated :3
Thanks for sharing. The site I knew that had this got taken down. Saving me a lot of work.
+rep
-EDIT-
I recommend to everyone who wants to put this on a site to add "<!DOCTYPE html>" at top of the .html file.
Then you can remove the .html from the file.
What it does is that you won't need to enter the web address like this:
URL.com/filename.html
Instead, you can just type:
URL.com/filename
Well, it isn't really necessary for the index. But in case you do it like me and you put it on an already existing site you can rename the file to whatever you want ex. "generator" and add the "<!DOCTYPE html>" on top of it - You can use your website as usual and get a a neat site structure instead of putting always "URL.com/generator.html".
Probably some of you already knew this but some of you might not.
- D.
- - - Updated Version by me - - -
Intro
So yea. I am a bit advanced in HTML, CSS, JS & jQuery.
Didn't want to make a new Thread just because I modified the source a bit.
Also, the honor should go to Joker for releasing this.
Since I want to give the community something back because I learned many new things with it...
I decided to make this Generator as powerful as it can be. I updated the "myFunction" script so it
generates the bytes we all know with the letters A - F. This will give it another few combinations.
Example
- 0x0F
- 0x9A
- 0xB8
And so on.....
Proof
- Old Script:

- My Script:

Source
- Old Script:
Code:
function myFunction() {
var cars = document.getElementById("lines").value;
var cars = Number(cars);
var text = "";
var hold;
for (i = 0; i < cars; i++) {
hold = i;
i = Math.floor(Math.random() * 99);
if (i < 10) {
i = "0" + i;
}
text += "__asm _emit 0x" + i + " \\<br/>";
i = hold;
}
document.getElementById("output").innerHTML = text;
}
- My Script:
Code:
function myFunction() {
var cars = document.getElementById("lines").value;
var cars = Number(cars);
var text = "";
var hold;
for (i = 0; i < cars; i++) {
hold = i;
i = parseInt(Math.random() * 256, 10);
i = i.toString(16);
if (i.length == 1) {
i = "0" + i;
}
text += "__asm _emit 0x" + i + " \\<br/>";
i = hold;
}
document.getElementById("output").innerHTML = text;
}
Sadly it's against the rules to redirect to other Websites, else I would give you the link to the Generator V1 & Generator V2.
Hope I still could help you all a bit.
I don't really know how to tag you
Joker at this point. So I just don't do it.
At least I hope you can verify this as soon as possible. Thanks in advance!
And thanks for the base!
- D.