You would need to really want to work for Canonical to find success in technical interviews. Likely to mainly attract Ubuntu fanboys and desperate candidates for the most part – Excerpt from a Glassdoor review The process The full hiring process is apparently 15 steps and can span several months: You browse their open positions […]
It was noticed on a django site that made use of django.contrib.admin that page loads were getting slow. Lots of data had been added (about 77MB worth, tables with more than 10000 records and up as well as a number of joins). A great tool for these situations is a profiler. Django-debug-bar is a easy […]
Python ModuleNotFoundError
One of the classic problems when running a python script that imports another module is not being able to find the module. ModuleNotFoundError: No module named ‘xxx’ There are 2 fundamentals to remember. A python module is – simply – a file A Python package is a folder containing a __init__.py file. A folder of […]
Hiding info from customers, Paying for Nothing, Bad after sales service and Use of Plugs as Permanent Bikemarket sell so called ready-to-ride second hand bikes. They buy bikes from the public, service them based on what they deem a quality service and then sell them back to the public. They also sell new Signal bikes. […]
To check the response time of a python httpx request, use the response.elapsed attribute. import httpx client = httpx.Client() response = client.get(‘https://stoicquotesapi.com/v1/api/quotes/random’) print(response.elapsed.total_seconds()) This will print out the response time: 1.334806 Again: response.elapsed.total_seconds())