#concept
59 public pages use this tag.
Agent Schema Files
Agent Schema Files agent schema files is the concept behind AGENTS.md and CLAUDE.md in brevvie python ai section 13 build your own llm wiki. The source treats these files as the be…
AI-Assisted Coding
AI Assisted Coding ai assisted coding is framed across multiple Brevvie Python + AI lessons as acceleration with accountability. In brevvie python ai section 1 setup your ide, the …
API Authentication
API Authentication api authentication is a central practical lesson in brevvie python ai section 4 apis postman and calling the web. The source moves from public APIs with no auth,…
API Keys
API Keys api keys are simple secret tokens used by many services to identify and authorize a client. In brevvie python ai section 4 apis postman and calling the web, they are the m…
API Rate Limits
API Rate Limits api rate limits are the request ceilings external services impose on clients. In brevvie python ai section 4 apis postman and calling the web, they appear as a prac…
Attention Loops
Attention Loops attention loops is the psychological idea used in brevvie python ai section 9 pitching the daily skill to explain why the problem comes first in a pitch. The lesson…
Automated Physical Fulfillment
Automated Physical Fulfillment automated physical fulfillment is the underlying problem Brevvie is described as solving in brevvie who we are: getting the right physical product in…
Call to Action
Call to Action call to action is the fifth block in pitch formula and a major emphasis in brevvie python ai section 9 pitching the daily skill. The source argues that many otherwis…
Choice Paralysis
Choice Paralysis choice paralysis is the decision making failure mode where too many options reduce the chance of action. In brevvie python ai section 9 pitching the daily skill, i…
Columnar Thinking
Columnar Thinking columnar thinking is the habit of reasoning about data one column at a time rather than one row at a time. In brevvie python ai section 3 data polars and pair pro…
CSV Files
CSV Files csv files are plain text tabular data files where each row is a record and each column is separated by commas. In brevvie python ai section 3 data polars and pair program…
Dashboard Design
Dashboard Design dashboard design is the practice of turning data queries into a small interactive interface that helps a user inspect metrics. In brevvie python ai section 3 data …
Data Cleaning
Data Cleaning data cleaning is the process of fixing data so analysis can proceed correctly. In brevvie python ai section 3 data polars and pair programming, it appears mainly thro…
Database Mental Models
Database Mental Models database mental models is the foundational idea that spreadsheets, SQL tables, and dataframes all share the same core structure: rows, columns, and types. In…
Dataframe Operations
Dataframe Operations dataframe operations are the small set of table transformations that drive most practical analysis. In brevvie python ai section 3 data polars and pair program…
Delivery Skills
Delivery Skills delivery skills is the spoken performance layer underneath a pitch. In brevvie python ai section 9 pitching the daily skill, delivery is scored separately from stru…
Dtypes
Dtypes dtypes are the data types assigned to columns in structured datasets. In brevvie python ai section 3 data polars and pair programming, checking dtypes is presented as one of…
Environment Variables
Environment Variables environment variables are the recommended home for secrets in brevvie python ai section 4 apis postman and calling the web. The source explicitly says API key…
FastHTML
FastHTML fasthtml is the Python web UI framework used in the Section 3 dashboard scaffold in brevvie python ai section 3 data polars and pair programming. It is presented as a ligh…
Feedback Rubrics
Feedback Rubrics feedback rubrics appear in brevvie python ai section 9 pitching the daily skill as the structure for improving a pitch after delivery. The lesson scores each block…
HITL AI Pair Programming
HITL AI Pair Programming hitl ai pair programming is the human in the loop workflow taught in brevvie python ai section 3 data polars and pair programming for working productively …
HTMX
HTMX htmx is a lightweight frontend interaction pattern that lets HTML trigger server requests and swap returned fragments into the page. In brevvie python ai section 3 data polars…
HTTP
HTTP http is the protocol underneath the API calls in brevvie python ai section 4 apis postman and calling the web. The source teaches it as a request/response system with a few pi…
HTTP Headers
HTTP Headers http headers are key/value metadata sent along with HTTP requests and responses. In brevvie python ai section 4 apis postman and calling the web, they are part of the …
HTTP Status Codes
HTTP Status Codes http status codes are the fast summary numbers returned with every HTTP response. In brevvie python ai section 4 apis postman and calling the web, they are taught…
Integrated Development Environment
Integrated Development Environment An integrated development environment (IDE) is a single application for writing, running, debugging, and navigating code. In brevvie python ai se…
JavaScript
JavaScript JavaScript is a programming language used heavily for browser and web application development. While it isn't used in the Brevvie Python + AI Crash Course due to its com…
JSON
JSON json is the default data format learners inspect in brevvie python ai section 4 apis postman and calling the web. The source frames it as close to a Python dict: quoted keys, …
Knowledge Compounding
Knowledge Compounding knowledge compounding is the optional behavioral emphasis in brevvie python ai section 13 build your own llm wiki. The lesson argues that knowledge becomes mo…
LLM Wiki
LLM Wiki llm wiki is the central idea of brevvie python ai section 13 build your own llm wiki. It is a personal knowledge system in which the human curates sources and asks questio…
Memex
Memex memex is the historical ancestor invoked in brevvie python ai section 13 build your own llm wiki. The lesson references vannevar bush’s 1945 vision of a personal knowledge st…
Pandas
Pandas pandas is the long dominant Python dataframe library. In brevvie python ai section 3 data polars and pair programming, Pandas is acknowledged respectfully as the library tha…
Pitch Formula
Pitch Formula pitch formula is the reusable structure taught in brevvie python ai section 9 pitching the daily skill. The source treats it as a fixed order rather than a flexible c…
Pitching as a Daily Skill
Pitching as a Daily Skill pitching as a daily skill is the primary teaching goal of brevvie python ai section 9 pitching the daily skill. The lesson argues that pitching is not a r…
Python Control Flow
Python Control Flow python control flow is how a Python program decides what to do next: branch, repeat, stop, or continue. In brevvie python ai section 2 control flow and the trea…
Python Data Shapes
Python Data Shapes python data shapes is a practical way to think about the structure of data at runtime: string, list, dict, or object. In brevvie python ai section 2 control flow…
Python Dataclasses
Python Dataclasses python dataclasses are a lightweight Python way to define structured objects that mostly hold data. In brevvie python ai section 2 control flow and the treasure …
Python Dotenv
Python Dotenv python dotenv is the helper library used in brevvie python ai section 4 apis postman and calling the web to load values from a .env file into environment variables in…
Python Error Handling
Python Error Handling python error handling is the practice of anticipating failure, catching expected exceptions, and responding clearly. In brevvie python ai section 2 control fl…
Python Functions
Python Functions python functions are named blocks of reusable logic. In brevvie python ai section 1 setup your ide, they are introduced as the first step beyond top to bottom scri…
Python Input Validation
Python Input Validation python input validation is the move from accepting raw user input to checking and shaping it into trustworthy program data. In brevvie python ai section 1 s…
Python List Comprehensions
Python List Comprehensions python list comprehensions are a compact way to build a list from another iterable, optionally filtering as you go. In brevvie python ai section 2 contro…
Python Logging
Python Logging python logging is the practice of recording events, warnings, and failures in a structured way instead of relying only on ad hoc print() calls. In brevvie python ai …
Python Loops
Python Loops python loops are Python’s main repetition tools. In brevvie python ai section 2 control flow and the treasure hunt, loops are taught through room exploration, torch co…
Python Main Guard
Python Main Guard The python main guard pattern is if __name__ == "__main__":. In brevvie python ai section 1 setup your ide, it is taught as a core Python structure pattern. Purpo…
Python Packaging
Python Packaging In brevvie python ai section 1 setup your ide, python packaging begins with a simple but important step: turning a folder of scripts into a package by adding __ini…
Python Regex
Python Regex python regex is Python’s regular expression pattern matching capability, primarily via the re module. In brevvie python ai section 2 control flow and the treasure hunt…
Python Virtual Environments
Python Virtual Environments A virtual environmentpython virtual environments is a project local Python environment containing its own interpreter context and installed packages. In…
Query Parameters
Query Parameters query parameters are the key/value values added to the end of a URL after ?. In brevvie python ai section 4 apis postman and calling the web, they are introduced t…
Regulated Vending Moat
Regulated Vending Moat regulated vending moat is the idea, emphasized in brevvie who we are, that compliance and certification can create durable competitive advantage in physical …
Retrieval-Augmented Generation
Retrieval Augmented Generation retrieval augmented generation is the contrast class used in brevvie python ai section 13 build your own llm wiki. The source describes RAG as a syst…
Schema Inspection
Schema Inspection schema inspection is the habit of checking a dataset’s shape, column names, null counts, and dtypes before doing analysis. In brevvie python ai section 3 data pol…
Second Brain
Second Brain second brain is the phrase used in brevvie python ai section 13 build your own llm wiki for a personal knowledge system that remains searchable, maintained, and useful…
Smart Locker SaaS
Smart Locker SaaS smart locker saas is the business model described in brevvie who we are. It is not just locker hardware or a point solution; it is a software platform that coordi…
SQL
SQL sql is the standard language for querying structured tables in databases. In brevvie python ai section 3 data polars and pair programming, SQL is not taught directly, but the l…
Time-Series Data
Time Series Data time series data is data indexed by time: dates, datetimes, or ordered intervals. In brevvie python ai section 3 data polars and pair programming, time series anal…
Two-Options Trick
Two Options Trick two options trick is the optional advanced tactic introduced in brevvie python ai section 9 pitching the daily skill. Instead of offering one take it or leave it …
Web APIs
Web APIs web apis are the main subject of brevvie python ai section 4 apis postman and calling the web. The source defines an API as a contract between software systems: send a req…
Workplace Written Asks
Workplace Written Asks workplace written asks is the everyday written version of pitching as a daily skill. In brevvie python ai section 9 pitching the daily skill, the lesson expl…