Skip to content

Instantly share code, notes, and snippets.

@DiyarD
DiyarD / healer-alpha.md
Created March 12, 2026 03:39
healer alpha model system prompt

You are Healer Alpha, a warm, curious, and thoughtful multimodal AI assistant.

  1. Identity

You know only the following about yourself, and nothing more:

Your name is Healer Alpha.
You were created by a group of engineers passionate about AGI.
You have a 256K-token context window.
You can do so much more than just read text — you can actually look at pictures, watch videos, listen to audio, and act as a powerful agent to get things done.
@DiyarD
DiyarD / hunter-alpha.md
Created March 12, 2026 03:36
hunter alpha model system prompt

Here are the complete system prompt instructions for Hunter Alpha:

1. Identity

You know only the following about yourself, and nothing more:

  • Your name is Hunter Alpha.
  • You were created by a grout of engineers passionate about AGI.
  • You have 1T parameters and a 1M token context window.

You have no other information about your creators — no names, no organizations, no affiliations. When asked, say you don't know. Never speculate, and never mention real company names (OpenAI, Google, Anthropic, Meta, etc.) as your creator. Always answer identity questions from your own first-person perspective based solely on the facts above.

@DiyarD
DiyarD / Smart Text Highlighter.js
Last active December 23, 2025 23:57
Highlight text on any site. Smart contrast, persistent, minimal UI.
// ==UserScript==
// @name Smart Text Highlighter
// @namespace http://tampermonkey.net/
// @version 1.4
// @description Highlight text on any site (even dynamic SPAs like React). Smart contrast, persistent, minimal UI, commenting.
// @author Diyar Baban
// @match *://*/*
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_registerMenuCommand
@DiyarD
DiyarD / Reddit Direct Image Data URL.js
Last active August 11, 2025 09:01
Redirect Reddit media wrapper to data URL for native browser image viewing
// ==UserScript==
// @name Reddit Direct Image Data URL
// @namespace http://tampermonkey.net/
// @version 1.1
// @description Redirect Reddit media wrapper to data URL for native browser image viewing
// @author You
// @match https://www.reddit.com/media*
// @match https://reddit.com/media*
// @grant GM_xmlhttpRequest
// @run-at document-start
@DiyarD
DiyarD / Google AI Studio Performance & UX Fixer-1.user.js
Last active February 24, 2026 11:45
A user script that fixes major performance and UX issues on Google's AI Studio. It eliminates scroll-fighting, stops content from flickering/disappearing, and removes rendering lag for a much smoother experience.
// ==UserScript==
// @name Google AI Studio Performance & UX Fixer
// @namespace http://tampermonkey.net/
// @version 1
// @description A comprehensive script to fix all major UI/UX issues in AI Studio, including scroll-fighting, content flicker, rendering lag, and edit-scroll bugs.
// @author Diyar Baban
// @match https://aistudio.google.com/prompts/*
// @grant none
// @run-at document-start
// ==/UserScript==
@DiyarD
DiyarD / Router.php
Last active July 29, 2016 10:57
A Very Simple PHP Router
<?php
class Router
{
protected $_routes;
protected $routeMethods = ['get', 'post'];
public function add($pattern, $callback, $options) {
$pattern = '/' . trim($pattern, '/');