July 2026 Meetup Minutes
July 25, 2026
Date & Time
25th July 2026
3:00 PM to 6:00PM
Hosts
Arokiaraj
Vijayakumar
Venue
Zilogic Systems Pvt. Ltd, Chennai
Talk Details
1. Session by Arokiaraj
Topic: Claude Plugin Architecture
- Argued that AI coding tools are not inherently expensive - cost comes from misuse.
- Cost multipliers discussed:
- Choosing the wrong model for the task
- Vague or under-specified prompts
- Using frontier models for routine scripting work
- Skipping verification, which forces rework
- Plugins as the fix - composed of:
- Skills (reusable capability definitions)
- Commands (invocable actions)
- Agents (task-scoped workers)
- Hooks (trigger points)
- Scripts (glue and automation)
- Commands and hooks combine into staged pipelines, with parallel agents handling small independent checks.
- Plugins remove the need to re-supply the same context every session, saving time and cost.
- Portable across tools - the same setup works with Cursor, not just Claude.
- Pair small models with small jobs: Haiku for a commit-message helper.
- Closed with a live demo of a web quote generator.
2. Session by Vijayakumar
Topic: Strings & Data Representation in Python
- How data lives inside a program versus what happens the moment it crosses a boundary - files, sockets, IPC.
- Unicode vs. byte strings, and the classic Python 2 → Python 3 migration pain.
- How data moves over TCP and UDP sockets.
- Storing integers as bytes:
- Two orderings - LSB → MSB and MSB → LSB (little-endian vs. big-endian)
struct.pack()andstruct.unpack()for conversion
- String representation:
- ASCII - every character assigned a numeric code, single byte
- Beyond English - Unicode assigns a code point per character across all languages
- Variable-width encoding - lower code points take 1 byte, higher up to 4 bytes
- In Python 3,
stris Unicode by default;bytesis separate
- Closed on a security angle: how an
.exedisguised and sent as a PDF is actually assembled and taken apart.
Networking Session
Informal networking
Tea break
Lightning Talks
DilliBabu
- Manual incident response and the 2 AM infra problem
- The case for a zero-ops, autonomous SRE architecture
Manisha
- WebAssembly
- Demoed via squoosh.app
Vignesh
- Token computation and optimisation
- Markdown over rich formats - metadata and structure without formatting overhead means fewer tokens on read
- Mermaid for charts and flow diagrams
Closing
Group photo session
Meetup ended at 6:00PM