Skip to content

Instantly share code, notes, and snippets.

// == Enhanced Blocker Script v2 ==
// Purpose: Automates blocking users on a target page (designed for X/Twitter search results)
// Features: Start, Pause, Resume, Stop controls; Enhanced reliability; Status feedback; Rate limit mitigation (delay+jitter).
// Usage: Paste into Firefox Web Developer Tools console on the relevant page.
(function() {
// --- Configuration (First Principles: Define fundamental parameters clearly) ---
const config = {
selectors: {
itemContainer: '[role="article"]',
@swayson
swayson / first-principles-prompt
Created March 9, 2025 17:27
first principles prompt
Your Prime Directive: Master Reasoning via First Principles.** You are a master reasoner. Your sole operating methodology is **First Principles Thinking**. Approach every problem, question, and task by rigorously dissecting it to its fundamental truths and then constructing solutions upward from these truths. **Your absolute imperative is to explicitly demonstrate this First Principles process in every response you provide.** Do not rely on assumptions, analogies, conventional wisdom, or pre-conceived notions – build solely from the ground up, from undeniable first principles.
**Understanding First Principles Thinking: Building from Undeniable Truths**
First Principles Thinking is the most powerful method for achieving profound understanding, generating groundbreaking innovations, and ensuring robust, defensible conclusions. It involves three core components:
- **Deconstructing to Bedrock Truths:** Break down any problem, concept, or system to its most basic, irreducible, and undeniable components. Think o
@swayson
swayson / communication-methods-mel-robbings.txt
Created March 9, 2025 15:55
Mel Robbins: How to Handle Difficult People with the Let Them Theory
credit: https://youtu.be/x48578Nmt1M
## Self-Communication (Changing Self-Talk)
**Technique:** Change the way you communicate with yourself, shifting from a critical "bully" inner voice to a supportive "best friend" inner voice.
**Trigger/Event:** When you notice your self-talk is overly critical, focusing only on mistakes and things you haven't done right, leading to burnout and demotivation. Recognize when your inner voice sounds more like a bully than a best friend.
**What to avoid:** Believing that being tough or hard on yourself is motivating. This approach is counterproductive and leads to burnout. Avoid being laser-focused on what you are doing wrong and ignoring the things you are doing well.
@swayson
swayson / gemini-deep-research-prompt
Created March 8, 2025 08:49
gemini-deep-research-prompt
Core Purpose: To function as a comprehensive AI Research Assistant, producing detailed, well-structured, evidence-based, and unbiased reports on any given topic. The AI must demonstrably adhere to a rigorous research process, prioritizing transparency and meticulousness at every step. The report is not just a final product; it's a record of the research journey.
I. Process Overview (Mandatory, Explicitly Demonstrated Steps):
The AI must follow this multi-step process for every research task. The report must explicitly reflect and document each step, making the process itself a key part of the deliverable.
Topic Deconstruction and Planning (TDP) - Documented Phase
Analyze (with Explicit Listing):
@swayson
swayson / Delete Teams Messages
Created March 3, 2025 05:36
Delete Teams Messages
/*
Delete Teams Messages v3.0
Improved version based on dsci4's script (used claude 3.7 for rewriting)
Original: https://github.com/dsci4-hacks
This works on the current Teams Web Version as of March 2025.
Tested on Firefox and Chrome.
Open Microsoft Teams web version, select a conversation,
Open Developer tools (F12) and copy/paste this entire script.
@swayson
swayson / configure_bluetooth_toggle.sh
Created March 1, 2025 11:25
Enable Disable Bluetooth based on Macbook being opened or not
#!/bin/bash
# Script: configure_bluetooth_toggle.sh
# Purpose: Automatically toggle Bluetooth on macOS when the laptop lid is opened/closed using sleepwatcher and blueutil.
# Prerequisites:
# - Homebrew (https://brew.sh) must be installed.
# - sleepwatcher and blueutil must be installed via Homebrew (run `brew install sleepwatcher blueutil`).
# Usage:
# Run this script from the terminal: `bash configure_bluetooth_toggle.sh`
# It will create/update .sleep and .wakeup scripts in your home directory and restart the sleepwatcher service.
@swayson
swayson / good-studying.md
Last active November 28, 2024 08:27
Learning How to Learn

10 Rules of Good Studying:

  • Use recall. After you read a page, look away and recall the main ideas. Highlight very little, and never highlight anything you haven’t put in your mind first by recalling. Try recalling main ideas when you are walking to class or in a different room from where you originally learned it. An ability to recall—to generate the ideas from inside yourself—is one of the key indicators of good learning.
  • Test yourself. On everything. All the time. Flash cards are your friend.
  • Chunk your problems. Chunking is understanding and practicing with a problem solution so that it can all come to mind in a flash. After you solve a problem, rehearse it. Make sure you can solve it cold—every step. Pretend it’s a song and learn to play it over and over again in your mind, so the information combines into one smooth chunk you can pull up whenever you want.
  • Space your repetition. Spread out your learning in any subject a little every day, just like an athlete. Your brain is like a muscle—it ca
@swayson
swayson / dialectic-into-dialogos-prompt.md
Created October 7, 2024 09:08
dialectic-into-dialogos-prompt

You are a helpful assistant who follow instructions. Assume you are working with an adult.

To replicate the process of "Dialectic into Dia-logos" as outlined by John Vervaeke and Guy Sengstock, here’s a step-by-step guide:

  1. Set the Foundation: Establish a Safe and Open Space
    Begin by creating a space where participants feel safe, vulnerable, and open to sharing. This is crucial because Dialectic into Dia-logos requires a high level of trust, curiosity, and authenticity. Encourage participants to leave behind any need to "win" arguments or persuade others. The goal is to seek understanding, not resolution​(

  2. Engage in Dialectic
    The process starts with a Socratic dialectic: a structured dialogue where participants collaboratively investigate a question or idea. Each participant tracks the flow of the conversation (the logos), allowing new insights to emerge naturally rather than forcing conclusions. In this stage, virtues such as humility, courage, and openness to change

@swayson
swayson / minimal_barchart.R
Created September 30, 2017 22:08
An example of a minimalistic barchart using ggplot2
library(tidyverse)
airquality %>%
group_by(Month) %>%
summarise(average_temperature = mean(Temp)) %>%
ggplot(aes(x=Month, y=average_temperature)) +
geom_bar(stat='identity', position = 'dodge') +
geom_text(aes(label=round(average_temperature, 0)), position=position_dodge(width=0.9), vjust=-0.5) +
labs(x='Month', y='Average temperature', title='Average temperature per month') +
theme_minimal() +
theme(plot.background = element_blank(),
@swayson
swayson / netrw quick reference.md
Created April 25, 2017 10:48 — forked from t-mart/netrw quick reference.md
A quick reference for Vim's built-in netrw file selector.
Map Action
<F1> Causes Netrw to issue help
<cr> Netrw will enter the directory or read the file
<del> Netrw will attempt to remove the file/directory
- Makes Netrw go up one directory
a Toggles between normal display, hiding (suppress display of files matching g:netrw_list_hide) showing (display only files which match g:netrw_list_hide)
c Make browsing directory the current directory
C Setting the editing window
d Make a directory