Skip to content

Instantly share code, notes, and snippets.

View nicklozon's full-sized avatar

Nick Lozon nicklozon

View GitHub Profile
@snoble
snoble / vibe-coding-best-practices-for-one.md
Last active July 1, 2025 17:02
Vibe Coding Best Practices For One Person Projects

Vibe Coding Best Practices

This document contains practices specifically designed for AI-first development. Browse through it, find the sections that resonate with your workflow, and copy them into your repository for your AI assistant to follow.

The loop descriptions are comprehensive templates—you can copy them directly to create your own loop specifications tailored to your project. The specification examples provide building blocks for creating your own project specs, architecture docs, and other living documentation.

📁 Quick Guide: Where to Save Each Section

When adopting sections from this document, copy them into these suggested spec files:

  • Operating LoopsOPERATING_LOOPS.md or individual files like CI_GREEN_LOOP.md
@cgddrd
cgddrd / uk-postcode-areas.geojson
Created January 14, 2020 13:02
uk-postcode-areas.geojson
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@cgddrd
cgddrd / postcodes.geojson
Created January 14, 2020 11:54
postcodes.geojson
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@RZetko
RZetko / tidal_import.py
Last active June 10, 2025 14:58
Export your CSV albums from various music streaming services to Tidal
# You need to install tidalapi using pip install tidalapi (more can be found here https://github.com/tamland/python-tidal)
# Input is UTF-8 CSV file with format Artist - Album
# Fill in your username and password on line 13 -> session.login('username', 'password')
# Fill in filename of your CSV file on line 16 -> with open('file.csv', encoding="utf8") as csvfile:
import csv
import sys
import pprint
import tidalapi