Skip to content

Instantly share code, notes, and snippets.

@FollowMeDown
FollowMeDown / debian-source-pkg-build.txt
Last active July 11, 2024 13:04
How to create debian package from source
In any GNU/Linux distribution, which have a package manager on board, is recommended to install software by using "packages".
Building from source
Step 1. GPG key
The first thing you need is generate a gpg key.
Package will be signed by this key.
Run this commands in your terminal:
@bennylope
bennylope / flake8parser.py
Last active August 14, 2023 05:16
A helper script to create summarize flake8 output.
#!/usr/bin/env python
"""
A script for parsing a flake8 error log and generating useful stats about the
errors in the code.
Author: Ben Lopatin (I think I wrote it, at least, no guarantee)
License: BSD
"""