< 1 min read When a page is requested, django build a HttpRequest object containing metadata about the request. Django pass this request to the view it calls for the page request. Generally, you have access to the HttpRequest object from inside the view.
2 min read Probably you have heard the term ‘MFA’ or ‘2FA’ already. MFA stands for Multi Factor Authentication while 2FA stands for Two Factor Authentication.
2 min read Serverless Architecture is an approach in software engineering where developers can write, deploy and run code without having to manage the underlying infrastructure(software and hardware). The name is little confusing. There is no such thing where you can deploy and run your application without any infrastructure. When someone says Serverless, it means the infrastructure is managed by the provider not them and they are just running their code in there.
2 min read The terms like ‘X’aaS where ‘X’ stands for the service name usually a service model that evolved over time with cloud. Cloud service providers offer services in various ‘X’aaS models.
‘X’aaS is an abbreviation for ‘X’ as a Service, meaning you can buy ‘X’ as a service or offload the management hassle for ‘X’ and buy ‘X’ as a service from CSP(Cloud Service Provider) and they will manage everything about ‘X’ for you. Only you have to pay for using the ‘X’ service.
4 min read Cloud adoption is growing over time definitely for good reason. AWS is the leader among the cloud service providers. The ecosystem of AWS is massive and rapidly growing.
The companies offer us cloud services in many different models: SaaS, PaaS, IaaS, FaaS, BaaS and so on. AWS LightSail is a VPS(Virtual Private Server) and Web hosting service offered by AWS.
2 min read The versioning of Web is really funny! When we say Web 3.0 it does not mean a new Web version released with number 3.0.
We version the Web using number to denote different phases of it’s journey where different capabilities were there in different times.
< 1 min read Undoubtedly Linux is one of the best platform for web application development. Windows is a great choice for its ease of use and simplicity. Most of us prefer windows over linux for our regular use.
Until few days back, developers had to install linux separately or use virtual machine to run linux when you are in Windows. Windows 10 comes with an embedded linux subsystem called WSL. Now, you are no longer needed to install Linux as dual boot or virtual machine to use Linux as dev machine.
< 1 min read We all know, JavaScript is a client side programming language and runs in user’s web browser. Until NodeJS build up and JS started being used in backend, we barely desired to learn this extremely useful programming language. Because , it does work, we never tried to use it more efficiently. Since normally JS runs on user’s browser, the performance bottleneck is not that much visible as much as in server. The server need to process thousand of request while user’s browser only process probably few websites scripts.
< 1 min read Very often I see, new comers who wants to deploy their career in software engineering are so much confused about what programming language or tech stack they need to learn and they will be safe in the job market for next 10 to 15 years.
< 1 min read If you are a developer, probably you have heard about sentry. Generally, you can find errors while in development machine by debugging your code. It is equally same important to have a visibility on production errors as solving issues in application. In production, we have a tons of way to log errors.