Julia
/ˈdʒuːliə/
noun … “a high-level, high-performance programming language designed for technical computing.”
Julia is a dynamic programming language that combines the ease of scripting languages with the speed of compiled languages. It was designed from the ground up for numerical and scientific computing, allowing developers to write clear, expressive code that executes efficiently on modern hardware. Julia achieves this balance through just-in-time (JIT) compilation, multiple dispatch, and type inference.
Hypertext Markup Language
/ˈhaɪpərˌtɛkst ˈmɑːrkʌp ˈlæŋɡwɪdʒ/
noun — “the skeleton of the web, giving structure to everything you see (and sometimes don’t) in your browser.”
Var
/veir/ or /var/
noun — “a named container for values that refuses to stay still.”
Var is short for variable, a fundamental concept in programming that represents a named storage location whose value can change over time during program execution. In most programming languages, a variable acts as a symbolic reference to data stored in memory, allowing developers to work with dynamic values instead of fixed constants.
Parm
/pärm/
noun — “a parameter, squeezed down until only its intent remains.”
Parm is a further-compressed form of param, itself shorthand for “parameter.” It represents the tendency in computing cultures—especially those shaped by tight typing constraints, dense interfaces, or institutional jargon—to reduce commonly used technical terms into shorter, more efficient spoken and written forms.
Param
/pä-räm/
noun — “a named expectation that shapes how a function behaves before it ever runs.”
Param is shorthand for parameter, a fundamental concept in programming that describes a named input accepted by a function, procedure, or method. A parameter defines what kind of information a function expects in order to perform its task, acting as a placeholder that is filled when the function is actually called.