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 June 23, 2025 15:18
RSS feeds
[feeds]
'bsky/porforr' = 'https://bsky.app/profile/did:plc:6plb5bwcopgjjkmyhrkktrbr/rss'
'bsky/rob-palmer' = 'https://bsky.app/profile/did:plc:w227epg3attqnssfdkx6ex6a/rss'
'2ality' = "https://2ality.com/feeds/posts.atom"
addy-osmani = "https://addyosmani.com/rss.xml"
alex-russell = "https://infrequently.org/feed/"
biome = "https://biomejs.dev/blog/rss.xml"
boa = "https://boajs.dev/blog/rss.xml"
brave = "https://brave.com/blog/index.xml"
bun = "https://bun.sh/rss.xml"

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[@]}"