Skip to content

Instantly share code, notes, and snippets.

View haywood-d-johnson's full-sized avatar

Haywood D. Johnson haywood-d-johnson

View GitHub Profile
@haywood-d-johnson
haywood-d-johnson / setup-debug.js
Created May 30, 2025 08:04
Prisma Health Check and Debug Routes
#!/usr/bin/env node
const fs = require('fs').promises;
const path = require('path');
async function setupDebugEndpoints() {
const baseDir = process.cwd();
// Create necessary directories
const dirs = [
@haywood-d-johnson
haywood-d-johnson / LinkedList.cpp
Last active June 18, 2020 19:34
A bit of an extended Linked List...
#include <iostream>
#include <time.h>
class Node
{
public:
int value;
Node *next;
Node(){};
Node(int value_) : value(value_), next(NULL){};