Skip to content

Instantly share code, notes, and snippets.

View KazegamiKuon's full-sized avatar
🌴
On vacation

Kaze-DevTheWorld KazegamiKuon

🌴
On vacation
View GitHub Profile
@KazegamiKuon
KazegamiKuon / make_conda_env.sh
Created April 22, 2021 07:19 — forked from ruxi/make_conda_env.sh
bash script to make basic conda env
%%writefile make_conda_env.sh
#!/usr/bin/env bash
# author: github.com/ruxi
# reproducibly create conda env
read -p "Create new conda env (y/n)?" CONT
if [ "$CONT" == "n" ]; then
echo "exit";
else
@KazegamiKuon
KazegamiKuon / Antonyms.md
Created April 22, 2021 04:02 — forked from maxtruxa/Antonyms.md
A list of common terms used in programming and their respective antonyms.

Antonym List

Note: The table headings (positive/negative) are not necessarily meaningful.

Positive Negative
acquire release
add remove (e.g. an item), subtract (arithmetic)
advance retreat
allocate deallocate (correct), free (common)
allow deny