2025-04-24

Daily pomos

  1. On point: 3 pomos
  2. Daily Exposure documentation + setup co-pilot: 1 pomo
  3. Leetcode daily + GSA prep 2 pomos
  4. GSA Leetcoding 2 pomo
  5. Jira planning + journal previous missed days: 1 pomo
  6. Read & Journal Open AI blog + Read QuantCo dataframely article 1 pomo
  7. MIT Lecture 3 pomos

T-strings in python

Template strings in python t"Insert {user_input}" would be a generalization of f-strings. Often people would use f-strings in SQL syntax and HTML strings when they should not! These are susceptible to SQL-ingestion attacks. t-strings will be introduced in python late 2025 and will allow people to access the string components before combining the string and the user input. This will allow developers to do safety checks against malicious user input.