Skip to content

Instantly share code, notes, and snippets.

View bodefuwa's full-sized avatar

Bode Fuwa bodefuwa

View GitHub Profile
# OpenClaw Implementation Prompts
Each prompt below is a self-contained brief you can hand to an AI coding assistant (or use as a project spec) to build that use case from scratch. Adapt the specific services to whatever you already use — the patterns are what matter.
---
## 1) Personal CRM Intelligence
```
Build me a personal CRM system that automatically tracks everyone I interact with, with smart filtering so it only adds real people — not newsletters, bots, or cold outreach.

Deploying a Static Website to AWS S3 with HTTPS using CloudFront.

static website

Prerequisites.

  • You should have a domain name already purchased to link with your Static Website.
  • Some Web content to display on your domain.

By the end of this post you will be able to:

  • Create an S3 bucket and Configure it for static website hosting.
  • Create a record in Route 53.
  • Create a CloudFront distribution and link it with your custom domain.
  • Create Certificates in AWS Certificate Manager.
@bodefuwa
bodefuwa / README.md
Created August 11, 2016 17:21 — forked from jxson/README.md
README.md template

Synopsis

At the top of the file there should be a short introduction and/ or overview that explains what the project is. This description should match descriptions added for package managers (Gemspec, package.json, etc.)

Code Example

Show what the library does as concisely as possible, developers should be able to figure out how your project solves their problem by looking at the code example. Make sure the API you are showing off is obvious, and that your code is short and concise.

Motivation

@bodefuwa
bodefuwa / gist:59f62bffed3f0ef272b7
Created September 26, 2015 06:08 — forked from sbob909/gist:1886593
Sample Data for Apex Workbook Spring 2012
Merchandise__c[] ml = new List<Merchandise__c>();
Merchandise__c m = new Merchandise__c(
Name='Pencils',
Description__c='Cool pencils',
Price__c=1.5,
Total_Inventory__c=1000);
ml.add(m);
Merchandise__c m2 = new Merchandise__c(
Name='Notebooks',
Description__c='Blue notebooks',
@bodefuwa
bodefuwa / controller_spec.rb
Last active August 29, 2015 14:26 — forked from tonycoco/controller_spec.rb
The Greatest Hits of Rspec Testing: Volume 1
require "spec_helper"
describe ExampleController do
context "GET #index" do
let(:resources) { FactoryGirl.create_list(:resource) }
before do
get :index
end