Top articles
Categories
Recent Comments
Tag Archives: script
How to make binary to decimal conversion in JavaScript
Conversion between binary and decimal is very easy in JavaScript. This tutorial will show you how to make a binary to decimal converter and vice versa. But conversion from binary to hexadecimal is just as simple. JavaScript has some nice … Continue reading
Use random vowels to make fantasy names
One of the more simple ways to create new fantasy names is to take an ordinary name, change some of the letters until you find a good sounding combination. If we use the common name “Peter” as a base we … Continue reading
Random name generator in Python
In this short tutorial I will show you how to make a random name generator in Python. If you came here looking for some cool random names visit the online name generators. The name generator script Open IDLE which is … Continue reading
Choose random person
I made a little script that choose a random person from a list. The background is that I got this mail from a reader, who need to choose a random student from his class to answer questions. Tom wrote: I … Continue reading
Name generator script
I have made a complete name generator script to download and use as your own. The script contains a full functional HTML page with all necessary JavaScript code, HTML and CSS, and can be run in any browser. The name … Continue reading
How to make a name generator
In this tutorial I’ll show how to make a simple name generator. A sort of “build your own name generator” to experiment with. You just need to add your own word lists and you’re up and running. But you can … Continue reading