Skip to content

Instantly share code, notes, and snippets.

View FrankyCTY's full-sized avatar
🎯
Focusing

Franky Chan FrankyCTY

🎯
Focusing
  • Datch
  • New Zealand, Auckland
View GitHub Profile
@FrankyCTY
FrankyCTY / AdvancedDistributedSystemDesignCourseNotes.md
Created July 13, 2023 20:09 — forked from craigtp/AdvancedDistributedSystemDesignCourseNotes.md
Notes on Udi Dahan's Advanced Distributed System Design Course

Advanced Distributed System Design Course - Udi Dahan

Notes by Craig Phillips

Fallacies of Distributed Computing

  • There are 11 fallacies of Distributed Computing:
    1. The network is reliable
    2. Latency isn’t a problem
    3. Bandwidth isn’t a problem
    4. The network is secure
  1. The topology won’t change
@FrankyCTY
FrankyCTY / exporting_modules_functions_from_python_init.md
Created April 13, 2023 11:32 — forked from CMCDragonkai/exporting_modules_functions_from_python_init.md
Exporting Modules and Functions from Python `__init__.py` #python

Exporting Modules and Functions from Python __init__.py

Any directory with __init__.py is considered a package in Python.

Any python files inside a package is considered a module.

Modules contain functions and other bindings that is always exported.

If you are outside the package, and you want to import a module from a package:

@FrankyCTY
FrankyCTY / ranger-cheatsheet.md
Created February 19, 2023 04:55 — forked from heroheman/ranger-cheatsheet.md
Ranger Cheatsheet

Ranger Cheatsheet

General

Shortcut Description
ranger Start Ranger
Q Quit Ranger
R Reload current directory
? Ranger Manpages / Shortcuts
@FrankyCTY
FrankyCTY / CleanArchitecture.md
Created October 29, 2022 22:19 — forked from ygrenzinger/CleanArchitecture.md
Summary of Clean Architecture by Robert C. Martin

Summary of book "Clean Architecture" by Robert C. Martin

Uncle Bob, the well known author of Clean Code, is coming back to us with a new book called Clean Architecture which wants to take a larger view on how to create software.

Even if Clean Code is one of the major book around OOP and code design (mainly by presenting the SOLID principles), I was not totally impressed by the book.

Clean Architecture leaves me with the same feeling, even if it's pushing the development world to do better, has some good stories and present robust principles to build software.

The book is build around 34 chapters organised in chapters.

Keybase proof

I hereby claim:

  • I am frankycty on github.
  • I am takyuchan (https://keybase.io/takyuchan) on keybase.
  • I have a public key ASAQt4ivOLCI2bVpQ8JUpWuL5RoM_tjmihMX5kOXPF7-Rwo

To claim this, I am signing this object:

@FrankyCTY
FrankyCTY / cssNamedColors.csv
Last active September 6, 2021 12:00
CSS Named Colors
Specification Keyword RGB hex value
CSS Level 1 black #000000
CSS Level 2 silver #c0c0c0
CSS Level 3 gray #808080
CSS Level 4 white #ffffff
CSS Level 5 maroon #800000
CSS Level 6 red #ff0000
CSS Level 7 purple #800080
CSS Level 8 fuchsia #ff00ff
CSS Level 9 green #008000