Skip to content

Instantly share code, notes, and snippets.

View smixs's full-sized avatar
🏠
Working from home

smixs smixs

🏠
Working from home
  • Tashkent, Uzbekistan
  • 03:40 (UTC +05:00)
View GitHub Profile
@smixs
smixs / AGENTS.md
Created October 11, 2025 11:11 — forked from dctmfoo/AGENTS.md
TDD workflow for you, droid and droid exec!

Project Name

Last Updated: [Current Month Year]

Brief one-sentence description of what this project does and who it's for.


Roles & Responsibilities

# How to sort a Python dict by value
# (== get a representation sorted by value)
>>> xs = {'a': 4, 'b': 3, 'c': 2, 'd': 1}
>>> sorted(xs.items(), key=lambda x: x[1])
[('d', 1), ('c', 2), ('b', 3), ('a', 4)]
# Or:
@smixs
smixs / index.html
Created October 5, 2017 13:53
Musical Chord Progression Arpeggiator
<article>
<aside id="aside"></aside>
<main id="main"></main>
</article>