Boat anchor
Encyclopedia
In amateur radio
Amateur radio
Amateur radio is the use of designated radio frequency spectrum for purposes of private recreation, non-commercial exchange of messages, wireless experimentation, self-training, and emergency communication...

 and computing
Computing
Computing is usually defined as the activity of using and improving computer hardware and software. It is the computer-specific part of information technology...

, boat anchor is a slang
Slang
Slang is the use of informal words and expressions that are not considered standard in the speaker's language or dialect but are considered more acceptable when used socially. Slang is often to be found in areas of the lexicon that refer to things considered taboo...

 term used to describe something obsolete, useless, and cumbersome - so-called because metaphorically its only productive use is to be thrown into the water as a boat mooring.

Hardware

Early computers
Computing
Computing is usually defined as the activity of using and improving computer hardware and software. It is the computer-specific part of information technology...

 were physically large and heavy devices. As computers became more compact, the term boat anchor became popular among users to signify that the earlier, larger computer gear was obsolete, and no longer useful. It also may refer to a large piece of hardware, regardless of age, which has become unusable due to physical or electronic damage.

Software

The term boat anchor is also used in software development to refer to an unused piece of code that is left in a system's code base
Source code
In computer science, source code is text written using the format and syntax of the programming language that it is being written in. Such a language is specially designed to facilitate the work of computer programmers, who specify the actions to be performed by a computer mostly by writing source...

, typically for the reason "In case we need it later".
This is an example of an anti-pattern
Anti-pattern
In software engineering, an anti-pattern is a pattern that may be commonly used but is ineffective and/or counterproductive in practice.The term was coined in 1995 by Andrew Koenig,...

 and therefore can cause many problems for people attempting to maintain the program
Computer program
A computer program is a sequence of instructions written to perform a specified task with a computer. A computer requires programs to function, typically executing the program's instructions in a central processor. The program has an executable form that the computer can use directly to execute...

 that contains the obsolete code. The key problem comes from the fact that programmers will have a hard time differentiating between obsolete code which doesn't do anything and working code which does. For example, a programmer may be looking into a bug with the program's input handling system, so they search through the code looking for code that links into the input handling API. Obviously if the programmer comes across obsolete input handling code they may well start editing and debugging it, wasting valuable time before they realise that the code that they're working with is never executed and therefore not part of the problem they're trying to solve. Other problems include longer compile times and the risk that programmers may accidentally link working code into the defunct code, inadvertently resurrecting it. The correct solution for dealing with boat anchors in source code is to remove them from the code base and to place them in a separate location so that they can be referred to if necessary, but will not be compiled or be mistaken as "working" code. (For example deleting them, knowing they are stored in the projects's source control)

Amateur radio

In amateur radio
Amateur radio
Amateur radio is the use of designated radio frequency spectrum for purposes of private recreation, non-commercial exchange of messages, wireless experimentation, self-training, and emergency communication...

, a boat anchor is an old piece of radio
Radio
Radio is the transmission of signals through free space by modulation of electromagnetic waves with frequencies below those of visible light. Electromagnetic radiation travels by means of oscillating electromagnetic fields that pass through the air and the vacuum of space...

 equipment. In this case they may not be considered useless as there are many aficionados that appreciate vintage radio equipment
Vintage amateur radio
Vintage amateur radio is a subset of the amateur radio hobby, considered a form of nostalgia much like antique car collecting, where enthusiasts collect, restore, preserve, build, and operate amateur radio equipment from bygone years, most notably those using vacuum tube technology.Popular modes of...

. The term is thought to have been used by amateur radio operator
Amateur radio operator
An amateur radio operator is an individual who typically uses equipment at an amateur radio station to engage in two-way personal communications with other similar individuals on radio frequencies assigned to the amateur radio service. Amateur radio operators have been granted an amateur radio...

s long before computers were commonplace. The following are three theories
Theory
The English word theory was derived from a technical term in Ancient Greek philosophy. The word theoria, , meant "a looking at, viewing, beholding", and referring to contemplation or speculation, as opposed to action...

 on the origin
Etymology
Etymology is the study of the history of words, their origins, and how their form and meaning have changed over time.For languages with a long written history, etymologists make use of texts in these languages and texts about the languages to gather knowledge about how words were used during...

 of the term.
  • Version I: During World War II
    World War II
    World War II, or the Second World War , was a global conflict lasting from 1939 to 1945, involving most of the world's nations—including all of the great powers—eventually forming two opposing military alliances: the Allies and the Axis...

    , military radio technicians used the term boat anchor as they struggled with the very large, heavy, electronic equipment of the day; full of transformer
    Transformer
    A transformer is a device that transfers electrical energy from one circuit to another through inductively coupled conductors—the transformer's coils. A varying current in the first or primary winding creates a varying magnetic flux in the transformer's core and thus a varying magnetic field...

    s, vacuum tube
    Vacuum tube
    In electronics, a vacuum tube, electron tube , or thermionic valve , reduced to simply "tube" or "valve" in everyday parlance, is a device that relies on the flow of electric current through a vacuum...

    s, etc. Also, the US Navy frequently marked electronic gear with an anchor. After the war, much of the surplus equipment appeared on the market and kept the name boat anchor due to the previous reasons.

  • Version II: After WWII, a national magazine
    Magazine
    Magazines, periodicals, glossies or serials are publications, generally published on a regular schedule, containing a variety of articles. They are generally financed by advertising, by a purchase price, by pre-paid magazine subscriptions, or all three...

     editor was asked what to do with the outdated, heavy, large, surplus electronic equipment. He supposedly answered, "Tie a line to it and use it as a boat anchor."

  • Version III: A letter to the editor of CQ Radio Amateur Magazine appeared on page 16 of the October 1956 issue and was as follows: "Gentlemen: I recently acquired a Signal Corps Wireless Set No. 19
    Wireless Set No. 19
    The Wireless Set No. 19 was a Second World War mobile radio transceiver designed for the British Army to give armoured troops reliable communications.- Specifications :...

     MK II Transceiver
    Transceiver
    A transceiver is a device comprising both a transmitter and a receiver which are combined and share common circuitry or a single housing. When no circuitry is common between transmit and receive functions, the device is a transmitter-receiver. The term originated in the early 1920s...

    . Are there schematics or conversion data for this rig? Any info will be appreciated. --David J. Wilke W3LSG Pottstown, Pennsylvania
    Pottstown, Pennsylvania
    Pottstown is a borough in Montgomery County, Pennsylvania, United States northwest of Philadelphia and southeast of Reading, on the Schuylkill River. Pottstown was laid out in 1752–53 and named Pottsgrove in honor of its founder, John Potts. The old name was abandoned at the time of the...

    ." The editor replied: "The only conversion we seem to have on the files here at CQ calls for 100 feet of 1 inch Manila line, one end of which is to be tied securely around the MK II Transceiver. This then converts the unit into a fine anchor for a small boat. If any readers have better conversions we will be glad to hear about them. --Ed."


However, it wasn't until later when smaller, lighter gear became popular enough and the older gear was outdated enough that there was reason to categorize the older, heavier electronics as boat anchors.

See also

  • Anti-pattern
    Anti-pattern
    In software engineering, an anti-pattern is a pattern that may be commonly used but is ineffective and/or counterproductive in practice.The term was coined in 1995 by Andrew Koenig,...

  • Vintage amateur radio
    Vintage amateur radio
    Vintage amateur radio is a subset of the amateur radio hobby, considered a form of nostalgia much like antique car collecting, where enthusiasts collect, restore, preserve, build, and operate amateur radio equipment from bygone years, most notably those using vacuum tube technology.Popular modes of...

  • A/N URM-25D Signal Generator
    A/N URM-25D Signal Generator
    The AN/URM-25 Signal Generator was a device used during the 1950s and 1960s by the U.S. Military to test electronic equipment.-History:The AN/URM-25 were part of a series of vacuum tube-based signal generators built for the U.S...

    , Cold War-era boat anchor still in use today.

External links

The source of this article is wikipedia, the free encyclopedia.  The text of this article is licensed under the GFDL.
 
x
OK