Skip to content

Instantly share code, notes, and snippets.

View ndee's full-sized avatar

Andreas Henrich ndee

  • Southwest Germany
View GitHub Profile
@wojteklu
wojteklu / clean_code.md
Last active May 4, 2024 18:57
Summary of 'Clean code' by Robert C. Martin

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


General rules

  1. Follow standard conventions.
  2. Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
  3. Boy scout rule. Leave the campground cleaner than you found it.
  4. Always find root cause. Always look for the root cause of a problem.

Design rules

@wyvernzora
wyvernzora / xhr-spy.js
Last active June 23, 2023 09:58
Browser XHR Spy
/**
* The following code, when executed in a browser's JS console,
* will log detailed information about every XHR made from the
* web page. Perfect for spying on API calls.
*/
(function() {
var XHR = XMLHttpRequest.prototype;
// Remember references to original methods
var open = XHR.open;
var send = XHR.send;