Write
Everything on SkillVeris tagged Write — collected across the glossary, study notes, blog, and cheat sheets.
8 resources across 2 libraries
Study Notes(7)
LINQ Best Practices
Practical guidelines for writing readable, performant, and maintainable LINQ — from query composition to IQueryable pitfalls.
Writing Custom Matchers
Learn how to extend Jest's expect with expect.extend() to write custom matchers that produce clearer, more expressive assertions and failure messages.
Test Scripts Basics with pm.test()
How to write assertions in Postman's Tests tab using pm.test() and pm.expect() to automatically validate API responses.
HDFS Read/Write Workflow
Step-by-step walkthrough of what actually happens inside HDFS when a client writes a new file or reads an existing one.
Tcl and C Extension Basics
Understand how to extend Tcl with compiled C code — writing custom commands, managing the Tcl_Obj type system, and building a loadable extension.
The Outbox Pattern
The Outbox pattern guarantees a service's database write and its corresponding event publication happen atomically, by writing the event to an 'outbox' table i…
Writing Your First Test First
Learn what it means to specify behavior with a failing test before any implementation exists, and how to pick a good starting test case.