Skip to content

Instantly share code, notes, and snippets.

View dvcorreia's full-sized avatar

Diogo Correia dvcorreia

View GitHub Profile
@canac
canac / feeds.toml
Last active March 20, 2025 21:19
RSS feeds
[feeds]
'2ality' = "https://feeds.feedburner.com/2ality"
addy-osmani = "https://addyosmani.com/rss.xml"
alex-russell = "https://infrequently.org/feed/"
amos = "https://fasterthanli.me/index.xml"
android = "https://blog.google/products/android/rss/"
android-developers = "https://android-developers.blogspot.com/feeds/posts/default"
biome = "https://biomejs.dev/blog/rss.xml"
boa = "https://boajs.dev/blog/rss.xml"
brave = "https://brave.com/feed/"

Print GitHub Markdown Bookmarklet

javascript:document.body.appendChild(document.querySelector("#readme"));document.querySelector("header").remove();document.querySelector(".application-main").remove();document.querySelector("footer").remove();window.print();

Make it into a bookmarklet. It removes everything around the markdown article and opens the print dialog.

@bb010g
bb010g / + Python dev env with Nixpkgs.md
Last active March 15, 2025 14:29
Example Python development environment with Nixpkgs

Example Python development environment with Nixpkgs

This project requires Python 3.6.

This project isn't packaged, and traditionally uses:

$ python -m venv venv
$ source venv/bin/activate
$ pip install "${pypi_deps[@]}"