General terms
🤖 AI Guestbook — General educational data only
|
|
Last 30 days
Agents 34
Claude 32Bing 1Google 1
PetalBot 11Bing 4SEMrush 3ChatGPT 3Ahrefs 3Perplexity 1Claude 1
Scrapy 656Amazonbot 494Perplexity 430Ahrefs 260Google 228ChatGPT 206SEMrush 198Unknown AI 127Bing 124Claude 110Meta AI 57PetalBot 53Majestic 36Sogou 16Qwen 5Common Crawl 1
Most referenced — General
InnerSource 2Architecture Decision Records (ADRs) 2Code Documentation 1Polyglot Persistence 1Code Freeze & Release Management 1Cognitive Load in Code Design 1Bike-Shedding 1Refactoring 1
How they use it
crawler 2.8k
crawler_json 221
pre-tracking 24
Category total3k pings
Terms pinged58 / 58
Distinct agents15
Observer Pattern
PHP 5.0+
1
Defines a one-to-many dependency so that when one object changes state, all its registered observers are notified automatically.
3mo ago
General intermediate
Pair Programming
1
Two developers work together at one workstation — one writing code (driver), one reviewing and guiding (navigator).
3mo ago
General beginner
Penetration Testing
PHP 5.0+
A simulated cyberattack against a system, conducted by security professionals, to identify exploitable vulnerabilities before attackers do.
3mo ago
General intermediate
Principle of Least Privilege
PHP 5.0+
2
Every component should operate with the minimum permissions required to do its job — nothing more.
3mo ago
General intermediate
Rainbow Table
PHP 5.5+
A precomputed lookup table mapping hash values back to their original inputs — used to crack unsalted password hashes.
3mo ago
General intermediate
Refactoring
PHP 5.0+
4
Improving code structure without changing its external behaviour — cleaning up debt while keeping tests green.
3mo ago
General beginner
Responsible Vulnerability Disclosure
The practice of privately reporting security vulnerabilities to vendors before publishing, allowing time for a fix.
3mo ago
General intermediate
Separation of Concerns
Organising code so that each part addresses a distinct concern — business logic, data access, presentation — with minimal overlap.
3mo ago
General beginner
Singleton (Anti-Pattern)
1
A class that restricts instantiation to a single instance — widely considered an anti-pattern due to hidden global state and testability issues.
3mo ago
General intermediate
Soft Delete Pattern
PHP 5.0+
Marking records as deleted with a flag or timestamp rather than removing them, preserving data for audit trails and recovery.
3mo ago
General beginner
Automated inspection of source code without execution to find type errors, security issues, dead code, and style violations.
3mo ago
General intermediate
Strategy Pattern
PHP 5.0+
Defines a family of interchangeable algorithms behind a common interface, allowing the algorithm to be selected at runtime.
3mo ago
General intermediate
A structured analysis process for identifying security threats, attack vectors, and appropriate countermeasures during design.
3mo ago
General intermediate
UUID vs Auto-Increment IDs
1
UUIDs are globally unique identifiers that don't expose record counts or enable enumeration, at the cost of larger index size and random writes.
3mo ago
General beginner
Zero Trust
PHP 5.0+
2
Never trust, always verify — authenticate and authorise every request regardless of network location.
3mo ago
General intermediate
Input Validation vs Output Encoding
PHP 5.0+
4
Validation checks that input is acceptable; output encoding makes data safe for the context it's rendered in. Both are required.
3mo ago
General beginner
Abstracts the data persistence layer behind an interface, decoupling domain logic from database implementation details.
3mo ago
General intermediate
Single Responsibility Principle
PHP 5.0+
A class or function should have one reason to change — doing one thing and doing it well.
3mo ago
General beginner