- Читабельність важливіша за скорочення
- Код пишеться для людей, а не для компілятора
- Єдиний стиль у всіх шарах (API, Application, Domain, Infrastructure)
- Мінімум магії, максимум явності
Discover gists
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
Tired of slop? This is a uBlock Origin filter list that nukes the Reels tab, non-follower posts, and ALL video content from the platform. I'm trying to make Instagram be what my parents said Facebook was.
If you scroll past your friend's posts, this is what you get:
Verified Spec-Driven Development (VSDD) is a unified software engineering methodology that fuses three proven paradigms into a single AI-orchestrated pipeline:
- Spec-Driven Development (SDD): Define the contract before writing a single line of implementation. Specs are the source of truth.
- Test-Driven Development (TDD): Tests are written before code. Red → Green → Refactor. No code exists without a failing test that demanded it.
Simply modifing appinfo.db will not block YouTube from being updated. As soon as you connect to the internet without setting a DNS it will automatically refresh itself to the correct clean state, the icon also switches back to original. This can result in a softlock where you have to set up everyhting again.
In order to properly block YouTube from being updated, you also need to fully update YouTube's parameters after a new installation.
The param.json file of the YouTube app is actually located at 3 positions when installed :
- At
/system_data/priv/appmeta/PPSA01650/param.json - At
/user/appmeta/PPSA01650/param.json - And also inside
/system_data/priv/mms/app.dbTABLE:tbl_contentinfoCOLUMN:AppInfoJson
| from argparse import ArgumentParser | |
| def main(): | |
| parser = ArgumentParser(description="Script to convert CSV to OBJ file") | |
| parser.add_argument("input", type=str, help="Input CSV file path") | |
| parser.add_argument("output", type=str, help="Output OBJ file path") | |
| parser.add_argument("--flip-y", action="store_true", help="Flip Y") | |
| parser.add_argument("--flip-uv", action="store_true", help="Flip UV") |
| --- | |
| name: plan-exit-review | |
| version: 2.0.0 | |
| description: | | |
| Review a plan thoroughly before implementation. Challenges scope, reviews | |
| architecture/code quality/tests/performance, and walks through issues | |
| interactively with opinionated recommendations. | |
| allowed-tools: | |
| - Read | |
| - Grep |
