Entries Tagged as ''

5 Lever Lock

5 Lever Lock is a type of lock often required for home insurance. There are various ‘grades’ but the current British Standard is usually required for insurance purposes.
The lever mechanism is really only seen in the UK and some parts of Scandinavia, and locks using this form of mechanism are frequently referred to as ‘Chubb Locks’ although there are a great many manufacturs.


The Lever

A flat non ferrous metal shaped double acting movable ‘detainer’ in a lock. Usually pivoted, but sometimes slide. The levers in a lock have to be moved by the key to operate the lock. The belly of the lever is cut away to various depths to provide different combinations. A lever will have pockets and gates through which the bolt stump moves during unlocking

BST

BST is a three-letter abbreviation that may refer to:

  • Bangladesh Standard Time
  • Barium strontium titanate
  • Bibliographic style file (.bst), used with BibTeX
  • Binary search tree, a data structure
  • Biochemical Society Transactions, the transactions journal of the Biochemical Society
  • Biochemical systems theory, a mathematical modelling framework for biochemical systems, based on ordinary differential equations
  • Bituminous Surface Treatment, a sealing coat for pavements
  • Blood, Sweat & Tears, a band
  • Bovine Somatotropin, a type of growth hormone
  • British Summer Time (”British Standard Time” between 1968 and 1971)
  • Bost Airport, in IATA airport code

Scirus

Scirus is a comprehensive science-specific search engine. Like Citeseer and Google Scholar, it is focused on scientific information. Unlike Citeseer, Scirus is not only for computer sciences and IT and not all of the results are free (as an example, some results could be in the PubMed journal or on any of the Elsevier journals thus, a subscription would be required to access the article).


See also

  • Academic databases and search engines
  • Impact factor


External links

  • Scirus homepage

Floyd Rose SpeedLoader

Floyd Rose SpeedLoader is a floating, double-locking, guitar bridge based on the Floyd Rose Original. It was in development since 1991 and was introduced to the public in 2003. It inherited the locking floating bridge principle from the original version, but improved usability and diminished most of disadvantages that the Floyd Rose Original was criticized for. The Floyd Rose SpeedLoader is available in both Tremolo and Fixed Bridge forms.


Differences from the Floyd Rose Original

The SpeedLoader bridges differ from the original 1977 bridges in that the procedure for changing strings has been made easier. The original string replacement procedure involved cutting the ball-end from a new guitar string, “locking” the freshly-cut end into the bridge using an Allen wrench, winding and rough tuning the string the using the machine head, locking the string at the nut (the second lock of the double-locking system), and finally tuning it utilizing the fine tuners. When old strings are replaced with new strings, the tension provided on the floating bridge becomes slightly different, meaning that adjusting the tuning of one string with its machine head will undoubtedly alter the tuning of the other strings. During the process of rough tuning a Floyd Rose equipped guitar, the locking nut is usually left unlocked throughout the entire string replacement procedure, which facilitates adjusting the tuning of all the strings using the machine heads.

However, the SpeedLoader bridge utilizes specially-manufactured strings. The strings are pre-cut to the perfect length (to sound at the right pitch when installed) and have special ends which snap into the bridge and nut. Once the replacement strings are in place, fine-tuning is performed in a fashion similar to the Floyd Rose Original bridge. The process for changing strings is simpler and faster; trained guitar technicians are able to change all 6 strings in under 30 seconds.

Consequently, guitars with Floyd Rose SpeedLoader bridges don’t need any machine heads at all. For example, Floyd Rose Redmond series guitars come with a purely decorative headstock - unlike, for example, the Steinberger instruments without any visible headstock.

As with any guitar, ambient temperature, humidity, and string wear can affect the tuning. If the fine tuners alone are not enough to tune guitar properly, the SpeedLoader bridge has range tuning screws, one for each string, that control the range of each fine tuner’s action.

Like the original Floyd Rose bridge, the SpeedLoader bridge is a truly “floating” bridge and has some of the same disadvantages associated with it. Often, to alleviate these disadvantages, Floyd Rose Original owners utilize a custom mechanism called a tremstopper that is able lock the floating tremolo fully (or partially) and make it behave like a fixed bridge. The Floyd Rose SpeedLoader Tremolo includes a built-in tremstopper.

Finally, according to multiple interviews, Floyd Rose Guitars would not license manufacturing of these bridges to third-party vendors, as previous experience with Floyd Rose Licensed bridges showed that such “licensed” bridges can’t match original standards of quality.


Advantages

  • All the advantages of Floyd Rose Original, including ability to bend notes both up and down, wide bending range and extremely stable string tuning.
  • Eliminates most of disadvantages of the original system, including long and tedious process of instrument restringing, balancing the tremolo, etc.
  • Built-in tremstopper.


Disadvantages

  • The most criticized disadvantage of new tremolo system is a requirement of special strings with bulleted ends. Strings should be precisely cut and should not stretch (so called “string float”) non-elastically much from original length with applied tension, changing the pitch. String should be perfectly elastic in the range of Floyd Rose action. All these requirements make string manufacturing harder than normal, thus, generally, prices for such strings tend to be higher. So far, only 2 major string manufacturers produce such special strings: Floyd Rose Guitars itself and Dean Markley. The other factor is string availability: it’s virtually impossible to find such strings on sale in some regions, and prices for such rare imported goods may go up to 400-500%. Finally, if speedloader string breaks, it must be replaced completely - one cannot just shift and re-use the rest of string length as is sometimes possible do with other bridges.
  • Price. As of 2005, Floyd Rose SpeedLoader bridges are approximately $40-50 (or about 20-30%) more expensive than Floyd Rose bridges - though, this difference should gradually diminish over next several years.
  • As of 2005, no low-profile and left-handed versions of SpeedLoader bridges exist, though they are announced to be available later.

Rollback (data management)

In database technologies, a rollback is an operation which returns the database to some previous state. Rollbacks are important for database integrity, because they mean that the database can be restored to a clean copy even after erroneous operations are performed. They are crucial for recovering from database server crashes; by rolling back any transaction which was active at the time of the crash, the database is restored to a consistent state.

In SQL, ROLLBACK is a command that causes all data changes since the last BEGIN WORK, or START TRANSACTION to be discarded by the relational database management system (RDBMS), so that the state of the data is “rolled back” to the way it was before those changes were made.

A ROLLBACK statement will also release any existing savepoints that may be in use.

In most SQL dialects, ROLLBACKs are connection specific. This means that if two connections are made to the same database, a ROLLBACK made in one connection will not affect any other connections. This is vital for proper concurrency.

The rollback feature is usually implemented with a transaction log, but can also be implemented via multiversion concurrency control.

A cascading rollback occurs in database systems when a transaction (T1) causes a failure and a rollback must be performed. Other transactions dependent on T1’s actions must also be rolled back due to T1’s failure, thus causing a cascading effect.


References


See also

  • Savepoint
  • Commit

Conservative two-phase locking

In computer science, conservative two-phase locking (C2PL) is a locking method used in DBMS and relational databases.

Conservative 2PL prevents deadlocks.

The difference between 2PL and C2PL is that C2PL’s transactions obtain all the locks they need before the transactions begin. This is to ensure that a transaction that already holds some locks will not block waiting for other locks.

In heavy lock contention, C2PL reduces the time locks are held on average, relative to 2PL and Strict 2PL, because transactions that hold locks are never blocked.

In light lock contention, C2PL holds more locks than is necessary, because it is hard to tell what locks will be needed in the future, thus leads to higher overhead.

Also, a transaction will not even obtain any locks if it cannot obtain all the locks it needs in its initial request. Furthermore, each transaction needs to declare its read and write set (data items to be read/written during transaction), which is not always possible. Because of these limitations, C2PL is not used very frequently.

TMX

TMX can refer to any of the following:

  • TMX Xtra, a digital cable television channel companion to The Movie Channel
  • The NYSE ticker symbol for Telmex
  • The code on Kodak T-Max 100 negatives
  • The Translation Memory eXchange, a standard for translation memory
  • The station code for the Timmapur railways station in India
  • The Transaction Management eXecutive, NCR’s old proprietary operating system running on 5000 series Tower systems
  • TMX (software) - a keyword-based testing front-end from Critical Logic Inc.
  • Tickle Me Elmo Extreme, a Sesame Street themed product, said to revolutionize the stuffed-toy industry.
  • The Transaction Management eXecutive, PBS’s VMS-based transaction processing monitor
  • TMX (standard): Translation Memory eXchange format.
  • Toronto Music Expo, former name of Music & Home Entertainment Show.

Turbidometry

Turbidometry (the name being derived from turbidity) is the process of measuring the amount of light that a solution absorbs. Light is passed through a filter creating a light of known wavelength which is then passed through a cuvette containing a solution. A photoelectric cell collects the light which passes through the cuvette. A measurement is then given for the amount of absorbed light.

It can be used in biology to find the number of cells in a solution.


See also

  • colorimetry.

Suspect classification

In United States Supreme Court jurisprudence, Suspect classification is a classification of groups which meet a series of criteria suggesting they are likely the subject of discrimination.

In the process of making laws, legislatures sometimes establish classifications that give one group an advantage over another. For instance, in the United States those under the age of 21 are not allowed to purchase alcohol. This rule shows preference to the group of individuals who are 21 and older.

Certain laws which advantage one group over the other can be contentious and may eventually be appealed to a high court.

Strict or intermediate scrutiny is applied to regulations which affect groups that fall under a “suspect classification”. Rational basis scrutiny is applied to non-suspect classifications.

To be considered a suspect classification in the U.S. a group must meet all of the following criteria:

1. The groups’ characteristics are immutable. (Race, national origin)

2. The group shares a history of discrimination.

3. The group is politically impotent.

4. The group is a discrete and insular minority. (see U.S. v. Carolene Products)

Suspect classifications which discriminate on the basis of race or national origin are typically analyzed under strict scrutiny. Gender classifications receive heightened or intermediate scrutiny.

Deadbolt

A deadbolt is a special kind of locking mechanism, providing more security than an ordinary key-operated lock because the weight of the locking bar is usually sufficient to increase break-in time to 10 or 15 minutes.

Unlike most spring-bolt locks, in which the bolt is held in place only by the pressure of a spring and can easily be retracted, a deadbolt lock cannot be opened except by rotating the lock cylinder.

A variant of the standard deadbolt is the vertical deadbolt, which generally rests on top of a door. Vertical deadbolts resist jimmying (in which an intruder inserts a pry bar between the door and the frame and tries to pry the bolt out of the jamb).


Common Types

  • Single Cylinder
  • Double Cylinder
  • Single Cylinder with removable thumbturn


Security Features

Many designs are available from manufacturers. Various manufacturers have patented designs offering unique solutions to prevent the locks from being defeated by picking, lock bumping prying, and other forceful attacks.


See also

  • Door security
  • Lock bumping


External links

  • Locking up tight with a deadbolt

Hatherton Canal

The Hatherton Canal is a derelict branch of the Staffordshire and Worcestershire Canal in south Staffordshire, England.

When it was built it ran 4 miles (6 km) through eight locks from Hatherton Junction on the Staffordshire and Worcestershire Canal to Churchbridge Junction on the Churchbridge Branch (a short branch with thirteen locks) of the Cannock Extension Canal (a branch of the Wyrley and Essington Canal). It was completed in 1860. Subsidence due to mining caused its closure in 1955.

The canal is now part of an active restoration project. However, due to building on the cut, the current plans call for the canal to deviate from the original route in places. This includes new tunnels under the A5 road and a cluvert, already in place, over the M6 Toll motorway.


See also

  • Canals of Great Britain
  • History of the British canal system


External links

Strebor

Strebor Diecasting (the name comes from Roberts spelled backwards) was a die-casting company in Radcliffe, Lancashire who achieved widespread notice as makers of cylinder locks and locking devices for the motor trade during the 1960s and 1970s under the STREBOR and STRONIS trade names. Their locks were to be found on British cars such as the Mini. The company was founded around 1930, and finally dissolved in 2003/2004 following a period of rundown and some industrial relations problems.


External Links

  • This Is Lancashire
  • Local History- List of Lock Makers

Qtel

Qtel (short for Qatar Telecom) is the exclusive telecommunications provider in Qatar and is one of the largest public companies in Qatar with about 2000 employees. It was successfully launched on the Doha Securities Market in 1998 and listed on the London Stock Exchange in 1999, the Bahrain Stock Exchange in 2001 and the Abu Dhabi Securities Market in 2002. Qtel is a winner of the 2005 Gulf Excellence Award and the 2006 Economic Award.

Qtel also provides mobile telephone services in Oman via Nawras, a joint venture with TDC and Omani partners. Qtel is the prestige partner of, and official telecommunications provider to, the 15th Asian Games Doha 2006.

In October 2006 Qtel and Korea Telecom signed a memorandum of understanding toward the two telecommunications providers working together in Qatar on infrastructure construction and IT solution delivery for what has been coined ‘Ubiquitous Cities’ (U-City).

In November 2006 Qtel announced an agreement to acquire a strategic stake in NavLink, a leading provider of managed data services to businesses in the Middle East. Qtel will hold an equity stake (38.2%) in the business, joining AT&T Inc.

In November 2006, The Emir issued Law No 34 of 2006 restructuring the administration of information and communication systems in Qatar and lifting Qtel’s monopoly; ictQATAR was announced as the new telecoms regulator.


Mission Statement

To be among the top 20 Telecommunication Companies in the world by 2020.


Services

Qtel provides a range of telecommunications products including national and international, Wireline and mobile telephony. It also offers Internet and Data services, ADSL, Wi-Fi and Cable TV services. It provides fully commercial, MPLS (Multi Protocol Label Switching) based Global IPVN.
Qtel runs and manages the Qatar Data Centre that hosts AT&T’s first global node (AGN) in the Middle East.

VOiP users may want to be aware that Qtel has blocked VoiP services in the past, and that Skype’s website has been blocked from casual use in the past. In addition, Qtel uses content-control software to filter out websites they deem inappropriate to Qatari interests and morality, which include among others BoingBoingBoingBoing banned in UAE, Qatar, elsewhere and Taipei Perl Mongers.


New Technologies

Qtel introduced DVB-H service to the Middle East, delivering real-time “Mobile TV broadcast” that captures up to 13 channels like Al-Jazeera, CNN and CNBC through mobile handsets.
It also introduced 3G mobile Internet & video calling, as well as the Triple Play. And during the Doha 2006 Games Qtel launched the Asian games mobile portal, bringing entertainment and information services related to the Asian games event.

Qtel has also implemented TETRA, Terrestrial Trunked Radio, which is a professional mobile radio system for small to large industrial entities and organizations. The service is used in sectors such as governmental, oil and gas, mining, sports events, police, defense, security, safety, paramedic, rescue and the private sector.


Vandalism controversy

After a series of acts of Wikipedia vandalism and spam in December 2006, the IP address of Qtel’s proxy server, 82.148.97.169, was blocked from making anonymous edits. At the time of the block, the address was not marked as a shared address. This affected nearly an entire nation of Internet users, including those from news organization Al-Jazeera. Account creation was also initially blocked, but this condition relaxed several hours later after the ban was widely reported across technology sites.Wikipedia Qatar ban ‘temporary’, BBC News, January 2, 2007.


References


External links


Official Site

  • Qtel

IEEE Transactions on Information Theory

The IEEE Transactions on Information Theory is a scientific journal published by the Institute of Electrical and Electronic Engineers (IEEE). It is dedicated to the study of information theory, the mathematics of
communications.

This journal contains original published research in the areas of Shannon theory, error control coding, communications theory, estimation theory, quantum communications and quantum information, communication networks, statistical inference, cryptography and other related topics.

A 2006 study using the PageRank network analysis algorithm found that, among hundreds of computer science-related journals, IEEE Transactions on Information Theory had the highest ranking and was thus deemed the most prestigious. ACM Computing Surveys, with the highest impact factor, was deemed the most popular.Bollen, Johan, Marko Rodriguez and Herbert Van de Sompel. Journal Status. [http://www.springerlink.com/content/m8188kq73w821070/
Scientometrics], vol. 69, no. 3, December 2006.

As of 2007, IEEE Transactions on Information Theory supports posting preprints on arXiv for faster dissemination.http://www.itsoc.org/author/arxiv-faq.html


References


Other External Links

  • the IEEE Information Theory Society

Niobrarasaurus

Niobrarasaurus (meaning “Niobrara lizard”) was a genus of dinosaur which lived during Cretaceous. Its fossils were found in the Smoky Hill Chalk Member of the Niobrara Formation, in western Kansas, which would have been near the middle of Western Interior Sea during the Late Cretaceous. It was a nodosaur, an ankylosaur without a club tail. It was closely related to Polacanthus and Nodosaurus.

The type species, Niobrarasaurus coleii, was discovered and collected in 1930 by a geologist named Virgil Cole. It was originally described by Mehl in 1936 and named Hierosaurus coleii. It was then re-described as a new genus by Carpenter et al. in 1995. In 2002 the type specimen was transferred to the Sternberg Museum of Natural History, Hays, Kansas.

References:

Carpenter, K., D. Dilkes, and D. B. Weishampel. 1995. The dinosaurs of the Niobrara Chalk Formation (upper Cretaceous, Kansas), Journal of Vertebrate Paleontology 15(2): 275-297.

Carpenter, K. and Everhart, M. J. 2007. Skull of the ankylosaur Niobrarasaurus coleii (Ankylosauria: Nodosauridae) from the Smoky Hill Chalk (Coniacian) of western Kansas. Kansas Academy of Science, Transactions, 110(1/2): 1-9

Cole, V. B. 2007. Field notes regarding the 1930 discovery of the type specimen of Niobrarasaurus coleii, Gove County, Kansas. Kansas Academy of Science, Transactions 110(1/2): 132-134.

Everhart, M. J. 2004. Notice of the transfer of the holotype specimen of Niobrarasaurus coleii (Ankylosauria; Nodosauridae) to the Sternberg Museum of Natural History. Kansas Academy of Science, Transactions 107(3-4): 173-174.

Everhart, M. J. and S. A. Hamm. 2005. A new nodosaur specimen (Dinosauria: Nodosauridae) from the Smoky Hill Chalk (Upper Cretaceous) of western Kansas. Kansas Academy of Science, Transactions 108(1/2): 15-21.

Liggett, G. A. 2005. A review of the dinosaurs from Kansas. Kansas Academy of Science. Transactions 108(1/2): 1-14.

Mehl, M. G. 1931. Aquatic dinosaur from the Niobrara of western Kansas. Bulletin of the Geological Society of America 42: 326-327.

Mehl, M. G. 1936. Hierosaurus coleii: a new aquatic dinosaur from the Niobrara Cretaceous of Kansas. Denison University Bulletin, Journal of the Scientific Laboratory 31: 1-20, 3 pls.

WEB LINK TO OCEANS OF KANSAS - Niobrarasaurus coleii page [1]

Enfield Falls Canal

Enfield Falls Canal is a canal that was built to circumvent the shallows at Enfield Falls on the Connecticut River. It is situated along the west side of the river, adjacent to the towns Suffield and Windsor Locks of Hartford County in the state of Connecticut, USA. Windsor Locks is named after the series of locks on the canal.

Prior to the opening of the canal, the scows or flat-bottomed boats which plied the Connecticut River could only carry some 10 or 12 tons over the falls, and any additional freight had to be offloaded and carried around the falls by ox teams. The boats then had to be poled through the rapids, requiring large teams of men to do this.

Construction of the canal commenced in 1824 and it was opened on November 11 1829. The canal was 5¼ miles (8.5 km) long and had a vertical drop of 32 ft (9.75 m). The locks admitted craft up to 90 ft (27 m) long and 20 ft (6 m) wide.

Once the canal was opened, boats were able to carry much larger loads, and steamboat services were introduced. However by 1844 the Hartford and Springfield Railroad had started operation, and navigation on the Connecticut River gradually reduced. However the canal obtained a new lease of life as a supplier of water power.

Today the canal is closed to navigation, but mostly still in water and used industrially. Most of the towpath is open for hiking and cycling. The canal is listed in the National Register of Historic Places.


References

  • Connecticut Heritage (Dorothy A. DeBisschop). The Canal at Windsor Locks. Retrieved January 20 2006.
  • American Canal Society (2004). Enfield Falls Canal. Retrieved January 20 2006.

Conservative two-phase locking

In computer science, conservative two-phase locking (C2PL) is a locking method used in DBMS and relational databases.

Conservative 2PL prevents deadlocks.

The difference between 2PL and C2PL is that C2PL’s transactions obtain all the locks they need before the transactions begin. This is to ensure that a transaction that already holds some locks will not block waiting for other locks.

In heavy lock contention, C2PL reduces the time locks are held on average, relative to 2PL and Strict 2PL, because transactions that hold locks are never blocked.

In light lock contention, C2PL holds more locks than is necessary, because it is hard to tell what locks will be needed in the future, thus leads to higher overhead.

Also, a transaction will not even obtain any locks if it cannot obtain all the locks it needs in its initial request. Furthermore, each transaction needs to declare its read and write set (data items to be read/written during transaction), which is not always possible. Because of these limitations, C2PL is not used very frequently.

Coffin lock

Coffin Lock is a slang term for a blind panel connector (also called a Butt-Joint Fastener) often used in performing arts to join together stage decks or scenery in a butt joint or cabinet and lid locks on road cases. These are typically two part connectors (male and female) that draw together and lock. The two most common types are the cam and acceptor (sold under the trade name “Roto-Lock”) and more traditional hook and pin version. These devices generally use an Allen key to operate the locking mechanism via a small diameter hole either through the face or rear of the panel. When locked, the considerable mechanical advantage offered by the cam or hook holds the panels tightly together. Coffin locks can be installed directly into a mortise cut into each panel, for total concealment except for the locking hole, or mounted to the rear of the panels.

Guillotine lock

A guillotine lock is a type of canal lock. The lock itself operates on the same principle as any normal pound lock, but is unusual in that each gate is a single piece, usually of steel, that slides vertically upwards when opened to allow a boat to traverse underneath. The resemblance to the French guillotine is obvious.

Guillotine locks are relatively uncommon, but many are found on the waterways of East Anglia. The advantages over the more traditional design are that the lock occupies less space, does not require room to swing open, and is quicker to fabricate and install. It also acts as a tidal lock, able to hold back water whichever side is higher, and can function as a stop lock (for example, Lifford Lane stop lock near Kings Norton Junction). It is mechanically more complex, however, requiring the use of a gantry and overhead lifting gear.


References

Transaction authentication number

A transaction authentication number, or TAN, is used by some online banking services as a form of single use passwords to authorize financial transactions. TANs are a second layer of security above and beyond the traditional single-password authentication.

An outline of how TANs function:

  1. The bank creates a set of unique TANs for the user. Typically, there are 50 TANs printed on a list, each 8 characters long, which is enough to last half a year for a normal user.
  2. The user picks up the list from the nearest bank branch. The user must typically identify him/herself through presenting a passport, an ID card or similar document.
  3. A few days later, the user receives a 5 digit password by mail to the user’s home address. The user is requested to memorise the password, destroy the notice and keep the TAN list in a safe place near the PC.
  4. To log on to his/her account, the user must enter user name and password. This may give access to account information but the ability to process transactions is disabled.
  5. To perform a transaction, the user enters the request and “signs” the transaction by entering an unused TAN. The bank verifies the TAN submitted against the list of TANs they issued to the user. If it is a match, the transaction is processed. If it is not a match, the transaction is rejected.
  6. The TAN has now been consumed and will not be recognized for any further transactions.
  7. If the TAN list is compromised, the user may cancel it by notifying the bank.

In the Netherlands customers of the Postbank can get the TAN codes sent by SMS. The advantage is that users only get a TAN code when they are initiating a (real) transaction. Several banks use TAN codes sent by SMS in Hungary.

TANs are believed to provide additional security because they act as a form of two-factor authentication. Should the physical document containing the TANs be stolen, it will be of little use without the password; conversely, if the login data are obtained, no transactions can be performed without a valid TAN.

Should the client system become compromised by some form of malware that enables a malicious user to obtain both the login data and a TAN number (in some systems, a TAN is usable for some minutes after the initial insertion), the possibility of an unauthorized transaction is high. It should be noticed that the remaining TANs remain uncompromised and can be used safely, even though action should be taken by the user as soon as possible.

Recent research has shown that slightly over half of all identity theft is committed by an insider, often a family member. An insider would, of course, have greater access and opportunity to gain simultaneous access to both the TAN list and to the user’s password. While an improvement over simple single-password methods, it is important to keep in mind that a system’s security strength depends on multiple factors.

TMX

TMX can refer to any of the following:

  • TMX Xtra, a digital cable television channel companion to The Movie Channel
  • The NYSE ticker symbol for Telmex
  • The code on Kodak T-Max 100 negatives
  • The Translation Memory eXchange, a standard for translation memory
  • The station code for the Timmapur railways station in India
  • The Transaction Management eXecutive, NCR’s old proprietary operating system running on 5000 series Tower systems
  • TMX (software) - a keyword-based testing front-end from Critical Logic Inc.
  • Tickle Me Elmo Extreme, a Sesame Street themed product, said to revolutionize the stuffed-toy industry.
  • The Transaction Management eXecutive, PBS’s VMS-based transaction processing monitor
  • TMX (standard): Translation Memory eXchange format.
  • Toronto Music Expo, former name of Music & Home Entertainment Show.

Network model

The network model is a database model conceived as a flexible way of representing objects and their relationships. Its original inventor was Charles Bachman, and it was developed into a standard specification published in 1969 by the CODASYL Consortium. Where the hierarchical model structures data as a tree of records, with each record having one parent record and many children, the network model allows each record to have multiple parent and child records, forming a lattice structure.

The chief argument in favour of the network model, in comparison to the hierarchic model, was that it allowed a more natural modeling of relationships between entities. Although the model was widely implemented and used, it failed to become dominant for two main reasons. Firstly, IBM chose to stick to the hierarchical model with semi-network extensions in their established products such as IMS and DL/I. Secondly, it was eventually displaced by the relational model, which offered a higher-level, more declarative interface. Until the early 1980s the performance benefits of the low-level navigational interfaces offered by hierarchical and network databases were persuasive for many large-scale applications, but as hardware became faster, the extra productivity and flexibility of the relational model replaced the network model in corporate enterprise usage.


History

In 1969, the Conference on Data Systems Languages (CODASYL) established the first specification of the network database model. This was followed by a second publication in 1971, which became the basis for most implementations. Subsequent work continued into the early 1980s, culminating in an ISO specification, but this had little influence on products.


Some Well-known Network Databases

  • TurboIMAGE
  • IDMS


See also

  • CODASYL
  • Navigational database
  • Semantic Web


References

  • Charles W. Bachman, The Programmer as Navigator. ACM Turing Award lecture, Communications of the ACM, Volume 16, Issue 11, 1973, pp. 653-658, ,


External links

  • Network (CODASYL) Data Model

Set-off

The term set-off can refer to the following:

  • In law, set-off is the reduction of a claim by deducting the amount of a valid countervailing claim
  • In architecture, set-off is given to the horizontal line shown on a floorplan indicating a reduced wall thickness, and consequently the part of the thicker portion appears projecting before the thinner.
  • In printing, set-off is the name given to ink passing from one printed sheet to another because the ink has not had the chance to dry, which causes the sheets of paper to stick together.

Lock of hair

A lock of hair is a piece or pieces of hair that has been cut from, or remains singly on, a human head, most commonly bunched or tied together in some way.

Locks of hair carry symbolic value and have been utilized throughout history in various religious, superstitions, and sentimental roles.

  • A primitive belief maintains that owning a lock of hair from another’s head gives one power over that individual, in the same manner that owning a piece of clothing or image of an individual grants the owner such powers.
  • During antiquity, girls who were about to be married offered locks of hair to the forest god Virbius (Virbio).
  • An ancient and worldwide (eg. China, Egypt, Thailand, Albania, Ukraine, India, Israel, etc) pre-adolescent custom was to shave children’s heads but leave a lock of hair (sometimes several locks) remaining on their heads. Upon reaching adulthood the lock of hair was usually cut off (see rites of passage).
  • The scalp lock was a lock of hair kept throughout a man’s life. Like the childhood locks mentioned above, the scalp lock was also a worldwide phenomenon, particularly noted amongst eastern woodland Indians (see Iroquois, Huron, Mahican, Mohawk) in north America (see also scalping and mohawk hairstyle).

Sviatoslav I of Kiev was reported to have worn a scalp lock by Leo the Deacon, a Byzantine historian . Later Ukrainian Cossacks (Zaporozhians) sported scalp locks called oseledets or khokhol. In India this custom remains active but usually only amongst orthodox Hindus. See sikha.

In Mark Twain’s travel book ‘The Innocents Abroad’, he describes Moroccan men sporting scalp locks.

  • A common superstition holds that a lock of hair from a baby’s first haircut should be kept for good luck. An old Irish superstition holds that it is unlucky to accept a lock of hair (or a four-footed beast) from a lover.
  • A lock of Beethoven’s hair, cut from his head in 1827, was auctioned in 1994 through Sotheby’s of London.[1] Research on the hair determined that the composer’s life-long illness was caused by lead poisoning.


Sources

  • The Innocents Abroad by Mark Twain - Signet Classic, ISBN 1-85532-848-8
  • Armies of Medieval Russia 750-1250 by David Nicolle - Osprey Publishing, ISBN 0-451-52502-7
  • Daily Life in Ancient India From 200 BC to 700 AD by Jeannine Auboyer - Phoenix Press, ISBN 1-84212-591-5
  • The Cossacks by John Ure - The Overlook Press, ISBN 1-58567-138-x
  • Ancient Egyptian Hairstyles
  • Ukrainian Cossack Display Group
  • Common Superstitions
  • Ancient Legends, Mystic Charms, and Superstitions of Ireland


see also

  • Dreadlocks, commonly called locks or dreads.

Anticausal system

An anticausal system is a hypothetical system with outputs and internal states that depend solely on future input values. Some textbooks and published research literature might define an anticausal system to be one that does not depend on past input values (i.e. its outputs and internal states depend only on future and possibly present input values).

An acausal system is a system that is not a causal system, that is one that depends on some future input values and possibly on some input values from the past or present. This is in contrast to a causal system which depends only on current and/or past input values. This is often a topic of control theory and digital signal processing (DSP).

Anticausal systems are also acausal, but the converse is not always true. An acausal system that has any dependence on past input values is not anticausal.

An example of acausal signal processing is the production of an output signal that is processed from another input signal that is recorded by looking at input values both forward and backward in time from a predefined time arbitrarily denoted as the “present” time. (In reality, that “present” time input, as well as the “future” time input values, have been recorded at some time in the past, but conceptually it can be called the “present” or “future” input values in this acausal process.) This type of processing cannot be done in realtime as future input values are not yet known, but is done after the input signal has been recorded and is post-processed.


See also

  • Anti-causal filter

Deadbolt

A deadbolt is a special kind of locking mechanism, providing more security than an ordinary key-operated lock because the weight of the locking bar is usually sufficient to increase break-in time to 10 or 15 minutes.

Unlike most spring-bolt locks, in which the bolt is held in place only by the pressure of a spring and can easily be retracted, a deadbolt lock cannot be opened except by rotating the lock cylinder.

A variant of the standard deadbolt is the vertical deadbolt, which generally rests on top of a door. Vertical deadbolts resist jimmying (in which an intruder inserts a pry bar between the door and the frame and tries to pry the bolt out of the jamb).


Common Types

  • Single Cylinder
  • Double Cylinder
  • Single Cylinder with removable thumbturn


Security Features

Many designs are available from manufacturers. Various manufacturers have patented designs offering unique solutions to prevent the locks from being defeated by picking, lock bumping prying, and other forceful attacks.


See also

  • Door security
  • Lock bumping


External links

  • Locking up tight with a deadbolt

Conservative two-phase locking

In computer science, conservative two-phase locking (C2PL) is a locking method used in DBMS and relational databases.

Conservative 2PL prevents deadlocks.

The difference between 2PL and C2PL is that C2PL’s transactions obtain all the locks they need before the transactions begin. This is to ensure that a transaction that already holds some locks will not block waiting for other locks.

In heavy lock contention, C2PL reduces the time locks are held on average, relative to 2PL and Strict 2PL, because transactions that hold locks are never blocked.

In light lock contention, C2PL holds more locks than is necessary, because it is hard to tell what locks will be needed in the future, thus leads to higher overhead.

Also, a transaction will not even obtain any locks if it cannot obtain all the locks it needs in its initial request. Furthermore, each transaction needs to declare its read and write set (data items to be read/written during transaction), which is not always possible. Because of these limitations, C2PL is not used very frequently.

Rasch model

Rasch models are used for analysing data from assessments to measure things such as abilities, attitudes, and personality traits. For example, they may be used to estimate a student’s reading ability from answers to questions on a reading assessment, or the extremity of a person’s attitude to capital punishment from responses on a questionnaire.

Rasch models are particularly used in psychometrics, the field concerned with the theory and technique of psychological and educational measurement. In addition, they are increasingly being used in other areas, including the health profession and market research because of their general applicability.

The mathematical theory underlying Rasch models is in some respects the same as item response theory. However, Rasch models have a specific measurement property that provides a criterion for successful measurement. This formal property distinguishes Rasch models from other models used to model people’s responses to items or questions. Application of the models provides diagnostic information regarding how well the criterion is met. Application of the models also provides information about how well items or questions on assessments work to measure the ability or trait.


Overview


The Rasch model for measurement

In the Rasch model, the probability of a specified response (e.g. right/wrong answer) is modelled as a function of person and item parameters. Specifically, in the simple Rasch model, the probability of a correct response is modelled as a logistic function of the difference between the person and item parameter. The mathematical form of the model is provided later in this article. In most contexts, the parameters of the model pertain to the level of a quantitative trait possessed by a person or item. For example, in educational tests, item parameters pertain to the difficulty of items while person parameters pertain to the ability or attainment level of people who are assessed. The higher a person’s ability relative to the difficulty of an item, the higher the probability of a correct response on that item. When a person’s location on the latent trait is equal to the difficulty of the item, there is by definition a 0.5 probability of a correct response in the Rasch model.

The purpose of applying the model is to obtain measurements from categorical response data. Estimation methods are used to obtain estimates from matrices of response data based on the model.

The Rasch model is a model in the sense that it represents the structure which data should exhibit in order to obtain measurements from the data; i.e. it provides a criterion for successful measurement. It is therefore a model in the sense of an ideal or standard. The perspective or paradigm underpinning the Rasch model is distinctly different from the perspective underpinning statistical modelling. Models are most often used with the intention of describing a set of data. Parameters are modified and accepted or rejected based on how well they fit the data. In contrast, when the Rasch model is employed, the objective is to obtain data which fit the model (Andrich, 2004). The rationale for this perspective is that the Rasch model embodies requirements which must be met in order to obtain measurement, in the sense that measurement is generally understood in the physical sciences.

A useful analogy for understanding this rationale is to consider objects measured on a weighing scale. Suppose the weight of an object A is measured as being substantially greater than the weight of an object B on one occasion, then immediately afterward the weight of object B is measured as being substantially greater than the weight of object A. A property we require of measurements is that the resulting comparison between objects should be the same, or invariant, irrespective of other factors. This key requirement is embodied within the formal structure of the Rasch model. Consequently, the Rasch model is not altered to suit data. Instead, the method of assessment should be changed so that this requirement is met, in the same way that a weighing scale should be rectified if it gives different comparisons between objects upon separate measurements of the objects.

Data analysed using the model are usually responses to conventional items on tests, such as educational tests with right/wrong answers. However, the model is a general one, and can be applied wherever discrete data are obtained with the intention of measuring a quantitative attribute or trait.


Scaling

When all test-takers have an opportunity to attempt all items on a single test, each total score on the test maps to a unique estimate of ability and the greater the total, the greater the ability estimate. Total scores do not have a linear relationship with ability estimates. Rather, the relationship is non-linear as shown in Figure 1. The total score is shown on the vertical axis, while the corresponding person location estimate is shown on the horizontal axis. For the particular test on which the test characteristic curve (TCC) shown in Figure 1 is based, the relationship is approximately linear throughout the range of total scores from about 10 to 33. The shape of the TCC is generally somewhat ogival as in this example. However, the precise relationship between total scores and person location estimates depends on the distribution of items on the test. The TCC is steeper in ranges on the continuum in which there are a number of items, such as in the range on either side of 0 in Figures 1 and 2.

In applying the Rasch model, item locations are often scaled first, based on methods such as those described below. This part of the process of scaling is often referred to as item calibration. In educational tests, the smaller the proportion of correct responses, the higher the difficulty of an item and hence the higher the item’s scale location. Once item locations are scaled, the person locations are measured on the scale. As a result, person and item locations are estimated on a single scale as shown in Figure 2.


Interpreting scale locations

For dichotomous data such as right/wrong answers, by definition, the location of an item on a scale corresponds with the person location at which there is a 0.5 probability of success. In general, the probability of a person responding correctly to a question with difficulty lower than that person’s location is greater than 0.5, while the probability of responding correctly to a question with difficulty greater than the person’s location is less than 0.5. When responses of a person are listed according to item difficulty, from lowest to highest, the most likely pattern is a Guttman pattern or vector; i.e. {1,1,…,1,0,0,0,…,0}. However, while this pattern is the most probable given the structure of the Rasch model, the model requires only probabilistic Guttman response patterns; that is, patterns which tend toward the Guttman pattern. It is unusual for responses to conform strictly to the pattern because there are many possible patterns. It is unnecessary for responses to conform strictly to the pattern in order for data to fit the Rasch model.

Each ability estimate has an associated standard error of measurement, which quantifies the degree of uncertainty associated with the ability estimate. Item estimates also have standard errors. Generally, the standard errors of item estimates are considerably smaller than the standard errors of person estimates because there are usually more response data for an item than for a person. That is, the number of people attempting a given item is usually greater than the number of items attempted by a given person. Standard errors of person estimates are smaller where the slope of the TCC is steeper, which is generally through the middle range of scores on a test. Thus, there is greater precision in this range since the steeper the slope, the greater the distinction between any two point on the line.

Statistical and graphical tests are used to evaluate the correspondence of data with the model. Certain tests are global, while others focus on specific items or people. Certain tests of fit provide information which can be used to increase the reliability of a test by omitting or correcting problems with poor items. In modern test theory, the person separation index is used instead of reliability indices. However, the person separation index is analogous to a reliability index. The separation index is a summary of the genuine separation as a ratio to separation including measurement error. As mentioned earlier, the level of measurement error is not uniform across the range of a test, but is generally larger for more extreme scores (low and high).


Features of the Rasch model

The class of models is named after Georg Rasch, a Danish mathematician and statistician who advanced the epistemological case for the models based on their congruence with a core requirement of measurement in physics; namely the requirement of invariant comparison. This is the defining feature of the class of models, as is elaborated upon in the following section. The Rasch model for dichotomous data has a close conceptual relationship to the law of comparative judgment (LCJ), a model formulated and used extensively by L. L. Thurstone (cf Andrich, 1978b), and therefore also to the Thurstone scale.

Prior to introducing the measurement model he is best known for, Rasch had applied the Poisson distribution to reading data as a measurement model, hypothesizing that in the relevant empirical context, the number of errors made by a given individual was governed by the ratio of the text difficulty to the person’s reading ability. Rasch referred to this model as the multiplicative Poisson model. Rasch’s model for dichotomous data - i.e. where responses are classifiable into two categories - is his most widely known and used model, and is the main focus here. This model has the form of a simple logistic function.

The brief outline above highlights certain distinctive and interrelated features of Rasch’s perspective on social measurement, which are as follows:

  1. He was concerned principally with the measurement of individuals, rather than with distributions among populations.
  2. He was concerned with establishing a basis for meeting a priori requirements for measurement deduced from physics and, consequently, did not invoke any assumptions about the distribution of levels of a trait in a population.
  3. Rasch’s approach explicitly recognizes that it is a scientific hypothesis that a given trait is both quantitative and measurable, as operationalized in a particular experimental context.

Thus, congruent with the perspective articulated by Thomas Kuhn in his 1961 paper The function of measurement in modern physical science, measurement was regarded both as being founded in theory, and as being instrumental to detecting quantitative anomalies incongruent with hypotheses related to a broader theoretical framework. This perspective is in contrast to that generally prevailing in the social sciences, in which data such as test scores are directly treated as measurements without requiring a theoretical foundation for measurement. Although this contrast exists, Rasch’s perspective is actually complementary to the use of statistical analysis or modelling that requires interval-level measurements, because the purpose of applying the Rasch model is to obtain such measurements. Applications of the Rasch model are described in Sivakumar, Durtis & Hungi (2005).


Invariant comparison and sufficiency

The Rasch model for dichotomous data is often regarded as an item response theory (IRT) model with one item parameter. However, rather than being a particular IRT model, proponents of the model regard it as a model that possesses a property which distinguishes it from IRT models. Specifically, the defining property of Rasch models is their formal or mathematical embodiment of the principle of invariant comparison. Rasch summarised the principle of invariant comparison as follows:

The comparison between two stimuli should be independent of which particular individuals were instrumental for the comparison; and it should also be independent of which other stimuli within the considered class were or might also have been compared.
Symmetrically, a comparison between two individuals should be independent of which particular stimuli within the class considered were instrumental for the comparison; and it should also be independent of which other individuals were also compared, on the same or some other occasion (Rasch, 1961, p. 332).

Rasch models embody this principle due to the fact that their formal structure permits algebraic separation of the person and item parameters, in the sense that the person parameter can be eliminated during the process of statistical estimation of item parameters. This result is achieved through the use of conditional maximum likelihood estimation, in which the response space is partitioned according to person total scores. The consequence is that the raw score for an item or person is the sufficient statistic for the item or person parameter. That is to say, the person total score contains all information available within the specified context about the individual, and the item total score contains all information with respect to item, with regard to the relevant latent trait. The Rasch model requires a specific structure in the response data, namely a probabilistic Guttman structure.

In somewhat more familiar terms, Rasch models provide a basis and justification for obtaining person locations on a continuum from total scores on assessments. Although it is not uncommon to treat total scores directly as measurements, they are actually counts of discrete observations rather than measurements. Each observation represents the observable outcome of a comparison between a person and item. Such outcomes are directly analogous to the observation of the rotation of a balance scale in one direction or another. This observation would indicate that one or other object has a greater mass, but counts of such observations cannot be treated directly as measurements.

Rasch pointed out that the principle of invariant comparison is characteristic of measurement in physics using, by way of example, a two-way experimental frame of reference in which each instrument exerts a mechanical force upon solid bodies to produce acceleration. Rasch (1960/1980, pp. 112-3) stated of this context: “Generally: If for any two objects we find a certain ratio of their accelerations produced by one instrument, then the same ratio will be found for any other of the instruments”. It is readily shown that Newton’s second law entails that such ratios are directly proportional to the ratios of the masses of the bodies.


The mathematical form of the Rasch model for dichotomous data

Let <math> X_{ni} = x \in \{0,1\} </math> be a dichotomous random variable where, for example, <math> x = 1 </math> denotes a correct response and <math> x = 0 </math> an incorrect response to a given assessment item. In the Rasch model for dichotomous data, the probability of the outcome <math> X_{ni} = 1 </math> is given by:

<math>

\Pr \{X_{ni}=1\} =\frac{e^{{\beta_n} - {\delta_i}}}{1 + e^{{\beta_n} - {\delta_i}}},
</math>

where <math> \beta_n </math> is the ability of person <math> n </math> and <math> \delta_i </math> is the difficulty of item <math> i </math>. Thus, in the case of a dichotomous attainment item, <math> \Pr \{X_{ni}=1\} </math> is the probability of success upon interaction between the relevant person and assessment item. It is readily shown that the log odds, or logit, of correct response by a person to an item, based on the model, is equal to <math>\beta_n - \delta_i</math>. It can be shown that the log odds of a correct response by a person to one item, conditional on a correct response to one of two items, is equal to the difference between the item locations. For example,

<math>

\operatorname{log-odds} \{X_{n1}=1 \mid \ r_n=1\} = \delta_2-\delta_1,\,
</math>

where <math>r_n</math> is the total score of person n over the two items, which implies a correct response to one or other of the items. Hence, the conditional log odds does not involve the person parameter <math>\beta_n</math>, which can therefore be eliminated by conditioning on the total score <math>r_n=1</math>. That is, by partitioning the responses according to raw scores and calculating the log odds of a correct response, an estimate <math>\delta_2-\delta_1</math> is obtained without involvement of <math>\beta_n</math>. More generally, a number of item parameters can be estimated iteratively through application of a process such as Conditional Maximum Likelihood estimation (see Rasch model estimation). While more involved, the same fundamental principle applies in such estimations.

The form of the Rasch model for dichotomous data can be seen in Figure 3. The grey line maps person location on the latent continuum to the probability of the discrete outcome <math>X_{ni}=1</math> for an item with a location of approximately 0.2 on the latent continuum. The location of an item is, by definition, that location at which the probability that <math>X_{ni}=1</math> is equal to 0.5. The black circles represent the actual or observed proportions of persons within Class Intervals for which the outcome was observed. For example, in the case of an assessment item used in the context of educational psychology, these could represent the proportions of persons who answered the item correctly. Persons are ordered by the estimates of their locations on the latent continuum and classified into Class Intervals on this basis in order to graphically inspect the accordance of observations with the model. In Figure 1, there is a close conformity of the data with the model. In addition to graphical inspection of data, a range of statistical tests of fit are used to evaluate whether departures of observations from the model can be attributed to random effects alone, as required, or whether there are systematic departures from the model.


The polytomous form of the Rasch model

The polytomous Rasch model, which is a generalisation of the dichotomous model, can be applied in contexts in which successive integer scores represent categories of increasing level or magnitude of a latent trait, such as increasing ability, motor function, endorsement of a statement, and so forth. The Polytomous response model is, for example, applicable to the use of Likert scales, grading in educational assessment, and scoring of performances by judges.


Other considerations

A criticism of the Rasch model is that it is overly restrictive or prescriptive because it does not permit each item to have a different discrimination. A criticism specific to the use of multiple choice items in educational assessment is that there is no provision in the model for guessing because the left asymptote always approaches a zero probability in the Rasch model. These variations are available in models such as the two and three parameter logistic models (Birnbaum, 1968). However, the specification of uniform discrimination and zero left asymptote are necessary properties of the model in order to sustain sufficiency of the simple, unweighted raw score.

In the two-parameter logistic model (2PL-IRT; Lord & Novick, 1968) the weighted raw score is theoretically sufficient for person parameters, where the weights are given by model parameters referred to as discrimination parameters. Lord & Novick’s one-parameter logistic model, 1PL, appears similar to the Rasch model in that it does not have discrimination paramethers, but 1PL has different motivation and subtly different parameterization. The 1PL is a descriptive model which summarizes the sample as a normal distribution. The dichotomous Rasch model is a measurement model which parameterizes each member of the sample individually. There are other technical differences.

Verhelst & Glas (1995) derive Conditional Maximum Likelihood (CML) equations for a model they refer to as the One Parameter Logistic Model (OPLM). In algebraic form it appears to be identical with the 2PL model, but OPLM contains preset discrimination indexes rather than 2PL’s estimated discrimination parameters. As noted by these authors, though, the problem one faces in estimation with estimated discrimination parameters is that the discriminations are unknown, meaning that the weighted raw score “is not a mere statistic, and hence it is impossible to use CML as an estimation method” (Verhelst & Glas, 1995, p. 217). That is, sufficiency of the weighted “score” in the 2PL cannot be used according to the way in which a sufficient statistic is defined. If the weights are imputed instead of being estimated, as in OPLM, conditional estimation is possible and the properties of the Rasch model are retained (Verhelst, Glas & Verstralen, 1995; Verhelst & Glas, 1995). In OPLM, the values of the discrimination index are restricted to between 1 and 15. A limitation of this approach is that in practice, values of discrimination indexes must be preset as a starting point. This means some type of estimation of discrimination is involved when the purpose is to avoid doing so.

The Rasch model for dichotomous data inherently entails a single discrimination parameter which, as noted by Rasch (1960/1980, p. 121), constitutes an arbitrary choice of the unit in terms of which magnitudes of the latent trait are expressed or estimated. However, the Rasch model requires that the discrimination is uniform across interactions between persons and items within a specified frame of reference (i.e. the assessment context given conditions for assessment).


References and further reading

  • Alagumalai, S., Curtis, D.D. & Hungi, N. (2005). Applied Rasch Measurement: A book of exemplars. Springer-Kluwer.
  • Andersen, E.B. (1977). Sufficient statistics and latent trait models, Psychometrika, 42, 69-81.
  • Andrich, D. (1978a). A rating formulation for ordered response categories. Psychometrika, 43, 357-74.
  • Andrich, D. (1978b). Relationships between the Thurstone and Rasch approaches to item scaling. Applied Psychological Measurement, 2, 449-460.
  • Andrich, D. (1988). Rasch models for measurement. Beverly Hills: Sage Publications.
  • Andrich, D. (2004). Controversy and the Rasch model: a characteristic of incompatible paradigms? Medical Care, 42, 1-16.
  • Baker, F. The Basics of Item Response Theory. ERIC Clearinghouse on Assessment and Evaluation, University of Maryland, College Park, MD. (2001) available free with software included from IRT at Edres.org
  • Birnbaum, A. (1968). Some latent trait models and their use in inferring an examinee’s ability. In Lord, F.M. & Novick, M.R. (Eds.), Statistical theories of mental test scores. Reading, MA: Addison-Wesley.
  • Bond, T.G. & Fox, C.M. (2007). Applying the Rasch Model: Fundamental measurement in the human sciences. 2nd Edn (includes Rasch software on CD-ROM). Lawrence Erlbaum.
  • Fischer, G.H. & Molenaar, I.W. (1995). Rasch models: foundations, recent developments and applications. New York: Springer-Verlag.
  • Hambleton RK, Jones RW. Comparison of classical test theory and item response Educational Measurement: Issues and Practice. 1993; 12(3):38-47. available in the ITEMS Series from the National Council on Measurement in Education
  • Harris D. Comparison of 1-, 2-, and 3-parameter IRT models. Educational Measurement: Issues and Practice;. 1989; 8: 35-41 available in the ITEMS Series from the National Council on Measurement in Education
  • Kuhn, T.S. (1961). The function of measurement in modern physical science. ISIS, 52, 161-193. JSTOR
  • Rasch, G. (1960/1980). Probabilistic models for some intelligence and attainment tests. (Copenhagen, Danish Institute for Educational Research), expanded edition (1980) with foreword and afterword by B.D. Wright. Chicago: The University of Chicago Press.
  • Rasch, G. (1961). On general laws and the meaning of measurement in psychology, pp. 321-334 in Proceedings of the Fourth Berkeley Symposium on Mathematical Statistics and Probability, IV. Berkeley: University of Chicago Press, 1980.
  • Verhelst, N.D. and Glas, C.A.W. (1995). The one parameter logistic model. In G.H. Fischer and I.W. Molenaar (Eds.), Rasch Models: Foundations, recent developments, and applications (pp. 215-238). New York: Springer Verlag.
  • Verhelst, N.D., Glas, C.A.W. and Verstralen, H.H.F.M. (1995). One parameter logistic model (OPLM). Arnhem: CITO.
  • von Davier, M., & Carstensen, C. H. (2007). Multivariate and Mixture Distribution Rasch Models: Extensions and Applications. New York: Springer.
  • Wright, B.D., & Stone, M.H. (1979). Best Test Design. Chicago, IL: MESA Press.


External links

  • Berkeley Evaluation & Assessment Research Center (ConstructMap software)
  • Institute for Objective Measurement Online Rasch Resources
  • IRT Modeling Lab at U. Illinois Urbana Champ.
  • Journal of Applied Measurement
  • National Council on Measurement in Education (NCME)
  • Rasch analysis
  • Rasch Measurement Transactions
  • The Standards for Educational and Psychological Testing

Operation Nifty Package

Operation Nifty Package was a plan, conducted in the starting hours of the Operation Just Cause, by US forces to apprehend or prevent the escape of the Manuel Noriega. This operation included a team of 4 U.S. Navy Seals who needed to destroy Noriega’s private jet on the ground at the Punta Paitilla Airport, but they were eliminated by Panamanian military forces. Another Navy Seal group consisting of four divers and men on Zodiac attack boats, needed to sabotage Noriega’s heavily armed gunboat while it was tied to a pier on the canal. The four divers swam in the canal while being attacked with Panamanian grenades. They also had to avoid a boat that was a suspected Russian intelligence vessel which was supposedly spying on the two powers in action. Two of the divers had to go to the bottom of the canal, beyond the maximum operating limit of their breathing units, with two bombs, and they successfully destroyed Noriega’s flagship.



Conservative Libertarianism

Conservative libertarianism has a number of different meanings related to libertarianism:

  • It can be used to distinguish libertinism from other forms of libertarianism
  • It can be a synonym for classical liberalism
  • It can be used to refer to libertarians that hold some conservative views, such as Republitarians and Hans-Hermann Hoppe.

Ken Read

Kenneth John Read (born November 6, 1955) was a Canadian alpine skier

Born in Ann Arbor, Michigan, Read was raised in Vancouver, Kingston and Calgary and began skiing at age 3 and competing at age 8. He is an alumnus of the Ottawa Ski Club and Lake Louise Ski Club.
Ken Read was a member of the Canadian Ski Team, the Crazy Canucks from 1974 to 1983 and competed in two Olympic Winter Games. A downhill specialist he was victorious in the Canadian Championships five times. He won gold at Val d’Isere, France in December of 1975 becoming the first Canadian and North American male to win an Alpine skiing World Cup Downhill skiing event. He won two World Cup downhill races in both 1978 and 1980. His 1980 point total placed him second in downhill in the World Cup competition. Read was the first non-European to win both the famed Austrian downhill , the Hahnenkamm and the equally storied Swiss race , the Lauberhorn . Ken Read was named Canada’s Athlete of the Year in 1979 (Lou Marsh Award) and Canadian Male Amateur Athlete of the Year in 1980.

Following his retirement from the Canadian Alpine Ski Team in 1983, Read became a broadcaster with CBC TV Sports, an occasional columnist with Ski Canada Magazine and started the “Breath of Life” Ski Challenge which over the next 23 years raised $3.8 million for Cystic Fibrosis research.

He also was active with athlete advocacy, as a member of the IOC Athletes Commmission (1985 to 1998), member of the FIS Alpine Committee Executive Board (1988 to present), Chef de Mission for the 1992 Olympic Team to Barcelona and Chair of the Canadian Olympic Committee Athletes Commission.

Two movies have been produced covering the careers of the Crazy Canucks - “The Dream Never Dies” (1980) and a TV movie called “Crazy Canucks” (2004), which is based on a Novel he and Matthew Fisher wrote called “White Circus” (1987) .

In June 2002, he was named President of Alpine Canada Alpin, the National Sport Organization for alpine skiing in Canada.

In 1991 he was made a Member of the Order of Canada .

As of 2006, Read is an owner of the ski hill Mount Norquay, in Banff National Park. Read currently resides in Calgary, Alberta with his wife (also a former racer) and three sons.

Conservative two-phase locking

In computer science, conservative two-phase locking (C2PL) is a locking method used in DBMS and relational databases.

Conservative 2PL prevents deadlocks.

The difference between 2PL and C2PL is that C2PL’s transactions obtain all the locks they need before the transactions begin. This is to ensure that a transaction that already holds some locks will not block waiting for other locks.

In heavy lock contention, C2PL reduces the time locks are held on average, relative to 2PL and Strict 2PL, because transactions that hold locks are never blocked.

In light lock contention, C2PL holds more locks than is necessary, because it is hard to tell what locks will be needed in the future, thus leads to higher overhead.

Also, a transaction will not even obtain any locks if it cannot obtain all the locks it needs in its initial request. Furthermore, each transaction needs to declare its read and write set (data items to be read/written during transaction), which is not always possible. Because of these limitations, C2PL is not used very frequently.

Block error

A block error is a common type of error in certain types of digital television transmission, particularly those that use image compression. Its presence in a television image is a telltale sign that 1) the signal is broadcast digitally, as this type of error can not occur in analog transmission, and 2) that there is a significant amount of noise, as digital television is designed to tolerate a certain amount of interference. Block errors are usually detected, but not corrected, by the receiving device and are commonly displayed as empty black boxes in the television image.

Because of how television images are usually compressed, a block error in a single frame often results in black boxes in several subsequent frames. In the worst case, a few block errors per frame could render the video from a television broadcast unviewable.

Block errors are most common in digital satellite television, where bad weather or motion of the satellite dish can cause interference outside the broadcaster’s control.

Block errors can occur at levels of interference where an analog transmission would be fuzzy but still viewable. Thus, block errors are a fine example of the consequences of trade offs in engineering. Although in ideal conditions, digital transmission far exceeds analog transmission in performance, below a certain threshold of signal to noise ratio, digital transmission becomes untenable.

Cantil, California

Cantil is a small unincorporated community located in the northern Antelope Valley in Kern County in the U.S. state of California. Its zip code is 93519 and has an elevation of 2,011 feet (613 m). Cantil is near the home of the Honda Proving Center of California (HPCC), a test track used for testing new car models and motorcycles.

Cantil is also home to the Red Rock Elementary School and the Red Rock Community Day School, both of which help students who were not successful in the regular school system. Average rainfall is just 4.73 inches (12.01 cm). The highest temperature ever recorded in Cantil was 119°F (48.3°C) in 1972. The lowest temperature on record was just one degree, recorded in 1963. The average daily high for January is 60°F (15.6°C), with average lows of 31°F (-0.5°C). High temperatures average 103°F (39.4°C) in July with average lows of 66°F (18.8°C).


External links

Passbook

A passbook or bankbook is a paper book used to record bank transactions on a deposit account. Depending on the country or the financial institution, it can be of the dimensions of a chequebook or a passport.

Traditionally, a passbook is used for accounts with a low transaction volume, such as a savings account. In the early days of banking, the bank teller would write, by hand, the date and amount of the transaction, the updated balance, and enter his or her initials. Today, a small dot matrix or inkjet printer updates the passbook at the account holder’s convenience, either at an automated teller machine, a self-service printer (similar to an ATM), or at a local branch. Several suppliers, such as TallyGenicom offer Passbook printers specifically designed for this job. Such printers improve productivity in a teller environment, offering fast transaction times, small footprint and many automatic features.

For people who feel uneasy with telephone or online banking, this is an alternative to obtain, in real-time, the account activity without waiting for a bank statement. However, contrary to the bank statement, the passbook offers fewer details, replacing easy-to-understand descriptions with short codes, also known as mnemonics.


See also

  • Bank statement
  • Deposit account
  • Sberkassa, the bankbook heritage from the Soviet Union.

Neptune’s Staircase

Neptune’s Staircase is a staircase lock comprising eight locks on the Caledonian Canal. It is the longest staircase lock in the United Kingdom, and lifts boats 64 feet (19.5 metres). The locks were originally hand-powered, but have been converted to hydraulic operation.
The base plinths of the original capstans are still present, although the capstans themselves are now gone.

The current lock gates weigh 22 tons each, and require a team of three lock-keepers (at minimum) to run the staircase.

It is usual for them to operate on an “Efficiency Basis”, that is the keepers try to either fill each cut with boats on the lift or drop, or to allow for passing, ie a dropping craft to pass a rising craft on the same fill/empty cycle.

It is one of the biggest staircases in Britain, and is kept by British Waterways.

It is located at Banavie, near Fort William just north of Loch Linnhe.

The structure was designed by Thomas Telford.

Strictfp

strictfp is a Java keyword used to restrict floating-point calculations to ensure portability. The modifier was introduced into the Java programming language with the Java virtual machine version 1.2.

In older JVMs, floating-point calculations were always strict floating-point, meaning all values used during floating-point calculations are made in the IEEE-standard float or double sizes. This could sometimes result in a numeric overflow or underflow in the middle of a calculation, even if the end result would be a valid number. Since version 1.2 of the JVM, floating-point calculations do not require that all numbers used in computations are themselves limited to the standard float or double precision.

However, for some applications, a programmer might require every platform to have precisely the same floating-point behavior, even if some platforms could handle more precision. In that case, the programmer can use the modifier strictfp to ensure that calculations are performed as in the earlier versions—only with floats and doubles.

The modifier can be used in combination with classes, interfaces and methods.

Compile-time constant expressions must always use strict floating-point behavior. Other expressions use strict floating-point math if they are contained in a method, interface, or class which uses the strictfp modifier in its declaration. In a class declaration, the modifier can be placed like this:

public strictfp class MyFPclass {
    // ... contents of class here ...
}


References

  • http://java.sun.com/docs/books/vmspec/2nd-edition/html/Concepts.doc.html#24465

Great Lakes Waterway

The Great Lakes Waterway is a system of channels and canals that makes all of the Great Lakes accessible to oceangoing vessels. Its principal civil engineering components are the Welland Canal, bypassing Niagara Falls between Lake Ontario and Lake Erie, and the Soo Locks, bypassing the rapids of the St. Marys River between Lake Superior and Lake Huron, at Sault Sainte Marie. Maintained channels serve the St. Clair River and Detroit River between Lake Huron and Lake Erie. A United States Coast Guard icebreaker helps keep the passage open for much of the winter, although shipping usually ceases for 2 or 3 months each year.

The Great Lakes Waterway is supplemented by the Saint Lawrence Seaway, which makes the Saint Lawrence River navigable from Montreal to Kingston, Ontario. The two waterways are often jointly referred to as the St. Lawrence Seaway. The Great Lakes Seaway has larger locks and deeper drafts than the St. Lawrence Seaway with the result that a number of lake freighters are confined to the lakes, being small enough to operate on the Waterway but too large to pass down the Seaway.

The Great Lakes Waterway is co-administered by Canada and the United States.

Basic Interpersonal Communicative Skills

Basic Interpersonal Communicative Skills (BICS) are language skills needed to interact in social situations, for example, when speaking to a friend on the telephone. These skills are developed by employees in overseas call centres.

We use this language skills in face-to-face interaction, rather than in dealing with academic task.

This term is often credited to Jim Cummins research related to language acquisition and learning. The other term that is often used in conjunction with this term is Cognitive Academic Language Proficiency (CALP). Students typically are thought to acquire BICS in 2-3 years but take 5-7 years to develop the CALP needed to be on the same level with their native speaking counterparts in the classroom. See http://www.iteachilearn.com/cummins/ for more information.

Wandi, Western Australia

Wandi is a suburb of Perth, Western Australia, located within the Town of Kwinana. Its postcode is 6167. The suburb was approved on 14 March 1978. It is located South-East of Perth about 30 minutes drive from the city of Perth.

The suburb is Special Rural, which prevents the loss of trees from clearing. The land of Wandi is bushland, some apart of the Jandakot Regional Park.

Wandi was named after a highly regarded Aboriginal stockman, who drove sheep into Cockburn Sound for anchorage butchers in the 1920s.

Wandi is also known for the amount of diverse alpacas that live there; many of which often escape. These alpacas are usually joked about among the locals as being “rogue alpacas”.

Thiru Edu-Vasippu

Thiru Edu-Vasippu is the Indian ayyavazhi festival of melodiously reading the contents of Akilattirattu Ammanai, celebrated in Pathis and Nizhal Thangals. It is read for periods of three days, five days, ten days or seventeen days. But in the Pathis, strictly, it was read for seventeen days and hence completed every year; Thiru Edu was scheduled according to that.

The part which was read on the first day was called Akilam one and the part read on day two was called Akilam two, and so on. Since it was read for seventeen days it was scheduled up to Akilam seventeen.


See also

  • Ayyavazhi mythology
  • List of Ayyavazhi-related articles

M7 bayonet

The M7 Bayonet is a bayonet used by the U.S. military for the M16 rifle. It was introduced in 1964, when the M16 entered service during the Vietnam War.

The M7 is based on the older M6 bayonet for the M14 rifle. The most notable differences between the two are the diameter of the muzzle rings, and the locking mechanism. The M7’s release mechanism is on the pommel, while the M6 has a spring-loaded lever near the guard that when depressed releases the bayonet. Both models are approximately the same length, have the same black finish, and use the M8A1, or later M10 sheath.

The M7 was replaced to by the M9 bayonet and, later in the Marine Corps, by the OKC-3S bayonet.

The M7 was manufactured in the United States, the Philippines, Singapore, and South Korea.


See also

  • M6 bayonet
  • M9 bayonet
  • OKC-3S Bayonet
  • List of individual weapons of the U.S. Armed Forces


External links

  • Official US Army Bayonet Page

Bias blind spot

The bias blind spot is a cognitive bias about not compensating for one’s own cognitive biases. The term was created by Emily Pronin with colleagues Daniel Lin and Lee Ross.Emily Pronin, Center for Behavioral Decision Research The bias blind spot is named after the visual blind spot.

Pronin and her co-authors explained to subjects the better-than-average effect, the halo effect, self-serving bias and many other cognitive biases. According to that better-than-average bias, specifically, people are likely to see themselves as inaccurately “better than average” for possible positive traits and “less than average” for negative traits. When subsequently asked how biased they themselves were, subjects rated themselves as being much less subject to the biases described than the average person.


See also

  • List of cognitive biases


References

Basic Interpersonal Communicative Skills

Basic Interpersonal Communicative Skills (BICS) are language skills needed to interact in social situations, for example, when speaking to a friend on the telephone. These skills are developed by employees in overseas call centres.

We use this language skills in face-to-face interaction, rather than in dealing with academic task.

This term is often credited to Jim Cummins research related to language acquisition and learning. The other term that is often used in conjunction with this term is Cognitive Academic Language Proficiency (CALP). Students typically are thought to acquire BICS in 2-3 years but take 5-7 years to develop the CALP needed to be on the same level with their native speaking counterparts in the classroom. See http://www.iteachilearn.com/cummins/ for more information.

Relative Degree

Relative Degree was a rock band which included two of the current Linkin Park artists, drummer Rob Bourdon and guitarist Brad Delson. The band did not last long; its ultimate and only goal was to make a show at the Roxy theater in Hollywood. They wrote 11 songs, had a sell-out show, and broke up a few days later, their goal completed.

Grace Baptist Assembly

Grace Baptist Assembly is designed to facilitate the fellowship of Particular Baptist churches and was first organised in England in 1980, when the Strict Baptist Assembly (founded in 1964) and the Assembly of baptized churches holding the doctrines of grace (founded in 1976) voluntarily agreed to cease their organisations and meet in the Grace Baptist Assembly. The churches of the Grace Baptist Assembly hold a Calvinistic form of theology, and are descendants of the larger Strict and Particular Baptist movement. Many churches involved also belong to one of three regional associations. Churches support evangelistic and educational endeavours, including Grace Publications Trust and Grace magazine (founded in 1970). A linked missionary organis