This is a list of URLs to PostgreSQL EXTENSION repos, listed in alphabetical order of parent repo, with active forks listed under each parent.
⭐️ >= 10 stars
⭐️⭐️ >= 100 stars
⭐️⭐️⭐️ >= 1000 stars
Numbers of stars might not be up-to-date.
| import sys | |
| if not sys.gettrace(): | |
| # f_trace doesn't work if settrace isn't set | |
| sys.settrace(lambda a, b, c: None) | |
| def j(n): | |
| def hook(fr, event, arg): | |
| assert event == "opcode" | |
| fr.f_lineno += n |
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.