javascript in plain english 2021-04-22 20:31 Creating Dynamic Discord Bots with JavaScript ES6 and Realm Photo by Alexander Shatov on UnsplashDuring the pandemic, Discord has... javascript in plain english 2021-04-22 18:52 Animated hamburger menu in vanilla JS Always wondered how to design those cool animations you see upon clicking a hamburger menu? It’s easy, and we can do it in less than 100... javascript in plain english 2021-04-22 18:43 An Introduction to Cypress’ Get, Click, and Find Commands In this tutorial, we will cover some commonly used Cypress commands such as... javascript in plain english 2021-04-22 18:39 Creating a GraphQL API Powered by MongoDB + Express GraphQL is a language built primarily for use with APIs. It interacts with...
javascript in plain engli... 2021-04-22 17:52 What is the Best Way to Build a Login Page? How to optimize the performance of a very common page — one that can quickly get complicated.Basic Login UIMotivationAs a front-end developer, I’ve been building UI for the past 3.5 years. In most of the...
javascript in plain engli... 2021-04-22 17:45 9 Types of Software Testing Every Tester Should Know A deep dive into types of software testing.Photo by National Cancer Institute on UnsplashThere is no such thing as error-free software. Some errors reveal themselves in the early development phases, while other errors...
javascript in plain engli... 2021-04-22 17:42 Randomness: LFSR and Cryptography in JavaScript Previously, I wrote about implementing a stream cipher in JavaScript. I ignored the complex issue of generating a stream of bits used to encrypt the plain text. Having sat on it for a week, I felt like I needed to...
javascript in plain engli... 2021-04-22 17:32 Best Methods to Check if the Elements of the Array Satisfy a Given Condition Photo by Ferenc Almasi on UnsplashThere are some ways to check if elements of the array satisfy a given condition. For example, whether every element is even, or if there is an element that I want to have in the array....
javascript in plain engli... 2021-04-22 17:25 The Most Important Tips to Help You Prepare a Programming Resume Tips to attract the attention of recruiters and potential employers.Photo by Sebastian Herrmann on UnsplashIf you are a programmer who has created many plugins, libraries, or your own programs used by other...
javascript in plain engli... 2021-04-22 15:51 How to Easily Use JavaScript and ArcGIS to Create Beautiful Rich Maps Unlock the power of GIS in this tutorial.A working example of showing volcanoes in the world with Bloom effect in ArcGISPurposeA couple of weeks ago, Esri held their annual (virtual) developer conference showcasing...
javascript in plain engli... 2021-04-22 15:26 10 Cross-Platform Programming Text Editors Worth Knowing About How to choose a text editor that best suits your needs as a web developer.Photo by Lavi Perchik on UnsplashText editors are standard equipment in all Windows and Macintosh engines and are often preloaded by default....
javascript in plain engli... 2021-04-22 15:10 Twitter API using JavaScript | 5 Clear Steps How to get data from the Twitter API in JavaScript — A beginner’s guide..IntroductionTwitter is a popular social media platform where users can share their views, ideas, and read posts from other users on a...
javascript in plain engli... 2021-04-22 14:40 5 Key Components that Every Angular Developer Should Know Learn the 5 key components of Angular.One of the most asked questions during an Angular developer job interview is about the main components of this framework. This question is important to answer if you understand the...
javascript in plain engli... 2021-04-22 12:46 When To Use “noopener” Or “noreferrer” And The Difference Between Them In an anchor tag, we use the rel attribute to define the relationship between the current document and a linked resource. When opening the linked resource in a new tab or window (target=”_blank”), we use the rel...
javascript in plain engli... 2021-04-22 12:41 7 Awesome Design Inspiration Resources for Web Developers 7 Awesome Design Inspiration Resources for All Web DevelopersThis is where you can get design inspiration as a web developer.Photo by Campaign Creators on UnsplashDesign is a very important part of any software or...
javascript in plain engli... 2021-04-22 12:41 How to Replace All Occurrences of a JavaScript String Photo by Dan Gold on UnsplashReplacing all occurrences of a string is something that we often have to do in a JavaScript app.In this article, we’ll look at how to replace all occurrences of a string in a JavaScript...
javascript in plain engli... 2021-04-22 12:41 How to Compare Two Dates in JavaScript Photo by Lon Christensen on UnsplashComparing 2 dates is something we’ve to do often in a JavaScript app.In this article, we’ll look at how to compare 2 dates with JavaScript.Comparing TimestampsOne easy way to...
javascript in plain engli... 2021-04-22 12:27 Is Programming the Right Career for You? Use these simple questions if coding is right for youPhoto by Ga on UnsplashThe need for programmers in different industries such as banking and technology is relatively high. Programming courses, boot camps, and...
javascript in plain engli... 2021-04-22 10:33 Improve Web Image Performance with These Tips Improve the performance of web images with this techniques.Photo by George Bakos on UnsplashImage constitute one of the most important components of a website.In this article, we are going to look at the various ways...
javascript in plain engli... 2021-04-22 03:25 What’s the Difference Between Document Reflow and Repaint? HTML Tips and Tricks: How browser render any document?Photo by Yoann Siloine on UnsplashBefore moving towards the main topic, Let’s understand How the browser renders any data.Receives the data (bytes) from...
javascript in plain engli... 2021-04-22 03:24 6 Ways To Make Money With Your Code Money from codingHow to earn money from your codePhoto by Josh Appel on UnsplashMany of us know what “Coding” is and maybe some of you’ve built really cool projects and have many years of practice, however, not...
javascript in plain engli... 2021-04-22 03:20 Daily Dose of Programming Humor: Part 10 Because Laughter Is The Best Medicine For Stress!Photo by Aedrian on UnsplashYou might have heard laugher is the best medicine.It’s true: laughter is strong medicine. It draws people together in ways that trigger...
javascript in plain engli... 2021-04-22 01:36 3 Ways to Make Better Use of the JavaScript Console We will see the different ways to use the console which will help us to debug our code easily.We will be covering the use of the following functions:console.table()console.time() and...
javascript in plain engli... 2021-04-21 23:59 JavaScript Algorithm Question: How to Remove Element from an Array Removing Element from an ArrayThis week I’ll show another LeetCode question. I find it interesting how you can solve problems by reusing pieces of code that you already have. Last week I wrote about Removing...
javascript in plain engli... 2021-04-21 23:58 ReactBits: Clearable Input with autofocus ReactBits: Clearable Input with AutofocusSmall Reusable ComponentsToday I start a series of short articles which I am going to call ReactBits, in these, I will be posting some small components with some specific...