Skip to content

Instantly share code, notes, and snippets.

View youngbloodcyb's full-sized avatar
🌊

Cameron Youngblood youngbloodcyb

🌊
View GitHub Profile
@mdang
mdang / RAILS_CHEATSHEET.md
Last active August 18, 2025 10:54
Ruby on Rails Cheatsheet

Ruby on Rails Cheatsheet

Architecture

Create a new application

Install the Rails gem if you haven't done so before

@mindplace
mindplace / git_and_github_instructions.md
Last active August 10, 2025 23:01
Pushing your first project to github

1. Make sure git is tracking your project locally

Do you need a refresher on git? Go through Codecademy's git course.

  1. Using your terminal/command line, get inside the folder where your project files are kept: cd /path/to/my/codebase. → You cannot do this simply by opening the folder normally, you must do this with the command line/terminal.
    → Do you need a refresher on using your command line/terminal? I've compiled my favorite resources here.

  2. Check if git is already initialized: git status

@drumnation
drumnation / genre-seeds.json
Created January 20, 2019 22:36
Spotify Genre Seeds Available
{
"genres": [
"acoustic",
"afrobeat",
"alt-rock",
"alternative",
"ambient",
"anime",
"black-metal",
"bluegrass",
@lottamus
lottamus / inbound-parse.ts
Created July 17, 2024 20:01
parses the email and forwards it to the appropriate recipient
import type {
ExportedHandler,
} from "@cloudflare/workers-types";
import PostalMime, { type Email } from "postal-mime";
/**
* This is the main entry point for the inbound email parsing service.
* It is triggered when an email is received at the inbound email address.
* It parses the email and forwards it to the appropriate recipient.
*/