Skip to content

Instantly share code, notes, and snippets.

View CrazeDoc's full-sized avatar
🏃
Getting Cracked...

Aakash Rao CrazeDoc

🏃
Getting Cracked...
View GitHub Profile
@n1snt
n1snt / zsh_setup.md
Last active May 17, 2026 03:06
Oh my ZSH 2026 updated setup guide

Oh my zsh Setup (Fast + Minimal)

Oh My Zsh

Install Zsh

Ubuntu

sudo apt update
sudo apt install zsh curl git
@joeschoe
joeschoe / next-firebase-image-upoad.ts
Last active March 28, 2024 17:00
Upload images to firebase storage with next app router, server components, and server actions
// Use next app router, server components, and server actions to upload files to firebase storage
//
// you probably dont want to do this since just storing images in the next public folder is usually best
// but if for some reason you need to upload files to firebase storage from nextjs, here you go
// also worth noting that the firebase-admin storage sdk has almost no documentation
// and from what I can tell does almost nothing, but it's just a wrapper around the google cloud storage sdk
// so you can use that instead if you want better documentation and functionality
import { Readable } from "stream";
import { getDownloadURL } from "firebase-admin/storage";
@CrazeDoc
CrazeDoc / sassas.md
Created January 14, 2023 15:17 — forked from AdamMarsden/sassas.md
Sass Architecture Structure

Sass Architecture Structure

sass/
|
|– base/
|   |– _reset.scss       # Reset/normalize
|   |– _typography.scss  # Typography rules
|   ...                  # Etc…
|