Defining JavaScript functions

In JavaScript, you can create a function in two ways. First way is to use a function statement and it is similar to what is use in other programming languages. function hello() { alert("hello"); } hello(); Here we define function hello and call the […]

Using Processing.js to draw in your browser

Today I had a look at the JavaScript library Processing.js. You can use this library to draw in your browser using the Processing language. For example, you create the following simple HTML page and save it as processing.htm. <!DOCTYPE html> <html>   <head>     […]

Using Pythons matplotlib

I had a look at the python 2D plotting library matplotlib. For more information about this library, you might want to have a look at the corresponding Wikipedia article. I’m looking for a way to make simple plots from x,y value pairs and it […]

common-lisp.net to use gitlab

CMUCL announcement: “common-lisp.net has been slowing transitioning services to use gitlab.  The transition is pretty much done, and cmucl is now officially at https://gitlab.common-lisp.net/cmucl/cmucl. The ticket system and wiki is still using https://trac.common-lisp.net/cmucl, but we hope to migrate that to gitlab as well.”