Search Results

Posts tagged "Python"

click here for the tag listing
Cover image for Becoming a Core Developer

Throughout your open source journey, you have no doubt been interacting with the core development team of the projects to which you have been contributing. Have you ever wondered how people become core developers of a project? In this post, I share my journey to becoming a core developer of numpydoc.

open source,

open source contribution,

open source software,

pre-commit hooks,

Python

exif-stripper logo

Most devices record a variety of metadata when generating images. While some of that information may be innocuous, you could end up exposing the GPS coordinates to your home if you aren't careful. In this article, I provide a brief introduction to image metadata, and then show you how to remove it with exif-stripper.

DevX,

pre-commit hooks,

Python,

projects,

open source software

Cover image for Pre-Commit Hook Creation Guide

Pre-commit hooks are a great way to help maintain code quality. However, some of your code quality standards may be specific to your project, and therefore, not covered by existing code linting and formatting tools. In this article, I will show you how to incorporate custom checks into your pre-commit setup.

DevX,

pre-commit hooks,

Python

Cover image for A Behind-the-Scenes Look at How Pre-Commit Works

So, you've just set up pre-commit hooks on your repository using pre-commit, but do you know what actually happened when you ran pre-commit install or why you had to run it in the first place? How does pre-commit actually work with Git? In this article, I will take you behind the scenes of how your pre-commit setup works.

DevX,

pre-commit hooks,

Python,

Git

Cover image for Common Pre-Commit Errors and How to Solve Them

Having issues with your pre-commit setup? In this troubleshooting guide, I've collected the most common errors pre-commit users face and provided explanations and guidance for fixing them.

DevX,

pre-commit hooks,

Python,

troubleshooting