Skip to content

Instantly share code, notes, and snippets.

View rifont's full-sized avatar

Richard Fontein rifont

View GitHub Profile
@rifont
rifont / Novu-Echo-Terminal.css
Last active April 1, 2024 17:57
Novu-Echo-Terminal.js
/* Terminal Wrapper Styles */
.nv-snippet-window-wrapper.terminal-cqc4oo {
position: absolute;
font-size: .875rem;
font-family: var(--nv-monospace-font)
}
.nv-snippet-window-wrapper.is-noninteractable.terminal-cqc4oo {
opacity: 1;
@rifont
rifont / 1.srp.py
Created August 21, 2023 10:58 — forked from dmmeteo/1.srp.py
SOLID Principles explained in Python with examples.
"""
Single Responsibility Principle
“…You had one job” — Loki to Skurge in Thor: Ragnarok
A class should have only one job.
If a class has more than one responsibility, it becomes coupled.
A change to one responsibility results to modification of the other responsibility.
"""
class Animal:
def __init__(self, name: str):
@rifont
rifont / clean_code.md
Created August 21, 2023 10:45 — forked from wojteklu/clean_code.md
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

# specify a directory to install
cask_args appdir: '/Applications'
# install packages
tap 'homebrew/cask'
tap 'homebrew/cask-fonts'
brew 'git'
brew 'nvm'
brew 'yarn'
brew 'awscli'
brew 'awsume'
@rifont
rifont / ConfigureNewMac.md
Last active September 26, 2023 11:42
Configure New Mac

Configure New Mac

Login to iCloud

Follow the standard iCloud setup on system startup or System Prefences.

Install XCode

> xcode-select —-install