Skip to content

Instantly share code, notes, and snippets.

View rieger-jared's full-sized avatar

Rieger rieger-jared

View GitHub Profile
@rieger-jared
rieger-jared / gruvchad.kdl
Last active February 11, 2025 10:27
gruvchad Zellij Theme
themes {
gruvchad {
fg "#c7b89d"
bg "#404344"
black "#1e2122"
red "#ec6b64"
green "#89b482"
yellow "#d6b676"
blue "#6d8dad"
magenta "#9385b4"
@rieger-jared
rieger-jared / grokking_to_leetcode.md
Created July 6, 2023 19:26 — forked from tykurtz/grokking_to_leetcode.md
Grokking the coding interview equivalent leetcode problems

GROKKING NOTES

I liked the way Grokking the coding interview organized problems into learnable patterns. However, the course is expensive and the majority of the time the problems are copy-pasted from leetcode. As the explanations on leetcode are usually just as good, the course really boils down to being a glorified curated list of leetcode problems.

So below I made a list of leetcode problems that are as close to grokking problems as possible.

Pattern: Sliding Window

@rieger-jared
rieger-jared / introrx.md
Created March 25, 2022 14:17 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@rieger-jared
rieger-jared / Makefile
Created March 18, 2021 16:22 — forked from genyrosk/Makefile
Makefile for a Python environment with pyenv-virtualenv
SHELL:=/bin/bash
PROJECT=project
VERSION=3.7.4
VENV=${PROJECT}-${VERSION}
VENV_DIR=$(shell pyenv root)/versions/${VENV}
PYTHON=${VENV_DIR}/bin/python
JUPYTER_ENV_NAME=${VENV}
JUPYTER_PORT=8888
## Make sure you have `pyenv` and `pyenv-virtualenv` installed beforehand