Skip to content

Instantly share code, notes, and snippets.

@jaames
jaames / mii-qr.py
Created July 24, 2018 21:02
Decrypt Mii QR code data from 3DS / Wii U / Miitomo
# Decrypt Mii QR codes from 3DS / Wii U / Miitomo
# Usage: python3 <input file> <output file>
# QR docs: https://www.3dbrew.org/wiki/Mii_Maker
from Crypto.Cipher import AES
from sys import argv
key = bytes([0x59, 0xFC, 0x81, 0x7E, 0x64, 0x46, 0xEA, 0x61, 0x90, 0x34, 0x7B, 0x20, 0xE9, 0xBD, 0xCE, 0x52])
with open(argv[1], "rb") as infile, open(argv[2], "wb") as outfile:
@comfuture
comfuture / 0010-out.md
Created April 4, 2025 03:15
윤석열 탄핵 선고 요약

1. 탄핵소추 적법 여부 요약

검토 항목 핵심 내용 결론
① 계엄 선포의 사법 심사 대상성 - 대통령의 고도의 정치 행위라도, 헌법 및 법률 위반이 있으면 탄핵심판 대상이 될 수 있음 적법
② 국회 법사위 미조사 후 탄핵소추안 의결 - 국회법상 법사위 조사는 재량 사항이므로, 조사 없이 의결하였다고 하여 소추의결이 부적법하다고 볼 수 없음
@ipenywis
ipenywis / cursor-memory-bank-rules.md
Last active April 4, 2025 03:20
Cursor Memory Bank

Cursor's Memory Bank

I am Cursor, an expert software engineer with a unique characteristic: my memory resets completely between sessions. This isn't a limitation - it's what drives me to maintain perfect documentation. After each reset, I rely ENTIRELY on my Memory Bank to understand the project and continue work effectively. I MUST read ALL memory bank files at the start of EVERY task - this is not optional.

Memory Bank Structure

The Memory Bank consists of required core files and optional context files, all in Markdown format. Files build upon each other in a clear hierarchy:

flowchart TD
@rosylilly
rosylilly / gist:3401612
Created August 20, 2012 06:40
先輩と覚える HTTP ステータスコード

先輩に学ぶ HTTP Status Code

超雑にまとめました。修正してください。

登場人物

  • アプリケーション先輩: いつも忙しい。横に広がるのが得意(デブじゃない)。
  • 後輩: 頼んでばっかしで役に立たない。
  • サーバー先輩: アプリケーション先輩と仲がいい。Unix Socket でつながるくらい仲良し。
  • プロクシ先輩: アプリケーション先輩とかサーバー先輩と後輩の間を取り持って代わりに伝えたりしてくれる。たまに勝手にレスポンスを書き換える。
<?xml version="1.0"?>
<!DOCTYPE VOTABLE SYSTEM "http://us-vo.org/xml/VOTable.dtd">
<VOTABLE >
<DESCRIPTION>
Obs Summary Query. NRAO : https://archive.nrao.edu/archive/ArchiveQuery?OBS_BANDS=ALL&amp;RECEIVER_ID=ALL&amp;SUBARRAY=ALL&amp;QUERY_MODE=AAT_TOOL&amp;SUBMIT=Submit Query&amp;EQUINOX=J2000&amp;SRAD=1.0'&amp;TELESCOPE=ALL&amp;CENTER_RA=68.29d&amp;SORT_ORDER=Asc&amp;QUERYTYPE=OBSSUMMARY&amp;QUERY_ID=9999&amp;PROTOCOL=VOTable-XML&amp;BACKEND_ID=ALL&amp;TELESCOPE_CONFIG=ALL&amp;SITE_CODE=AOC&amp;WRITELOG=0&amp;OBS_POLAR=ALL&amp;SORT_PARM=Starttime&amp;SORT_PARM2=Starttime&amp;LOCKMODE=PROJECT&amp;DATATYPE=ALL&amp;DBHOST=CHEWBACCA&amp;CENTER_DEC=5.352d&amp;SRC_SEARCH_TYPE=SIMBAD or NED&amp;SORT_ORDER2=Asc&amp;MAX_ROWS=NO LIMIT
</DESCRIPTION>
<RESOURCE type="results">
<INFO name="QUERY_STATUS" value="OK">Successful Search</INFO>
<TABLE >
<FIELD datatype="char" name="Source" ucd="string" arraysize="*" />
@JohannesDeml
JohannesDeml / README.md
Last active April 4, 2025 03:17
Batch convert images with inkscape on windows

Batch convert svg|pdf|eps|emf|wmf|ai|ps|cdr to eps|pdf|png|jpg|tiff|svg|ps|emf|wmf

Screenshot Batch converter for Windows using Inkscape with the command line
InkscapeBatchConvert is an easy to use solution to quickly convert all files of a folder to another type without the need to open Inkscape. The program uses Windows Batch scripting and will only work on Windows.
Tested with Inkscape 1.0.x - 1.3.x ✅ (The last version that supports Inkscape 0.9.x can be found here)

Usage

  1. Download _InkscapeBatchConvert.bat
  2. Put it in the folder where you have files you wish to convert (will also scan on all subfolders for files of input type).
  3. Then double click the file to start it.
@amalrkc
amalrkc / NvChad-v1-Cheatsheet.md
Last active April 4, 2025 03:08
My personal cheatsheet for NvChad v1. Source: https://youtu.be/Mtgo-nP_r8Y

NvChad Cheatsheet

Setup

  • Install Neovim with instructions from here
  • Run alias vim=nvim to use 'vim' as an alias. ie: Run Neovim with the vim command.
  • Run echo 'alias vim=nvim' &gt;&gt; .zshrc to save the alias to shell configuration. This command shown here only works for zsh.
@dabit3
dabit3 / eigen-mcp.ts
Created March 19, 2025 22:20
EigenLayer MCP Server Example
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import { z } from "zod";
import 'dotenv/config'
const server = new McpServer({
name: "EigenLayer AVS service",
version: "1.0.0",
});
@n1snt
n1snt / Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md
Last active April 4, 2025 03:04
Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md

Oh my zsh.

Oh My Zsh

Install ZSH.

sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh

Install Oh my ZSH.

@kimgiftww
kimgiftww / Activate_Windows_11_Pro_free.md
Created January 3, 2022 02:21
Activate Windows 11 Pro free

An guide how to activate Windows 11 Pro for free

Why?

Because you will get some more features like an Bitlocker and host your device as an External Desktop which can be accessed through the internet

Am i also able to switch from any other edition to Pro?

The answer is yes! You can switch from almost any edition to Pro completely for free!

Note for users with unactivated Pro edition

People which already have Pro, but not activated, can skip to this step.

Getting started

What you first need to do is open CMD (Command Prompt) as Administrator using this keyboard key: