neotam
-
Setting up React Project with create-react-app
The “Create react app” helps you avoid boilerplate code. But, to create react app by yourself manually will help you understand the how different compoents work together Steps we…
-
How to Deploy a Flask Web Application as Serverless App on AWS Lambda using Zappa
Zappa is the deployment framework for deploying serverless applications on AWS using AWS Lambda and API Gateway. In this article we will use Flask to demonestrate the deployment of…
-
Python: How to profile the Twisted Application
Python ships with two modules profile/cProfile and pstats to profile and read profiled data respectively. This article will guide about profiling the python application, storing the profiled data and…
-
Python: How to Open New Tab and Switch between Tabs using Selenium
Selenimum framework is mainly used for web testing. It provides the rich API to interact with browser and supports many different languages. This article will provide the simple code…
-
AWS CLI: List Resources Across All Regions
AWS uses the regions and avaiability zones. Where region is the seperate geographic location while avaiability zone is the logical building block of AWS region. Multiple availabiliy zones make…
-
Linux: How to Display Process Tree
Process is the application or software that is currently running. Each process is identified by unique ID called process ID. Processes can create other processes called child or sub…
-
Python/Twisted Example for Parent and Child Process Communication using Pipes
Twisted offers the elegant API to spwan the child process and Protocol style API to send or receive messages via Pipes from child process using twisted.internet.protocol.ProcessProtocol This article explains…
-
Gateway To Go Language Documentation and Resources
This article documents all Go Programming Language (GoLang) resources, tools, tutorials and documentation. Resource Link Go Tour Go Tour Go Language Specifications Golang Specs Go Documentation Go.Dev/Doc GoLang Wiki…
-
How to enable TokenAuthentication scheme | Django Rest Framework
Authentication and Authorisation is the key to protect resource on the web server. There are different types of authentication models such as Basic, Token and Session. Thanks to Django…