Codish Lexicon

One word for one meaning, One meaning for one word,
Symmetric opposites, Comprehensive classes.
A dictionary of computer programming names.

aseuss: an infix.   opposite: e   see: vowel

abs — absolute value.   returns the positive reflection of negative integers, returning positive numbers as they were.   a transitive function that maps integers into the natural number line.   distinct: absolute   is: stateless, idempotent   related: neg   python: abs(number) -> number Return the absolute value of the argument.   perl: [number]: absolute value function   php: absolute value &dagger.   distinct: pos   related: positive

absolute — returns the fully qualified path for a given path and the cwd.   is: stateless, idempotent   distinct: abs, normal, canonical

accept — to accept a connection from a client.   perl: [socket]: accept an incoming [socket] [connect]   mentioned: server

ack — acknowledge.   seuss: opposite: eck   mentioned: eck

acosinverse: cos   php: arc cosine &dagger.   mentioned: trig

acosh — hyperbolic arccosine.   related: asinh, atanh, cosh, cos   php: inverse hyperbolic cosine &dagger.   inverse: cosh   mentioned: trig

add — returns the result of adding values arithmetically.   opposite: sub   is: arithmetic, stateless   related: zero   python: set: Add an element to a set. This has no effect if the element is already present.   related: bale, or, sum   aka: concat, merge, plus   distinct: extend   mentioned: complexity function, end, identity, magnitude, neg, non polynomial time, signed

addcslashessee: escape   php: quote string with slashes in a c style &dagger.

addslashessee: escape   php: quote string with slashes &dagger.

adjust — to move a value either up or down in a bag based on its value and the comparison function of the bag.   related: priority

aggregatephp: dynamic class and object aggregation of methods and properties &dagger.

aggregate infophp: gets aggregation information for a given object &dagger.

aggregate methodsphp: dynamic class and object aggregation of methods &dagger.

aggregate methods by listphp: selective dynamic class methods aggregation to an object &dagger.

aggregate methods by regexpphp: selective class methods aggregation to an object using a regular expression &dagger.

aggregate propertiesphp: dynamic aggregation of class properties to an object &dagger.

aggregate properties by listphp: selective dynamic class properties aggregation to an object &dagger.

aggregate properties by regexpphp: selective class properties aggregation to an object using a regular expression &dagger.

akatransitive relation: also known as.   "a.k.a." generally means that the present spelling is better (for orthogonality, consistency with a metaphore, whim, or fancy), but another spelling would make sense coming from precedent in another language or linguisitic inferrence.   opposite: see

alarmperl: [process]: schedule a SIGALRM

alias — an alternate name. a function that defers to a function by another name by way of polymorphic late binding.   mentioned: aliaser, bag

aliaser — accepts an object and returns functions that accept symbols and return aliases.

all — returns whether all values froma given iterable are true.   short circuits on the first falsy value.   related: any, every   python: all(iterable) -> bool Return True if bool(x) is True for all values x in the iterable.   aka: intersection   pertains: iterable   mentioned: idempotent

ancestors — a linear collection or iteration of a vertex and its transitive parents. (basis: this is an ancestor; recur: the parent of any ancestor is also an ancestor, and comes after its child if the ancestors are ordered)   opposite: descendants   singular: ancestor   intransitive: parent   related: heritage

andlogical conjunction.   related: and2, intersect, mul   opposite: or, nand   related: or   mentioned: nand2

Truth Table
X Y X and Y
0 false false false
1 false true false
2 true false false
3 true true true

angle — a unitless number, measured in radians, for expressing the direction of a ray from a point on a plane.   related: trig   mentioned: atan, atan2, cos, sin, tan

any — returns whether any value from a given iterable is true.   short circuits on the first truthy value.   related: all, some   python: any(iterable) -> bool Return True if bool(x) is True for any x in the iterable.   pertains: iterable   aka: union

apache child terminatephp: terminate apache process after this request &dagger.

apache get modulesphp: get a list of loaded apache modules &dagger.

apache get versionphp: fetch apache version &dagger.

apache getenvphp: get an apache subprocess_env variable &dagger.

apache lookup uriphp: perform a partial request for the specified uri and return all info about it &dagger.

apache notephp: get and set apache request notes &dagger.

apache request headersphp: fetch all http request headers &dagger.

apache reset timeoutphp: reset the apache write timer &dagger.

next

blog comments powered by Disqus