Skip to content

Instantly share code, notes, and snippets.

@Sneedd
Sneedd / Antonyms.md
Created February 21, 2022 12:10 — 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
@Sneedd
Sneedd / ColdFusion_HelloWorld.cfm
Created January 27, 2021 10:21
Hello World in ColdFusion
<cfscript>
writeOutput("Hello World");
</cfscript>