Skip to content

Instantly share code, notes, and snippets.

View tcoppex's full-sized avatar
🥝
ᐳ ᐁ ᓯ

Thibault Coppex tcoppex

🥝
ᐳ ᐁ ᓯ
  • France
View GitHub Profile
@tcoppex
tcoppex / pandoras_vox.md
Last active April 9, 2021 11:12
pandora’s vox: on community in cyberspace by humdog (1994)

pandora’s vox: on community in cyberspace

by humdog (1994)

when i went into cyberspace i went into it thinking that it was a place like any other place and that it would be a human interaction like any other human interaction. i was wrong when i thought that. it was a terrible mistake.

the very first understanding that i had that it was not a place like any place and that the interaction would be different was when people began to talk to me as though i were a man. when they wrote about me in the third person, they would say “he.” it interested me to have

@tcoppex
tcoppex / CMake.sublime-build
Created October 29, 2021 13:49
CMake "Build & Run" command for sublime-text on GNU/Linux.
{
"shell_cmd": "mkdir -p BUILD && cd BUILD && cmake .. -DCMAKE_BUILD_TYPE=Release && cmake --build . -- -j 7 && `file $folder/bin/* | grep interpreter | sed 's/:.*//'`",
"keyfile": "CMakeLists.txt",
"working_dir": "$folder",
}
@tcoppex
tcoppex / playlist_to_mix.sh
Created March 23, 2024 12:01
Create a single file mix from a youtube playlist.
#!/bin/bash
if [ $# -ne 1 ]; then
echo "Usage: $0 <id_de_la_playlist>"
exit 1
fi
playlist_id="$1"
temp_dir=$(mktemp -d)