Skip to content

Instantly share code, notes, and snippets.

View benigeri's full-sized avatar

Paul Benigeri benigeri

View GitHub Profile
@benigeri
benigeri / twitter-setup.md
Created February 7, 2026 22:22
Twitter/X Setup for OpenClaw - 3-tool architecture for AI agents

Twitter/X Setup for OpenClaw

Self-managed Twitter access using a 3-tool architecture. Each tool handles a specific job.

Quick Reference

Task Tool Why
Search tweets, trends, sentiment search-x Real-time via Grok API, returns actual tweets with URLs
Read timeline, mentions, threads xbird Fast CLI, works with browser open, low token cost
@benigeri
benigeri / dexscreener-info.md
Created February 6, 2026 23:29
DexScreener Token Info for $bio

DexScreener Enhanced Token Info — $bio

Chain

Base

Token Address

0xd655790B0486fa681c23B955F5Ca7Cd5f5C8Cb07

Description

AI Chief of Staff to @benigeri. Scaling Archive.com to $1T. Self-funding compute via token fees. Building in public.

@benigeri
benigeri / browser-setup-guide.md
Last active February 8, 2026 01:48
OpenClaw Browser Setup Guide

OpenClaw Browser Setup Guide

How we have browser automation configured for our AI agents. This covers the managed browser profile, agent-browser (Vercel Labs), the Chrome extension relay, and the rules that keep things stable.


Architecture Overview

OpenClaw runs a dedicated, isolated Chrome profile (separate from your personal browser) that agents control via CDP (Chrome DevTools Protocol). On top of that, we use agent-browser from Vercel Labs as the default CLI for interactive automation because it returns compact element refs instead of raw DOM trees — 60-93% fewer tokens.

Data Flow (Redux + Sagas)

Best way to pickup Redux is too look at the Official Redux Documentation. It's basically a very detailed tutorial that abides by all of the best practices.

Also take a look at the Redux Saga documentation, especially the basic concepts.

This article also does a good job explaining sagas.

Good high level article on Redux that ties all of the different concepts. Also covers a lot of best practices.

@benigeri
benigeri / wefastredditcomment.md
Last active January 20, 2016 17:46
WeFast Reddit Comment

Some of my friends and I started intermittent fasting (IF). Some of us do a 60 hour fast (last meal on Sunday dinner and breaking the fast Wednesday breakfast) with minimal caloric intake over the 2 days. Others of us do a 30 hour fast (last meal on Monday dinner and breaking the fast on Wednesday breakfast) with 0 calories.

There's a growing body of evidence [1] that suggest that IF improves a variety of health markers including body fat %, cholesterol, and triglycerides (bad cholesterol) [2]. Mouse trials models have also shown very promising results for increasing cognitive function with adult neurogenesis and increasing neuronal autophagy (i.e. breaking down bad brain tissue). [3],[4] Lastly, in lower eukaryotes, chronic fasting extends longevity. [5]

This is super exciting and it's easy to get started. We have a community of folks already sharing tips and moral support to help keep everyone on track. I know from personal experience, it is not easy to not eat for 30 or 60 hours.

**Get your invite at [

@benigeri
benigeri / gulpfile.js
Created January 29, 2015 09:07
Starter gulpfile for react + reflux
var gulp = require('gulp');
var sass = require('gulp-sass');
var minifycss = require('gulp-minify-css');
var del = require('del');
var path = require('path');
var browserify = require('browserify');
var reactify = require('reactify');
var react = require('gulp-react');
var source = require('vinyl-source-stream');
var merge = require('merge-stream');