InDepth Coder

InDepth Coder

Techy Platform © 2023
To Join as Author Drop a message.

08/06/2023

Ai Mahadev ❤️

Fixing ERR_OSSL_EVP_UNSUPPORTED error on NodeJs 17 10/09/2022

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…

Why in React 18 useEffect runs twice ? 30/08/2022

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…

Stream Audio Video via Node.js ( Express ) 29/08/2022

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…

25/08/2022

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.

20/01/2021

🤣

01/11/2020

Can You write a Factorial program in One Line ?

Solution:

def extraLongFactorials(n):
print(reduce(lambda x, y: x*y, range(n+1)[1:]) )

21/10/2020

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."

10/10/2020

A Roadmap to be a Backend Developer

10/10/2020

FRONT END DEVELOPER ROADMAP

Is Quantum Computing Strange? 03/10/2020

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…

HOW TO RUN ANGULAR BUILD LOCALLY 03/10/2020

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 Loading image with just few lines of code . 03/10/2020

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 deep dive into javascript console object. 02/10/2020

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...

30/09/2020

A deep dive in tag !! I Bet you don’t know it 30/09/2020

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...

29/09/2020

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

How to make you Localhost available worldwide .? 27/09/2020

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? 24/09/2020

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....

Lets Verify DNS TXT Record! 24/09/2020

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 line animation 23/09/2020

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 Django With React App 22/09/2020

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...

Videos (show all)

#free #tech #viralvideo #viralreels #explore #instagram #trending #techtips #reel #tech #edutech #tipsandtricks #freemov...

Telephone