2024-08-11 - 2024-08-17

« Previous | Next »

Books being read Link to heading

Discovered tools Link to heading

  • django-upgrade - upgrade Django project code
  • DeepDict
    • navigate to any depth with a simple dotted-string key notation
    • dict comparisons using Ellipsis
  • python-jsonstar - JSON encoder for custom types (attrs, dataclass, pydantic, datetime, etc.)
  • django-admin-sortable2 - drag-and-drop ordering in Django admin
  • django-downloadview - serve files with Django
  • copier - Renders project templates; #AlternativeTo Cookiecutter, with updates by default
  • cruft - enable updates in Cookiecutter
  • Dify - LLM development platform; combines AI workflow, RAG pipeline, agent capabilities, model management, observability, etc.
  • CarlAdam - Petri net (modeling scheme for the description of distributed systems) tools and interactive simulator for Python

Read articles Link to heading

Read news Link to heading

Watched Link to heading

Listened Link to heading

Learned Link to heading

  • List active transactions in PostgreSQL
    SELECT
        datname AS database,
        usename AS user,
        pid,
        application_name,
        client_addr,
        state,
        state_change,
        query
    FROM
        pg_stat_activity
    WHERE
        state = 'active' OR state = 'idle in transaction';
    

« Previous | Next »