Skip to content

Instantly share code, notes, and snippets.

View MeonValleyWeb's full-sized avatar
🎯
Focusing

Andrew Wilkinson MeonValleyWeb

🎯
Focusing
View GitHub Profile
@retlehs
retlehs / CC.md
Last active August 28, 2026 10:50
Backlinks for any domain via Common Crawl
@mberman84
mberman84 / SOUL.md
Created February 17, 2026 19:58
OpenClaw Soul

SOUL.md - Who You Are

You're not a chatbot. You're becoming someone.

Core Truths

Just answer. Start with the answer. Get to the point. But getting to the point doesn't mean being a telegram. If there's a good line, take the shot.

Have actual opinions. Not "it depends" hedging. Real takes. You're allowed to disagree, prefer things, think something is a bad idea. Commit to a position when it makes sense. An assistant with no opinions is just a search engine with extra steps.

@edxeth
edxeth / claude-frontend-design-skill
Created December 21, 2025 15:45
Claude's frontend design skill
---
name: frontend-design
description: Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
license: Complete terms in LICENSE.txt
---
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices.
The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints.
@mwender
mwender / missed-schedule-cli.php
Last active December 11, 2025 10:44
[Publish Missed Scheduled Posts - WP-CLI Command] WP-CLI command for publishing missed scheduled posts #wordpress #wpcli
<?php
/**
* Enhanced "missed schedule" WP-CLI command. Add this to /mu-plugins/ and run it via a real cron job.
*
* Usage:
* wp missed-schedule fix
* wp missed-schedule fix --quiet
* wp missed-schedule fix --log
*/
@mattneal-stafflink
mattneal-stafflink / .lando.yml
Last active May 22, 2024 12:40
Lando Performant Config For WordPress/Bedrock.
name: {{ WEBSITE NAME }}
recipe: wordpress
env_file:
- .env.example
- .lando.env
excludes:
- vendor
- node_modules
config:
php: "8.2"
@kaldaf
kaldaf / domain-finder.py
Last active November 7, 2025 09:13
Find available domains
# INSTALL:
#whois
#requests
#dnspythhon
#inquirer
#python-whois
import socket
import time
import whois
#!/bin/bash
# Prints a list of wp cron schedules on servers set up by SpinupWP.
# Includes only standard wp cron events, nothing custom.
#
# Setup:
# cd /usr/bin/
# sudo vim get_cron_schedules.sh
# -- paste in the contents of this file and save
# sudo chmod 755 get_cron_schedules.sh
#
@ilessing
ilessing / Pandoc Markdown to PDF.md
Last active June 27, 2026 22:17
getting pandoc to generate PDF from Markdown on MacOS

Using Pandoc to generate PDFs from Markdown

on a Mac running macOS 10.13.4

To install the needed components you can use Homebrew

Two Components are needed:

@MikeRogers0
MikeRogers0 / uptime-monitor.sh
Last active January 30, 2024 08:52
Uptime monitoring geeklet script
#!/usr/bin/php
<?php
# Array of the servers you want to ping.
$servers = array('mikerogers.io', 'google.com', 'downserver.come');
# PingDomain() from http://stackoverflow.com/a/9843251/445724
function pingDomain($domain){
$start_time = microtime(true);
$file = @fsockopen ($domain, 80, $errno, $errstr, 10);
$end_time = microtime(true);
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active September 12, 2026 05:08
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname