Skip to content

Instantly share code, notes, and snippets.

@EYITAY
EYITAY / README.md
Last active August 21, 2026 16:37
Ridgelines: A Study in Divergence

Ridgelines: A Study in Divergence

Deterministic generative artwork rendering a fingerprint-inspired orientation field. Mono and colour variants render the same field with different styles.

Biometric Fingerprints Classification Inspiration

My undergraduate thesis collected over 5,000 fingerprint samples to study the hardest edge case in biometric forensics: distinguishing identical twins, two systems that look nearly indistinguishable at a glance but diverge completely once you trace them far enough. Fifteen years later, that same instinct — find where near-identical inputs stop behaving identically — is the throughline of my current AI alignment research, from classifying deceptive model behavior by underlying motivation to probing where a model's internal representation of intent becomes separable across its layers. This piece returns to the original biometric question directly. It implements a simplified version of the classical Sherlock-Monro zero-pole model used in fingerprint synthesis, integrati

### Keybase proof
I hereby claim:
* I am tanayjalan on github.
* I am tanayjalan (https://keybase.io/tanayjalan) on keybase.
* I have a public key ASArcJ8SyNTIXZW_bt0ZqnmxBVB9sT_xdnH9T9ZJ_U54bQo
To claim this, I am signing this object:
This file has been truncated, but you can view the full file.
# Solve.mjs Log - 2026-08-21T15:59:54.657Z
[2026-08-21T15:59:54.666Z] [INFO] 📁 Log file: /home/box/solve-2026-08-21T15-59-54-657Z.log
[2026-08-21T15:59:54.673Z] [INFO] (All output will be logged here)
[2026-08-21T15:59:57.006Z] [INFO]
[2026-08-21T15:59:57.008Z] [INFO] 🚀 solve v2.12.5
[2026-08-21T15:59:57.010Z] [INFO] 🔧 Raw command executed:
[2026-08-21T15:59:57.011Z] [INFO] /home/box/.nvm/versions/node/v20.20.2/bin/node /home/box/.bun/bin/solve https://github.com/G-Ivan-A/mango_ba_prompts/issues/268 --tool claude --attach-logs --verbose --no-tool-check --disable-report-issue --language en
[2026-08-21T15:59:57.014Z] [INFO]
@nickwalton
nickwalton / voyage-map-mobile-final.svg
Created August 21, 2026 16:37
Voyage PR 14710 live QA screenshots — final SHA 5685864
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created August 21, 2026 16:36
Rimworld output log published using HugsLib
Log uploaded on Friday, August 21, 2026, 5:36:55 PM
Loaded mods:
Harmony(brrainz.harmony)[mv:2.4.2.0]: 0Harmony(2.4.1), HarmonyMod(2.4.2)
Core(Ludeon.RimWorld): (no assemblies)
[SYR] Processor Framework(syrchalis.processor.framework): 0Harmony(av:2.4.1,fv:2.3.6), ProcessorFramework(1.0.0)
CM Color Coded Mood Bar [1.1+](CrashM.ColorCodedMoodBar.11): 1SettingsHelper(av:1.3.0.40835,fv:1.3.0), CMColoredMoodBar(1.6.4871.1), Microsoft.Bcl.HashCode(av:6.0.0,fv:6.0.24.56208)
Adaptive Storage Framework(adaptive.storage.framework): 0MultiplayerAPI(av:0.5.0,fv:0.5.0), 1ITransformable(1.0.0), AdaptiveStorageFramework(1.2.4), CopyOperation(1.0.0), DefNameLink(1.0.0), GeneratorOperation(1.0.0), GeneratorOperationV2(1.0.0), PatchOperationSet(1.0.0), PatchOperationTryAdd(1.0.0), PostInheritanceOperation(1.0.0), SaveGameCompatibility(1.0.0)
EdB Prepare Carefully(EdB.PrepareCarefully)[mv:1.6.2]: EdBPrepareCarefully(av:1.1.1,fv:1.6.2)
Vanilla Expanded Framework(OskarPotocki.VanillaFactionsExpanded.Core): 0ModSettingsFramework(1
@takunara-arent
takunara-arent / SKILL.md
Created August 21, 2026 16:36 — forked from k16shikano/SKILL.md
japanese-tech-writing/SKILL
name japanese-tech-writing
description 日本語の技術文書・書籍原稿の文章規範。整形(一文一行、引用ブロック、脚注、コラム記法)、段落と論証の構成(パラグラフライティング)、論証の厳密さ(ツッコミどころの除去)、読み手の負荷の管理、視点と語り、演出の抑制、LLM っぽい空句の禁止、冗長の排除を定める。日本語で技術書の章、草稿、記事、解説文を書くとき、または推敲・リライトするときに使用する。

日本語技術文書の文章規範

日本語で技術的な原稿(書籍の章、記事、解説文)を書く・推敲するときは、以下の規範に従う。

整形

@tatsuyax25
tatsuyax25 / findKthSmallest.js
Created August 21, 2026 16:36
You are given an integer array coins representing coins of different denominations and an integer k. You have an infinite number of coins of each denomination. However, you are not allowed to combine coins of different denominations. Return the kth
/**
* @param {number[]} coins
* @param {number} k
* @return {number}
*/
var findKthSmallest = function(coins, k) {
const n = coins.length;
// Precompute all subset LCMs
const lcms = [];
@rxliuli
rxliuli / README.md
Created August 21, 2026 16:36
App Store Connect 批量补填 Social Media / Contact 字段

App Store Connect 批量补填元数据

处理两类历史遗留问题:

  • App Age Ratings 的 Social Media 字段:ASC 的年龄评级问卷新增了「Social Media」和「Social Media Disabled for Users Under 13」两个问题,老 app 都没答过(接口里是 null),不填提审会卡。
  • Contact Information:版本页 App Review Information 下的姓名、电话、邮箱,老的版本经常空着。

思路:直接用 ASC 网页端自己的接口(/iris/v1/...)批量检查和补填,不用一个个点界面。操作的都是自己账号下的 app,和手动点网页等效。

用之前

@darkhorsepolitical
darkhorsepolitical / armr_recovery.pub
Created August 21, 2026 16:36
ARMR recovery public key 2026-08-21
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKyhx6uftqoBLVWFeXataVMbdIZDmNmbasVJvptNu/m3 armr-recovery-2026-08-21
@amfatech7-creator
amfatech7-creator / app.py
Created August 21, 2026 16:36
FlitFlow cloud_relay app.py - rebrand health tag flitbook->flitflow
"""
FlitBook Mobile Live-ViewCloud Relay Service
================================================
What this is: a small, standalone Flask service that sits between each
client's FlitBook Pro-Plus DESKTOP install and their OWNER/MANAGER MOBILE
app. It is NOT a copy of the desktop app, and it never runs any of the
desktop's business logic (stock checks, invoice totals, WhatsApp, etc.) —
all of that stays on the desktop, exactly as it works today.