Skip to content

Instantly share code, notes, and snippets.

View Brianconn71's full-sized avatar

Brian Connolly Brianconn71

  • Galway
View GitHub Profile
@Brianconn71
Brianconn71 / clean_code.md
Created May 18, 2023 20:24 — 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

@Brianconn71
Brianconn71 / Fashionblog.html
Created January 29, 2020 09:13
Fashion Blog
<!DOCTYPE html>
<html>
<head>
<title>Everyday with Isa</title>
</head>
<body>
<a href="#contact"><img src="https://s3.amazonaws.com/codecademy-content/courses/learn-html/elements-and-structure/profile.jpg"></a>
<h3>by Isabelle Rodriguez | 1 day ago</h3>
<h1>An Insider's Guide to NYFW</h1>
<img src="https://s3.amazonaws.com/codecademy-content/courses/learn-html/elements-and-structure/image-one.jpeg">
@Brianconn71
Brianconn71 / PY0101EN-4-1-ReadFile.ipynb
Created January 27, 2020 12:20
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Brianconn71
Brianconn71 / PY0101EN-3-4-Classes.ipynb
Created January 27, 2020 12:11
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Brianconn71
Brianconn71 / PY0101EN-2-4-Sets.ipynb
Created January 22, 2020 12:55
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Brianconn71
Brianconn71 / PY0101EN-2-3-Dictionaries.ipynb
Created January 22, 2020 12:41
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Brianconn71
Brianconn71 / PY0101EN-2-2-Lists.ipynb
Created January 22, 2020 12:05
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Brianconn71
Brianconn71 / PY0101EN-2-1-Tuples.ipynb
Created January 22, 2020 11:47
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Brianconn71
Brianconn71 / PY0101EN-1-2-Strings.ipynb
Created January 12, 2020 18:27
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Brianconn71
Brianconn71 / PY0101EN-1-1-Types.ipynb
Created January 9, 2020 16:24
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.