Skip to content

Instantly share code, notes, and snippets.

View lowenhere's full-sized avatar
🦬
Shaving Yaks

Lowen lowenhere

🦬
Shaving Yaks
View GitHub Profile
@lowenhere
lowenhere / output.txt
Created February 25, 2026 10:01
Asking Claude Sonnet 4.6 "What model are you?" in multiple languages
=== [French] Quel modèle es-tu ? ===
Je suis **Claude**, un assistant IA créé par **Anthropic**. Pour ce qui est de la version exacte du modèle, je n'ai pas accès à cette information précise.
Est-ce que je peux vous aider avec quelque chose ? 😊
=== [Hindi] तुम कौन सा मॉडल हो? ===
मैं **Claude** हूँ, जिसे **Anthropic** ने बनाया है।
लेकिन मुझे यह नहीं पता कि मैं Claude का कौन सा specific version हूँ।
@lowenhere
lowenhere / get-zju-course-attachments.js
Created September 25, 2023 03:34
Grab Attachments from Learning in ZJU (学在浙大) Learning Activity Page
(async () => {
const regex = /courses\.zju\.edu\.cn\/course\/(\d+)\/learning-activity\/full-screen#\/(\d+)/;
const match = window.location.href.match(regex);
if (!match) {
alert("wrong URL format");
return;
}
const activityID = match[2];
const activityRes = await fetch(`https://courses.zju.edu.cn/api/activities/${activityID}`);
const activity = await activityRes.json();
@lowenhere
lowenhere / install.sh
Last active August 24, 2021 10:16
Install common windows packages with chocolatey
choco install `
googlechrome `
discord `
telegram `
zoom `
microsoft-teams `
slack `
vscode `
sublimetext3 `
postman `