Beyond Biohacking: Brain-Computer Interfaces - Rewriting the Rules of InteractionJan 23, 2024·3 min read
PinnedThe important Linux Command Cheat Sheetin case you're new to daily Linux or maybe a skilled person, having a handy cheat sheet of important Linux commands may be distinctly helpful. Linux instructions are the constructing blocks of working with the operating device, allowing you daily nav...Jun 22, 2023·3 min read
9 & 10/10 Days Of JavascriptDay 9 Today we'll be learnings some of the topics that we have missed in the past few days. Anonymous Function: As the name suggests a function that doesn't have any name is called an anonymous function. Well, if it doesn't have any name then how doe...Sep 22, 2022·2 min read
8/10 Days of JavascriptToday we'll be taking a look at SCOPES and CONTEXT in JAVASCRIPT WHAT IS SCOPE? In simpler terms, a scope is a value given to the variable. There are two types of scopes: Global Scopes Local Scopes Global Scope You can define a value to a variable...Sep 21, 2022·2 min read
7/10 Days Of JavascriptBefore proceeding further let's actually give ourselves some data to work on. let students = [ {name: "Andy", section:"A", age: 18 }, {name: "Pam", section:"B", age: 19 }, {name: "Jim", section:"A", age: 17 } ] Here, we have an array that consi...Sep 20, 2022·3 min read
6/10 Days of JavascriptToday we'll be learning everything about higher-order functions. What is a higher-order function? Well, the general definition of a higher-order function is A higher-order function is a function that either: Accepts a function as an argument Retu...Sep 19, 2022·2 min read
5/10 Days of JavascriptWe are already halfway into our challenge and today our main topic of understanding would be MAKING DECISIONS in javascript. Decision-making is often called IF/ELSE Conditions. They help make an either-or choice since the user will be presented with ...Sep 18, 2022·3 min read
4/10 Days Of JavascriptWelcome to the 4th day of JavaScript. On this day we are going to learn about ARRAYS. Open codepen.io and let's get started. What are Arrays? On day one we learnt how to store a value into a variable. Now, what if we want to store multiple values in ...Sep 17, 2022·2 min read