Skip to content

Instantly share code, notes, and snippets.

View thehypergraph's full-sized avatar
💭
Sit rep normal

Ronald Jordan thehypergraph

💭
Sit rep normal
View GitHub Profile
@thehypergraph
thehypergraph / .js
Created July 20, 2023 01:38
Node.Js Class Iterator
[Symbol.iterator]() {
let index = 0
return {
next: () => {
if (index <= this.items.length) {
const res = { value: this.items[index], done: false }
index = index + 1
return res
@thehypergraph
thehypergraph / .zshrc
Last active June 15, 2023 17:10
My .zshrc
# ZSH Shell
export ZSH=/Users/ronald/.oh-my-zsh
ZSH_THEME="robbyrussell"
plugins=(git extract heroku pass)
fpath+=~/.zfunc
autoload -U compinit && compinit
source $ZSH/oh-my-zsh.sh
# Base