Skip to content

Instantly share code, notes, and snippets.

View Jackenmen's full-sized avatar
👀

Jakub Kuczys Jackenmen

👀
View GitHub Profile
@Mygod
Mygod / export-ble-infos.py
Last active April 22, 2024 17:14
Export your Windows Bluetooth LE keys into Linux!
#!/usr/bin/python3
"""
Copyright 2021 Mygod
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
@Jackenmen
Jackenmen / github-dark-zenhub.user.css
Last active April 22, 2019 21:06
Zenhub addition to Github Dark
/* ==UserStyle==
@name Zenhub addition to Github Dark
@namespace jack1142
@version 1.0.1
@homepageURL https://gist.github.com/jack1142/e8f1cb483f109240658cca8a324605b0
@updateURL https://gist.githubusercontent.com/jack1142/e8f1cb483f109240658cca8a324605b0/raw/github-dark-zenhub.user.css
@license Public Domain
@author jack1142
==/UserStyle== */
@-moz-document regexp("^https?://((gist|guides|help|launch-editor|raw|resources|status|developer)\\.)?github\\.com/((?!generated_pages/preview).)*$") {
var timer=100;document.querySelectorAll("div > input[type='checkbox']:checked").forEach((interest) => {setTimeout(function(){interest.click()},timer);timer+=2000;});
@tiran
tiran / python-on-debian.md
Last active May 21, 2024 08:46
Negative Python user experience on Debian/Ubuntu

Negative Python user experience on Debian/Ubuntu

The user experience of Python on a minimal Debian or Ubuntu installation is bad. Core features like virtual environments, pip bootstrapping, and the ssl module are either missing or do not work like designed and documented. Some Python core developers including me are worried and consider Debian/Ubuntu's packaging harmful for Python's reputation and branding. Users don't get what they expect.

Reproducer

The problems can be easily reproduced with official Debian and Ubuntu containers in Docker or Podman. Debian Stable (Debian 10 Buster) comes with Python 3.7.3. Ubuntu Focal (20.04 LTS) has Python 3.8.5.

Run Debian container