Buy My Book!
Games
Games (2)
Github
Other Posts
Recent Posts: This Could Be Better
Creating, Building, and Running a Simple Program in the Go Language
Creating a Hello World Program in .NET Core with Visual Studio Code
Creating a Template-Driven Component in Angular
Installing and Running Angular on Windows 10
Creating an ASP.NET MVC Application in Visual Studio
Running Linux in a Virtual Machine using QEMU on Windows
Creating an Ext4 Filesystem Image File
Compiling Java Packages and Subpackages from the Command Line
An Image Combiner in JavaScript
Hello World in TypeScript with Classes in a Web Browser
Archives
- March 2023 (1)
- February 2023 (4)
- November 2021 (1)
- October 2021 (2)
- September 2020 (1)
- June 2020 (1)
- November 2019 (1)
- July 2019 (1)
- April 2019 (1)
- March 2019 (1)
- February 2019 (1)
- December 2018 (1)
- October 2018 (2)
- September 2018 (2)
- August 2018 (1)
- March 2018 (1)
- February 2018 (3)
- January 2018 (4)
- December 2017 (2)
- November 2017 (3)
- October 2017 (3)
- September 2017 (2)
- August 2017 (3)
- July 2017 (6)
- June 2017 (5)
- May 2017 (1)
- March 2017 (3)
- February 2017 (7)
- January 2017 (3)
- December 2016 (2)
- November 2016 (1)
- October 2016 (6)
- August 2016 (6)
- July 2016 (1)
- May 2016 (11)
- April 2016 (1)
- March 2016 (2)
- February 2016 (3)
- November 2015 (5)
- October 2015 (3)
- September 2015 (6)
- August 2015 (4)
- June 2015 (2)
- April 2015 (5)
- March 2015 (7)
- February 2015 (3)
- January 2015 (3)
- November 2014 (1)
- October 2014 (4)
- September 2014 (2)
- August 2014 (2)
- July 2014 (2)
- June 2014 (7)
- April 2014 (9)
- February 2014 (5)
- December 2013 (3)
- November 2013 (2)
- October 2013 (5)
- September 2013 (2)
- August 2013 (9)
- July 2013 (3)
- June 2013 (5)
- May 2013 (2)
- April 2013 (11)
- March 2013 (7)
- February 2013 (8)
- January 2013 (15)
- December 2012 (7)
- May 2012 (5)
- March 2012 (1)
- February 2012 (2)
- January 2012 (1)
- September 2011 (2)
- August 2011 (5)
- July 2011 (1)
- June 2011 (4)
- March 2011 (14)
Meta
Monthly Archives: January 2013
Reading a String from a File in JavaScript
The code shown below reads the contents of a text file “Test.txt” into a string, and then displays that string in the web browser. To see the code in action, paste it into an .html file and open that file … Continue reading
A Toy SQL Database in JavaScript
The code shown below implements an unfinished, extremely inefficient, buggy, and completely useless SQL database that runs in JavaScript in a web browser. To see it in action, copy the code to an .html file and open that file in … Continue reading
Simulating an Ant Farm in JavaScript
This code isn’t quite done yet, but it does run, and I figured I’d better put it out there on the Internet before it got lost forever the next time something horrible happens to my hard disk. To use the … Continue reading
Posted in Uncategorized
Tagged artificial intelligence, JavaScript, programming, simulation
Leave a comment
Accessing MariaDB from JavaScript Using Node.js and Node-MariaSQL
1. If you have not already done so, download and install Node.js. Details are given in a previous post. 2. If you have not already done so, download and install Python, which is unfortunately required to run the next step. … Continue reading
Posted in Uncategorized
Tagged database, JavaScript, MariaDB, node-mariasql, Node.js, programming, SQL
2 Comments
Running a Hello World Server in JavaScript Using Node.js
JavaScript has traditionally always been a client-side language, but Node.js lets you run JavaScript on the server side as well. You know, in case that turns out to be a good idea. Follow the steps below to run a simple … Continue reading
Drawing Lines with Bresenham’s Algorithm
The code shown below draws several lines in various colors using Bresenham’s line algorithm. To see the code in action, copy it into an .html file and open that file in a web browser that runs JavaScript. <html> <body> <script … Continue reading
Rendering 3D Shapes as Wireframes in JavaScript
The code shown below will render several three-dimensional shapes, or “meshes”, in various positions and orientations for the viewpoint of a particular camera. To see the code in action, copy it into an .html file and open that file in … Continue reading
A Simple Paint Program in JavaScript Using HTML5
The JavaScript code shown below allows the user to paint a simple picture onto an HTML5 canvas and then save it to their local computer. To see it in action, copy it into an .html file and open that file … Continue reading
Generating a Random Maze in JavaScript
The JavaScript code shown below generates a random maze and displays it as an HTML canvas. (Also included is functionality to display the same maze as an HTML table element.) To see the code in action, paste it into a … Continue reading
A Virtual Keyboard in JavaScript
The code given below implements a simple virtual keyboard to allow the entry of text on a webpage without using the keyboard. To see it in action, copy it into an .html file and open that file in a web … Continue reading