Introduction to IoT with Raspberry Pi and Node.js using RGB LED lights.
RASPBERRY PI + NODE.JSIn this article, we are going to build a circuit of Red, Green and Blue LED lights that can be controlled from a web application using the express.js + socket.io Web Socket...
View Article“use strict”; annotation is used to enable errors thrown by the JavaScript...
“use strict”; annotation is used to enable errors thrown by the JavaScript engine for some non-standard operations, for example, setting the value of a variable that is not defined previously. It...
View ArticleThanks for the article but I hope your write up it is related to …
Thanks for the article but I hope your write up it is related to : https://www.youtube.com/watch?v=6Y3W94_8scw
View ArticleThe anatomy of WebAssembly: Writing your first WebAssembly module using C (C++)
INTRO TO WEB-ASSEMBLYWebAssembly is the next big that that is going to transform the Web as we know it. Why? Because it is blazing fast and its performance can be closely compared to the code written...
View ArticleGo to the publication page by clicking on the logo
Go to the publication page by clicking on the logo
View ArticleI have included the answer at the bottom of the original article:
I have included the answer at the bottom of the original article:https://itnext.io/how-to-write-a-frontend-javascript-plugin-using-es6-sass-webpack-a1c6d6fdeb71
View ArticleIn any case, wrap your JavaScript code inside ‘DOMContentLoaded’ event.
In any case, wrap your JavaScript code inside ‘DOMContentLoaded’ event. This way, your code will execute when DOM is fully parsed which happens when all external scripts are loaded and executed.Look...
View ArticleHTTP Server & Client Programing
NetworkingServer & Client ProgramingIn this article series, we will learn about making HTTP requests using Go and creating HTTP servers to handle public/private HTTP Requests. We will also learn...
View ArticleCreating a simple “Hello World!” HTTP Server in Go
HTTP Servers: Basic lessonIn this article, we will learn how to launch a simple HTTP server that responds with `Hello World!` text for all the requests. We will also dive deep into the Go HTTP server...
View ArticleNo. Your program is working fine.
No. Your program is working fine.fallthrough statement is used to execute the next case block without evaluating the case condition. This is like JavaScript switch block where we can ignore break...
View ArticleA brief overview of the TCP/IP model, SSL/TLS/HTTPS protocols and SSL...
HTTPS WITH SSL/TLSIn this article, we will learn about how web encryption and web security works based on the SSL/TLS protocol. We will also go through the anatomy of SSL certificates and how to...
View ArticleBeginners guide to serving files using HTTP servers in Go
HTTP SERVERS: BASIC LESSONIn this article, we are going to implement some of the basic APIs of the http module to serve static content on the web.(source: unsplash.com)In the previous tutorial, we...
View ArticleOperating System and I/O
File System I/O and OS featuresIn this article series, we will take a deep look at some of the operating system APIs and Input/Output features of Go.(source: unsplash.com)Working with files using...
View ArticleWorking with files using ioutil package
In this article, we are going to look at simple Go APIs to deal with local files using io/ioutil package(source: pexels.com)Working with files can be tough and I am saying this from my own experience....
View ArticleExecuting shell commands, script files, and executables in Go
Golang Exec PackageIn this article, we are going to learn how to execute external shell commands, script files and executable files from a Go program using built-in os/exec package(source:...
View ArticleYou are right.
You are right. I need to rephrase it. ES6 brought classical inheritance model which other programming languages use (but it is just a syntactic sugar).
View ArticleYes, it’s not supported. Could be because of performance reasons.
Yes, it’s not supported. Could be because of performance reasons.
View ArticleRunning multiple HTTP servers in Go
HTTP SERVERS: INTERMEDIATE LESSONIn this article, we are going to create some customized HTTP servers and run them at the same time concurrently.(source: pexels.com)In the Hello World HTTP Server...
View ArticleDistribute your software with GNU Make tool
Makefile IntroductionDistribute your software with GNU Make tool (Makefile)GNU Make tool is a task runner that can be used to compile your software to target multiple platforms and architectures. In...
View Article