
Password Breach Check - New Feature, New Compromise Defense
Adding a new feature to my File Encryption App made in Electron using Pangea.
Search for a command to run...

Adding a new feature to my File Encryption App made in Electron using Pangea.

Syntax Error A Syntax error is caused due to incorrect usage or a typo in your code.Some examples include - Missing or invalid opening/closing Brackets [...], Parentheses (...) or Curly braces {...} function printNum(num) { console.log(num); M...

Once you start learning JavaScript declaring variables is the first thing you learn and it can be done using 3 ways - var, let and const It can be confusing at first to understand why someone would use one over the other to declare a variable, so in ...

Bug bounty 🐛 I started doing bug bounty in 2019 and really enjoyed it. For those who don't know what bug bounty is, It's a field where you find security vulnerabilities or bugs in websites or apps and report it to the companies which offer you rewar...

If you want to use the program without reading the blog feel free to download the app from my GitHub repo below and get started. https://github.com/abhishekY495/File-encryptor Quick demo 📽 https://youtu.be/yBsqWWs6CSo What is Electron 🌌 Electron...

In JavaScript, Array is an ordered collection which can store multiple values of different data types at once. For example. let arr = ['Abhishek', true, 21]; console.log(arr); // prints ['Abhishek', true, 21] They can be declared using 2 ways. // us...

This blog is part of a series. Check it out here for next/previous days and resources. Day 31 - 35 → JavaScript API Projects Learned about APIs which is essentially a link between two apps to communicate with each other. Know more about APIs from t...

This blog is part of a series. Check it out here for next/previous days and resources. Day 21 → Sets, Maps and Optional chaining Learned about Sets that lets you store unique values of any type, whether primitive values or object references. A valu...

This blog is part of a series. Check it out here for next/previous days and resources. Day 11 → Bootstrap Learned Bootstrap which can help us in quickly designing and customizing our website. The best way to learn bootstrap is by going through its ...