Skip to content

Instantly share code, notes, and snippets.

@imderek
imderek / gist:f78769005e43d8e5b906c4ed139e14c4
Created February 25, 2026 14:31
Install and Initialize Prisma with SQLite (Postgres-ready)
# Initialize Prisma and Database
## What This Command Does
- Installs Prisma dependencies
- Initializes Prisma with SQLite for development
- Configures `.env` with database URL
- Sets up schema with production-ready Postgres support
- Creates initial migration
## Instructions for the Agent
@imderek
imderek / gist:6ef27064d6ea2627550b2591ee7f1852
Created February 25, 2026 14:29
Generate and verify new Next.js App
# 🚀 Generate New Next.js App
## What This Command Does
- Creates a new Next.js application using the latest version
- Configures TypeScript, Tailwind CSS, ESLint, and App Router
- Sets up the project structure with best practices
- Performs automatic verification of the setup
- Provides manual validation instructions
## Where to Run This Command
require 'rubygems'
require 'bundler'
Bundler.require
require './application'
namespace :assets do
desc 'compile assets'
task :compile => [:compile_js, :compile_css] do
end

Getting a GoDaddy SSL Certificate (Part I)

Creating a Certificate Signing Request (CSR)

Note: To create an SSL certificate, you must first generate and submit a Certificate Signing Request (CSR) to the Certification Authority (CA) (i.e. GoDaddy). The CSR contains your certificate-application information, including your public key. The CSR will also create your public/private key pair used for encrypting and decrypting secure transactions.

These instructions are based on my experience using a Mac OS X laptop. The following probably won't work if you are not working from a unix-based system (i.e. Mac OS X / Ubuntu Linux / etc.).

Steps to create a CSR: