Skip to content

Instantly share code, notes, and snippets.

View GrantGochnauer's full-sized avatar
🎸

Grant Gochnauer GrantGochnauer

🎸
View GitHub Profile

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?

@simpsoka
simpsoka / Leadership-CI.md
Last active December 20, 2023 15:40
This is a list of questions to check our decision making.

Do I want to die on this hill?

  • Pass: This is morally good and if not handled has long term consequences
  • Fail: This if self serving

Am I including everyone?

  • Pass: My ego is not driving this conversation
  • Fail: The people in this conversation will only tell me I'm right and not push back
import fetch from "isomorphic-fetch";
const token = ""; // use your access token here
const time = "2023-01-04T18:00:00.000Z";
const debug = false;
const fetchFromExportApi = async (updatedAfter = null) => {
let fullData = [];
let nextPageCursor = null;
@mi5ty
mi5ty / tana.css
Last active November 12, 2023 14:58
Tana Nodes CSS Snippets
/* custom font */
html {
--colorEditorText: var(--colorGray700);
font-family: Chivo;
font-weight: 300;
-webkit-font-smoothing: antialiased;
}
html.isDarkMode {
--colorEditorText: var(--colorGray300);