When you are debugging the servers it is sometimes very important to get the count of thread each process is running, Here we will see different ways by which we can see the number of threads. Keep in mind that these commands are for ubuntu and may vary for different systems. Let us start and
Author: Gaurav Yadav
Why to use process instead of threads in python?
Yup you may be thinking why so? These are not my words but comes from the experts of python. They use to say this because of a component called as GIL or global interpreter lock. Let’s see Why to use process instead of threads in python? Why to use process instead of threads in python? Since
What are PWA or progressive web apps?
Progressive web apps can appear to the user like traditional applications or (native) mobile applications. This new application type attempts to combine features offered by most modern browsers with the benefits of mobile experience. It is available only for chrome for now. Now lets see What are PWA or progressive web apps? PWA or progressive web apps
What are AMP or accelerated mobile pages?
AMP or accelerated mobile pages are pages which don’t contain normal Javascript and are really fast. Also google search engine caches these pages and recognise them as AMP and serve them on mobile devices. It also helps in getting better rank in search engines. Lets see in depth what are AMP or accelerated mobile pages. What
How to host your static site with github.io subdomain
You may have seen many sites which have github.io as a domain name. In this article we are going to discuss how to host your static site with github.io subdomain. You can also host your site with your_subdomain.github.io. Its just that your sub domain that is your_subdomain should be unique. How to setup github pages
What components a simple software project should have?
When we talk about what component a software project should have we have many things that come in our mind like logging, error handling and reporting. In this article we are going to talk about few such components that will make your project complete. Lets start with what components a simple software project should have.
Bollywood Analytics has a new look.
Hey, everyone. So our fun project bollywood analytics has got new look and its all done by a friend of mine. He used angular js for the same and google charts apis. He is currently working on it and more advanced ui will come soon. Visit http://www.bollywoodanalytics.com. The whole UI change is done by him itself
Do you know about Netflix Simian Army?
When we talk about micro services, cloud infrastructure and ability of the infrastructure which is resilient, Netflix is one of the top companies which comes into scene. Netflix always work in the direction of making its infrastructure more resilient to make it always available cause it has to serve a lot of traffic. In this
Go server less with AWS LAMBDA.
Yes, server less with AWS LAMBDA, this could be of great future use. If you are facing problems in managing servers what could be more easy to manage than no server. These are the words of Amazon CTO. Here we will be talking about aws service lambda which allows you to run your scripts or server
Normal AWS SQS Queues and FIFO queues.
While working in one of the project I recently came across the problem. The problem was that the data I push in queue is not coming in the same order I push it in. I thought of it as a callback problem with my JS code but when I tried more I came to realise