Back to Dictionary
Petty
🎤 Podcast 1
Introduction: Petty
A documentary narration — small in scale, sometimes small in spirit
Ready
NarratorPetty. An adjective. Pronounced: PEH-tee. In IPA: /ˈpɛti/.
NarratorPetty describes something of minor importance or trivial value \u2014 or characterises a person as narrow-minded, ungenerous, and excessively focused on matters that really do not merit the attention they are given.
NarratorThe word carries a dual character. On one side it is purely about scale: petty cash, petty crime, petty officer \u2014 all neutral terms simply meaning small or of lesser rank. On the other side, it is an unflattering character judgement: calling someone petty implies they are making a great fuss about something entirely trivial.
NarratorThe word comes from Old French "petit", meaning small or little, which entered Middle English in the 14th century as a neutral descriptor of size and rank.
NarratorFor centuries, petty simply meant small or subordinate. A petty officer was a junior officer. Petty cash was a small fund for everyday expenses. Petty theft covered items of low value. These uses remain current and carry no negative moral charge at all.
NarratorThe pejorative sense \u2014 of narrow-mindedness, spite, and uncharitable fixation on minor grievances \u2014 developed alongside the neutral one. By the 16th century, the cultural association between physical smallness and moral smallness had embedded itself into the word.
NarratorToday, petty in the character sense is quite informal and carries a mildly sarcastic, sometimes playful edge. Social media has even produced a celebratory use \u2014 someone admitting to being petty on purpose, as a form of self-aware humour.
NarratorIn professional contexts, the neutral sense remains dominant: petty cash forms, petty theft provisions in contracts, petty officer ranks. The character sense is too informal for most professional writing.
NarratorIts close synonyms in the neutral sense \u2014 minor, trivial, small \u2014 are straightforwardly neutral. In the character sense, small-minded and mean-spirited are both more formal and slightly stronger than petty.
NarratorRemember: petty points to something small \u2014 and sometimes points it out with a quietly raised eyebrow.
💬 Podcast 2
Daily Use: Real Conversations
Two British speakers — staplers, cash funds, and the art of being gloriously petty
Ready
Speaker AI had the most petty argument with my colleague yesterday. He sent an email to the entire team because someone had moved his stapler. Not borrowed it \u2014 just moved it six inches to the left.
Speaker BThat is truly petty. The stapler was not even missing \u2014 it was still within arm's reach. That is a perfect example of making a mountain out of something that is genuinely, completely trivial.
Speaker ARight. And what made it worse is that he spent twenty minutes drafting the email. The argument over the stapler took less time than the email about the stapler.
Speaker BThere is something almost impressive about petty behaviour at that level. It requires a genuine commitment to the trivial.
Speaker AIs petty always negative though? I have seen people use it almost proudly \u2014 like "yes I am petty and I own it."
Speaker BGood point. In casual, social media-influenced speech, there is a self-aware comedic use where someone admits to being petty as a minor character flaw they find amusing. But in most professional and social contexts, being called petty is not a compliment.
Speaker AWhat about the non-character uses? Like petty cash?
Speaker BCompletely neutral. Petty cash is a small fund for minor everyday expenses \u2014 postage, tea bags, that sort of thing. Petty crime is theft below a certain value threshold. Petty officer is a junior rank in the navy. In these cases, petty carries no negative moral charge whatsoever.
Speaker AOne thing I have noticed: people sometimes say "that is very petty" when they mean "that is very minor" \u2014 but they say it with a tone that implies character rather than scale.
Speaker BContext and tone do a lot of work. "That is a petty matter" said neutrally means it is unimportant. "That is so petty" said with emphasis means someone is being small-minded about it.
Speaker AAnd the synonyms? Small-minded feels stronger than petty to me.
Speaker BIt is. Small-minded implies a persistent disposition \u2014 a general narrowness of outlook. Petty can describe a single act without implying someone is always like that. Mean-spirited is stronger still, suggesting deliberate unkindness. Petty is often just unnecessarily small.
Speaker ASo you can have one petty moment without being a small-minded person overall.
Speaker BExactly. And that is perhaps why petty is the word people use on themselves with a degree of humour. It allows for self-awareness and some distance from the act.
⌨️ Podcast 3
Prompt Engineering: Petty in Dev
Instructor + Developer — 6 practical AI prompts using petty cash
Ready
InstructorToday we are exploring how "petty" works in development prompts. Petty has two distinct lives in tech. The first is the neutral financial sense: petty cash \u2014 a specific, well-defined accounting domain with its own data model, approval workflows, and reporting requirements. The second is less useful for prompts. We will focus on petty cash.
InstructorWhen you write "petty cash" in a prompt, the AI recognises a complete financial subdomain: a float, transaction logging, categories, receipts, approval, and balance monitoring. Two words unlock an entire system architecture.
DeveloperSo petty cash is a genuine domain with its own data model and workflows?
InstructorAbsolutely. Let us start with a PHP petty cash system.
Build me a PHP petty cash management system. Include: a dashboard showing the current balance, a form to log petty cash expenses with category, amount, description, and receipt upload, a PHP endpoint to process top-ups, and a MySQL petty_cash_log table. Show a balance warning when the fund drops below a configurable threshold. Use PHP and vanilla JavaScript.
Instructor"Petty cash" tells the AI this is a specific financial domain \u2014 a balance, a log, categories, receipts, approval, and top-up mechanism. The balance warning threshold emerges naturally because petty cash is a depleting float that needs monitoring. Two words, complete system.
DeveloperOne phrase and the AI already knows the architecture. What about CSS for the interface?
InstructorHere is a CSS design prompt.
Create a CSS design for a petty cash management UI. Include: a large balance card that changes colour from green to amber to red as the balance depletes, a transaction list with alternating row colours, and a compact form for new entries. Use CSS custom properties for theming. No JavaScript.
InstructorA balance card that changes colour as funds deplete \u2014 that visual metaphor emerges directly from petty cash context. The AI knows the colour progression because it understands a depleting cash float needs a traffic-light warning system built into the design.
DeveloperRight. And a database schema?
InstructorHere is a schema prompt.
Design a MySQL schema for a petty cash system. Include: petty_cash_log (id, transaction_type as expense or topup, amount, category, description, receipt_path, submitted_by, approved_by, created_at, balance_after), petty_cash_categories (id, name, budget_limit), and indexes on created_at and category for fast reporting. Show the CREATE TABLE statements.
InstructorThe transaction_type ENUM, the balance_after column, the category budget_limit \u2014 all standard petty cash accounting patterns the AI generates automatically. The submitted_by and approved_by columns appear because petty cash implies dual control: someone submits, someone approves.
DeveloperAnd a JavaScript chart to show balance trends?
InstructorHere is a canvas chart prompt.
Build a vanilla JavaScript petty cash balance trend chart using canvas. Read transactions from a JSON object in the page, draw a line chart of the running balance over the last 30 days, colour the line red when the balance is below the threshold, and add a horizontal threshold line. No libraries, pure canvas.
InstructorColouring the line red below the threshold \u2014 that is a petty cash-specific visual alert. The AI adds it because petty cash implies monitoring of a depleting float where falling below the threshold is a meaningful event that needs to be visible in the chart.
DeveloperWhat about an admin approval dashboard?
InstructorHere is the approval prompt.
Build a PHP petty cash admin dashboard for approving expense submissions. Show a table of unapproved petty cash requests: submitted by, amount, category, description, receipt link, and approve or reject buttons. When approved, update the balance in MySQL and log the approval. Use PHP and vanilla JavaScript.
InstructorThe unapproved submissions workflow is a key feature of petty cash \u2014 someone submits an expense, someone approves it. The AI generates this approval pattern, the balance update on approval, and the audit log because petty cash implies dual control as a standard accounting requirement.
DeveloperAnd the full application in one prompt?
InstructorHere is the complete application prompt.
Build a complete petty cash web application in PHP and MySQL: a staff expense submission form, an admin approval workflow, a running balance display, a monthly CSV export of all transactions, and a category budget tracker showing which expense categories have exceeded their monthly limits. Use PHP, MySQL, and vanilla JavaScript. No frameworks.
InstructorCategory budget tracker showing which expense categories have exceeded their monthly limits \u2014 that is a petty cash-specific reporting requirement. The full domain emerges from two words: staff submission, admin approval, balance tracking, CSV export, category monitoring. All standard petty cash features.
DeveloperPHP system, CSS design, schema, canvas chart, approval dashboard, full application \u2014 petty cash shapes every single layer.
InstructorExactly. In development, petty is not a negative word \u2014 it is a precise financial domain specification. Two words: petty cash. One complete, well-defined system with its own data model, approval workflows, balance monitoring, and reporting requirements.
1 / 3