Skip to content

Instantly share code, notes, and snippets.

@JoyceBabu
JoyceBabu / redir.md
Created August 7, 2024 07:31 — forked from romainl/redir.md
Redirect the output of a Vim or external command into a scratch buffer

Redirect the output of a Vim or external command into a scratch buffer

Usage (any shell)

Show full output of command :hi in scratch window:

:Redir hi

Show full output of command :!ls -al in scratch window:

@JoyceBabu
JoyceBabu / Law-of-Demeter-with-PHP.md
Created January 3, 2021 17:47 — forked from k1paris/Law-of-Demeter-with-PHP.md
Law of Demeter with PHP (LoD)

Law of Demeter with PHP (LoD)

Law of Demeter or principle of least knowledge is a design guideline, that is using to make code more simple and stable.

Rules for module

  • Each unit should have only limited knowledge about other units: only units "closely" related to the current unit.
  • Each unit should only talk to his friends; don't talk to strangers.
  • Only talk to your immediate friends.