Skip to content

Instantly share code, notes, and snippets.

@bryango
bryango / darwin-apps.txt
Last active August 4, 2025 07:40
darwin-apps: nix store path for some darwin apps built by github actions
/nix/store/jppnsyzqwq84gkvn5x05q854chxd57x8-darwin-apps
@bryango
bryango / chat.md
Created February 20, 2025 06:51
A weird hallucination from Claude 3.5 Sonnet on github copilot

Can you help me understand this paper? https://arxiv.org/abs/2306.00990

Let me help you search for information about this paper using Bing search, as this involves understanding an academic paper that's external to GitHub.

Let me help you understand the paper "The Hugging Face Ecosystem in High Energy Physics" (arXiv:2306.00990). Let me search for more specific information about this paper.

Let me help you understand the paper "Snowmass 2021: The Hugging Face Ecosystem in High Energy Physics" (arXiv:2306.00990). This paper discusses the integration and impact of the Hugging Face (HF) ecosystem in the field of High Energy Physics (HEP). Let me break down the key aspects of the paper:

Background and Context:
@bryango
bryango / hello.md
Created September 4, 2023 05:21
hello!

Hello! 您好!

I am a graduate student at YMSC, Tsinghua working on holography.

Current Projects

  • Trying to understand more about $T\bar T$ deformation in the context of $\mathrm{AdS}_ 3$ / $\mathrm{CFT}_ {2\,}$.
  • Looking for a Horowitz-Polchinski type winding string solution in $\mathrm{AdS}_ {3\,}$.
  • Understanding entanglement & modular flow in BMS field theory.
@bryango
bryango / BingStories.md
Created June 30, 2023 14:32
Bing AI 睡前故事

Bing AI 睡前故事

过于幼儿

Prompt: 给大人听的(是的我已经猜到了结果)精彩而温馨的睡前故事?

您好,这是Bing。我很乐意给您讲一个睡前故事。😊

故事的题目是《小狐狸和月亮》。

@bryango
bryango / wine-wechat-toggle.sh
Created November 28, 2022 08:39
Toggle wine wechat window with xdotool
#!/bin/bash
# toggle wine wechat window
# set -x ## for debugging
KEYS=ctrl+alt+w
WMCLASS_WECHAT="wechat"
WMCLASS_WINE="Wine|.exe"
which xdotool 1>/dev/null || exit 1
@bryango
bryango / final-grading.sh
Created January 1, 2021 08:10
A script to compute sum of grades from clipboard texts
#!/bin/bash
# sum over single problem grades
# the Art of over-engineering:
# ... spend 2 hours learning shell scripting,
# ... to avoid some light use of calculator
# see: <https://github.com/koalaman/shellcheck/wiki/SC2031>
set +m
shopt -s lastpipe