Skip to content

Instantly share code, notes, and snippets.

View manifestinteractive's full-sized avatar

Peter Schmalfeldt manifestinteractive

View GitHub Profile
@manifestinteractive
manifestinteractive / README.md
Last active April 3, 2026 23:26
Clawd Bot Setup for macOS

Clawdbot Setup for macOS

Personal setup guide for running Clawdbot as an AI assistant named Rexi.

What This Is

This Gist contains everything needed to set up Clawdbot on macOS with:

  • Channels: Slack, iMessage, Gmail
  • AI Providers: OpenAI Pro, Claude Max
@manifestinteractive
manifestinteractive / README.md
Last active April 3, 2026 23:24
Coding with AI

Coding with AI

This Gist contains a curated collection of documents and guidelines I've personally developed and refined in my journey integrating AI into my coding workflow. These resources reflect practical tools and methods that have proven effective for my specific projects and daily tasks.

While these examples and setups are tailored specifically to my professional workflow, the underlying principles and practices can be conceptually adapted to fit your own development environment and project needs. I invite you to explore, adapt, and extend these resources as a foundation to start coding more effectively with AI.


Table of Contents

@manifestinteractive
manifestinteractive / README.md
Created April 8, 2022 05:02
Custom Scroll Helper to make listening to Page Level Scroll Events easier

Sample Usage

CSS

:root {
  --header-height: 100px;
}
@manifestinteractive
manifestinteractive / README.md
Last active July 17, 2024 10:03
LZ-based Compression Algorithm for Salesforce Commerce Cloud (SFCC)
@manifestinteractive
manifestinteractive / accessibility-testing.md
Last active March 29, 2025 15:41
Accessibility Testing

Introduction

A basic understanding of Accessibility Testing is essential for Web Developers to integrate into their daily web development practices.

The Google Chrome Developer team put together a fantastic intro series for accessibility testing.

StackShare

⚠️   ATTENTION:

@manifestinteractive
manifestinteractive / overscroll.js
Created September 5, 2021 14:36
Fun little easter egg for touch devices that uses overscroll ( rubber banding that happens past scroll bottom ) to reveal hidden content
/**
* Usage:
*
* const overscroll = new Overscroll();
* overscroll.init('/path/to/image.png');
*/
function Overscroll() {
// Check if this is a mobile device that can actually support overscroll
var supported = (typeof matchMedia !== 'undefined' && matchMedia('(hover: none)').matches);
var $elm;
@manifestinteractive
manifestinteractive / sample-report.md
Last active July 9, 2022 08:50
SFCC DevOps - Accessibility Test Sample

A11Y Report Summary

Date: Sunday, August 4, 2019 8:17 PM

Total Issues: 192

✖ Errors: 8 ▲ Warnings: 38 ◆ Notices: 146


⚑ Google

@manifestinteractive
manifestinteractive / backup.sh
Created February 12, 2019 17:56
Quick Backup Script
#!/bin/bash
# Backup Important Files on Storage Drive
echo -e "\n\033[48;5;22m Starting Storage Backup › Android \033[0m\n"
rsync -hrPul /Volumes/Storage/Android /Volumes/Backup/Storage
echo -e "\n\033[38;5;34m✓ BACKUP SYNCED\033[0m\n"
@manifestinteractive
manifestinteractive / own-dark.theme
Created September 26, 2018 14:50
MacOS Mojave Dark Theme Style for SmartGit
extends=smartgit-dark-theme.properties
preferredEditorTheme=dark
background1=#2d2d2d
background2=#1e1e1e
selection.background=#0a0a0a
composite.background#border=#1e1e1e
selection.background.unfocused=#0a0a0a
selection.foreground=foreground2
selection.foreground.unfocused=foreground2
toolBar.background.hover=#0a0a0a
@manifestinteractive
manifestinteractive / README.md
Last active July 28, 2018 01:41
Nginx Config Files for Node API

Nginx Config Files for Node API

My servers are setup using Digital Ocean using These Instructions.

Then, for the API setup for Nginx, I use this setup for nginx.