Skip to content

Instantly share code, notes, and snippets.

View jarrensj's full-sized avatar
🍣
I want to eat sushi

Jarren San Jose jarrensj

🍣
I want to eat sushi
View GitHub Profile
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObject",
"s3:ListBucket"
rm -rf ~/Desktop/Screen\ Recording\ 20*
-- Drops all tables in the public schema
DO $$
DECLARE
table_name text;
BEGIN
FOR table_name IN
SELECT tablename
FROM pg_tables
WHERE schemaname = 'public'
LOOP
@jarrensj
jarrensj / jarrensj-README.md
Last active October 22, 2025 04:08
jarrensj README.md

Jarren S

I prefer async, I probably will see your message within an hour if I'm awake

I'm hungry (figuratively, literally)

I prefer to talk in public channels over a dm because I think reduces the amount of explaining to others and gives more context for everyone

If you see a message, respond or react / ack instantly so I know you've seen the message.

@jarrensj
jarrensj / page.tsx
Last active September 10, 2025 08:23
page.tsx for fresh next.js app
export default function Home() {
return (
<main className="min-h-screen p-8 flex flex-col items-center justify-center text-center">
<h1 className="text-2xl font-bold mb-4">hi</h1>
</main>
);
}

Contributing

We appreciate the interest!

Before contributing, please read the following terms:

Contributor License Agreement (CLA)

By submitting any code, documentation, designs, or any other materials (the "Contribution") to this repository, you agree to the following:

previously:

  • software engineer @ faang
  • founding / chief engineer @ medical ai startup
  • lead engineer @ a crypto company
  • day traded full-time + startups (here again)
  • winner @ hackathonsssss
  • and more

jarrensj.com

@jarrensj
jarrensj / docker-help.md
Created January 23, 2019 02:31 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@jarrensj
jarrensj / docker_wordpress.md
Created January 20, 2019 18:26 — forked from bradtraversy/docker_wordpress.md
Docker Compose FIle For Wordpress, MySQL & phpmyadmin

Wordpress & Docker

This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command

$ docker-compose up -d

# To Tear Down
$ docker-compose down --volumes
@jarrensj
jarrensj / pipenv_cheat_sheet.md
Created December 23, 2018 23:05 — forked from bradtraversy/pipenv_cheat_sheet.md
Pipenv cheat sheet for common commands

Pipenv Cheat Sheet

Install pipenv

pip3 install pipenv

Activate

pipenv shell