JavaScript, Node.js, npm, Express, oh my…

Some time ago I became interested in Node.js. “Node.js is an open-source, cross-platform runtime environment for developing server-side web applications.” (Node.js. (2015, September 17). In Wikipedia, The Free Encyclopedia. Retrieved 09:43, September 20, 2015, from https://en.wikipedia.org/w/index.php?title=Node.js&oldid=681558515). Well, I just became interested in Node.js because […]

The Plunker Web IDE

I have just discovered Plunker. “Plunker is an online community for creating, collaborating on and sharing your web development ideas. Real-time code collaboration Fully-featured, customizable syntax editor Live previewing of code changes As-you-type code linting Forking, commenting and sharing of Plunks Fully open-source on […]

Programmiersprache: Python 3.5 erschienen

“Ein neuer Operator für Matrix-Multiplikationen, eine Unpacking-Syntax für Containertypen, Coroutinen mit den Schlüsselwörtern async und await sowie einiges andere mehr sind in anderthalb Jahren Arbeit beim neuen größeren Python-Release zusammengekommen.” http://heise.de/-2811997

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>     […]