Blog
How to write for In Plain English
In plain englishWritingWrite for ipe
Creating a Spark job using Pyspark and executing it in AWS EMR
Spark is considered as one of the data processing engine which is preferable, for usage in a vast range of situations. Data Scientists and application developers integrate Spark into their own…
PythonPyspark
When should I use curly braces { } and parenthesis ( ) in React?
In the beginning of your career when learning React and ES6 JavaScript syntax, it can be confusing when to use curly braces { } and when to use parenthesis ( )
ReactJavascriptEs6
Callback vs Promise and Async/Await in JavaScript
A callback function is a function passed into another function as an argument, which is called (or executed) inside the otherFunction. So the basic way to handle asynchronous operations is through…
ProgrammingFront End Development
Module Pattern in JavaScript
JavaScript Developers need to understand Core Patterns
JavaScriptModule PatternData Hiding
You Probably Don't Need act() in Your React Tests
What you should do instead.
ReactTesting
Why you should start using Python dataclasses
Use Dataclasses in Python to store attributes
PythonDataclassesPython3.7
Why Has Python Become a Great Choice for Mobile App Development?
PythonMobile app development
Which Docker Images Can You Use On The Mac M1?
Docker Improved Their Mac M1 Support
DockerMac
When should you use Type, Class, or Interface in TypeScript?
TypescriptJavascriptOop