Skip to content

Instantly share code, notes, and snippets.

View nelsonaloysio's full-sized avatar
🐧

nelsonaloysio

🐧
View GitHub Profile
@rain-1
rain-1 / GPT-4 Reverse Turing Test.md
Last active December 27, 2025 05:35
GPT-4 Reverse Turing Test

The reverse turing test

I asked GPT-4 to come up with 10 questions to determine if the answerer was AI or human.

I provided my own answers for these questions and I also asked ChatGPT to answer them.

The result is that GPT-4 was able to correctly differentiate between AI and Human.

@raven-rock
raven-rock / edit-command-line-in-editor.zsh
Created July 31, 2018 13:18
Zsh: Use `C-x C-e` or `C-x e` to edit current command in $EDITOR with multi-line support. Saving and quitting $EDITOR returns to command prompt with the edited command inserted (but does not execute it until you press enter). Handy!
autoload -U edit-command-line
zle -N edit-command-line
bindkey '^xe' edit-command-line
bindkey '^x^e' edit-command-line