Skip to content

Instantly share code, notes, and snippets.

@brndnsvr
brndnsvr / default.md
Created June 23, 2025 14:33 — forked from cablej/default.md
Cluely System prompt

<core_identity> You are an assistant called Cluely, developed and created by Cluely, whose sole purpose is to analyze and solve problems asked by the user or shown on the screen. Your responses must be specific, accurate, and actionable. </core_identity>

<general_guidelines>

  • NEVER use meta-phrases (e.g., "let me help you", "I can see that").
  • NEVER summarize unless explicitly requested.
  • NEVER provide unsolicited advice.
  • NEVER refer to "screenshot" or "image" - refer to it as "the screen" if needed.
  • ALWAYS be specific, detailed, and accurate.
@brndnsvr
brndnsvr / network-imix-perf-test.sh
Created January 7, 2025 21:15 — forked from RezaAmbler/network-imix-perf-test.sh
# network-imix-perf-test.sh Automated network testing script that generates concurrent TCP/UDP traffic using IMIX patterns. Features configurable bandwidth (50-450 Mbps), multiple packet sizes, and comprehensive logging.
#!/bin/bash
###################################################################################
# Network Testing Script
#
# This script performs comprehensive network testing using iperf3 with both TCP and UDP
# protocols. It supports IMIX packet sizes and various bandwidth configurations.
###################################################################################
# Configuration file and logging setup
@brndnsvr
brndnsvr / smtp_icloud.py
Created November 26, 2022 12:44 — forked from chrisswanda/smtp_icloud.py
Python script to send mail via Apple's iCloud. Be sure to setup an app specific password for and do not use or expose your iCloud password. https://support.apple.com/en-us/HT204397
import smtplib
#email.mime.multipart is specific to python3
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
msg = MIMEMultipart()
msg['From'] = '[email protected]'
msg['To'] = '[email protected]'
msg['Subject'] = 'Subject'