HOME
*





64k Intro
A 64K intro is a Demo (computer programming), demo where the size of the executable file is limited to 64 kibibytes, or 65,536 bytes. At demo parties, there is a category for this kind of demo, where the one that gives the best impression wins. 64K intros generally apply many techniques to be able to fit in the given size, usually including procedural generation, sound synthesis, and executable compression. The size of 64 kibibytes is a traditional limit which was inherited from the maximum size of a COM file. History Demos traditionally were limited by the system memory size, or later on the storage that was available (although demos on multiple discs weren't unheard of). By the early 1990s, especially after machines started to get large hard discs and internet connections, demo sizes grew, and as a reaction limited size categories that forced devs to not simply stream data from storage started to become common at demo parties. As the scene evolved, the size of limited PC d ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


Demo (computer Programming)
Demo, usually short for demonstration, may refer to: Music and film *Demo (music), a song typically recorded for reference rather than release * ''Demo'' (Behind Crimson Eyes), a 2004 recording by the band Behind Crimson Eyes * ''Demo'' (Deafheaven album), a 2010 EP by Deafheaven * ''Demo'' (The Flat liners Album), a 2002 album by the band The Flatliners * ''Demo'' (Miss May I album), a 2008 recording by the metalcore band Miss May I *"Demo", a 1990 single by Die Krupps * "Demo" (P-Model song), a 1979 recording by songwriters Susumu Hirasawa and Yasumi Tanaka *'' Demo (Skinless)'', a 1994 recording by the band Skinless * ''Demo 2004'' (Year of No Light album), a 2004 recording by Year of No Light *'' Demo #2'', an unreleased recording by Neutral Milk Hotel *''Demo'', 2008 debut EP by Yuna Computing and technology *Demo (computer programming), a multimedia spectacle of programming skill *The Demo, a computer demonstration in 1968, sometimes called "the mother of all demos" *DEMOn ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


picture info

Kibibyte
The byte is a unit of digital information that most commonly consists of eight bits. Historically, the byte was the number of bits used to encode a single character of text in a computer and for this reason it is the smallest addressable unit of memory in many computer architectures. To disambiguate arbitrarily sized bytes from the common 8-bit definition, network protocol documents such as The Internet Protocol () refer to an 8-bit byte as an octet. Those bits in an octet are usually counted with numbering from 0 to 7 or 7 to 0 depending on the bit endianness. The first bit is number 0, making the eighth bit number 7. The size of the byte has historically been hardware-dependent and no definitive standards existed that mandated the size. Sizes from 1 to 48 bits have been used. The six-bit character code was an often-used implementation in early encoding systems, and computers using six-bit and nine-bit bytes were common in the 1960s. These systems often had memory words ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


Byte
The byte is a unit of digital information that most commonly consists of eight bits. Historically, the byte was the number of bits used to encode a single character of text in a computer and for this reason it is the smallest addressable unit of memory in many computer architectures. To disambiguate arbitrarily sized bytes from the common 8-bit definition, network protocol documents such as The Internet Protocol () refer to an 8-bit byte as an octet. Those bits in an octet are usually counted with numbering from 0 to 7 or 7 to 0 depending on the bit endianness. The first bit is number 0, making the eighth bit number 7. The size of the byte has historically been hardware-dependent and no definitive standards existed that mandated the size. Sizes from 1 to 48 bits have been used. The six-bit character code was an often-used implementation in early encoding systems, and computers using six-bit and nine-bit bytes were common in the 1960s. These systems often had memory words ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


picture info

Procedural Generation
In computing, procedural generation is a method of creating data algorithmically as opposed to manually, typically through a combination of human-generated assets and algorithms coupled with computer-generated randomness and processing power. In computer graphics, it is commonly used to create textures and 3D models. In video games, it is used to automatically create large amounts of content in a game. Depending on the implementation, advantages of procedural generation can include smaller file sizes, larger amounts of content, and randomness for less predictable gameplay. Procedural generation is a branch of media synthesis. Overview The term ''procedural'' refers to the process that computes a particular function. Fractals are geometric patterns which can often be generated procedurally. Commonplace procedural content includes textures and meshes. Sound is often also procedurally generated, and has applications in both speech synthesis as well as music. It has been used to ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


picture info

Sound Synthesis
A synthesizer (also spelled synthesiser) is an electronic musical instrument that generates audio signals. Synthesizers typically create sounds by generating waveforms through methods including subtractive synthesis, additive synthesis and frequency modulation synthesis. These sounds may be altered by components such as filters, which cut or boost frequencies; envelopes, which control articulation, or how notes begin and end; and low-frequency oscillators, which modulate parameters such as pitch, volume, or filter characteristics affecting timbre. Synthesizers are typically played with keyboards or controlled by sequencers, software or other instruments, and may be synchronized to other equipment via MIDI. Synthesizer-like instruments emerged in the United States in the mid-20th century with instruments such as the RCA Mark II, which was controlled with punch cards and used hundreds of vacuum tubes. The Moog synthesizer, developed by Robert Moog and first sold in 1964 ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


Executable Compression
Executable compression is any means of compressing an executable file and combining the compressed data with decompression code into a single executable. When this compressed executable is executed, the decompression code recreates the original code from the compressed code before executing it. In most cases this happens transparently so the compressed executable can be used in exactly the same way as the original. Executable compressors are often referred to as "runtime packers", "software packers", "software protectors" (or even " polymorphic packers" and " obfuscating tools"). A compressed executable can be considered a self-extracting archive, where a compressed executable is packaged along with the relevant decompression code in an executable file. Some compressed executables can be decompressed to reconstruct the original program file without being directly executed. Two programs that can be used to do this are CUP386 and UNP. Most compressed executables decompress the or ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


picture info

COM File
A COM file is a type of simple executable file. On the Digital Equipment Corporation (DEC) VAX operating systems of the 1970s, .COM was used as a filename extension for text files containing commands to be issued to the operating system (similar to a batch file). With the introduction of Digital Research's CP/M (a microcomputer operating system), the type of files commonly associated with COM extension changed to that of executable files. This convention was later carried over to DOS. Even when complemented by the more general .exe, EXE file format for executables, the compact COM files remained viable and frequently used under DOS. The .COM file name extension has no relation to the .com (for "commercial") top-level Internet domain name. However, this similarity in name has been exploited by malware writers. DOS binary format The COM format is the original binary executable format used in CP/M (including SCP (operating system), SCP and MSX-DOS) as well as DOS. It is very sim ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  




Farbrausch
Farbrausch, or Farb-rausch, is a German group of demogroup, demomakers who became well known in the demoscene in December 2000 with a 64k intro called "fr-08: .the .product". The demo achieved its small size through the use of procedural textures, a custom MIDI-based software synthesizer V2 (controlled through a sequencer called Logic Audio), and a modified version of UPX executable compressor, ".the .product" is an 11-minute 3D computer graphics, 3-D show featuring complex scenes of computer generated imagery. The name "Farbrausch" translates literally to "color rush", where rush means variously "intoxication, drunkenness, high, ecstasy, and state of euphoria.". Their work has won numerous awards. In 2004, a subdivision of farbrausch called ".theprodukkt" released a 96 kB first-person shooter game named ".kkrieger", and an earlier version of the tool they currently use to produce some of their demos, named ".werkkzeug", or "Tool". Farbrausch give their releases a "product code", i ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


picture info

The Party (demoparty)
The demoscene is an international computer art subculture focused on producing demos: self-contained, sometimes extremely small, computer programs that produce audiovisual presentations. The purpose of a demo is to show off programming, visual art, and musical skills. Demos and other demoscene productions (graphics, music, videos, games) are shared at festivals known as demoparties, voted on by those who attend and released online. The scene started with the home computer revolution of the early 1980s, and the subsequent advent of software cracking. Crackers altered the code of video games to remove copy protection, claiming credit by adding introduction screens of their own (" cracktros"). They soon started competing for the best visual presentation of these additions. Through the making of intros and stand-alone demos, a new community eventually evolved, independent of the gaming and software sharing scenes. Demoscene productions can be made with the latest consumer techno ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


picture info

Aars
Aars or Års, () is a Danish town with a population of 8,474 (1 January 2022)BY3: Population 1. January by urban areas, area and population density
The Mobile Statbank from
in , . Administratively, Aars is the municipal seat of

Chaos Theory (demo)
Chaos Theory is a computer demo by Conspiracy released in August 2006 at Assembly. It has been realised by Gergely Szelei, Barna Buza and Zoltán Szabó. Technical description Chaos Theory is a 64K intro demo. It uses kkrunchy from farbrausch as packer. Synopsis The demo opens with three circles and a black screen. On a green foliage pattern screen the words "Conspiracy", "Assembly 2006" appear, before showing a space opera scene with "a world not of my making yet a world of my design, so strange and so familiar" text. After a quiet moment, the rhythm of the music and the speed of the graphisms accelerates, to represent chaos. A device with imbricated rings moving up and down appears briefly. Then, the demo decreases again to a more quiet pace, prints geometry patterns before a second acceleration and a repeat of the previous patterns and elements, slightly different. Awards The demo has been very well received by the critics. It was ranked second place at the Assembly 2006. ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


picture info

Conspiracy (demogroup)
The demoscene is an international computer art subculture focused on producing demos: self-contained, sometimes extremely small, computer programs that produce audiovisual presentations. The purpose of a demo is to show off programming, visual art, and musical skills. Demos and other demoscene productions (graphics, music, videos, games) are shared at festivals known as demoparties, voted on by those who attend and released online. The scene started with the home computer revolution of the early 1980s, and the subsequent advent of software cracking. Crackers altered the code of video games to remove copy protection, claiming credit by adding introduction screens of their own (" cracktros"). They soon started competing for the best visual presentation of these additions. Through the making of intros and stand-alone demos, a new community eventually evolved, independent of the gaming and software sharing scenes. Demoscene productions can be made with the latest consumer techno ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]