How to Install Google Scalable Nearest Neighbors (ScaNN) on Mac
A step-by-step guide to installing Google's ScaNN library for efficient vector similarity search on macOS, covering dependencies and troubleshooting.
A step-by-step guide to installing Google's ScaNN library for efficient vector similarity search on macOS, covering dependencies and troubleshooting.
A talk on implementing full-text search using only Django and PostgreSQL, following Pythonic principles for simplicity.
A case study on using Python to automate the collection, cleaning, and processing of gigabytes of historical weather data for analysis.
Learn how to configure VS Code to highlight unused Python variables and imports using the PyLance language server for cleaner code.
Explains Python membership testing using 'in' operator vs. for loops, with benchmarks showing performance differences.
Explains the YDNIY (You Don't Need It Yet) principle for shipping software faster by delaying non-essential features.
A developer shares lessons learned from creating simple games using Streamlit, focusing on managing game state within Streamlit's stateless paradigm.
Explains the best way to check for True/False in Python, comparing performance and recommending the PEP8-compliant 'if variable:' idiom.
Explains what a Django application is, its structure, and how it fits into a Django project.
An introduction to scientific computing in Python using NumPy for numerical arrays and Matplotlib for data visualization.
A tutorial on using NumPy for numerical arrays and Matplotlib for data visualization in Python, aimed at scientific computing and machine learning.
A technical comparison of Python's list.sort() and sorted() functions, analyzing their performance with benchmarks and correcting common testing mistakes.
Explains the theory behind linear regression models, focusing on interpretability and use cases in fields like lending and medicine.
A guide on how to automate posting Instagram Stories using Python and an unofficial API library, including code examples.
A curated list of recommended developer and IT Pro sessions for Microsoft Ignite 2020, tailored for Australian attendees.
Explains the theory behind linear regression models, a fundamental machine learning algorithm for predicting continuous numerical values.
A talk on implementing full-text search using only Django and PostgreSQL, presented at DjangoCon Europe 2020.
Compares Python for loops and list comprehensions, analyzing performance benchmarks and best use cases for filtering lists.
A tutorial on deploying a Django application to Azure App Service, Microsoft's serverless platform, to eliminate server management.
Compares Python's OrderedDict vs standard dict performance, explaining when and why OrderedDict is still useful.