Download the Audio Plugin Organizer

NOTE: There is an online version and a downloadable desktop version. This page is for the downloadable version. For information on the online version, as well as more general detail on this tool,, click here. Download Mac Edition NOTE: Apple requires developers to pay an annual fee to be "Certified", which does not actually mean…  MORE q

By on December 16th, 2024 in

Objects in JavaScript

Objects are the center of JS programming. Methods and Properties can be attached. Objects are lists or collections of properties For each property, Objects always have a name that is a STRING and a value that can be a STRING, NUMBER or FUNCTION Under the hood: When creating an object or adding a property, the JS engine invokes the [put] method to assign a place in memory. When changing a property, the JS engines invokes the [set] method for changing the  MORE q

By on March 31st, 2020 in

How JavaScript Works

The JavaScript runtime environment consists of the JavaScript engine, Web APIs, Job Queue, Callback Queue, and Event Loop. The engine includes the Memory Heap and Call Stack, which processes code synchronously. Asynchronous operations are managed by the Event Loop, which handles tasks from Job and Callback Queues, ensuring efficient execution.  MORE q

By on March 30th, 2020 in

Star Wars Celebration 2019

Here we take a quick trip to a galaxy far, far away. The huge Star Wars Celebration convention is always a spectacle. Many images from that experience populate this post transporting us into that exciting world.  MORE q

By on May 3rd, 2019 in