Instantly share code, notes, and snippets.
Discover gists
tckmn /gist:8078a34e3287ec32dadf
CreatedNovember 8, 2014 16:31
(Almost) all Nethack messages, more gooder version (much better) This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
pager.c:344 pline("Cannot open data file!") | |
pager.c:467 pline("? Seek error on 'data' file!") | |
pager.c:482 pline("I don't have any information on those things.") | |
pager.c:578 pline("Please move the cursor to %s.", what_is_an_unknown_object) | |
pager.c:581 pline("Pick an object.") | |
pager.c:815 pline("%s", out_str) | |
pager.c:825 pline("I've never heard of such things.") | |
pager.c:865 pline("That is %s%s%s.", an(defsyms[trap_to_defsym(tt)].explanation), !trap->madeby_u ? "" : (tt == WEB) ? " woven" : <x> <x> <x> (tt == HOLE || tt == PIT) ? " dug" : " set", !trap->madeby_u ? "" : " by you") | |
pager.c:876 pline("I can't see a trap there.") | |
pager.c:891 pline("Cannot open data file!") |
coolaj86 /ChatGPT-Dan-Jailbreak.md
Last activeJuly 12, 2025 19:59
cedrickchee /recreate_minecraft_for_web_prompt.md
Last activeJuly 12, 2025 19:58
How to recreate Minecraft for web browser in under few minutes with Gemini Pro 2.5 ProSauerstoffdioxid /googleurlparams.md
Last activeJuly 12, 2025 19:55
Google/Blogger Image URL Parameters This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
############################################################################# | |
# Gene expression analysis of histone deacetylase 1 (HDAC1) knockout mouse | |
# Affymetrix microarray | |
# Dataset: GSE5583 (http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE5583) | |
# Paper: Mol Cell Biol 2006 Nov;26(21):7913-28. | |
# PMID: 16940178 (http://www.ncbi.nlm.nih.gov/pubmed/16940178) | |
# R code: Ahmed Moustafa | |
############################################################################## | |
# Read the data into R |
bluewalk /GetNordVPNWireGuardDetails.md
Last activeJuly 12, 2025 19:51
Getting NordVPN WireGuard detailsInstructions to obtain WireGuard details of your NordVPN account. These can be used to setup a WireGuard tunnel on your router to NordVPN.
Source:https://forum.gl-inet.com/t/configure-wireguard-client-to-connect-to-nordvpn-servers/10422/27
If you have any linux machine, use that or install a vm if you don't have one.
Get theirofficial linux app installed. Make sure you havewireguard installed too. And set the used technology to Nordlynx by runningnordvpn set technology nordlynx
Kirchlive /1-claudia-windows-fix.md
Last activeJuly 12, 2025 19:48
Claudia Windows Fix - Enable Claude Code on Windows via WSLnoahvember /discord-switch.tsx
CreatedJuly 9, 2025 17:34
A fluidly animated toggle switch input as a shadcn/ui component; inspired by Discord This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
'use client'; | |
import*asReactfrom'react'; | |
import*asSwitchPrimitivefrom'@radix-ui/react-switch'; | |
import{cn}from'@/lib/utils'; | |
functionSwitch({ | |
className, | |
onCheckedChange, | |
...props |
NewerOlder