InDepth Coder
Techy Platform © 2023
To Join as Author Drop a message.
Ai Mahadev ❤️
https://indepthcoder.medium.com/fixing-err-ossl-evp-unsupported-error-on-nodejs-17-25c21066601c
Fixing ERR_OSSL_EVP_UNSUPPORTED error on NodeJs 17 If you are working on nodejs 17 with wither of framework like angular react, vuejs ,next,gatsby which uses wepack . You might encounter…
https://indepthcoder.medium.com/do-you-know-the-difference-between-and-in-css-cbfb489a73ba
Do you know the difference between : and :: in CSS? we will explore the basic difference between pseudo classes and pseudo elements
https://indepthcoder.medium.com/multiple-ways-of-conditional-rendering-in-react-ccee8fa35db3
Multiple ways of conditional rendering in React We will explore different ways to use conditional rendering in react
https://indepthcoder.medium.com/why-in-react-18-useeffect-runs-twice-4b7816e9925f
Why in React 18 useEffect runs twice ? Recently, I made new project using Create React App version 18, I did notice that the useEffect hook is called twice in development mode…
https://indepthcoder.medium.com/stream-audio-video-via-node-js-express-dcf1270478cc
Stream Audio Video via Node.js ( Express ) Streaming service should be quick and dependable as possible. so we need a robust server to stream media, and for that, we use Express…
One aspect of web development I've always loathed was working with forms. Form elements have been traditionally difficult to style due to OS and browser differences, and validation can be a nightmare. Luckily the native HTML APIs added methods for improving the form validation situation.
With input[type=number] elements, you can add min and max attributes. Those attributes are great but the browser doesn't display distinct error styles if those numbers are out of range. Luckily we have :out-of-range:
/* matches when number is not within min and max */
input[type=number]:out-of-range {
border-color: red;
}
Thanks to CSS :out-of-range, developers can style input elements based on its valid value status. Despite the HTML validation and styling, you must still do server side validation; honestly, you probably also want to do JavaScript validation here too.
🤣
Can You write a Factorial program in One Line ?
Solution:
def extraLongFactorials(n):
print(reduce(lambda x, y: x*y, range(n+1)[1:]) )
Did You Know? 🤯
When you do `console.log(typeof null)` This Outputs `object`. It is a well-known bug in JS Code.
Brendan Eich wanted to fix it but rejected it saying: "It is too late. The change will break existing code."
A Roadmap to be a Backend Developer
FRONT END DEVELOPER ROADMAP
Is Quantum Computing Strange?
Author : Nishant Tiwari
https://medium.com/.inc/is-quantum-computing-strange-60cdf82feb6c
Is Quantum Computing Strange? Computers have become a basic necessity of life not only for Developers working in an IT firm but also for common people intended to use a…
https://medium.com//mac-changer-using-python-8128ca6d1d61
MAC Changer Using Python How I created my mac changer ?
https://medium.com//how-to-reduce-angular-bundle-size-f9b9387a360e
How To Reduce Angular Bundle Size Minimize Angular Bundle Size With These Few Steps.
https://medium.com//maintain-different-versions-of-angular-cli-on-the-same-machine-6828df198f59
Maintain different versions of Angular CLI on the Same Machine In this article, we will be discussing to create projects with different Angular Versions.
https://medium.com//how-to-run-angular-build-locally-60108b1196bb
HOW TO RUN ANGULAR BUILD LOCALLY When U get Something New You Stalled Out In the Process Going to Execute What You Got.
Lazy load the image in angular to improve optimisation
https://indepthcoder.com/angular/lazy-loading-image-angular/
Lazy Loading image with just few lines of code . Must Read: Intersection Observer for Lazy LoadingThis enables developers to understand the visibility and position of target DOM elements relative to an intersection root. More Lazy Load differs from the loading of the image that does not lie in the current viewport.(In Simple words image which not....
A deepdive to javscript console object .
https://indepthcoder.com/javascript/a-deep-dive-into-javascript-console-object/
A deep dive into javascript console object. Console: The console object provides access to the browser's debugging console . It can be accessed via window object directly by using window.console . Note: https://jsconsole.com/ This website will let you enjoy the console . This article will demonstrate the methods of console with few examples...
https://indepthcoder.com/html/a-deep-dive-in-tag-i-bet-you-dont-know-it/
A deep dive in tag !! I Bet you don’t know it its Ovivious you might have underestimated the article title, but after reading this you will change your mind. Here is a sinario . Wit...
Awesome Github Repositories For Learning Computer Science
A-to-Z-Resources-for-Students
(https://github.com/sonusourav/A-to-Z-Resources-for-Students)
Resources-Front-End-Beginner
(https://github.com/thedaviddias/Resources-Front-End-Beginner)
Learning-Resources for Different Kind of Programming Languages
https://github.com/GDGAhmedabad/Learning-Resources
free-programming-books
https://github.com/EbookFoundation/free-programming-books
awesome-datascience
https://github.com/academic/awesome-datascience
awesome-projects for beginners
https://github.com/MunGell/awesome-for-beginners
Learn-for-free
https://github.com/aviaryan/learn-for-free
Best-websites-a-programmer-should-visit
https://github.com/sdmg15/Best-websites-a-programmer-should-visit
fullstack-web-developer-path
https://github.com/shovanch/fullstack-web-developer-path
react-developer-roadmap
https://github.com/adam-golab/react-developer-roadmap
33-js-concepts
https://github.com/leonardomso/33-js-concepts
Share localhost to anyone on Internet !!!
https://indepthcoder.com/devops/how-to-make-you-localhost-available-worldwide/
How to make you Localhost available worldwide .? There are always the case you need to share your localhost for any demonstration purpose to someone or any client . every time you need to deploy it somewhere and pass on the link . I always wondered if we can share the machine localhost anyway ! ngrok is a tool for creating a local...
What is React Rendering ?
https://indepthcoder.com/javascript/react/what-is-react-rendering/
What is React Rendering? How to optimize the react rendering to the next level by reconciliation algorithm update only part which is required to update although this is not a react basic tutorial but will cover some fundamental concepts. What Is React? React is an open-source JavaScript library for building user interfaces....
Verify DNS TXT Record using code
https://indepthcoder.com/how-to/lets-verify-dns-txt-record/
Lets Verify DNS TXT Record! A TXT record (short for text record) is a type of resource record in the Domain name system (DNS) used to provide the ability to associate arbitrary text with a host or other name, such as human readable information about a server, network, data center, or other accounting information. this is ...
Introduction to SVG based Line animation
https://indepthcoder.com/html/introduction-to-svg-line-animation/
Introduction to SVG line animation Scalable Vector Graphics (SVG) are an XML-based markup language for describing two-dimensional based vector graphics. In this, we will be covering the path animation for SVG Prerequisite: Must-Have a Stroked SVG Image basically an SVG shape If You Have One Move to next step Introduction: SVG a...
Create React App With Django without using REST API
https://indepthcoder.com/javascript/create-django-with-react-app/
Create Django With React App I will be helping you to set up Django to serve a React application. Going through this process really help you to understand Webpack and Babel better,Creating a Django Application $ pip install Django $ django-admin startproject django_react $ python manage.py migrate After creating a Django applic...