Skip to content

Instantly share code, notes, and snippets.

View johanoloflindberg's full-sized avatar
💭
Ready to work 😃

WEBBAB johanoloflindberg

💭
Ready to work 😃
View GitHub Profile
@johanoloflindberg
johanoloflindberg / oc.md
Created May 3, 2026 15:47 — forked from mberman84/oc.md
OpenClaw Prompts

OpenClaw Prompts - Build Your Own AI Assistant

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)

@johanoloflindberg
johanoloflindberg / dnsbl.php
Created September 15, 2020 14:28 — forked from tbreuss/dnsbl.php
IP Blacklist Check Script - This is a simple PHP script to lookup for blacklisted IP against multiple DNSBLs at once.
<?php // Simple PHP script to lookup for blacklisted IP against multiple DNSBLs at once. ?>
<html>
<head>
<title>DNSBL Lookup Tool - IP Blacklist Check Script</title>
</head>
<body>
<h2>IP Blacklist Check Script</h2>
<form action="" method="get">
<input type="text" value="" name="ip"/>
<input type="submit" value="LOOKUP"/>
@johanoloflindberg
johanoloflindberg / Redirect Page (5 sekunder)
Last active June 10, 2020 15:34
Redirect Page (5 sekunder)
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>WEBBAB Redirect Page</title>
<meta name="description" content="A page that will redirect the user to bytefreaks.net after 5 seconds">
<meta name="author" content="Bytefreaks.net">
<meta http-equiv="refresh" content="5;URL=https://webbab.se/">
</head>
@johanoloflindberg
johanoloflindberg / gist:e75d01b6194fc0d1ae5d810b6ec465d8
Created March 16, 2020 21:16 — forked from pitch-gist/gist:2999707
HTML: Simple Maintenance Page
<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>
@johanoloflindberg
johanoloflindberg / gist:948b8601482167e848fe38d668882f97
Created February 25, 2020 16:54
Webbproduktion av Webbyrån WEBBAB - Webbyrån WEBBAB i Gävle producerade denna webbplats
<div class="textwidget"><small class="byline"><a href="http://webbab.se" target="_blank" title="Webbyrån WEBBAB i Gävle producerade denna webbplats">Webbproduktion av <br>Webbyrån WEBBAB</a></small><br></div>
@johanoloflindberg
johanoloflindberg / A free guide to HTML5 <head> elements
Last active April 23, 2019 03:22
A free guide to HTML5 <head> elements
# A list of everything that *could* go in the head of your document
https://gethead.info
https://github.com/joshbuchea/HEAD
https://gist.github.com/lancejpollard/1978404
https://web-platform-tests.org/
@johanoloflindberg
johanoloflindberg / HTML Comments – How To Use Them In Your HTML Code
Created April 23, 2019 02:02
HTML Comments – How To Use Them In Your HTML Code
# HTML Comments¨
https://www.w3schools.com/htmL/html_comments.asp
# HTML Comments: How To Use Them In Your HTML Code Read more:
https://html.com/tags/comment-tag/#ixzz5lsalOTLi
https://html.com/tags/comment-tag/
# Source Code Comment Styling: Tips and Best Practices
https://www.hongkiat.com/blog/source-code-comment-styling-tips/
@johanoloflindberg
johanoloflindberg / HTML Document Structure
Created April 23, 2019 02:00
HTML Document Structure
https://html.com/document/
@johanoloflindberg
johanoloflindberg / HTML Document Meta
Created April 23, 2019 01:58
HTML Document Meta
https://html.com/document/metadata/