Everything built on top of the base OpenClaw platform. Canonical reference for what exists, where it lives, and how it works. Operational use cases and workflow playbooks live in
docs/USE-CASES-WORKFLOWS.md.
Prompts to recreate each piece of the OpenClaw system. Use these with any AI coding assistant.
1. Personal CRM "Build a personal CRM that automatically scans my Gmail and Google Calendar to discover contacts from the past year. Store them in a SQLite database with vector embeddings so I can query in natural language ('who do I know at NVIDIA?' or 'who haven't I talked to in a while?'). Auto-filter noise senders like marketing emails and newsletters. Build profiles for each contact with their company, role, how I know them, and our interaction history. Add relationship health scores that flag stale relationships, follow-up reminders I can create, snooze, or mark done, and duplicate contact detection with merge suggestions. Link relevant documents from Box to contacts so when I look up a person, I also see related docs."
2. Meeting Action Items (Fathom)
| #!/bin/bash | |
| ### steps #### | |
| # verify the system has a cuda-capable gpu | |
| # download and install the nvidia cuda toolkit and cudnn | |
| # setup environmental variables | |
| # verify the installation | |
| ### | |
| ### to verify your gpu is cuda enable check |
Sometimes it seems like the first (and sometimes only) advice you get offered for almost any problem with a Raspberry Pi is "check your power supply". You think something like:
"hey, I'm using an official power supply sold as being matched with my Pi so how can there be any problem?"
You look up the specs then stick a controlled load across your supply and confirm that it can deliver the required number of Watts.
Yet your problems persist…
| # Extracted from https://github.com/se3000/ruby-eth | |
| # | |
| # Dependencies: | |
| # - gem 'digest-sha3' | |
| # - gem 'rlp' | |
| # | |
| # Usage: | |
| # - Eth::Utils.valid_address?('0x4Db7569F90bd836294B11c8b08B853d2de499Ced') | |
| # => true | |
| # - Eth::Utils.format_address('0x4db7569f90bd836294b11c8b08b853d2de499ced') |
| # An example global gitignore file | |
| # | |
| # Place a copy if this at ~/.gitignore_global | |
| # Run `git config --global core.excludesfile ~/.gitignore_global` | |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll |
| 3/18/2021: WE HAVE MOVED: For the latest instructions on how to use the bulk wells fargo PDF downloader, | |
| please ignore this page and visit below: | |
| https://github.com/binary1230/wellsfargo-bulk-PDF-statement-downloader/blob/main/README.md | |
| CensusReporter = { | |
| GeoIDLayer: L.GeoJSON.extend({ | |
| addGeoID: function(geoid) { | |
| var request = new XMLHttpRequest(); | |
| var url = this.options.api_url + "/1.0/geo/show/tiger2013?geo_ids=" + geoid; | |
| request.open('GET', url, true); | |
| var self = this; | |
| request.onreadystatechange = function() { | |
| if (this.readyState === 4) { | |
| if (this.status >= 200 && this.status < 400) { |