Tutorial/Commands on How to enable wireless debugging on android. This will let you use adb using Wi-Fi on your android
Programming
Boost Your Python Workflow: Pip and Anaconda Tips
Python Cheatsheet PIP (Python Package Installer) Update a pip package pip install --upgrade package-name Clean pip cache pip cache purge Anaconda / miniconda Command-Line Tips Managing Environments Create new conda environment conda create --name environment_name python=3.11 You can replace the 3.11 with any the python version as required Remove conda environment conda env remove --name … Continue reading Boost Your Python Workflow: Pip and Anaconda Tips
VS Code Shortcuts Cheatsheet
Here is a list of Shortcuts that I use regularly in VS Code. Some maybe obvious and basic and some can be hidden gems In no particular order: Alt+Shift+F => Format current document (requires Prettier installed Ctrl+Shift+P => Command Pallet
My Journey into Self-Hosting Frappe-Based Custom Apps with Docker on DigitalOcean
Join me as I explore the process of self-hosting Frappe-based custom apps using Docker on DigitalOcean. Learn about building custom Docker images, setting up on DigitalOcean, and more!
A Comprehensive Guide to Using environment.yml Files
In the world of data science and scientific computing, the environment.yml file is a vital tool associated with the conda package manager. Whether you're a seasoned data scientist or a software developer, understanding how to harness the power of this file can significantly impact the efficiency and reproducibility of your projects. In this blog post, … Continue reading A Comprehensive Guide to Using environment.yml Files
What is Open Source
Anyone can view, modify & share. Photo by Pixabay on Pexels.com Open Source Software allows anyone to view, modify and share its source code. This enables collaboration from a larger group (not limited to just the original authors) to contribute to the development, adding features, fixing bugs, and patching security issues.This approach is in contrast … Continue reading What is Open Source
How to link to a section within Readme.md file
Introduction Many markdown files, especially readme files on Github and other sites have links in them that allow you to click and jump to sections within the file.Read along to learn how to create one yourself with an example of Steps with example Click here → Footer to see the link in action to jump … Continue reading How to link to a section within Readme.md file