How To Use Django url Tag And reverse() Function To Avoid Url Hard Coded

Hard coded url in your Django template html files or views.py file is a bad practice. Because it is difficult to maintain url changes. If you change one url, you may need to change that url in a lot of pages. So Django provide template url tag and reverse function for you to avoid hard […]

How To Use Django url Tag And reverse() Function To Avoid Url Hard Coded Read More »

How To Remove Cookie In WordPress Plugin Wp Super Cache Http Response Header Vary

WP Super Cache is a very popular WordPress plugin. It can generate an Html version of all your WordPress articles. Then when the client browser requests your article, it will return the Html version instead of executing the dynamic web page. This can improve page response speed and make your website more efficient. But when

How To Remove Cookie In WordPress Plugin Wp Super Cache Http Response Header Vary Read More »

How To Set Http Header Vary Value Correct To Make Cache Work Effective

My website dev2qa.com uses Ezoic caching function to cache all my website pages. This can improve my website page access speed. Ezoic proxy server will create a copy of my website page and save those web page copies in their data center all over the world. So when a client requests a web page, and

How To Set Http Header Vary Value Correct To Make Cache Work Effective Read More »

How To Connect Directly To Your Origin Web Server Bypass Intermediary Proxies To View Original Http Headers

My website dev2qa.com uses two CDN proxies as a chain to cache my web pages. One is Cloudflare which sits in front of my website dev2qa.com, the other is Ezoic Caching which sits in front of Cloudflare CDN. But someday, I find there are a lot of unuseful response headers in the HTTP response, and

How To Connect Directly To Your Origin Web Server Bypass Intermediary Proxies To View Original Http Headers Read More »

How To Install Python Package Numpy, Pandas, Scipy, Matplotlib On Windows, Mac And Linux

If you want to do data analysis in python, you always need to use python packages like Numpy, Pandas, Scipy and Matplotlib, etc. All those python packages are so powerful and useful to do Base N-dimensional array computing( Numpy ), Data structures & analysis ( Pandas ), scientific computing ( Scipy ), and Comprehensive 2D

How To Install Python Package Numpy, Pandas, Scipy, Matplotlib On Windows, Mac And Linux Read More »