https://de.wikipedia.org/w/api.php?action=feedcontributions&feedformat=atom&user=FatalError Wikipedia - Benutzerbeiträge [de] 2025-05-06T09:35:04Z Benutzerbeiträge MediaWiki 1.44.0-wmf.27 https://de.wikipedia.org/w/index.php?title=Riot_Games&diff=145613091 Riot Games 2010-12-08T07:09:13Z <p>FatalError: </p> <hr /> <div>{{Infobox company<br /> |company_name=Riot Games<br /> |company_logo=[[File:RiotGamesLogo.jpg|250px]]<br /> |foundation=2006<br /> |location= [[Culver City, California]]<br /> |President= [[Marc Merril]]<br /> |industry=[[Video game industry|Video games]]<br /> |products=[[League of Legends]]<br /> |homepage=[http://www.riotgames.com/ RiotGames.com]}}<br /> <br /> '''Riot Games''' is an independent [[game developer]] and publisher based in Culver City, California. Established in 2006,&lt;ref name=rg&gt;{{cite web|url=http://www.riotgames.com/company |title=Company |publisher=Riot Games |date= |accessdate=2010-08-11}}&lt;/ref&gt; Riot Games launched its first title, the [[League of Legends]] game, a [[multiplayer online battle arena]] (MOBA) in October 2009.&lt;ref&gt;[http://www.riotgames.com/news/league-legends%C3%82%C2%A9nbsp-now-available-stores-and-online League of Legends now Available in Stores and Online]&lt;/ref&gt; Some of their most noticeable employees are Steve &quot;Guinsoo&quot; Feak, who is a former modder of the popular [[Warcraft 3]] MOBA [[DOTA|Defense of the Ancient]] and Steve &quot;Pendragon&quot; Mescon who created and led the former DOTA-Community Page dota-allstars.com&lt;ref name=da&gt;{{cite web|url=http://dota-allstars.com/index.html |title=Official Letter to Dota Community |publisher=Steve Mescon |date= |accessdate=2010}}&lt;/ref&gt;. Former Blizzard developer like [[Shawn Carne]] and [[Tom Cadwell]] are also employeed&lt;ref&gt;[http://www.riotgames.com/news/riot-games-expands-all-star-development-team Riot Games expands All-Star Development Team]&lt;/ref&gt;.<br /> <br /> == Announcements ==<br /> In July 2010, Riot Games announced it would be opening its European headquarters in Dublin.&lt;ref&gt;[http://www.insideireland.ie/index.cfm/section/news/ext/leagueoflegends001/category_key/893 Riot Games to open Euro HQ in Dublin]&lt;/ref&gt; Additionally to the European headquarters was a partnership with [[Garena]] announced, which is going to publish [[League of Legends]] in Southeast Asia.&lt;ref name=gl&gt;{{cite web|url=http://www.leagueoflegends.com/board/showthread.php?t=169187 |title=Riot Games Partners with Garena to bring League of Legends to Southeast Asia |publisher=RIOT Games |date= |accessdate=2010-07-16}}&lt;/ref&gt;<br /> <br /> == References ==<br /> {{Reflist}}<br /> <br /> <br /> [[Category:Companies based in Los Angeles, California]]<br /> [[Category:Companies established in 2006]]<br /> [[Category:Video game companies of the United States]]<br /> [[Category:Video game developers]]<br /> <br /> <br /> {{US-entertainment-company-stub}}</div> FatalError https://de.wikipedia.org/w/index.php?title=Parallel_Extensions&diff=85752137 Parallel Extensions 2009-09-01T00:13:59Z <p>FatalError: </p> <hr /> <div>{{future software}}<br /> [[Image:DotNet.svg|thumb|right|250px|The [[.NET Framework]] stack.]]<br /> '''Parallel Extensions''', previously known as the Parallel Framework Extensions or PFX, is a [[Managed code|managed]] [[Concurrent programming|concurrency]] [[Library (computing)|library]] being developed by a collaboration between [[Microsoft Research]] and the [[Common Language Runtime|CLR]] team at [[Microsoft]]. It is composed of two parts: [[#Parallel LINQ|''Parallel LINQ'']] (PLINQ) and [[#Task Parallel Library|''Task Parallel Library'']] (TPL).&lt;ref name=&quot;channel9&quot;&gt;{{cite web | url = http://channel9.msdn.com/Showpost.aspx?postid=347531 | title = Programming in the Age of Concurrency: Concurrent Programming with PFX | accessdate = 2007-10-16}}&lt;/ref&gt;&lt;ref name=&quot;msdnmag&quot;&gt;{{cite web | url = http://msdn.microsoft.com/msdnmag/issues/07/10/Futures/default.aspx | title = MSDN Magazine: Task Parallel Library | accessdate = 2007-10-16}}&lt;/ref&gt; It also consists of a set of ''coordination data structures'' (CDS) - sets of [[data structure]]s used to synchronize and co-ordinate the execution of concurrent tasks.&lt;ref name=&quot;somajune&quot;/&gt; The library was released as a [[Community Technology Preview|CTP]] on November 29, 2007&lt;ref&gt;{{cite web | url = http://blogs.msdn.com/somasegar/archive/2007/11/29/parallel-extensions-to-the-net-fx-ctp.aspx | title = Parallel Extensions to the .NET FX CTP | accessdate = 2007-11-30}}&lt;/ref&gt; and refreshed again in December 2007 and June 2008.&lt;ref name=&quot;somajune&quot;/&gt; Microsoft has announced that the Parallel Extensions to .NET will release as part of the .NET 4.0 Framework release.&lt;ref&gt;{{cite web | url = http://blogs.msdn.com/pfxteam/archive/2008/10/10/8994927.aspx | title = Parallel Programming and the .NET Framework 4.0 | accessdate = 2009-01-25}}&lt;/ref&gt;<br /> <br /> ==Parallel LINQ==<br /> {{see also|Language Integrated Query}}<br /> '''Parallel LINQ''' ('''PLINQ''') is a concurrent query execution engine for [[Language Integrated Query|LINQ]], parallelizing the execution of queries on objects (LINQ to Objects) and XML data (LINQ to XML). PLINQ is intended for exposing [[data parallelism]] by use of queries.&lt;ref name=&quot;channel9&quot;/&gt; Any computation on objects that has been implemented as queries can be parallelized by PLINQ. However, the objects need to implement the &lt;code&gt;IParallelEnumerable&lt;/code&gt; interface, which is defined by PLINQ itself. Internally it uses [[#Task Parallel Library|TPL]] for execution.&lt;ref name=&quot;somajune&quot;&gt;{{cite web | url = http://blogs.msdn.com/somasegar/archive/2008/06/02/june-2008-ctp-parallel-extensions-to-the-net-fx.aspx | title = June 2008 CTP - Parallel Extensions to the .NET FX | accessdate = 2008-08-06}}&lt;/ref&gt;&lt;ref&gt;{{cite web | url = http://blogs.msdn.com/pfxteam/archive/2008/06/05/8576194.aspx | title = More powerful aggregations in PLINQ | accessdate = 2008-08-06}}&lt;/ref&gt;<br /> <br /> ==Task Parallel Library==<br /> The '''Task Parallel Library''' ('''TPL''') is the [[task parallelism]] component of the Parallel Extensions to .NET.&lt;ref name=&quot;Concurrent Programming on Windows Appendix B&quot;/&gt; It exposes parallel constructs like parallel &lt;code&gt;For&lt;/code&gt; and &lt;code&gt;ForEach&lt;/code&gt; loops, using regular method calls and [[Delegate (.NET)|delegates]]. As such, the constructs can be used from any language supporting the [[.NET Framework]]. The job of spawning and terminating [[Thread (computing)|threads]], as well as scaling the number of threads according to the number of available processors, is done by the library itself.&lt;ref name=&quot;msdnmag&quot;/&gt;<br /> <br /> TPL also includes other constructs such as ''Task'' and ''[[Future (programming)|Future]]''. A ''Task'' is an action that can be executed independent of the rest of the program. In that sense, it is semantically equivalent to a thread, except that it is a more light-weight object and comes without the overhead of creating an OS thread. Tasks are queued by a ''Task Manager'' object and are scheduled to run on multiple OS threads in a [[thread pool pattern|thread pool]] when their turn comes.<br /> <br /> ''Future'' is a task that returns a result. The result is computed in a background thread encapsulated by the ''Future'' object, and the result is buffered until it is retrieved.&lt;ref name=&quot;msdnmag&quot;/&gt; If an attempt is made to retrieve the result before it has been computed then the asking thread will block until the result is available.&lt;ref name=&quot;Concurrent_Programming_on_Windows_Appendix_B&quot;&gt;{{cite book | first=Joe | last=Duffy | year=2009 | title=Concurrent Programming on Windows | isbn=&quot;032143482X&quot; | pages=&quot;887-929&quot; }}&lt;/ref&gt;<br /> <br /> ==Architecture==<br /> The main concept in the Parallel Extensions to .NET is a &lt;code&gt;Task&lt;/code&gt;, which is a small unit of code, usually represented as a [[Lambda expression|lambda function]], that can be executed independently. Both PLINQ and the TPL API provides methods to create the Tasks - PLINQ divides a query into smaller Tasks, and the &lt;code&gt;Parallel.For&lt;/code&gt;, &lt;code&gt;Parallel.ForEach&lt;/code&gt; and &lt;code&gt;Parallel.Invoke&lt;/code&gt; methods divide a loop into Tasks. <br /> <br /> PFX includes a &lt;code&gt;Task Manager&lt;/code&gt; object which schedules the Tasks for execution. A Task Manager contains a global [[queue (data structure)|queue]] of Tasks, which are then executed. In addition, it also encapsulates multiple [[Thread (computing)|threads]] onto which the Tasks are executed. By default, as many threads as there are processors (or processor cores) on the system are created, though this number may be manually modified. Each thread is associated with a thread-specific queue of Tasks. Each thread, when idle, picks up a batch of Tasks, and puts on its local queue, and then executes them one by one. If the global queue is empty, a thread will look for Tasks in the queues of its peers, and will take the Tasks which have been in the queue the longest (''task stealing''). When in execution, the Tasks will be executed independently, with the change in state of one Task independent of others. As a result, if they use a shared resource, they still need to be synchronized manually using locks or other constructs.<br /> <br /> ==See also==<br /> *[[Concurrency and Coordination Runtime]]<br /> *[[Joins (concurrency library)|Joins]]<br /> *[[Grand Central Dispatch]] - comparable technology in [[Mac OS X 10.6]] developed by [[Apple Inc.|Apple]].<br /> *[[Java Concurrency]] - comparable technology in [[Java]] (also known as [[JSR]] 166).<br /> *[[Thread pool pattern]]<br /> *[[Task parallelism]]<br /> <br /> ==References==<br /> {{reflist|2}}<br /> <br /> ==External links==<br /> *[http://www.microsoft.com/downloads/details.aspx?FamilyId=348F73FD-593D-4B3C-B055-694C50D2B0F3&amp;displaylang=en Parallel FX CTP June 2008]<br /> *[http://msdn.microsoft.com/en-us/concurrency/default.aspx Parallel Computing Developer Center]<br /> <br /> {{MSNav|open=DotNET}}<br /> <br /> [[Category:.NET framework]]</div> FatalError https://de.wikipedia.org/w/index.php?title=Parallel_Extensions&diff=85752136 Parallel Extensions 2009-09-01T00:13:28Z <p>FatalError: some minor cleanup</p> <hr /> <div>{{future software}}<br /> [[Image:DotNet.svg|thumb|right|250px|The [[.NET Framework]] stack.]]<br /> '''Parallel Extensions''', previously known as the Parallel Framework Extensions or ('''PFX'''), is a [[Managed code|managed]] [[Concurrent programming|concurrency]] [[Library (computing)|library]] being developed by a collaboration between [[Microsoft Research]] and the [[Common Language Runtime|CLR]] team at [[Microsoft]]. It is composed of two parts: [[#Parallel LINQ|''Parallel LINQ'']] (PLINQ) and [[#Task Parallel Library|''Task Parallel Library'']] (TPL).&lt;ref name=&quot;channel9&quot;&gt;{{cite web | url = http://channel9.msdn.com/Showpost.aspx?postid=347531 | title = Programming in the Age of Concurrency: Concurrent Programming with PFX | accessdate = 2007-10-16}}&lt;/ref&gt;&lt;ref name=&quot;msdnmag&quot;&gt;{{cite web | url = http://msdn.microsoft.com/msdnmag/issues/07/10/Futures/default.aspx | title = MSDN Magazine: Task Parallel Library | accessdate = 2007-10-16}}&lt;/ref&gt; It also consists of a set of ''coordination data structures'' (CDS) - sets of [[data structure]]s used to synchronize and co-ordinate the execution of concurrent tasks.&lt;ref name=&quot;somajune&quot;/&gt; The library was released as a [[Community Technology Preview|CTP]] on November 29, 2007&lt;ref&gt;{{cite web | url = http://blogs.msdn.com/somasegar/archive/2007/11/29/parallel-extensions-to-the-net-fx-ctp.aspx | title = Parallel Extensions to the .NET FX CTP | accessdate = 2007-11-30}}&lt;/ref&gt; and refreshed again in December 2007 and June 2008.&lt;ref name=&quot;somajune&quot;/&gt; Microsoft has announced that the Parallel Extensions to .NET will release as part of the .NET 4.0 Framework release.&lt;ref&gt;{{cite web | url = http://blogs.msdn.com/pfxteam/archive/2008/10/10/8994927.aspx | title = Parallel Programming and the .NET Framework 4.0 | accessdate = 2009-01-25}}&lt;/ref&gt;<br /> <br /> ==Parallel LINQ==<br /> {{see also|Language Integrated Query}}<br /> '''Parallel LINQ''' ('''PLINQ''') is a concurrent query execution engine for [[Language Integrated Query|LINQ]], parallelizing the execution of queries on objects (LINQ to Objects) and XML data (LINQ to XML). PLINQ is intended for exposing [[data parallelism]] by use of queries.&lt;ref name=&quot;channel9&quot;/&gt; Any computation on objects that has been implemented as queries can be parallelized by PLINQ. However, the objects need to implement the &lt;code&gt;IParallelEnumerable&lt;/code&gt; interface, which is defined by PLINQ itself. Internally it uses [[#Task Parallel Library|TPL]] for execution.&lt;ref name=&quot;somajune&quot;&gt;{{cite web | url = http://blogs.msdn.com/somasegar/archive/2008/06/02/june-2008-ctp-parallel-extensions-to-the-net-fx.aspx | title = June 2008 CTP - Parallel Extensions to the .NET FX | accessdate = 2008-08-06}}&lt;/ref&gt;&lt;ref&gt;{{cite web | url = http://blogs.msdn.com/pfxteam/archive/2008/06/05/8576194.aspx | title = More powerful aggregations in PLINQ | accessdate = 2008-08-06}}&lt;/ref&gt;<br /> <br /> ==Task Parallel Library==<br /> The '''Task Parallel Library''' ('''TPL''') is the [[task parallelism]] component of the Parallel Extensions to .NET.&lt;ref name=&quot;Concurrent Programming on Windows Appendix B&quot;/&gt; It exposes parallel constructs like parallel &lt;code&gt;For&lt;/code&gt; and &lt;code&gt;ForEach&lt;/code&gt; loops, using regular method calls and [[Delegate (.NET)|delegates]]. As such, the constructs can be used from any language supporting the [[.NET Framework]]. The job of spawning and terminating [[Thread (computing)|threads]], as well as scaling the number of threads according to the number of available processors, is done by the library itself.&lt;ref name=&quot;msdnmag&quot;/&gt;<br /> <br /> TPL also includes other constructs such as ''Task'' and ''[[Future (programming)|Future]]''. A ''Task'' is an action that can be executed independent of the rest of the program. In that sense, it is semantically equivalent to a thread, except that it is a more light-weight object and comes without the overhead of creating an OS thread. Tasks are queued by a ''Task Manager'' object and are scheduled to run on multiple OS threads in a [[thread pool pattern|thread pool]] when their turn comes.<br /> <br /> ''Future'' is a task that returns a result. The result is computed in a background thread encapsulated by the ''Future'' object, and the result is buffered until it is retrieved.&lt;ref name=&quot;msdnmag&quot;/&gt; If an attempt is made to retrieve the result before it has been computed then the asking thread will block until the result is available.&lt;ref name=&quot;Concurrent_Programming_on_Windows_Appendix_B&quot;&gt;{{cite book | first=Joe | last=Duffy | year=2009 | title=Concurrent Programming on Windows | isbn=&quot;032143482X&quot; | pages=&quot;887-929&quot; }}&lt;/ref&gt;<br /> <br /> ==Architecture==<br /> The main concept in the Parallel Extensions to .NET is a &lt;code&gt;Task&lt;/code&gt;, which is a small unit of code, usually represented as a [[Lambda expression|lambda function]], that can be executed independently. Both PLINQ and the TPL API provides methods to create the Tasks - PLINQ divides a query into smaller Tasks, and the &lt;code&gt;Parallel.For&lt;/code&gt;, &lt;code&gt;Parallel.ForEach&lt;/code&gt; and &lt;code&gt;Parallel.Invoke&lt;/code&gt; methods divide a loop into Tasks. <br /> <br /> PFX includes a &lt;code&gt;Task Manager&lt;/code&gt; object which schedules the Tasks for execution. A Task Manager contains a global [[queue (data structure)|queue]] of Tasks, which are then executed. In addition, it also encapsulates multiple [[Thread (computing)|threads]] onto which the Tasks are executed. By default, as many threads as there are processors (or processor cores) on the system are created, though this number may be manually modified. Each thread is associated with a thread-specific queue of Tasks. Each thread, when idle, picks up a batch of Tasks, and puts on its local queue, and then executes them one by one. If the global queue is empty, a thread will look for Tasks in the queues of its peers, and will take the Tasks which have been in the queue the longest (''task stealing''). When in execution, the Tasks will be executed independently, with the change in state of one Task independent of others. As a result, if they use a shared resource, they still need to be synchronized manually using locks or other constructs.<br /> <br /> ==See also==<br /> *[[Concurrency and Coordination Runtime]]<br /> *[[Joins (concurrency library)|Joins]]<br /> *[[Grand Central Dispatch]] - comparable technology in [[Mac OS X 10.6]] developed by [[Apple Inc.|Apple]].<br /> *[[Java Concurrency]] - comparable technology in [[Java]] (also known as [[JSR]] 166).<br /> *[[Thread pool pattern]]<br /> *[[Task parallelism]]<br /> <br /> ==References==<br /> {{reflist|2}}<br /> <br /> ==External links==<br /> *[http://www.microsoft.com/downloads/details.aspx?FamilyId=348F73FD-593D-4B3C-B055-694C50D2B0F3&amp;displaylang=en Parallel FX CTP June 2008]<br /> *[http://msdn.microsoft.com/en-us/concurrency/default.aspx Parallel Computing Developer Center]<br /> <br /> {{MSNav|open=DotNET}}<br /> <br /> [[Category:.NET framework]]</div> FatalError https://de.wikipedia.org/w/index.php?title=Drools&diff=165386346 Drools 2009-07-12T02:10:15Z <p>FatalError: </p> <hr /> <div>{{for|the tendency of saliva to flow out of the mouth|drooling}}<br /> {{Infobox Software <br /> | name = Drools<br /> | logo = &lt;!-- Image with inadequate rationale removed: [[Image:JBoss Logo.gif|215px]] --&gt;<br /> | caption =<br /> | developer = [[Red Hat]]<br /> | latest release version = 5.0<br /> | latest release date = {{release date|2009|05|27}}<br /> | latest preview version = <br /> | latest preview date = <br /> | operating system = [[Cross-platform]]<br /> | programming language = [[Java (programming language)|Java]]<br /> | genre = [[rules engine]]<br /> | license = [[Apache License|ASL 2]]<br /> | website = http://www.jboss.org/drools/<br /> }}<br /> <br /> '''Drools''' is a [[business rule management system]] (BRMS) with a [[forward chaining]] [[inference]] based [[rules engine]], more correctly known as a [[production rule system]], using an enhanced implementation of the [[Rete algorithm]].<br /> <br /> Drools is based on the [[JSR-94]] standard for its [[business rule]] engine and enterprise framework for the construction, maintenance, and enforcement of business policies in an organization, application, or service.<br /> <br /> == History ==<br /> The Drools Project was started by Bob McWhirter in 2001 and registered at [[SourceForge]]. Drools 1.0 was never released as the limitations of a [[Brute-force search|brute force linear search]] approach were soon realised and work started on Drools 2.0, which was loosely based on the [[Rete algorithm]], and the project was moved to [[Codehaus]]. During the 2.0 development cycle at Codehaus Mark Proctor became the project lead and moved the project to a final 2.0 release. At this point the project had become the leading [[Java (language)|Java]] [[open source]] rule engine with a strong community and demand had started for commercial services. In October 2005 Drools was federated into [[JBoss]] as part of their JEMS offering and rebranded ''JBoss Rules''. In 2006 JBoss itself was acquired by [[Red Hat]]. With financial backing from JBoss the JBoss Rules rewrite was possible with a full and enhanced Rete implementation with GUI tooling. Mid 2007 the Drools name was reclaimed since after two years people were still predominantly calling it Drools and having to refer to it as &quot;Drools aka JBoss Rules&quot;, or &quot;Drools (JBoss Rules)&quot; was confusing. For the meantime the product is still also called JBoss Rules.<br /> <br /> The current version of JBoss Rules is 4.0.7, which is not backwards compatible with previous versions.<br /> <br /> == Drools 5 ==<br /> <br /> Drools version 5.0 was released on May 19, 2009. The main goals of this version is to address [[Complex Event Processing (CEP)|CEP]] and separate concerns.&lt;ref name=&quot;GAnew&quot;&gt;[http://downloads.jboss.com/drools/docs/5.0.1.26597.FINAL/drools-introduction/html_single/index.html#d0e26 What is new in Drools 5.0]&lt;/ref&gt;<br /> <br /> ==Technology==<br /> <br /> Drools is a [[rules engine]] implementation based on [[Charles Forgy]]'s [[Rete algorithm]] tailored for the Java language. Adapting Rete to an [[object-oriented]] interface allows for more natural expression of business rules with regards to business objects. Drools is written in [[Java (language)|Java]], but able to run on Java and [[.NET Framework|.NET]].<br /> <br /> Drools is designed to allow pluggeable language implementations. Currently rules can be written in [[Java (programming language)|Java]], [[MVEL]], [[Python (programming language)|Python]] and [[Groovy (programming language)|Groovy]]. Drools also provides for [[declarative programming]] and is flexible enough to match the semantics of the problem domain with [[domain specific language]]s (DSL) via [[XML]] using a schema defined for the problem domain. DSLs consist of XML elements and attributes that represent the problem domain.<br /> <br /> ==JBoss Rules==<br /> <br /> '''JBoss Rules''' is a [[reasoning engine]] that includes a forward chaining rule engine based on Drools. '''JBoss Rules''' is the productised version of '''Drools'''; this means it comes with support that will last several years for that particular branch, with bug and essential feature back ports. For a time the Drools name was dropped in an attempt to fully establish the JBoss Rules brand as both the project and the product; however, two years later, the community was mostly still calling it Drools, so the name was reclaimed by the community for the project. The product name remains '''JBoss Rules'''.<br /> <br /> ==References==<br /> {{Reflist}}<br /> <br /> ==Bibliography==<br /> {{refbegin}}<br /> *{{citation<br /> | first1 = Paul <br /> | last1 = Browne<br /> | date = April 1, 2009<br /> | title = JBoss Drools Business Rules<br /> | edition = 1st<br /> | publisher = [[Packt Publishing]]<br /> | pages = 304<br /> | isbn = 1847196063<br /> | url = http://www.packtpub.com/jboss-drools-business-rules/book<br /> }}<br /> *{{citation<br /> | first1 = Michal<br /> | last1 = Bali<br /> | date = June 2009<br /> | title = Drools JBoss Rules 5.0 Developer's Guide<br /> | edition = 1st<br /> | publisher = [[Packt Publishing]]<br /> | pages = 250<br /> | isbn = 1847195644<br /> | url = http://www.packtpub.com/drools-jboss-rules-5-0-developers-guide/book<br /> }}<br /> {{refend}}<br /> <br /> ==External links==<br /> * [http://www.jboss.org/drools/ Drools] [http://legacy.drools.codehaus.org/ Drools 2.0 Codehaus site] [http://sourceforge.net/projects/drools/ Drools Sourceforge site]<br /> * [http://www.jboss.org/drools/featuresandscreenshots.html features and screenshots]<br /> * [http://blog.athico.com Drools Blog] <br /> * [http://www.jboss.com/products/rules JBoss Rules]<br /> * [http://droolsdotnet.codehaus.org Drools.Net] <br /> * [http://fnokd.com/ Bob McWhirter]<br /> * [http://www.markproctor.com/ Mark Proctor]<br /> * [http://blog.athico.com/2007/07/jboss-drools-vs-jboss-rules.html JBoss Drools vs JBoss Rules]<br /> * [http://www-128.ibm.com/developerworks/java/library/j-drools/ Implementing business logic with Drools]<br /> * [http://www.onjava.com/pub/a/onjava/2005/08/03/drools.html Give your business logic a framework with Drools]<br /> * [http://hydrogen.informatik.tu-cottbus.de/wiki/index.php/Drools Drools wiki]<br /> * [http://chiralsoftware.com/seam-security-rules/jboss-rules.seam Article on Seam security with JBoss Rules]<br /> <br /> <br /> [[Category:Rule engines]]<br /> [[Category:Red Hat]]<br /> <br /> [[fr:Drools]]</div> FatalError https://de.wikipedia.org/w/index.php?title=Lancair_Evolution&diff=177086339 Lancair Evolution 2009-07-08T04:38:17Z <p>FatalError: Reverted edits by 72.0.184.125 to last revision by Ahunt (HG)</p> <hr /> <div>{{Future aircraft}}<br /> {|{{Infobox Aircraft Begin<br /> |name=Lancair Evolution<br /> |image=<br /> |caption=<br /> }}{{Infobox Aircraft Type<br /> |type=Four Place Turboprop Single<br /> |manufacturer=[[Lancair]]<br /> |designer=<br /> |first flight=<br /> |introduced=<br /> |retired=<br /> |status=In development<br /> |primary user=<br /> |more users=<br /> |produced=<br /> |number built=<br /> |unit cost= USD$750,000 - USD$1m (completed aircraft)<br /> |variants with their own articles=<br /> }}<br /> |}<br /> The '''[[Lancair]] Evolution''' is a next generation high performance [[Homebuilt aircraft|kit-built]] four-place single [[turboprop]]-engined aircraft being developed by the [[United States|USA]] company [[Lancair]]. It is constructed of [[carbon fiber]] composite materials. The Evolution has been certified under the [[Federal Aviation Administration|FAA]] [[Experimental aircraft]] category. <br /> <br /> ==Performance==<br /> The aircraft is powered by the [[Pratt &amp; Whitney Canada PT6|Pratt and Whitney PT6A]] developing 927 hp and is expected to cruise at 338 knots at 25,000 ft with a fuel burn of 35 gallons per hour (Jet A). Cruising at 270 knots and 28,000ft it will consume 23 gallons per hour of [[Jet fuel]]. It will have a useful load of 814 pounds while carrying its full fuel load of 140 gallons. The Evolution will be able to carry a full fuel load, 4 passengers and 150 pounds of cargo. It has a 61 knot [[stall speed]].<br /> <br /> ==Safety==<br /> * Designed to [[Federal Aviation Regulations|FAR]] Part 23 [[Type certificate|aircraft certification]] standards<br /> * [[Ballistic Recovery Systems]] (BRS) parachute system<br /> <br /> ==Specifications==<br /> {{aero-specs}}<br /> {{aircraft specifications<br /> |jet or prop?=prop<br /> |plane or copter?=plane<br /> <br /> &lt;!-- please include units. if something doesn't apply, leave it blank. --&gt;<br /> |crew=1, pilot<br /> |capacity=4 passengers, incl. pilot<br /> |length main=30ft<br /> |length alt= 9.1m&lt;!--m--&gt;<br /> |span main= 37ft<br /> |span alt= 11.3m&lt;!--m--&gt;<br /> |height main= 10ft<br /> |height alt= 3.04m &lt;!--m--&gt;<br /> |area main=<br /> |area alt= &lt;!--cu m--&gt;<br /> |empty weight main= &lt;!--lb--&gt;<br /> |empty weight alt= &lt;!--kg--&gt;<br /> |loaded weight main=&lt;!-- lb--&gt;<br /> |loaded weight alt=&lt;!-- kg--&gt;<br /> |useful load main=814 lbs&lt;!-- lb--&gt;<br /> |useful load alt=369kg&lt;!-- kg--&gt;<br /> |max takeoff weight main=&lt;!-- lb--&gt;<br /> |max takeoff weight alt=&lt;!-- kg--&gt;<br /> <br /> |engine (prop)=[[Pratt &amp; Whitney Canada PT6]]A-135A<br /> |type of prop=[[Turboprop]]<br /> |number of prop= 1<br /> |thrust main= 927hp<br /> |thrust alt= <br /> <br /> |max speed main=338 knots<br /> |max speed alt=389 mph, 626 km/h<br /> |cruise speed main=270 knots<br /> |cruise speed alt=alt=310 mph, 500 km/h<br /> |range main=<br /> |range alt=<br /> |ceiling main=28,000 ft<br /> |ceiling alt=8,500 m<br /> |climb rate main=&lt;!-- ft/min--&gt;<br /> |climb rate alt=&lt;!-- m/s--&gt;<br /> |loading main=&lt;!-- lb/ft²--&gt;<br /> |loading alt=&lt;!-- kg/m²--&gt;<br /> |thrust/weight=&lt;!-- a unitless ratio--&gt;<br /> <br /> }}<br /> <br /> ==Related Aircraft==<br /> * [[Lancair Propjet]]<br /> * [[Lancair IV-P]]<br /> <br /> ==External links==<br /> *[http://www.lancairevolution.com/ Lancair Evolution Manufacturer's page]<br /> *[http://www.pw.utc.com/vgn-ext-templating/v/index.jsp?vgnextoid=2e35288d1c83c010VgnVCM1000000881000aRCRD&amp;prid=77f5c230314d3110VgnVCM100000c45a529f____ Pratt and Whitney Press Release]<br /> *[http://www.airventure.org/2007/5thur26/lancair.html Airventure News Page on Lancair Evolution]<br /> *[http://aero-tv.net/index.cfm?do=app.bestView&amp;videoid=f9c008f2-5d7e-47e8-833c-db87247e49b6 Video on Lancair Evolution]<br /> *[http://www.youtube.com/watch?v=r0CfmaAi0O0 YouTube - Lancair Evolution First Flight]<br /> *[http://www.airliners.net/photo/Lancair-Evolution/1401468/M/ Picture of a brand new Lancair Evolution at Airventure 2008.]<br /> <br /> {{Lancair}}<br /> {{Aviation lists}}<br /> <br /> [[Category:Aircraft manufactured by the United States]]<br /> [[Category:Low wing aircraft]]<br /> [[Category:Single engine aircraft]]<br /> [[Category:Propeller aircraft]]<br /> [[Category:Upcoming aircraft]]</div> FatalError https://de.wikipedia.org/w/index.php?title=The_Receiving_End_of_Sirens&diff=168505356 The Receiving End of Sirens 2009-07-05T22:07:11Z <p>FatalError: minor edits</p> <hr /> <div>{{Refimprove|date=August 2008}}<br /> {{Infobox Musical artist &lt;!-- See Wikipedia:WikiProject Musicians --&gt;<br /> | Name = The Receiving End Of Sirens<br /> | Img =&lt;!-- Put only the image name (e.g. Example.png) without the Image: prefix. --&gt;<br /> | Img_capt = L to R: Brendan Brown, Casey Crescenzo, Alex Bars, Nate Patterson, Andrew Cook<br /> | Img_size = &lt;!-- Only for images narrower than 220 pixels. Set the value as a number without &quot;px&quot;. --&gt;<br /> | Landscape = <br /> | Background = group_or_band<br /> | Alias = TREOS&lt;br /&gt;The Red Eye Of Soromon<br /> | Origin = [[Boston]], [[Massachusetts]], [[United States|U.S.]]<br /> | Genre = [[Experimental rock]], [[post-hardcore]]<br /> | Years_active = 2003–2008<br /> | Label = [[Triple Crown Records|Triple Crown]]<br /> | Associated_acts = [[The Dear Hunter]]&lt;br /&gt;[[Isles &amp; Glaciers]]&lt;br /&gt;[[Boys Night Out]]<br /> | URL = [http://www.thereceivingendofsirens.com/ Official Site]<br /> | Current_members = <br /> | Past_members = Alex Bars&lt;br /&gt;Brendan Brown&lt;br /&gt;Nate Patterson&lt;br /&gt;Andrew Cook&lt;br /&gt;Brian Southall&lt;br /&gt;[[Casey Crescenzo]]&lt;br /&gt;Ben Potrykus<br /> | Notable_instruments = <br /> }}<br /> <br /> '''The Receiving End of Sirens''' (often abbreviated '''TREOS''') was a rock band from [[Boston]], [[Massachusetts]], formed in 2003.&lt;ref&gt;{{cite web|url=http://www.absolutepunk.net/artists/showlink.php?do=showdetails&amp;l=2682|title=Profile on AbsolutePunk.net|accessdate=September 12|accessyear=2008}}&lt;/ref&gt;<br /> <br /> ==Overview==<br /> <br /> The band played on the 2005 [[Warped Tour]] and has toured with such acts as [[Gatsbys American Dream]], [[A Wilhelm Scream]], [[30 Seconds to Mars]], [[Funeral for a Friend]], [[Saves the Day]], [[Senses Fail]], [[Thrice]], and [[New Found Glory]]. The band's first headlining tour, &quot;The New Hope Tour,&quot; began on March 31, 2006. About a week before the start of the tour, guitarist/vocalist Alex fell down a flight of stairs and broke his scapula and two ribs and punctured his lung. A question of whether or not he would be able to perform arose, yet he pulled through. Some bands supporting the band on their first headlining tour were [[As Tall as Lions]], [[A Thorn for Every Heart]], [[Hit the Lights]] and [[I Am the Avalanche]].<br /> <br /> On March 18, 2008 the band announced that it would &quot;no longer exist in the way it has for the past 5 years&quot; on their [[MySpace]] page. The main reason for the break up was the fact that Brendan had a child in January, and he decided he needed to reassess his priorities. In a MySpace bulletin he claimed that all of the members still keep a passion for music and the love for their fans. The band played two of their last three last shows at Lupo's in Providence, Rhode Island on May 2, supported by [[Envy on the Coast]] and [[Therefore I Am]], and The Bamboozle Festival in East Rutherford, New Jersey on May 4. On May 5, a final farewell was performed under the pseudonym The Red Eye of Soromon at Harper's Ferry in Allston, Massachusetts.<br /> <br /> ==Name==<br /> According to drummer Andrew Cook: <br /> &lt;blockquote&gt;&quot;I was a cook at a place called McCarthy's Pub in Massachusetts. A bunch of police cars and ambulances went screaming by and the name popped in my head. Like, thinking about how people never really think what's 'on the receiving end of sirens,' because its such a common thing just to hear the sirens. Especially if you live in a city, it just becomes this commonplace thing, nobody thinks twice about it anymore. Even though there's so much awful stuff going on in the world, and horrible things that happen to people, it's kind of like 'out of sight, out of mind.' It's just kind of a sad thing. So it's kind of a commentary on that. It also works on a couple levels. It can be taken as the Greek mythology example with the Sirens that lure sailors in with their singing, so being on the receiving end of those sirens isn't a great thing. It works both ways.&quot;&lt;ref&gt;[http://www.heartsandsleeves.com/html/the_receiving_end_of_sirens.html The Receiving End Of Sirens&lt;!-- Bot generated title --&gt;]&lt;/ref&gt;&lt;/blockquote&gt;<br /> <br /> The band has also been known to perform under the pseudonym The Red Eye of Soromon [''sic''], or if abbreviated, TREOS. The band plays under the name The Red Eye of Soromon, presumably, to avoid record label contract issues when playing local venues in Massachusetts. The most recent performance under the pseudonym was on [http://www.absolutepunk.net/showthread.php?t=209012 May 5, 2008].<br /> <br /> ==History==<br /> The band formed in 2003, and their original lineup consisted of Brendan Brown, Alex Bars, Andrew Cook, Nate Patterson, and Ben Potrykus, formerly of Massachusetts pop-punk band Fake-ID. With this lineup they recorded two demos with a total of 5 songs, including two versions of &quot;The Race&quot;, and gained a small, but loyal, following throughout New England. After a conflict of interest involving the future of the band and their signing with a record label, Ben left the band. They played their last show with this lineup on November 8, 2003 in Fitchburg, MA. <br /> <br /> After almost 6 months on hiatus the band came back to life with their new member [[Casey Crescenzo]]. They played their first show with the new lineup on April 20, 2004 in Amherst, MA. Their new lineup featured three-tiered vocals split by Casey, Alex, and Brendan, and the addition of keyboards and synth. At this time they also released their self-titled 5 song EP and a year later in April 2005 their long awaited full-length ''Between the Heart and the Synapse'' was released to the world. <br /> <br /> After a year of almost non-stop touring, [[Casey Crescenzo]] parted ways with the band in May of 2006 and started pursuing his side project, [[The Dear Hunter]], full-time. After Casey's departure, long time friend of the band Ross filled in on guitar during their tour with Circa Survive and most notably at radio station WFNX &quot;Disorientation&quot; free concert in Boston featuring TREOS and Taking Back Sunday.<br /> <br /> On November 6, 2006 the band announced their new permanent member as Brian Southall (formerly the drummer of [[Boys Night Out (band)|Boys Night Out]]). He plays guitar, keys, and backup vocals.<br /> <br /> The band had arranged to stream a live concert from Vintage Vinyl Record Store in New Jersey on the new real-time entertainment site www.Yebotv.com on August 9, 2007.<br /> <br /> On March 18, 2008 Brendan Brown announced via a [[MySpace]] bulletin that because of his new priorities (having a baby), the band is coming to an end.<br /> &lt;blockquote&gt;<br /> I, Brendan, must admit that I am the main reason why TREOS is ending. My choice to no longer continue on with The Receiving End of Sirens has nothing to do with a lack of love for my band, and/or band members. It has nothing to do with a lack of passion for our music, or any music for that matter. My decision is due mostly in part to a huge rearranging of priorities in my life, and the unquestionable responsibility that comes along with becoming a father. January 15 my<br /> wife and I welcomed Parker Brown, our first child, into the world. Since then everything has changed. The happiness and joy I gained from being part of this band can't ever be taken away from me, but to be honest, I have lived a long time thinking that specific joy was as good as it got. Since Parker's birth I have realized my joy is a great thing, in and of itself, but the happiness I receive from his happiness is exponentially greater than anything I could muster on my own. The thought of leaving him to tour for months at a time is something I just can't stomach. I can't<br /> stand to miss another thing. I realize how important I am to my band, and how important our band is to some people, but I am far more elemental in the growth and happiness of my child, than I am anything else in this world.<br /> &lt;/blockquote&gt;<br /> <br /> On Friday May 2, 2008 the band played its farewell show with Envy on the Coast and Therefore I Am. [[Casey Crescenzo]] made a return halfway through the set. TREOS performed virtually all of their tracks, forcing them to repeat Planning a Prison Break as their [[encore (concert)|encore]]. Absolute punk made a statement about their final show:<br /> <br /> &lt;blockquote&gt;<br /> Casey Crescenzo played with The Receiving End of Sirens last night at their final headlining show in Providence, Rhode Island. They played 21 songs (technically 22 because the crowd got them to play &quot;Planning a Prison Break&quot; twice) - almost every track spanning their three CD discography. A fan (Brandon) also proposed to his girlfriend on stage during the set &amp; they are now engaged! It was truly an eve of magic &amp; delight. The band will be greatly missed by their fans, and we wish them each the best of luck in the future!<br /> &lt;/blockquote&gt;<br /> <br /> The band also played [[The Bamboozle]] on May 4, 2008 and performed their final show as The Red Eye of Soromon in Allston, MA on May 5, 2008, where they played all of ''Between the Heart and the Synapse'' in order from start to finish, with Casey, followed by an encore set. <br /> <br /> The band recorded their farewell show at Lupo's on May 2, 2008, however, there has been no announcement stating a release date. Along with concert footage, the DVD will contain never-before-seen interviews, as well as backstage footage from many of the band's tours. The live concert footage will span twenty-two songs and will feature Casey Crescenzo for the latter half of the performance.<br /> <br /> Since the breakup of The Receiving End of Sirens Brian Southall has begun working on a new project titled The Company We Keep.<br /> On November 25, 2008, the band posted a video of &quot;Planning a Prison Break&quot; live from their May 2 show. This hints that a DVD may be officially announced in the near future. <br /> <br /> On June 6, 2009, the first news pointing towards a closer release date was found at absolutepunk, where TREOS asked for fans to send in pictures of them with the band.<br /> <br /> ==Band members==<br /> *Brendan Brown - Vocals, Bass guitar<br /> *Alex Bars - Rhythm Guitar, Vocals<br /> *Nate Patterson - Lead Guitar<br /> *Andrew Cook - Drums<br /> *Brian Southall - Guitar, Keyboard<br /> <br /> ==Former members==<br /> *Ben Potrykus - Lead Vocals<br /> *[[Casey Crescenzo]] - Vocals, Guitar, Keys<br /> <br /> ==Discography==<br /> <br /> {| border=&quot;2&quot; cellpadding=&quot;4&quot; cellspacing=&quot;0&quot; style=&quot;margin: 1em 1em 1em 0; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;&quot;<br /> |'''Date of Release'''<br /> |'''Title'''<br /> |'''label'''<br /> |-<br /> |August 9, 2004<br /> |''[[The Receiving End of Sirens EP]]''<br /> |self-released<br /> |-<br /> |April 25, 2005<br /> |''[[Between the Heart and the Synapse]]''<br /> |[[Triple Crown Records]]<br /> |-<br /> |August 7, 2007<br /> |''[[The Earth Sings Mi Fa Mi]]''<br /> |[[Triple Crown Records]]<br /> |}<br /> <br /> ==Videography==<br /> *[[Planning a Prison Break]] (2005)<br /> *This Armistice (2006)<br /> *The Evidence (2007)<br /> *Smoke &amp; Mirrors (2007)<br /> <br /> ==References==<br /> {{Reflist}}<br /> <br /> ==External links==<br /> * {{Official|http://www.thereceivingendofsirens.com/}}<br /> * {{MySpace|thereceivingendofsirens}}<br /> * {{PureVolume|thereceivingendofsirens}}<br /> * [http://audioaddictionmag.com/thecompanywekeepinterview.aspx The Company We Keep interview with Audio Addiction Magazine]<br /> * [http://toomuchrock.com/shows/sorry.html Photos and review from a TREOS set on Monday July 7th, 2003 at TT the Bears in Cambridge, MA]<br /> <br /> {{DEFAULTSORT:Receiving End of Sirens, The}}<br /> [[Category:American rock music groups]]<br /> [[Category:2000s music groups]]<br /> [[Category:Alternative rock groups]]<br /> [[Category:Musical groups from Boston, Massachusetts]]<br /> [[Category:Post-hardcore groups]]<br /> [[Category:Musical groups established in 2003]]<br /> [[Category:Musical groups disestablished in 2008]]<br /> <br /> [[it:The Receiving End of Sirens]]</div> FatalError https://de.wikipedia.org/w/index.php?title=Global_Poverty_Project&diff=179273391 Global Poverty Project 2009-07-02T06:00:07Z <p>FatalError: spacing</p> <hr /> <div>The '''Global Poverty''' Project is an educational program that is aims to aid poverty through a series of presentations around the world. Supporting the eight [[Millennium Goals]] set out in 2000, the project aims to raise awareness toward the topic of poverty and facilitate change through their motto “catalyzing the movement to end extreme poverty.” &lt;ref&gt;http://www.globalpovertyproject.com/index.php&lt;/ref&gt;<br /> <br /> == History ==<br /> The '''Global Poverty Project''' was created by [[Hugh Evans]] (founder of the [[Oaktree Foundation]], Australian leader of the[[ Make Poverty History campaign]]) and community education expert Simon Moss. Launching in Australia in July 2009, the organization also has teams in the United Kingdom, Canada, South Africa and Mexico.<br /> <br /> == Vision ==<br /> 192 [[United Nations]] members and approximately 23 international leaders have set out eight international development goals to be achieved by 2015. They include targeting the eradication of poverty, achieving universal primary education, improving maternal health and combating [[HIV/AIDS]]. The Project supports the millenium goals and is an attempt to address the needs of the 1.4 billion people who live in extreme poverty&lt;ref&gt;http://www.globalpovertyproject.com/index.php&lt;/ref&gt;. Their vision is communicated through a slideshow and presentation that is currently travelling throughout Australia.<br /> <br /> == Action ==<br /> In their &quot;groundbreaking presentation&quot;&lt;ref&gt;http://www.hughevans.com.au/press?id=45&lt;/ref&gt;, the global poverty project shows what extreme poverty is, why it can be eliminated and what people can do in response to it. The Global Poverty Project will “arm individuals with the tools, knowledge and inspiration to influence governments and take action through the presentation and local campaign partners”.&lt;ref&gt;http://www.hughevans.com.au/press?id=45&lt;/ref&gt;<br /> <br /> == Supporters ==<br /> The Global Poverty Project is supported by an advisory panel that include Austalian actor [[Hugh Jackman]]&lt;ref&gt;http://www.youtube.com/watch?v=ckhD5NksrLI&lt;/ref&gt;, producer of movie [[An inconvenient truth]] Chris Adams and director of Scorpio music Rebekah Cambell. <br /> <br /> == References ==<br /> {{reflist}}<br /> <br /> == External Links ==<br /> Global Poverty Project Homepage http://www.globalpovertyproject.com/index.php<br /> <br /> Oaktree Foundation Homepage http://oaktreefoundation.wordpress.com/2009/06/04/global-poverty-project/<br /> <br /> Hugh Evans http://www.hughevans.com.au/press?id=45<br /> Millenium Goals http://www.un.org/millenniumgoals/</div> FatalError https://de.wikipedia.org/w/index.php?title=Spaltenorientierte_Datenbank&diff=85345411 Spaltenorientierte Datenbank 2009-06-01T22:43:53Z <p>FatalError: /* Storage efficiency vs. Random Access */</p> <hr /> <div>{{Unreferenced|date=October 2008}}<br /> <br /> A '''column-oriented DBMS''' is a [[database management system]] (DBMS) which stores its content by column rather than by row. This has advantages for databases such as [[data warehouse]]s and library catalogues, where aggregates are computed over large numbers of similar data items.<br /> &lt;ref name=&quot;C-Store&quot;&gt;[http://db.lcs.mit.edu/projects/cstore/vldb.pdf C-Store: A column-oriented DBMS], Stonebraker et al., Proceedings of the 31st VLDB Conference, Trondheim, Norway, 2005&lt;/ref&gt; This approach is contrasted with '''row-oriented''' databases and with [[correlation database]]s, which use a value-based storage structure.<br /> <br /> ==Description==<br /> Simplified greatly, DBMS systems are challenged with storing tabular data made up of rows and columns. Further, the set of columns is generally fixed by program design, while the number of rows is variable through use of the program. In one simple example, DBMS data might contain the following table.<br /> <br /> {| class=&quot;wikitable&quot;<br /> |-<br /> ! EmpId<br /> ! Lastname<br /> ! Firstname<br /> ! Salary<br /> |-<br /> | 1<br /> | Smith<br /> | Joe<br /> | 40000<br /> |-<br /> | 2<br /> | Jones<br /> | Mary<br /> | 50000<br /> |-<br /> | 3<br /> | Johnson<br /> | Cathy<br /> | 44000<br /> |}<br /> <br /> This simple table includes an employee identifier (EmpId), name fields (Lastname and Firstname) and a salary (Salary). <br /> <br /> Modern computer systems simplify the details of underlying storage down to a one-dimensional storage space, using a single numerical address to refer to a location. This is true for [[random access memory]], [[hard disk drives]], and most other computer storage media. DBMS systems therefore must orient their data by flattening it onto a one-dimensional address space. Combine the common expectation for a fixed number of columns and a variable number of rows with the mapping from two dimensions to one, and we arrive at a column or row oriented classification.<br /> <br /> A row-oriented implementation of a DBMS would store every attribute of a given row in sequence, with the last entry of one row followed by the first entry of the next. <br /> <br /> 1,Smith,Joe,40000;2,Jones,Mary,50000;3,Johnson,Cathy,44000;<br /> <br /> A column-oriented implementation of a DBMS would store every attribute of a given column in sequence, with the column values for the same column stored in sequence, with the end of one column followed by the beginning of the next. <br /> <br /> 1,2,3;Smith,Jones,Johnson;Joe,Mary,Cathy;40000,50000,44000;<br /> <br /> It is important to recognize that modern DBMS are not so simply column-oriented or row-oriented as in the simple example above, since [[Partition (database)|partitioning]], [[Index (database)|indexing]], caching, materializing views, [[OLAP cube]]s, and transactional systems such as [[write ahead logging]] or [[multiversion concurrency control]] all dramatically affect physical organization of DBMS data. That said, [[online transaction processing]] (OLTP)-focused RDBMS systems are more row-oriented, while [[online analytical processing]] (OLAP)-focused systems are a balance of row-oriented and column-oriented.<br /> <br /> == Benefits ==<br /> <br /> Comparisons between row-oriented and column-oriented systems are typically concerned with the efficiency of hard-disk access for a given workload, as [[seek time]] is incredibly long compared to the other delays in computers. Further, because seek time is improving at a slow rate relative to CPU power (see [[Moore's Law]]), this focus will likely continue on systems reliant on hard-disks for storage. Following is a set of over-simplified observations which attempt to paint a picture of the trade-offs between column and row oriented organizations.<br /> <br /> # Column-oriented systems are more efficient when an aggregate needs to be computed over many rows but only for a notably smaller subset of all columns of data, because reading that smaller subset of data can be faster than reading all data.<br /> # Column-oriented systems are more efficient when new values of a column are supplied for all rows at once, because that column data can be written efficiently and replace old column data without touching any other columns for the rows.<br /> # Row-oriented systems are more efficient when many columns of a single row are required at the same time, and when row-size is relatively small, as the entire row can be retrieved with a single disk seek. <br /> # Row-oriented systems are more efficient when writing a new row if all of the column data is supplied at the same time, as the entire row can be written with a single disk seek.<br /> <br /> In practice, row oriented architectures are well-suited for [[OLTP]]-like workloads which are more heavily loaded with interactive transactions. Column stores are well-suited for [[OLAP]]-like workloads (e.g., [[data warehouse]]s) which typically involve a smaller number of highly complex queries over all data (possibly [[terabyte]]s). <br /> <br /> === Storage efficiency vs. random access ===<br /> <br /> Column data is of uniform type; therefore, there are some opportunities for storage size optimizations available in column-oriented data that are not available in row oriented data. For example, many popular modern compression schemes, such as [[Lempel-Ziv-Welch|LZW]], make use of the similarity of adjacent data to compress. While the same techniques may be used on row-oriented data, a typical implementation will achieve less effective results. Further, this behavior becomes more dramatic when a large percentage of adjacent column data is either the same or not-present, such as in a sparse column (similar to a [[sparse matrix]]). The opposing tradeoff is Random Access. Retrieving all data from a single row is more efficient when that data is located in a single location, such as in a row-oriented architecture. Further, the greater adjacent compression achieved, the more difficult random-access may become, as data might need to be uncompressed to be read. Therefore, column-oriented architectures are sometimes enriched by additional mechanisms aimed at minimizing the need of access to compressed data&lt;ref name=&quot;Infobright&quot;&gt;[http://www.vldb.org/pvldb/1/1454174.pdf Brighthouse: an analytic data warehouse for ad-hoc queries], Slezak et al., Proceedings of the 34th VLDB Conference, Auckland, New Zealand, 2008&lt;/ref&gt;.<br /> <br /> ==Implementations==<br /> <br /> For many years, only the [[Sybase IQ]] product was commonly available in the column-oriented DBMS class. However, that has changed rapidly in the last few years with many open source and commercial implementations.<br /> <br /> Current examples of column-oriented DBMSs include:<br /> * Commercial<br /> ** [[Sybase IQ]]<br /> ** [[Vertica]] and its academic open-source cousin C-Store<br /> ** [[Valentina (Database)|Valentina Database]] <br /> ** [http://www.vectornova.com Vectornova/Vectorstar] High-speed Data Engine<br /> ** [[KDB (database)|KDB]]<br /> ** Addamark, now the [http://www.sensage.com Sensage] Scalable Log Server<br /> ** [[1010data]]'s Tenbase database<br /> ** [http://gov.thomsonhealthcare.com/Products/view/?id=76 DataProbe]<br /> ** [[BigTable]]<br /> ** [http://www.exasol.com EXASolution]<br /> ** [http://www.skytide.com Skytide XOLAP Server]<br /> ** [http://www.spacetimeresearch.com SuperSTAR from Space-Time Research]<br /> ** [[Paraccel|ParAccel Analytic Database]]<br /> * Commercial open-source<br /> ** [[Infobright]] (formerly Brighthouse) data engine, integrates with MySQL<br /> ** [http://www.vermontdatabase.com/rc21home.htm RC21] commercial open source project<br /> ** [http://www.jhterbekke.net/XplainDBMS.html Xplain] Semantic Database (called transposed files). &quot;The latest release was version 5.8 (1999)&quot;<br /> * Open-source<br /> ** [[C-Store]] No new release since Oct 2006<br /> ** [https://codeforge.lbl.gov/projects/fastbit/ FastBit] open source<br /> ** [http://www.infobright.org Infobright] Community Edition, regular updates<br /> ** [http://www.luciddb.org LucidDB] open source<br /> ** [[MonetDB]] academic open source project<br /> ** [[Metakit]] open source<br /> ** The [[S programming language]] and [[GNU R]] incorporate column-oriented data structures for statistical analyses<br /> ** [[HBase]] structured storage for [[Hadoop]] HDFS inspired by [[Bigtable]]<br /> ** [http://hypertable.org/ HyperTable] [[Bigtable]]-like structured storage written in C++ &lt;!-- works not only with HDFS in fact is DFS independent - http://code.google.com/p/hypertable/wiki/HypertableOverview --&gt;<br /> ** [http://code.google.com/p/the-cassandra-project The Cassandra Project] Facebook's distributed storage system based on a [[Bigtable]]-like data model.<br /> <br /> == References ==<br /> &lt;references/&gt;<br /> <br /> [[Category:Database management systems]]<br /> <br /> [[pl:CODB]]</div> FatalError https://de.wikipedia.org/w/index.php?title=Spaltenorientierte_Datenbank&diff=85345410 Spaltenorientierte Datenbank 2009-06-01T22:40:37Z <p>FatalError: /* Description */</p> <hr /> <div>{{Unreferenced|date=October 2008}}<br /> <br /> A '''column-oriented DBMS''' is a [[database management system]] (DBMS) which stores its content by column rather than by row. This has advantages for databases such as [[data warehouse]]s and library catalogues, where aggregates are computed over large numbers of similar data items.<br /> &lt;ref name=&quot;C-Store&quot;&gt;[http://db.lcs.mit.edu/projects/cstore/vldb.pdf C-Store: A column-oriented DBMS], Stonebraker et al., Proceedings of the 31st VLDB Conference, Trondheim, Norway, 2005&lt;/ref&gt; This approach is contrasted with '''row-oriented''' databases and with [[correlation database]]s, which use a value-based storage structure.<br /> <br /> ==Description==<br /> Simplified greatly, DBMS systems are challenged with storing tabular data made up of rows and columns. Further, the set of columns is generally fixed by program design, while the number of rows is variable through use of the program. In one simple example, DBMS data might contain the following table.<br /> <br /> {| class=&quot;wikitable&quot;<br /> |-<br /> ! EmpId<br /> ! Lastname<br /> ! Firstname<br /> ! Salary<br /> |-<br /> | 1<br /> | Smith<br /> | Joe<br /> | 40000<br /> |-<br /> | 2<br /> | Jones<br /> | Mary<br /> | 50000<br /> |-<br /> | 3<br /> | Johnson<br /> | Cathy<br /> | 44000<br /> |}<br /> <br /> This simple table includes an employee identifier (EmpId), name fields (Lastname and Firstname) and a salary (Salary). <br /> <br /> Modern computer systems simplify the details of underlying storage down to a one-dimensional storage space, using a single numerical address to refer to a location. This is true for [[random access memory]], [[hard disk drives]], and most other computer storage media. DBMS systems therefore must orient their data by flattening it onto a one-dimensional address space. Combine the common expectation for a fixed number of columns and a variable number of rows with the mapping from two dimensions to one, and we arrive at a column or row oriented classification.<br /> <br /> A row-oriented implementation of a DBMS would store every attribute of a given row in sequence, with the last entry of one row followed by the first entry of the next. <br /> <br /> 1,Smith,Joe,40000;2,Jones,Mary,50000;3,Johnson,Cathy,44000;<br /> <br /> A column-oriented implementation of a DBMS would store every attribute of a given column in sequence, with the column values for the same column stored in sequence, with the end of one column followed by the beginning of the next. <br /> <br /> 1,2,3;Smith,Jones,Johnson;Joe,Mary,Cathy;40000,50000,44000;<br /> <br /> It is important to recognize that modern DBMS are not so simply column-oriented or row-oriented as in the simple example above, since [[Partition (database)|partitioning]], [[Index (database)|indexing]], caching, materializing views, [[OLAP cube]]s, and transactional systems such as [[write ahead logging]] or [[multiversion concurrency control]] all dramatically affect physical organization of DBMS data. That said, [[online transaction processing]] (OLTP)-focused RDBMS systems are more row-oriented, while [[online analytical processing]] (OLAP)-focused systems are a balance of row-oriented and column-oriented.<br /> <br /> == Benefits ==<br /> <br /> Comparisons between row-oriented and column-oriented systems are typically concerned with the efficiency of hard-disk access for a given workload, as [[seek time]] is incredibly long compared to the other delays in computers. Further, because seek time is improving at a slow rate relative to CPU power (see [[Moore's Law]]), this focus will likely continue on systems reliant on hard-disks for storage. Following is a set of over-simplified observations which attempt to paint a picture of the trade-offs between column and row oriented organizations.<br /> <br /> # Column-oriented systems are more efficient when an aggregate needs to be computed over many rows but only for a notably smaller subset of all columns of data, because reading that smaller subset of data can be faster than reading all data.<br /> # Column-oriented systems are more efficient when new values of a column are supplied for all rows at once, because that column data can be written efficiently and replace old column data without touching any other columns for the rows.<br /> # Row-oriented systems are more efficient when many columns of a single row are required at the same time, and when row-size is relatively small, as the entire row can be retrieved with a single disk seek. <br /> # Row-oriented systems are more efficient when writing a new row if all of the column data is supplied at the same time, as the entire row can be written with a single disk seek.<br /> <br /> In practice, row oriented architectures are well-suited for [[OLTP]]-like workloads which are more heavily loaded with interactive transactions. Column stores are well-suited for [[OLAP]]-like workloads (e.g., [[data warehouse]]s) which typically involve a smaller number of highly complex queries over all data (possibly [[terabyte]]s). <br /> <br /> === Storage efficiency vs. Random Access ===<br /> <br /> Column data is of uniform type; therefore, there are some opportunities for storage size optimizations available in column oriented data that are not available in row oriented data. For example, many popular modern compression schemes, such as [[Lempel-Ziv-Welch|LZW]], make use of the similarity of adjacent data to compress. While the same techniques may be used on row-oriented data, a typical implementation will achieve less effective results. Further, this behavior becomes more dramatic when a large percentage of adjacent column data is either the same or not-present, such as in a sparse column (similar to a [[sparse matrix]]). The opposing tradeoff is Random Access. Retrieving all data from a single row is more efficient when that data is located in a single location, such as in a row-oriented architecture. Further, the greater adjacent compression achieved, the more difficult random-access may become, as data might need to be uncompressed to be read. Therefore, column-oriented architectures are sometimes enriched by additional mechanisms aimed at minimizing the need of access to compressed data&lt;ref name=&quot;Infobright&quot;&gt;[http://www.vldb.org/pvldb/1/1454174.pdf Brighthouse: an analytic data warehouse for ad-hoc queries], Slezak et al., Proceedings of the 34th VLDB Conference, Auckland, New Zealand, 2008&lt;/ref&gt;.<br /> <br /> ==Implementations==<br /> <br /> For many years, only the [[Sybase IQ]] product was commonly available in the column-oriented DBMS class. However, that has changed rapidly in the last few years with many open source and commercial implementations.<br /> <br /> Current examples of column-oriented DBMSs include:<br /> * Commercial<br /> ** [[Sybase IQ]]<br /> ** [[Vertica]] and its academic open-source cousin C-Store<br /> ** [[Valentina (Database)|Valentina Database]] <br /> ** [http://www.vectornova.com Vectornova/Vectorstar] High-speed Data Engine<br /> ** [[KDB (database)|KDB]]<br /> ** Addamark, now the [http://www.sensage.com Sensage] Scalable Log Server<br /> ** [[1010data]]'s Tenbase database<br /> ** [http://gov.thomsonhealthcare.com/Products/view/?id=76 DataProbe]<br /> ** [[BigTable]]<br /> ** [http://www.exasol.com EXASolution]<br /> ** [http://www.skytide.com Skytide XOLAP Server]<br /> ** [http://www.spacetimeresearch.com SuperSTAR from Space-Time Research]<br /> ** [[Paraccel|ParAccel Analytic Database]]<br /> * Commercial open-source<br /> ** [[Infobright]] (formerly Brighthouse) data engine, integrates with MySQL<br /> ** [http://www.vermontdatabase.com/rc21home.htm RC21] commercial open source project<br /> ** [http://www.jhterbekke.net/XplainDBMS.html Xplain] Semantic Database (called transposed files). &quot;The latest release was version 5.8 (1999)&quot;<br /> * Open-source<br /> ** [[C-Store]] No new release since Oct 2006<br /> ** [https://codeforge.lbl.gov/projects/fastbit/ FastBit] open source<br /> ** [http://www.infobright.org Infobright] Community Edition, regular updates<br /> ** [http://www.luciddb.org LucidDB] open source<br /> ** [[MonetDB]] academic open source project<br /> ** [[Metakit]] open source<br /> ** The [[S programming language]] and [[GNU R]] incorporate column-oriented data structures for statistical analyses<br /> ** [[HBase]] structured storage for [[Hadoop]] HDFS inspired by [[Bigtable]]<br /> ** [http://hypertable.org/ HyperTable] [[Bigtable]]-like structured storage written in C++ &lt;!-- works not only with HDFS in fact is DFS independent - http://code.google.com/p/hypertable/wiki/HypertableOverview --&gt;<br /> ** [http://code.google.com/p/the-cassandra-project The Cassandra Project] Facebook's distributed storage system based on a [[Bigtable]]-like data model.<br /> <br /> == References ==<br /> &lt;references/&gt;<br /> <br /> [[Category:Database management systems]]<br /> <br /> [[pl:CODB]]</div> FatalError https://de.wikipedia.org/w/index.php?title=Microsoft_Office_2010&diff=68227307 Microsoft Office 2010 2009-05-15T01:16:18Z <p>FatalError: </p> <hr /> <div>{{future software}}<br /> <br /> {{Infobox Software<br /> |name = Microsoft Office 2010<br /> |screenshot = [[Image:Word14.png|250px]]<br /> |caption = Microsoft Office Word 2010 (alpha)<br /> |developer = [[Microsoft]]<br /> |operating system = [[Microsoft Windows]]<br /> |platform = [[Microsoft Windows]]<br /> |genre = [[Office suite]]<br /> |license = [[Proprietary software|Proprietary]] [[EULA]] [[Commercial software|(Commercial)]]<br /> }}<br /> <br /> [[Image:Excel14.png|thumb|right|Microsoft Office Excel 2010]]<br /> [[Image:Access14.png|thumb|right|Microsoft Office Access 2010]]<br /> [[Image:Publisher14.png|thumb|right|Microsoft Office Publisher 2010]]<br /> [[Image:OneNote14.png|thumb|right|Microsoft Office OneNote 2010]]<br /> [[Image:Visio14.png|thumb|right|Microsoft Office Visio 2010]]<br /> <br /> '''Microsoft Office 2010''' &lt;ref&gt;{{cite web|title=Next Office and Exchange named 2010|url=http://bink.nu/news/next-office-and-exchange-named-2010.aspx|first=Steven|last=Bink|date=2009-04-10|accessdate=2009-04-10}}&lt;/ref&gt; (previously referred to by its codename '''Office 14''') is the next version ({{as of|2009|April|lc=on}}) of the [[Microsoft Office]] productivity suite for [[Microsoft Windows]]. It entered development during 2006 while [[Microsoft]] was finishing work on Microsoft Office 12, which was released as the [[Microsoft Office 2007|2007 Microsoft Office System]]. The major version number 13 has been skipped, presumably due to [[triskaidekaphobia|aversion to the number 13]].&lt;ref&gt;http://www.winsupersite.com/faq/office14.asp&lt;/ref&gt; It was previously thought that Office 2010 (then called Office 14) would ship in the first half of [[2009]],&lt;ref name=&quot;foley&quot;&gt;Foley, Mary Jo. &quot;Office 14: Think first half of 2009.&quot; &lt;cite&gt;All about Microsoft&lt;/cite&gt;, 14 February 2007. Accessed at http://blogs.zdnet.com/microsoft/?cat=16 on February 14, 2007.&lt;/ref&gt; but [[Steve Ballmer]] has officially announced that Office 2010 will ship in 2010.&lt;ref&gt;http://blogs.zdnet.com/microsoft/?p=2116&lt;/ref&gt; According to an article published in &lt;cite&gt;[[InfoWorld]]&lt;/cite&gt; in April 2006, Office 2010 will be more &quot;role-based&quot; than previous versions.&lt;ref name=&quot;infoworld&quot;&gt;Krill, Paul. &quot;Microsoft eyes 'people-ready' software.&quot; &lt;cite&gt;InfoWorld&lt;/cite&gt;, 5 April 2006. Accessed at http://www.infoworld.com/article/06/04/05/77167_HNwittssoftware2006_1.html on February 14, 2007.&lt;/ref&gt; The article cites Simon Witts, corporate vice president for Microsoft's Enterprise and Partner Group, as claiming that there would be features tailored to employees in &quot;roles such as research and development professionals, sales persons, and human resources.&quot; Borrowing from ideas termed &quot;[[Web 2.0]]&quot; when implemented on the [[Internet]], it is likely that Microsoft will incorporate features of [[SharePoint Server]] in Office 2010.&lt;ref name=&quot;foley2&quot;&gt;Foley, Mary Jo. &quot;Microsoft’s Office 2007 team wants in on Web 2.0.&quot;&lt;cite&gt;All about Microsoft&lt;/cite&gt;, 10 January 2007. Accessed at http://blogs.zdnet.com/microsoft/?p=194 on February 14, 2007.&lt;/ref&gt;<br /> <br /> Office 2010 will implement the ISO compliant version of [[Office Open XML]] which was standardized as ISO 29500 in March 2008.&lt;ref&gt; [http://www.microsoft.com/Presspass/press/2008/may08/05-21ExpandedFormatsPR.mspx Microsoft Expands List of Formats Supported in Microsoft Office] &lt;/ref&gt; Microsoft plans to offer a Web-based version of its Office productivity suite, known as Office Web, that will debut with the release of Office 2010.&lt;ref&gt;[http://www.informationweek.com/news/software/hosted/showArticle.jhtml?articleID=211800059 Microsoft Office 14 To Include Web Apps]&lt;/ref&gt; Office Web will include online versions of [[Microsoft Word|Word]], [[Microsoft Excel|Excel]], [[Microsoft PowerPoint|PowerPoint]] and [[Microsoft OneNote|OneNote]].<br /> <br /> The next versions of [[Microsoft Visio|Microsoft Office Visio]], [[Microsoft OneNote|OneNote]], [[Microsoft Project|Microsoft Office Project]], and [[Microsoft Publisher|Publisher]] will feature the [[Ribbon (computing)|ribbon]] interface element used in other Office 2007 applications.&lt;ref&gt;[http://www.microsoft.com/presspass/features/2008/feb08/02-05visio.mspx Microsoft Visio Conference Previews Upcoming New Features for Visio Users]&lt;/ref&gt;&lt;ref&gt;[http://www.microsoft.com/Presspass/exec/steve/2007/10-30OPConferenceBallmer.mspx Microsoft Office Project Conference 2007]&lt;/ref&gt;<br /> <br /> ==Builds==<br /> <br /> On April 15, 2009, Microsoft confirmed that Office 2010 will be officially released in the first quarter of 2010. They announced on May 12, 2009 at a Tech Ed event &lt;ref&gt;[http://news.cnet.com/8301-13860_3-10236813-56.html Office 2010 Technical Preview]&lt;/ref&gt;, that Office 2010 will begin technical testing during July. It will also be the first version of Office to ship in both [[32-Bit]] and [[64-bit]] versions. &lt;ref&gt;{{cite web|title=Next Office and Exchange named 2010|url=http://arstechnica.com/microsoft/news/2009/04/confirmed-office-2010-will-come-in-32-bit-and-64-bit.ars|first=Emil|last=Protalinski|date=2009-04-14|accessdate=2009-04-14|publisher=Ars Technica}}&lt;/ref&gt;&lt;ref&gt;{{cite web|title=Microsoft Details Dates, Versions of Office 2010|url=http://hothardware.com/News/Microsoft-Details-Dates-Versions-of-Office-2010|first=Jennifer|last=Johnson|date=2009-04-15|accessdate=2009-04-15|publisher=HotHardware}}&lt;/ref&gt;<br /> <br /> ===Alpha===<br /> <br /> On January 15, 2009, screenshots of an Office 2010 [[Software release life cycle#Alpha|alpha]] build were leaked by a tester.&lt;ref name=&quot;leak&quot;&gt;Protalinski, Emil. &quot;Leaked: First Office 14 screenshots.&quot;&lt;cite&gt;One Microsoft Way&lt;/cite&gt;, 15 January 2009. Accessed at http://arstechnica.com/journals/microsoft.ars/2009/01/15/leaked-first-office-14-screenshots on January 15, 2009.&lt;/ref&gt;<br /> <br /> ==Technical Preview==<br /> <br /> Microsoft announced that users can sign up and register for the preview at office2010themovie.com, with the intention of testing beggining early to mid July 2009.<br /> <br /> ==See also==<br /> * [[Comparison of office suites]]<br /> * [[List of Microsoft Office Programs]]<br /> * [[Office Open XML software]]<br /> <br /> ==References==<br /> {{Reflist|2}}<br /> <br /> {{Microsoft Office}}<br /> {{Microsoft}}<br /> <br /> [[Category:Microsoft software|Office 2010]]<br /> [[Category:Microsoft Office]]<br /> [[Category:Windows software]]<br /> <br /> <br /> {{Windows-software-stub}}<br /> <br /> [[it:Microsoft Office 2010]]<br /> [[nl:Microsoft Office 2010]]<br /> [[pl:Microsoft Office 2010]]<br /> [[ru:Microsoft Office 2010]]<br /> [[simple:Microsoft Office 14]]</div> FatalError https://de.wikipedia.org/w/index.php?title=Haml&diff=75478963 Haml 2009-04-02T05:23:54Z <p>FatalError: /* Example */ +syntax highlighting</p> <hr /> <div>{{Infobox_Software<br /> |name = Haml<br /> |logo = [[Image:Haml 1-5 logo.gif]]<br /> |developer = [[Hampton Catlin]], [[Nathan Weizenbaum]]<br /> |latest_release_version= 2.0.8<br /> |latest_release_date = {{release_date|2009|02|15}}<br /> |operating_system = [[Cross-platform]]<br /> |genre = [[Template Engine]]<br /> |license = [[MIT License]]<br /> |website = http://haml.hamptoncatlin.com/<br /> }}<br /> <br /> '''Haml''' ([[XHTML]] Abstraction Markup Language) is a markup language that is used to cleanly and simply describe the [[XHTML]] of any [[web document]] without the use of traditional inline coding. It’s designed to address many of the flaws in traditional templating engines, as well as making markup as elegant as it can be. Haml functions as a replacement for inline page templating systems such as [[PHP]], [[RHTML]], and [[ASP]]. However, Haml avoids the need for explicitly coding XHTML into the template, because it is itself a description of the XHTML, with some code to generate dynamic content.<br /> <br /> Haml's equivalent for [[CSS]] is [[Sass (markup language)|Sass]], which comes with Haml.<br /> <br /> ==Principles==<br /> ; Markup should be beautiful<br /> : Markup should not be used merely as a tool to get browsers to render a page the way its author wants it rendered. The rendering isn't the only thing people have to see; they have to see, modify, and understand the markup as well. Thus, the markup should be just as user-friendly and pleasant as the rendered result.<br /> ; Markup should be [[DRY]]<br /> : XHTML involves major repetition. Most elements have to be named twice: once before its content and once after. [[eRuby|ERB]] adds even more repetition and unnecessary characters. Haml avoids all of this by relying on indentation, not text, to determine where elements and blocks of code begin and end. Not only does this result in smaller templates, it makes the code much cleaner to look at.<br /> ; Markup should be well-indented<br /> : One of the major problems with traditional templating languages is that not only do they not encourage well-indented code, they actively make it challenging, or even impossible, to write. The result is confusing, unreadable XHTML. Haml formats tags so they are well indented and reflect the underlying structure of the document.<br /> ; XHTML structure should be clear<br /> : XML and XHTML are formats built upon the idea of a structured document. That structure is reflected in their markup, and it should likewise be reflected in meta-markup such as Haml. Because Haml's logic is based on indentation of child elements, this structure is naturally preserved, making the document much easier and more logical for mere humans to read.<br /> <br /> ==Disadvantages==<br /> <br /> * Haml is &quot;whitespace active&quot;, and relies on consistent spacing for each indent level. Tabs or spaces must be maintained consistently throughout the document.<br /> * There are no [[WYSIWYG]] Haml editors, whereas there are many XHTML and HTML editors. However, the growing community of Haml users has released syntax bundle addons to many popular programming [[Integrated development environment|IDE]]s, such as [[Eclipse (software)|Eclipse]] (which includes the spinoff IDEs [[RadRails]] and [[Aptana]]), [[jEdit]], [[NetBeans]], and editors like [[TextMate]] and [[Vim (text editor)|vim]]. This allows developers to edit Haml in an environment that is aware of the indenting rules and syntax.<br /> <br /> ==Example==<br /> Note: This is a simple preview example and may not reflect the current version of the language.<br /> <br /> &lt;pre&gt;<br /> !!!<br /> %html{ :xmlns =&gt; &quot;http://www.w3.org/1999/xhtml&quot;, :lang =&gt; &quot;en&quot;, 'xml:lang' =&gt; &quot;en&quot; }<br /> %head<br /> %title BoBlog<br /> %meta{ 'http-equiv' =&gt; 'Content-Type', :content =&gt; 'text/html; charset=utf-8' }/<br /> = stylesheet_link_tag 'main'<br /> %body<br /> #header<br /> %h1 BoBlog<br /> %h2 Bob's Blog<br /> #content<br /> - @entries.each do |entry|<br /> .entry<br /> %h3.title= entry.title<br /> %p.date= entry.posted.strftime(&quot;%A, %B %d, %Y&quot;)<br /> %p.body= entry.body<br /> #footer<br /> %p<br /> All content copyright © Bob<br /> &lt;/pre&gt;<br /> <br /> The above Haml would produce this XHTML:<br /> &lt;source lang=&quot;html4strict&quot;&gt;<br /> &lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;<br /> &lt;html lang='en' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'&gt;<br /> &lt;head&gt;<br /> &lt;title&gt;BoBlog&lt;/title&gt;<br /> &lt;meta content='text/html; charset=utf-8' http-equiv='Content-Type' /&gt;<br /> &lt;link href=&quot;/stylesheets/main.css?&quot; media=&quot;screen&quot; rel=&quot;Stylesheet&quot; type=&quot;text/css&quot; /&gt;<br /> &lt;/head&gt;<br /> &lt;body&gt;<br /> &lt;div id='header'&gt;<br /> &lt;h1&gt;BoBlog&lt;/h1&gt;<br /> &lt;h2&gt;Bob's Blog&lt;/h2&gt;<br /> &lt;/div&gt;<br /> &lt;div id='content'&gt;<br /> &lt;div class='entry'&gt;<br /> &lt;h3 class='title'&gt;Halloween&lt;/h3&gt;<br /> &lt;p class='date'&gt;Tuesday, October 31, 2006&lt;/p&gt;<br /> &lt;p class='body'&gt;<br /> Happy Halloween, glorious readers! I'm going to a party this evening... I'm very excited.<br /> &lt;/p&gt;<br /> &lt;/div&gt;<br /> &lt;div class='entry'&gt;<br /> &lt;h3 class='title'&gt;New Rails Templating Engine&lt;/h3&gt;<br /> &lt;p class='date'&gt;Friday, August 11, 2006&lt;/p&gt;<br /> &lt;p class='body'&gt;<br /> There's a very cool new Templating Engine out for Ruby on Rails. It's called Haml.<br /> &lt;/p&gt;<br /> &lt;/div&gt;<br /> &lt;/div&gt;<br /> &lt;div id='footer'&gt;<br /> &lt;p&gt;<br /> All content copyright © Bob<br /> &lt;/p&gt;<br /> &lt;/div&gt;<br /> &lt;/body&gt;<br /> &lt;/html&gt;<br /> &lt;/source&gt;<br /> <br /> ==Implementations==<br /> <br /> The official implementation of Haml has been built for [[Ruby (programming language)|Ruby]] with plugins for [[Ruby on Rails]] and [[Merb]], but the Ruby implementation also functions independently.<br /> <br /> There are also implementations in other languages:<br /> <br /> * [http://phphaml.sourceforge.net phpHaml (PHP5)]<br /> * [http://phammable.org Phammable (PHP5)]<br /> * [[pHAML]] (PHP)<br /> * [http://ghrml.org GHRML (Python)]<br /> * [http://andrewpeters.net/2007/12/19/introducing-nhaml-an-aspnet-mvc-view-engine/ NHaml (.NET)]<br /> * [http://weblogs.asp.net/mirvodasergey/archive/2008/06/02/introducing-monorail-nhaml.aspx MonoRail NHaml (ASP.NET)]<br /> <br /> ==Development==<br /> <br /> Haml was invented in May 2006 by [[Hampton Catlin]], who continues to work on the implementation and the ideals behind Haml. However, [[Nathan Weizenbaum]] is responsible for much of the recent growth and maturation of the Haml codebase.<br /> <br /> ==See also==<br /> {{Portal|Free software|Free Software Portal Logo.svg}}<br /> * [[BBCode]]<br /> * [[eRuby]]<br /> * [[Markaby]]<br /> * [[Ruby (programming language)|Ruby]]<br /> * [[Ruby on Rails]]<br /> * [[Web template]]<br /> * [[pHAML]]<br /> * [[YAML]]<br /> <br /> == External links ==<br /> * [http://haml.hamptoncatlin.com Official Haml Website]<br /> * [http://github.com/nex3/haml/tree/master HAML source code repository (Git)]<br /> * [http://phphaml.sourceforge.net phpHaml (Haml implementation for PHP 5)]<br /> * [http://unspace.ca/discover/haml Introductory Article on Haml] on Unspace.ca<br /> * [http://groups-beta.google.com/group/haml?hl=en Haml Google Group]<br /> * [http://weblog.rubyonrails.org/2007/1/19/haml-1-0 Haml 1.0 announcement on official Ruby on Rails weblog]<br /> * [http://nex-3.com/posts/76-haml-2-0 Haml 2.0 announcement on Nathan Weizenbaum's blog]<br /> * [http://podcast.rubyonrails.org/programs/1/episodes/hampton_catlin Interview with Haml creator on official Rails podcast]<br /> <br /> [[Category:Ruby programming language]]<br /> [[Category:Template engines]]<br /> [[Category:Free development toolkits and libraries]]<br /> <br /> [[fr:Haml]]<br /> [[pl:Haml]]<br /> [[ru:Haml]]</div> FatalError https://de.wikipedia.org/w/index.php?title=ERuby&diff=75504656 ERuby 2009-04-01T23:13:34Z <p>FatalError: /* erubis */</p> <hr /> <div>{{lowercase}}<br /> '''eRuby''' is a templating system that embeds [[Ruby programming language|Ruby]] into a text document. It is often used to embed Ruby code in an [[HTML]] document, similar to [[Active Server Pages|ASP]], [[JavaServer Pages|JSP]] and [[PHP]].<br /> <br /> ==Usage==<br /> eRuby allows Ruby code to be embedded within a pair of &lt;code&gt;&lt;%&lt;/code&gt; and &lt;code&gt;%&gt;&lt;/code&gt; delimiters. These embedded code blocks are then evaluated in-place (they are replaced by the result of their evaluation).<br /> <br /> Here are a few examples of eRuby usage:<br /> <br /> '''One line of Ruby'''<br /> &lt;pre&gt;&lt;% ruby code %&gt;&lt;/pre&gt; <br /> <br /> Output like hello from &lt;code&gt;&lt;% print &quot;hello&quot; %&gt;&lt;/code&gt; would replace the ruby code between the delimiters.<br /> <br /> Alternatively, lines starting with a &lt;code&gt;%&lt;/code&gt; sign are interpreted as Ruby as well:<br /> &lt;pre&gt;% ruby code&lt;/pre&gt;<br /> <br /> '''Multiple lines'''<br /> <br /> These can appear less graceful because the beginning and ending are not quite the same. They function like blocks in Ruby and are terminated by &lt;code&gt;&lt;% end %&gt;&lt;/code&gt;. They are commonly used as looping constructs, which appear like this:<br /> &lt;pre&gt;&lt;ul&gt;<br /> &lt;% 3.times do %&gt;<br /> <br /> &lt;li&gt;list item&lt;/li&gt;<br /> <br /> &lt;% end %&gt;<br /> &lt;/ul&gt;<br /> &lt;/pre&gt;<br /> <br /> Outputting:<br /> &lt;ul&gt;<br /> &lt;li&gt;list item&lt;/li&gt;<br /> &lt;li&gt;list item&lt;/li&gt;<br /> &lt;li&gt;list item&lt;/li&gt;<br /> &lt;/ul&gt;<br /> <br /> The same code could also be written as:<br /> &lt;pre&gt;&lt;ul&gt;<br /> % 3.times do<br /> &lt;li&gt;list item&lt;/li&gt;<br /> % end<br /> &lt;/ul&gt;<br /> &lt;/pre&gt;<br /> <br /> '''Expression result substitution'''<br /> <br /> &lt;pre&gt;&lt;%= ruby expression %&gt;&lt;/pre&gt; - Value evaluated from expression like 11 from &lt;code&gt;7 + 4&lt;/code&gt; would replace the ruby expression between the delimiters. Often these are only one line.<br /> <br /> '''Comments'''<br /> &lt;pre&gt;&lt;%# ruby code %&gt;&lt;/pre&gt; - this is the same as a comment in Ruby. All Ruby code after the # is ignored and generates nothing.<br /> <br /> Other things common in eRuby are simply common in Ruby, such as string substitution with &lt;pre&gt;#{string_name}&lt;/pre&gt;, which is similar in languages such as Perl or PHP.<br /> <br /> == Implementations ==<br /> There are several implementations of eRuby:<br /> <br /> === eruby ===<br /> '''eruby''' is an implementation of eRuby written in the [[C programming language]]. <br /> <br /> === erb ===<br /> '''erb''' is an implementation of eRuby, written purely in the Ruby programming language. <br /> <br /> === erubis ===<br /> '''erubis''' is an implementation of eRuby implemented in Ruby and also in [[Java (programming language)|Java]]. It runs faster than eruby and erb,{{Fact}} and has several useful options, including alternate tags allowing for valid [[XML]].<br /> <br /> ==See also==<br /> * [[mod_ruby]]<br /> * [[Haml]]<br /> * [[RDoc]]<br /> * [[Markaby]]<br /> <br /> ==External links==<br /> <br /> * [http://www.modruby.net/en/index.rbx/eruby/download.html eruby source Download] (from [http://www.modruby.net www.modruby.net])<br /> * [http://ruby-doc.org/docs/ProgrammingRuby/html/web.html &quot;Ruby and the web&quot;], a chapter from [http://ruby-doc.org/docs/ProgrammingRuby/ &quot;The Pragmatic Programmer's Guide&quot;]<br /> <br /> <br /> {{Ruby programming language}}<br /> [[Category:Template engines|ERuby]]<br /> <br /> [[ja:eRuby]]</div> FatalError https://de.wikipedia.org/w/index.php?title=FeedBurner&diff=155927148 FeedBurner 2009-03-30T05:05:49Z <p>FatalError: </p> <hr /> <div>{{expand|date=May 2008}}<br /> {{Infobox Website<br /> | name = FeedBurner<br /> | logo = <br /> | screenshot = &lt;!-- [[Image:Feedburner.jpg|center|225px]] --&gt;<br /> | caption = <br /> | url = [http://www.feedburner.com/ feedburner.com]<br /> | commercial = <br /> | type = [[Web feed]] management<br /> | registration = <br /> | owner = [[Google]] (bought on June 3, 2007)<br /> | author = <br /> | launch date = <br /> | current status = Active<br /> | revenue = <br /> }}<br /> <br /> '''FeedBurner''' is a [[web feed]] management provider launched in 2004.&lt;ref&gt;{{cite web|url=http://www.suntimes.com/output/tech/cst-fin-feed06.html|title=Helping publishers, bloggers get the word out|publisher=[[Chicago Sun-Times]]|date=2005-09-06|accessdate=2006-08-10}}&lt;/ref&gt; FeedBurner provides custom [[RSS (file format)|RSS]] feeds and management tools to [[wikt:Blogger|blogger]]s, [[podcast]]ers, and other web-based content publishers. Services provided to publishers include [[web analytics|traffic analysis]] &lt;ref&gt;{{cite web|url=http://news.yahoo.com/s/cmp/20060718/tc_cmp/190500351|title=Mining For Data In Blogs|publisher=TechWeb|date=2006-07-17|accessdate=2006-08-10}}&lt;/ref&gt; and an optional advertising system. Though it initially was not clear whether advertising would be well-suited to the RSS format,&lt;ref&gt;{{cite web|url=http://www.wired.com/news/ebiz/0,1272,65745,00.html|title=Advertisers Muscle Into RSS|publisher=[[Wired News]]|date=2004-11-18|accessdate=2006-08-10}}&lt;/ref&gt; authors now choose to include advertising in two-thirds of FeedBurner's feeds.&lt;ref&gt;{{web cite|url=http://news.com.com/FeedBurner+buys+BlogBeat%2C+expanding+blog+analysis/2100-1038_3-6094732.html|title=FeedBurner buys BlogBeat, expanding blog analysis|publisher=[[Reuters]]|date=2006-07-17|accessdate=2006-08-10}}&lt;/ref&gt;User can find out how many people have subscribed to their feeds and with what service/program they subscribed with.<br /> <br /> Published feeds are modified in several ways, including automatic links to [[Digg]] and [[del.icio.us]], and &quot;splicing&quot; information from multiple feeds.&lt;ref&gt;{{cite web|url=http://blog.flickr.com/flickrblog/2004/07/the_feed_thicke.html|title=The Feed Thickens|publisher=[[Flickr]]|date=2004-07-14|accessdate=2006-08-10}}&lt;/ref&gt; FeedBurner is a typical [[Web 2.0]] service, providing [[web service]] [[application programming interfaces]] (APIs) to allow other software to interact with it. As of October 5, 2007, FeedBurner hosted over a million feeds for 584,832 publishers, including 142,534 [[podcast]] and [[videocast]] feeds.&lt;ref&gt;{{cite web|url=http://www.feedburner.com/fb/a/about#stats|title=About FeedBurner|publisher=FeedBurner.com|accessdate=2007-09-30}}&lt;/ref&gt;<br /> <br /> On June 3, 2007, FeedBurner was acquired by [[Google Inc.]], for a rumored price of $100 million.&lt;ref&gt;{{cite web|url=http://www.techcrunch.com/2007/05/23/100-million-payday-for-feedburner-this-deal-is-confirmed/|title=Techcrunch confirms Google buyout of FeedBurner}}&lt;/ref&gt; One month later, two of their popular PRO services (MyBrand and TotalStats) were made free to all users.&lt;ref&gt;{{cite web<br /> | url = http://blogs.feedburner.com/feedburner/archives/2007/07/freeburner_for_everyone.php<br /> | title = FreeBurner for Everyone<br /> | accessdate = 2007-10-27<br /> | publisher = FeedBurner<br /> | quote = Beginning today, two of FeedBurner's previously for-pay services, TotalStats and MyBrand, will be free.}}&lt;/ref&gt;<br /> <br /> On August 15, 2008, Google completed migration of Feedburner into its group of services.{{fact}} Publishers who have completed migration will access Feedburner via [http://feedburner.google.com/ feedburner.google.com].<br /> <br /> ==Blocking==<br /> Although the main page is accessible and one can use its APIs, the actual feeds generated by Feedburner are blocked in Mainland China.{{fact}} This decision could have been made in order to make users choose the Chinese alternative [[FeedSky]] or due to the fact that one could use Feedburner to access content from blocked blogs.<br /> <br /> ==Notes== <br /> {{reflist|2}}<br /> <br /> ==External links==<br /> * [http://technically-speaking-radio.blogspot.com/2008/08/news-google-adsense-in-feedburner-feeds.html Google Adsense Launches Adsense for Feeds]<br /> * [http://www.feedburner.com FeedBurner website]<br /> * [http://blogs.feedburner.com/feedburner FeedBurner blog]<br /> * [http://www.folksonomy.org/2006/10/interview_with_feedburner/ Interview with Dick Costolo: Founder and CEO of FeedBurner]<br /> * [http://www.blogherald.com/2006/07/17/an-interview-with-feedburners-steve-olechowski-and-jeff-turner/ Interview with Feedburner and BlogBeat founders]<br /> <br /> <br /> {{Google Inc.}}<br /> <br /> [[Category:Google acquisitions]]<br /> [[Category:Web syndication]]<br /> [[Category:Web 2.0]]<br /> <br /> [[ca:FeedBurner]]<br /> [[es:FeedBurner]]<br /> [[ko:피드버너]]<br /> [[it:FeedBurner]]<br /> [[pl:FeedBurner]]<br /> [[ru:FeedBurner]]<br /> [[th:ฟีดเบิร์นเนอร์]]<br /> [[vi:FeedBurner]]<br /> [[zh:FeedBurner]]</div> FatalError https://de.wikipedia.org/w/index.php?title=FeedBurner&diff=155927147 FeedBurner 2009-03-30T04:58:38Z <p>FatalError: </p> <hr /> <div>{{expand|date=May 2008}}<br /> {{Infobox Website<br /> | name = FeedBurner<br /> | logo = <br /> | screenshot = &lt;!-- [[Image:Feedburner.jpg|center|225px]] --&gt;<br /> | caption = <br /> | url = http://www.feedburner.com<br /> | commercial = <br /> | type = [[Web feed]] management<br /> | registration = <br /> | owner = [[Google]] (Bought on June 3, 2007)<br /> | author = <br /> | launch date = <br /> | current status = Active<br /> | revenue = <br /> }}<br /> <br /> '''FeedBurner''' is a [[web feed]] management provider launched in 2004.&lt;ref&gt;{{cite web|url=http://www.suntimes.com/output/tech/cst-fin-feed06.html|title=Helping publishers, bloggers get the word out|publisher=[[Chicago Sun-Times]]|date=2005-09-06|accessdate=2006-08-10}}&lt;/ref&gt; FeedBurner provides custom [[RSS (file format)|RSS]] feeds and management tools to [[wikt:Blogger|blogger]]s, [[podcast]]ers, and other web-based content publishers. Services provided to publishers include [[web analytics|traffic analysis]] &lt;ref&gt;{{cite web|url=http://news.yahoo.com/s/cmp/20060718/tc_cmp/190500351|title=Mining For Data In Blogs|publisher=TechWeb|date=2006-07-17|accessdate=2006-08-10}}&lt;/ref&gt; and an optional advertising system. Though it initially was not clear whether advertising would be well-suited to the RSS format,&lt;ref&gt;{{cite web|url=http://www.wired.com/news/ebiz/0,1272,65745,00.html|title=Advertisers Muscle Into RSS|publisher=[[Wired News]]|date=2004-11-18|accessdate=2006-08-10}}&lt;/ref&gt; authors now choose to include advertising in two-thirds of FeedBurner's feeds.&lt;ref&gt;{{web cite|url=http://news.com.com/FeedBurner+buys+BlogBeat%2C+expanding+blog+analysis/2100-1038_3-6094732.html|title=FeedBurner buys BlogBeat, expanding blog analysis|publisher=[[Reuters]]|date=2006-07-17|accessdate=2006-08-10}}&lt;/ref&gt;User can find out how many people have subscribed to their feeds and with what service/program they subscribed with.<br /> <br /> Published feeds are modified in several ways, including automatic links to [[Digg]] and [[del.icio.us]], and &quot;splicing&quot; information from multiple feeds.&lt;ref&gt;{{cite web|url=http://blog.flickr.com/flickrblog/2004/07/the_feed_thicke.html|title=The Feed Thickens|publisher=[[Flickr]]|date=2004-07-14|accessdate=2006-08-10}}&lt;/ref&gt; FeedBurner is a typical [[Web 2.0]] service, providing [[web service]] [[application programming interfaces]] (APIs) to allow other software to interact with it. As of October 5, 2007, FeedBurner hosted over a million feeds for 584,832 publishers, including 142,534 [[podcast]] and [[videocast]] feeds.&lt;ref&gt;{{cite web|url=http://www.feedburner.com/fb/a/about#stats|title=About FeedBurner|publisher=FeedBurner.com|accessdate=2007-09-30}}&lt;/ref&gt;<br /> <br /> On June 3, 2007, FeedBurner was acquired by [[Google Inc.]], for a rumored price of $100 million.&lt;ref&gt;{{cite web|url=http://www.techcrunch.com/2007/05/23/100-million-payday-for-feedburner-this-deal-is-confirmed/|title=Techcrunch confirms Google buyout of FeedBurner}}&lt;/ref&gt; One month later, two of their popular PRO services (MyBrand and TotalStats) were made free to all users.&lt;ref&gt;{{cite web<br /> | url = http://blogs.feedburner.com/feedburner/archives/2007/07/freeburner_for_everyone.php<br /> | title = FreeBurner for Everyone<br /> | accessdate = 2007-10-27<br /> | publisher = FeedBurner<br /> | quote = Beginning today, two of FeedBurner's previously for-pay services, TotalStats and MyBrand, will be free.}}&lt;/ref&gt;<br /> <br /> On August 15, 2008, Google completed migration of Feedburner into its group of services. Publishers who have completed migration will access Feedburner via feedburner.google.com<br /> <br /> ==Blocking==<br /> Although the main page is accessible and one can use its APIs, the actual feeds generated by Feedburner are blocked in Mainland China. This decision could have been made in order to make users choose the Chinese alternative [[FeedSky]] or due to the fact that one could use Feedburner to access content from blocked blogs.<br /> <br /> ==Notes== <br /> {{reflist|2}}<br /> <br /> ==External links==<br /> * [http://technically-speaking-radio.blogspot.com/2008/08/news-google-adsense-in-feedburner-feeds.html Google Adsense Launches Adsense for Feeds]<br /> * [http://www.feedburner.com FeedBurner website]<br /> * [http://blogs.feedburner.com/feedburner FeedBurner blog]<br /> * [http://www.folksonomy.org/2006/10/interview_with_feedburner/ Interview with Dick Costolo: Founder and CEO of FeedBurner]<br /> * [http://www.blogherald.com/2006/07/17/an-interview-with-feedburners-steve-olechowski-and-jeff-turner/ Interview with Feedburner and BlogBeat founders]<br /> <br /> <br /> {{Google Inc.}}<br /> <br /> [[Category:Google acquisitions]]<br /> [[Category:Web syndication]]<br /> [[Category:Web 2.0]]<br /> <br /> [[ca:FeedBurner]]<br /> [[es:FeedBurner]]<br /> [[ko:피드버너]]<br /> [[it:FeedBurner]]<br /> [[pl:FeedBurner]]<br /> [[ru:FeedBurner]]<br /> [[th:ฟีดเบิร์นเนอร์]]<br /> [[vi:FeedBurner]]<br /> [[zh:FeedBurner]]</div> FatalError https://de.wikipedia.org/w/index.php?title=The_Receiving_End_of_Sirens&diff=168505311 The Receiving End of Sirens 2008-08-04T22:00:24Z <p>FatalError: removed original research; like I said before, the band&#039;s opinion does not matter; wording</p> <hr /> <div>{{Infobox musical artist &lt;!-- See Wikipedia:WikiProject Musicians --&gt;<br /> | Name = The Receiving End Of Sirens<br /> | Img =&lt;!-- Put only the image name (e.g. Example.png) without the Image: prefix. --&gt;<br /> | Img_capt = L to R: Brendan Brown, Casey Crescenzo, Alex Bars, Nate Patterson, Andrew Cook<br /> | Img_size = &lt;!-- Only for images narrower than 220 pixels. Set the value as a number without &quot;px&quot;. --&gt;<br /> | Landscape = <br /> | Background = group_or_band<br /> | Alias = TREOS&lt;br/&gt;The Red Eye Of Soromon<br /> | Origin = [[Boston]], [[Massachusetts]], [[USA]]<br /> | Genre = [[Indie rock]]&lt;br/&gt;[[Post-hardcore]]<br /> | Years_active = 2003 - 2008<br /> | Label = [[Triple Crown Records|Triple Crown]]<br /> | Associated_acts = [[The Dear Hunter]]<br /> | URL = [http://www.thereceivingendofsirens.com/ Official Site]<br /> | Current_members = Alex Bars&lt;br/&gt;Brendan Brown&lt;br/&gt;Nate Patterson&lt;br/&gt;Andrew Cook&lt;br/&gt;Brian Southall<br /> | Past_members = [[Casey Crescenzo]]&lt;br/&gt;Ben Potrykus<br /> | Notable_instruments = <br /> }}<br /> <br /> '''The Receiving End of Sirens''' (often abbreviated '''TREOS''') was a rock band from [[Boston]], [[Massachusetts]], formed in 2003. <br /> <br /> The band played on the 2005 [[Warped Tour]] and has toured with such acts as [[Gatsbys American Dream]], [[A Wilhelm Scream]], [[30 Seconds to Mars]], [[Funeral for a Friend]], [[Saves the Day]], [[Senses Fail]], [[Thrice]], and [[New Found Glory]]. The band's first headlining tour, &quot;The New Hope Tour,&quot; began on March 31st 2006. About a week before the start of the tour, guitarist/vocalist Alex fell down a flight of stairs and broke his scapula and two ribs and punctured his lung. A question of whether or not he would be able to perform arose, yet he pulled through. Some bands supporting the band on their first headlining tour were [[As Tall as Lions]], [[A Thorn for Every Heart]], [[Hit the Lights]], [[I Am the Avalanche]], and [[Foredoes Me Quite]].<br /> <br /> On [[March 18]], [[2008]] the band announced that it would &quot;no longer exist in the way it has for the past 5 years&quot; on their [[MySpace]] page. The main reason for the break up was the fact that Brendan had a child in January, and he decided he needed to reassess his priorities. In a MySpace bulletin he claimed that all of the members still keep a passion for music and the love for their fans. The band played two of their last three last shows at Lupo's in Providence, Rhode Island on [[May 2]], supported by [[Envy on the Coast]] and [[Therefore I Am]], and The Bamboozle Festival in East Rutherford, New Jersey on [[May 4]]. On [[May 5]], a final farewell was performed under the pseudonym The Red Eye of Soromon at Harper's Ferry in Allston, Massachusetts.<br /> <br /> ==Name==<br /> According to drummer Andrew Cook: <br /> &lt;blockquote&gt;&quot;I was a cook at a place called McCarthy’s Pub in Massachusetts. A bunch of police cars and ambulances went screaming by and the name popped in my head. Like, thinking about how people never really think what’s ‘on the receiving end of sirens,’ because its such a common thing just to hear the sirens. Especially if you live in a city, it just becomes this commonplace thing, nobody thinks twice about it anymore. Even though there’s so much awful stuff going on in the world, and horrible things that happen to people, it’s kind of like ‘out of sight, out of mind.’ It’s just kind of a sad thing. So it’s kind of a commentary on that. It also works on a couple levels. It can be taken as the Greek mythology example with the Sirens that lure sailors in with their singing, so being on the receiving end of those sirens isn’t a great thing. It works both ways.&quot;&lt;ref&gt;[http://www.heartsandsleeves.com/html/the_receiving_end_of_sirens.html The Receiving End Of Sirens&lt;!-- Bot generated title --&gt;]&lt;/ref&gt;&lt;/blockquote&gt;<br /> <br /> The band has also been known to perform under the pseudonym The Red Eye of Soromon [''sic''], or if abbreviated, TREOS. The band plays under the name The Red Eye of Soromon, presumably, to avoid record label contract issues when playing local venues in Massachusetts. The most recent performance under the pseudonym was on [http://www.absolutepunk.net/showthread.php?t=209012 May 5, 2008].<br /> <br /> ==History==<br /> The band formed in 2003. In May 2006, [[Casey Crescenzo]] parted ways with the band and started pursuing his side project full-time, [[The Dear Hunter]].<br /> <br /> On November 6, 2006 the band announced their new permanent member as Brian Southall (formerly the drummer of [[Boys Night Out (band)|Boys Night Out]]). He plays guitar, keys, and backup vocals.<br /> <br /> The band had arranged to stream a live concert from Vintage Vinyl Record Store in New Jersey on the new real-time entertainment site www.Yebotv.com on August 9th, 2007.<br /> <br /> In a December 10, 2007 interview, when referring to the unique sound of TREOS being, &quot;musical mojo,&quot; Stephen Kahler was quoted as saying, &quot;I think they might just be...the best band to have ever existed.&quot;&lt;ref&gt;December 10, 2007 interview for WBRH Radio by Aaron Louison&lt;/ref&gt;<br /> <br /> On March 18th, 2008 Brendan Brown announced on Myspace, via a Myspace bulletin that because of his new priorities (having a baby), the band is coming to an end.<br /> &lt;blockquote&gt;<br /> I, Brendan, must admit that I am the main reason why TREOS is ending. My choice to no longer continue on with The Receiving End of Sirens has nothing to do with a lack of love for my band, and/or band members. It has nothing to do with a lack of passion for our music, or any music for that matter. My decision is due mostly in part to a huge rearranging of priorities in my life, and the unquestionable responsibility that comes along with becoming a father. January 15th my<br /> wife and I welcomed Parker Brown, our first child, into the world. Since then everything has changed. The happiness and joy I gained from being part of this band can't ever be taken away from me, but to be honest, I have lived a long time thinking that specific joy was as good as it got. Since Parker's birth I have realized my joy is a great thing, in and of itself, but the happiness I receive from his happiness is exponentially greater than anything I could muster on my own. The thought of leaving him to tour for months at a time is something I just can't stomach. I can't<br /> stand to miss another thing. I realize how important I am to my band, and how important our band is to some people, but I am far more elemental in the growth and happiness of my child, than I am anything else in this world.<br /> &lt;/blockquote&gt;<br /> <br /> On Friday May 2nd, 2008 the band played its farewell show with Envy on the Coast and Therefore I Am. Casey Crescenzo made a return halfway through the set. TREOS performed virtually all of their tracks, forcing them to repeat Planning a Prison Break as their [[encore (concert)|encore]]. Absolute punk made a statement about their final show:<br /> <br /> &lt;blockquote&gt;<br /> Casey Crescenzo played with The Receiving End of Sirens last night at their final headlining show in Providence, Rhode Island. They played 21 songs (technically 22 because the crowd got them to play &quot;Planning a Prison Break&quot; twice) - almost every track spanning their three CD discography. A fan (Brandon) also proposed to his girlfriend on stage during the set &amp; they are now engaged! It was truly an eve of magic &amp; delight. The band will be greatly missed by their fans, and we wish them each the best of luck in the future!<br /> &lt;/blockquote&gt;<br /> <br /> The band also played [[The Bamboozle]] on May 4th, 2008 and performed their final show as The Red Eye of Soromon in Allston, MA on May 5th, 2008, where they played all of ''Between the Heart and the Synapse'' in order from start to finish, with Casey, followed by an encore set. <br /> <br /> The band recorded their Farewell Show at Lupo's on May 2nd, 2008 for a DVD set to be released by the end of 2008. Along with concert footage, the DVD will contain never-before-seen interviews, as well as backstage footage from many of the band's tours. The live concert footage will span twenty-two songs and will feature Casey Crescenzo for the latter half of the performance.<br /> <br /> ==Band members==<br /> Brendan Brown - Vocals, Bass guitar&lt;br/&gt;<br /> Alex Bars - Rhythm Guitar, Vocals&lt;br/&gt;<br /> Nate Patterson - Lead Guitar&lt;br/&gt;<br /> Andrew Cook - Drums&lt;br/&gt;<br /> Brian Southall - Guitar, Keyboard<br /> <br /> ==Discography==<br /> <br /> {| border=&quot;2&quot; cellpadding=&quot;4&quot; cellspacing=&quot;0&quot; style=&quot;margin: 1em 1em 1em 0; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;&quot;<br /> |'''Date of Release'''<br /> |'''Title'''<br /> |'''label'''<br /> |-<br /> |[[August 9]] [[2004]]<br /> |''[[The Receiving End Of Sirens E.P.]]''<br /> |Robotica Records<br /> |-<br /> |[[April 25]] [[2005]]<br /> |''[[Between the Heart and the Synapse]]''<br /> |[[Triple Crown Records]]<br /> |-<br /> |[[August 7]] [[2007]]<br /> |''[[The Earth Sings Mi Fa Mi]]''<br /> |[[Triple Crown Records]]<br /> |}<br /> <br /> ==Videography==<br /> *[[Planning A Prison Break]] ([[2005]])<br /> *This Armistice ([[2006]])<br /> *The Evidence ([[2007]])<br /> *Smoke &amp; Mirrors([[2007]])<br /> <br /> ==References==<br /> {{Reflist}}<br /> <br /> ==External links==<br /> *[http://www.thereceivingendofsirens.com/ Official Website]<br /> *[http://www.myspace.com/thereceivingendofsirens TREOS on MySpace]<br /> *[http://www.purevolume.com/thereceivingendofsirens TREOS on PureVolume]<br /> *[http://www.thedearhunter.com The Dear Hunter]<br /> *[http://www.plyrics.com/r/receivingendofsirens.html Lyrics]<br /> <br /> {{DEFAULTSORT:Receiving End of Sirens, The}}<br /> [[Category:American rock music groups]]<br /> [[Category:2000s music groups]]<br /> [[Category:Alternative musical groups]]<br /> [[Category:Boston musical groups]]<br /> [[Category:Post-hardcore groups]]<br /> [[Category:Musical groups established in 2003]]<br /> [[Category:Musical groups disestablished in 2008]]<br /> <br /> [[it:The Receiving End of Sirens]]</div> FatalError https://de.wikipedia.org/w/index.php?title=The_Receiving_End_of_Sirens&diff=168505310 The Receiving End of Sirens 2008-08-04T21:52:04Z <p>FatalError: removed &quot;experimental rock&quot;: the band&#039;s opinion of their own music isn&#039;t reliable; fixed dates and stuff</p> <hr /> <div>{{Infobox musical artist &lt;!-- See Wikipedia:WikiProject Musicians --&gt;<br /> | Name = The Receiving End Of Sirens<br /> | Img =&lt;!-- Put only the image name (e.g. Example.png) without the Image: prefix. --&gt;<br /> | Img_capt = L to R: Brendan Brown, Casey Crescenzo, Alex Bars, Nate Patterson, Andrew Cook<br /> | Img_size = &lt;!-- Only for images narrower than 220 pixels. Set the value as a number without &quot;px&quot;. --&gt;<br /> | Landscape = <br /> | Background = group_or_band<br /> | Alias = TREOS&lt;br/&gt;The Red Eye Of Soromon<br /> | Origin = [[Boston]], [[Massachusetts]], [[USA]]<br /> | Genre = [[Indie rock]]&lt;br/&gt;[[Post-hardcore]]<br /> | Years_active = 2003 - 2008<br /> | Label = [[Triple Crown Records|Triple Crown]]<br /> | Associated_acts = [[The Dear Hunter]]<br /> | URL = [http://www.thereceivingendofsirens.com/ Official Site]<br /> | Current_members = Alex Bars&lt;br/&gt;Brendan Brown&lt;br/&gt;Nate Patterson&lt;br/&gt;Andrew Cook&lt;br/&gt;Brian Southall<br /> | Past_members = [[Casey Crescenzo]]&lt;br/&gt;Ben Potrykus<br /> | Notable_instruments = <br /> }}<br /> <br /> '''The Receiving End of Sirens''' (often abbreviated '''TREOS''') was a rock band from [[Boston]], [[Massachusetts]] who originally formed in 2003. The band incorporates many elements from different genres and styles such as metal, electronica, punk, and progressive rock. Although the band likes to describe themselves as [[Experimental rock|experimental]],&lt;ref&gt;{{cite web | url=http://thephoenix.com/bandguide/artistprofile2.aspx?id=2550 | title=TREOS listed as &quot;experimental, rock&quot;; the content for this page was, however, taken directly from the band's publicity materials}}&lt;/ref&gt;&lt;ref&gt;{{cite web | url=http://www.myspace.com/thereceivingendofsirens | title=TREOS again listing themselves as &quot;indie/experimental&quot;}}&lt;/ref&gt; most listeners place their sound squarely in the realm of &quot;progressive rock with an essence of post-hardcore.&quot;{{fact}}<br /> <br /> The band played on the 2005 [[Warped Tour]] and has toured with such acts as [[Gatsbys American Dream]], [[A Wilhelm Scream]], [[30 Seconds to Mars]], [[Funeral for a Friend]], [[Saves the Day]], [[Senses Fail]], [[Thrice]], and [[New Found Glory]].<br /> <br /> The band's first headlining tour, &quot;The New Hope Tour,&quot; began on March 31st 2006. About a week before the start of the tour, guitarist/vocalist Alex fell down a flight of stairs and broke his scapula and two ribs and punctured his lung. A question of whether or not he would be able to perform arose, yet he pulled through. Some bands supporting the band on their first headlining tour were [[As Tall as Lions]], [[A Thorn for Every Heart]], [[Hit the Lights]], [[I Am the Avalanche]], and [[Foredoes Me Quite]].<br /> <br /> On [[March 18]], [[2008]] the band announced that it would &quot;no longer exist in the way it has for the past 5 years&quot; on their [[MySpace]] page. The main reason for the break up was the fact that Brendan had a child in January, and he decided he needed to reassess his priorities. In a MySpace bulletin he claimed that all of the members still keep a passion for music and the love for their fans. The band played two of their last three last shows at Lupo's in Providence, Rhode Island on [[May 2]], supported by [[Envy on the Coast]] and [[Therefore I Am]], and The Bamboozle Festival in East Rutherford, New Jersey on [[May 4]]. On [[May 5]], a final farewell was performed under the pseudonym The Red Eye of Soromon at Harper's Ferry in Allston, Massachusetts.<br /> <br /> ==Name==<br /> According to drummer Andrew Cook: <br /> &lt;blockquote&gt;&quot;I was a cook at a place called McCarthy’s Pub in Massachusetts. A bunch of police cars and ambulances went screaming by and the name popped in my head. Like, thinking about how people never really think what’s ‘on the receiving end of sirens,’ because its such a common thing just to hear the sirens. Especially if you live in a city, it just becomes this commonplace thing, nobody thinks twice about it anymore. Even though there’s so much awful stuff going on in the world, and horrible things that happen to people, it’s kind of like ‘out of sight, out of mind.’ It’s just kind of a sad thing. So it’s kind of a commentary on that. It also works on a couple levels. It can be taken as the Greek mythology example with the Sirens that lure sailors in with their singing, so being on the receiving end of those sirens isn’t a great thing. It works both ways.&quot;&lt;ref&gt;[http://www.heartsandsleeves.com/html/the_receiving_end_of_sirens.html The Receiving End Of Sirens&lt;!-- Bot generated title --&gt;]&lt;/ref&gt;&lt;/blockquote&gt;<br /> <br /> The band has also been known to perform under the pseudonym The Red Eye of Soromon [''sic''], or if abbreviated, TREOS. The band plays under the name The Red Eye of Soromon, presumably, to avoid record label contract issues when playing local venues in Massachusetts. The most recent performance under the pseudonym was on [http://www.absolutepunk.net/showthread.php?t=209012 May 5, 2008].<br /> <br /> ==History==<br /> The band formed in 2003. In May 2006, [[Casey Crescenzo]] parted ways with the band and started pursuing his side project full-time, [[The Dear Hunter]].<br /> <br /> On November 6, 2006 the band announced their new permanent member as Brian Southall (formerly the drummer of [[Boys Night Out (band)|Boys Night Out]]). He plays guitar, keys, and backup vocals.<br /> <br /> The band had arranged to stream a live concert from Vintage Vinyl Record Store in New Jersey on the new real-time entertainment site www.Yebotv.com on August 9th, 2007.<br /> <br /> In a December 10, 2007 interview, when referring to the unique sound of TREOS being, &quot;musical mojo,&quot; Stephen Kahler was quoted as saying, &quot;I think they might just be...the best band to have ever existed.&quot;&lt;ref&gt;December 10, 2007 interview for WBRH Radio by Aaron Louison&lt;/ref&gt;<br /> <br /> On March 18th, 2008 Brendan Brown announced on Myspace, via a Myspace bulletin that because of his new priorities (having a baby), the band is coming to an end.<br /> &lt;blockquote&gt;<br /> I, Brendan, must admit that I am the main reason why TREOS is ending. My choice to no longer continue on with The Receiving End of Sirens has nothing to do with a lack of love for my band, and/or band members. It has nothing to do with a lack of passion for our music, or any music for that matter. My decision is due mostly in part to a huge rearranging of priorities in my life, and the unquestionable responsibility that comes along with becoming a father. January 15th my<br /> wife and I welcomed Parker Brown, our first child, into the world. Since then everything has changed. The happiness and joy I gained from being part of this band can't ever be taken away from me, but to be honest, I have lived a long time thinking that specific joy was as good as it got. Since Parker's birth I have realized my joy is a great thing, in and of itself, but the happiness I receive from his happiness is exponentially greater than anything I could muster on my own. The thought of leaving him to tour for months at a time is something I just can't stomach. I can't<br /> stand to miss another thing. I realize how important I am to my band, and how important our band is to some people, but I am far more elemental in the growth and happiness of my child, than I am anything else in this world.<br /> &lt;/blockquote&gt;<br /> <br /> On Friday May 2nd, 2008 the band played its farewell show with Envy on the Coast and Therefore I Am. Casey Crescenzo made a return halfway through the set. TREOS performed virtually all of their tracks, forcing them to repeat Planning a Prison Break as their [[encore (concert)|encore]]. Absolute punk made a statement about their final show:<br /> <br /> &lt;blockquote&gt;<br /> Casey Crescenzo played with The Receiving End of Sirens last night at their final headlining show in Providence, Rhode Island. They played 21 songs (technically 22 because the crowd got them to play &quot;Planning a Prison Break&quot; twice) - almost every track spanning their three CD discography. A fan (Brandon) also proposed to his girlfriend on stage during the set &amp; they are now engaged! It was truly an eve of magic &amp; delight. The band will be greatly missed by their fans, and we wish them each the best of luck in the future!<br /> &lt;/blockquote&gt;<br /> <br /> The band also played [[The Bamboozle]] on May 4th, 2008 and performed their final show as The Red Eye of Soromon in Allston, MA on May 5th, 2008, where they played all of ''Between the Heart and the Synapse'' in order from start to finish, with Casey, followed by an encore set. <br /> <br /> The band recorded their Farewell Show at Lupo's on May 2nd, 2008 for a DVD set to be released by the end of 2008. Along with concert footage, the DVD will contain never-before-seen interviews, as well as backstage footage from many of the band's tours. The live concert footage will span twenty-two songs and will feature Casey Crescenzo for the latter half of the performance.<br /> <br /> ==Band members==<br /> Brendan Brown - Vocals, Bass guitar&lt;br/&gt;<br /> Alex Bars - Rhythm Guitar, Vocals&lt;br/&gt;<br /> Nate Patterson - Lead Guitar&lt;br/&gt;<br /> Andrew Cook - Drums&lt;br/&gt;<br /> Brian Southall - Guitar, Keyboard<br /> <br /> ==Discography==<br /> <br /> {| border=&quot;2&quot; cellpadding=&quot;4&quot; cellspacing=&quot;0&quot; style=&quot;margin: 1em 1em 1em 0; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;&quot;<br /> |'''Date of Release'''<br /> |'''Title'''<br /> |'''label'''<br /> |-<br /> |[[August 9]] [[2004]]<br /> |''[[The Receiving End Of Sirens E.P.]]''<br /> |Robotica Records<br /> |-<br /> |[[April 25]] [[2005]]<br /> |''[[Between the Heart and the Synapse]]''<br /> |[[Triple Crown Records]]<br /> |-<br /> |[[August 7]] [[2007]]<br /> |''[[The Earth Sings Mi Fa Mi]]''<br /> |[[Triple Crown Records]]<br /> |}<br /> <br /> ==Videography==<br /> *[[Planning A Prison Break]] ([[2005]])<br /> *This Armistice ([[2006]])<br /> *The Evidence ([[2007]])<br /> *Smoke &amp; Mirrors([[2007]])<br /> <br /> ==References==<br /> {{Reflist}}<br /> <br /> ==External links==<br /> *[http://www.thereceivingendofsirens.com/ Official Website]<br /> *[http://www.myspace.com/thereceivingendofsirens TREOS on MySpace]<br /> *[http://www.purevolume.com/thereceivingendofsirens TREOS on PureVolume]<br /> *[http://www.thedearhunter.com The Dear Hunter]<br /> *[http://www.plyrics.com/r/receivingendofsirens.html Lyrics]<br /> <br /> {{DEFAULTSORT:Receiving End of Sirens, The}}<br /> [[Category:American rock music groups]]<br /> [[Category:2000s music groups]]<br /> [[Category:Alternative musical groups]]<br /> [[Category:Boston musical groups]]<br /> [[Category:Post-hardcore groups]]<br /> [[Category:Musical groups established in 2003]]<br /> [[Category:Musical groups disestablished in 2008]]<br /> <br /> [[it:The Receiving End of Sirens]]</div> FatalError https://de.wikipedia.org/w/index.php?title=Datenbank-Engine&diff=178682677 Datenbank-Engine 2008-08-01T06:56:02Z <p>FatalError: </p> <hr /> <div>{{unreferenced|date=August 2007}}<br /> <br /> A '''database engine''' is the underlying software component that a [[database management system]] (DBMS) uses to create, retrieve, update and delete (see [[CRUD (acronym)]]) [[data]] from a [[database]]. One may command the database engine via the DBMS's own [[user interface]], and sometimes through a [[TCP and UDP port|network port]].<br /> <br /> ==See also==<br /> <br /> *[[Architecture of Btrieve#Micro-Kernel Database Engine|Btrieve's Micro-Kernel Database Engine]]<br /> *[[FLAIM Database Engine]]<br /> *[[Falcon (storage engine)]]<br /> *[[InnoDB]]<br /> *[[Microsoft Jet Database Engine]]<br /> *[[MyISAM]]<br /> *[[MySQL Cluster]], on the NDB storage engine of [[MySQL]]<br /> <br /> {{database-stub}}<br /> <br /> [[Category:Data management]]<br /> [[Category:Database management systems]]<br /> <br /> [[ru:Database engine]]</div> FatalError https://de.wikipedia.org/w/index.php?title=Royal_City&diff=177141082 Royal City 2008-07-03T05:31:26Z <p>FatalError: Reverted edits by 24.108.204.219 to last version by ClueBot (using Huggle)</p> <hr /> <div>{{Infobox Settlement<br /> |official_name = Royal City, Washington<br /> |settlement_type = [[City]]<br /> |nickname = <br /> |motto = <br /> <br /> &lt;!-- Images --&gt;<br /> |image_skyline = <br /> |imagesize = <br /> |image_caption = <br /> |image_flag = <br /> |image_seal = <br /> <br /> &lt;!-- Maps --&gt;<br /> |image_map = Grant_County_Washington_Incorporated_and_Unincorporated_areas_Royal_City_Highlighted.svg<br /> |mapsize = 250x200px<br /> |map_caption = Location of Royal City, Washington<br /> |image_map1 = <br /> |mapsize1 = <br /> |map_caption1 = <br /> <br /> &lt;!-- Location --&gt;<br /> |subdivision_type = [[List of countries|Country]]<br /> |subdivision_name = [[United States]]<br /> |subdivision_type1 = [[Political divisions of the United States|State]]<br /> |subdivision_name1 = [[Washington]]<br /> |subdivision_type2 = [[List of counties in Washington|County]]<br /> |subdivision_name2 = [[Grant County, Washington|Grant]]<br /> <br /> &lt;!-- Government --&gt;<br /> |government_footnotes = <br /> |government_type = <br /> |leader_title = <br /> |leader_name = <br /> |leader_title1 = <br /> |leader_name1 = <br /> |established_title = <br /> |established_date = <br /> <br /> &lt;!-- Area --&gt;<br /> |unit_pref = Imperial<br /> |area_footnotes = <br /> <br /> |area_magnitude = <br /> |area_total_km2 = 3.3<br /> |area_land_km2 = 3.3<br /> |area_water_km2 = 0.0<br /> |area_total_sq_mi = 1.3<br /> |area_land_sq_mi = 1.3<br /> |area_water_sq_mi = 0.0<br /> <br /> &lt;!-- Population --&gt;<br /> |population_as_of = [[United States Census, 2000|2000]]<br /> |population_footnotes = <br /> |population_total = 1823<br /> |population_density_km2 = 558.2<br /> |population_density_sq_mi = 1445.6<br /> <br /> &lt;!-- General information --&gt;<br /> |timezone = [[Pacific Time Zone|Pacific (PST)]]<br /> |utc_offset = -8<br /> |timezone_DST = PDT<br /> |utc_offset_DST = -7<br /> |elevation_footnotes = <br /> |elevation_m = 324<br /> |elevation_ft = 1063<br /> |latd = 46 |latm = 54 |lats = 7 |latNS = N<br /> |longd = 119 |longm = 37 |longs = 38 |longEW = W<br /> <br /> &lt;!-- Area/postal codes &amp; others --&gt;<br /> |postal_code_type = [[ZIP code]]<br /> |postal_code = 99357<br /> |area_code = [[Area code 509|509]]<br /> |blank_name = [[Federal Information Processing Standard|FIPS code]]<br /> |blank_info = 53-60230{{GR|2}}<br /> |blank1_name = [[Geographic Names Information System|GNIS]] feature ID<br /> |blank1_info = 1512626{{GR|3}}<br /> |website = <br /> |footnotes = <br /> }}<br /> '''Royal City''' is a city in [[Grant County, Washington|Grant County]], [[Washington]], [[United States]]. The population was 1,823 at the 2000 census.<br /> <br /> ==History==<br /> Royal City was officially incorporated on [[February 14]], [[1962]]. This small farming town is most known for producing an astounding variety of crops, thanks to a long growing season. Apples, cherries, peaches, timothy and alfalfa hay, melons, potatoes, and corn are grown in this area. The Royal slope area is a popular place for birders, hunters, and golfers as well.<br /> <br /> Royal City is also known for producing championship football teams. The Royal Knights have won division 1A state titles in 1996, 2000, 2004, 2005, and 2007.<br /> <br /> ==Geography==<br /> Royal City is located at {{coor dms|46|54|7|N|119|37|38|W|city}} (46.901899, -119.627220){{GR|1}}.<br /> <br /> According to the [[United States Census Bureau]], the city has a total area of 1.3&amp;nbsp;[[square mile]]s (3.3&amp;nbsp;[[km²]]), all of it land.<br /> <br /> ==Demographics==<br /> As of the [[census]]{{GR|2}} of 2000, there were 1,823 people, 444 households, and 380 families residing in the city. The [[population density]] was 1,445.6 people per square mile (558.6/km²). There were 504 housing units at an average density of 399.7/sq&amp;nbsp;mi (154.4/km²). The racial makeup of the city was 66.32% [[White (U.S. Census)|White]], 0.38% [[African American (U.S. Census)|African American]], 0.38% [[Native American (U.S. Census)|Native American]], 0.55% [[Asian (U.S. Census)|Asian]], 29.90% from [[Race (United States Census)|other races]], and 2.47% from two or more races. [[Hispanic (U.S. Census)|Hispanic]] or [[Latino (U.S. Census)|Latino]] of any race were 78.22% of the population.<br /> <br /> There were 444 households out of which 64.6% had children under the age of 18 living with them, 67.3% were [[Marriage|married couples]] living together, 8.8% had a female householder with no husband present, and 14.4% were non-families. 10.6% of all households were made up of individuals and 5.9% had someone living alone who was 65 years of age or older. The average household size was 4.10 and the average family size was 4.33.<br /> <br /> In the city the population was spread out with 40.3% under the age of 18, 12.4% from 18 to 24, 31.9% from 25 to 44, 11.0% from 45 to 64, and 4.4% who were 65 years of age or older. The median age was 24 years. For every 100 females there were 126.2 males. For every 100 females age 18 and over, there were 132.0 males.<br /> <br /> The median income for a household in the city was $28,529, and the median income for a family was $29,821. Males had a median income of $19,643 versus $22,917 for females. The [[per capita income]] for the city was $9,502. About 24.0% of families and 26.7% of the population were below the [[poverty line]], including 35.0% of those under age 18 and 7.9% of those age 65 or over.<br /> <br /> ==References==<br /> &lt;references /&gt;<br /> <br /> ==External links==<br /> The South County Sun, local newspaper - http://www.southcountysun.com<br /> {{Mapit-US-cityscale|46.901899|-119.62722}}<br /> <br /> {{Grant County, Washington}}<br /> <br /> [[Category:Grant County, Washington]]<br /> [[Category:Cities in Washington]]<br /> <br /> [[nl:Royal City]]<br /> [[pt:Royal City]]<br /> [[vo:Royal City]]</div> FatalError https://de.wikipedia.org/w/index.php?title=Rock_Sound&diff=97896350 Rock Sound 2008-07-03T04:39:57Z <p>FatalError: +unreferenced // Removed spam links // Other stuff</p> <hr /> <div>{{unreferenced|date=June 2008}}<br /> <br /> {{Infobox Magazine<br /> | title = Rock Sound<br /> | image_file = RockSound100th.jpg<br /> | image_caption = The 100th Issue of Rock Sound featuring [[Alex Pennie]] formerly of [[The Automatic]] and [[Frank Carter]] of [[Gallows]]<br /> | publisher = <br /> | language = English<br /> | category = [[Music]]<br /> | frequency = Monthly<br /> | firstdate = <br /> | editor = <br /> | country = {{flag|United Kingdom}}<br /> | website = [http://www.rock-sound.co.uk/ Rock-sound.co.uk]<br /> }}<br /> <br /> '''''Rock Sound''''' is a [[United Kingdom|British]] [[magazine]] which champions [[Alternative rock|alternative]] music. The magazine aims at being more &quot;[[Subculture|underground]]&quot; and less commercial. It covers new music including [[Mastodon (band)|Mastodon]], [[Modest Mouse]], [[Slayer]], and [[Sigur Rós]].<br /> <br /> ==History==<br /> The UK edition of ''Rock Sound'' (also known as ''ROCKSOUND''){{fact}} was launched in [[March 1999]] by the [[France|French]] [[Publishing|publisher]] Editions Freeway, who had already published the title in France. It managed to establish itself in a very competitive market and was bought out by its director, Patrick Napier, in [[December 2004]].<br /> <br /> ==Editorial Positioning==<br /> Rock Sound’s agenda is to bring the best new music to the masses, often featuring new bands way ahead of other magazines. Bands that Rock Sound was on from the start{{Fact|date=January 2008}} include My Chemical Romance, Muse, Million Dead, Mastodon, Aereogramme, Hell Is For Heroes, Funeral For A Friend, Every Time I Die and Brand New to name just a few.<br /> <br /> ==Circulation==<br /> ''Rock Sound'' has an [[Audited Bureau of Circulations|ABC]] of 23,260.{{fact}} It is available on newsstands throughout the world.<br /> <br /> ==External links==<br /> *[http://www.rock-sound.co.uk/ Rock Sound official website]<br /> *[http://www.rocksound.tv Rock Sound TV]<br /> <br /> {{music-publication-stub}}<br /> <br /> [[Category:Music magazines]]<br /> <br /> [[ro:Rock Sound]]</div> FatalError https://de.wikipedia.org/w/index.php?title=Rock_Sound&diff=97896349 Rock Sound 2008-07-03T04:07:32Z <p>FatalError: </p> <hr /> <div>{{Infobox Magazine<br /> | title = Rock Sound<br /> | image_file = RockSound100th.jpg<br /> | image_caption = The 100th Issue of Rock Sound featuring [[Alex Pennie]] formerly of [[The Automatic]] and [[Frank Carter]] of [[Gallows]]<br /> | publisher = <br /> | language = English<br /> | category = [[Music]]<br /> | frequency = Monthly<br /> | firstdate = <br /> | editor = <br /> | country = {{flag|United Kingdom}}<br /> | website = [http://www.rock-sound.co.uk/ Rock-sound.co.uk]<br /> }}<br /> <br /> '''''Rock Sound''''' is a [[United Kingdom|British]] [[magazine]] which champions [[Alternative rock|alternative]] music. The magazine aims at being more &quot;[[Subculture|underground]]&quot; and less commercial. It covers the best new music from [[Mastodon (band)|Mastodon]] to [[Modest Mouse]], [[Slayer]] to [[Sigur Rós]].<br /> <br /> ==History==<br /> The UK edition of ''Rock Sound'' (also known as ''ROCKSOUND'') was launched in [[March 1999]] by the [[France|French]] [[Publishing|publisher]] Editions Freeway, who already published the title in France. It managed to establish itself in a very competitive market and was bought out by its director, Patrick Napier, in [[December 2004]] so it is now completely independent.<br /> <br /> ==Editorial Positioning==<br /> Rock Sound’s agenda is to bring the best new music to the masses, often featuring new bands way ahead of other magazines. Bands that Rock Sound was on from the start{{Fact|date=January 2008}} include My Chemical Romance, Muse, Million Dead, Mastodon, Aereogramme, Hell Is For Heroes, Funeral For A Friend, Every Time I Die and Brand New to name just a few.<br /> <br /> ==Circulation==<br /> ''Rock Sound'' has an [[Audited Bureau of Circulations|ABC]] of 23,260 ([[January 2007|January]]-[[June 2007]] ABC). It is available on newsstands throughout the world.<br /> <br /> ==External links==<br /> *[http://www.rock-sound.co.uk/ Rock Sound Official Site]<br /> *[http://www.rocksound.tv ROCKSOUND.TV]<br /> *[http://www.buzznet.com/groups/rocksound ''Rock Sound'' Buzznet Group]<br /> *[http://www.myspace.com/rocksound ''Rock Sound'' MySpace Page]<br /> *[http://www.last.fm/group/Rock%2BSound ''Rock Sound'' Last FM Group]<br /> <br /> <br /> {{music-publication-stub}}<br /> <br /> [[Category:Music magazines]]<br /> <br /> [[ro:Rock Sound]]</div> FatalError https://de.wikipedia.org/w/index.php?title=Anthony_Indelicato&diff=122676485 Anthony Indelicato 2008-07-02T06:18:11Z <p>FatalError: Undoing own edit (using Huggle)</p> <hr /> <div>[[Image:Anthonyindelicato1.jpg|right|thumb|[[FBI]] [[mugshot]] of Anthony &quot;Bruno&quot; Indelicato]]<br /> <br /> '''Anthony Indelicato''' a.k.a. '''&quot;''Bruno''&quot;''' a.k.a. '''&quot;''Whack-Whack''&quot;''' (b. 1956 [[Little Italy, Manhattan]]) is one of the top [[caporegime]]s with the [[Bonanno crime family]] in [[New York City]], and the son of [[Alphonse Indelicato|Alphonse &quot;Sonny Red&quot; Indelicato]] and [[stepson]] of Mary Elizabeth McFhadden.<br /> <br /> ==Biography==<br /> <br /> <br /> Anthony B. (Bruno) Indelicato also the nephew of [[Bonanno crime family]] ''capo'' [[Joseph Indelicato]] who is a salesman for a [[New Jersey]]-based garment factory and is also the [[son-in-law]] to [[Lucchese crime family]] mob associate [[Jimmy Burke]] and [[brother-in-law]] to [[Gambino crime family]] mob associate Jesse James Burke and [[Frank James Burke]]. He is a [[nephew]] of [[Gerard Indelicato]] born c.a. 1946 [[Boston, Massachusetts]], who was the Special Assistant for Educational Affairs to [[Governor of Massachusetts]] [[Michael Dukakis]] from 1983 to 1986. Gerard was later appointed [[President]] of [[Bridgewater State College]] and served from 1986 to December of 1988. He is the nephew of small-time [[Irish-American]] armed robber and burglar [[Edward Theodore Deegan]]. He is also a relative of [[Castellammare del Golfo]] born convicted [[heroin]] smuggler and [[Bonanno crime family]] [[capo]] [[Giuseppe Indelicato]]. Anthony has the physique of a welterweight boxer and suffered from premature hair loss which he was very insecure about. In 1982 he had a $500-a-day cocaine addiction. Additionally, information surfaced in early 2008 revealing that Anthony Indelicato is the second cousin of mobster and recording artist [[Danyael Shovera Caliberi]], who is better known as Sho Caliberi and [[Genovese crime family]] mobster [[Vito Lasata]] whose daughter Britney married Sho. Britney was later gangbanged, mutilated and set on fire before finally dying from her wounds. By the age of twenty-five he was starting to loose his hair which gave him self confidence and esteem issues that plague him. He had hair plugs installed to help the premature hair loss but with no prevail. He constantly complained about his hair loss to his fellow criminal associates which aggrivated them.<br /> <br /> ==Career in Organized Crime==<br /> <br /> He is suspected by authorities to have participated in the [[July 12]], [[1979]] murder of [[Carmine Galante|Carmine &quot;Lilo the Cigar&quot; Galante]] that occurred while dining at a restaurant [[Bushwick, Brooklyn]]. After he was promoted to the rank of [[Caporegime|capo]], he intended to inherit his father's [[loanshark]] and [[bookmaking]] rackets, and live off his prosperity. [[Dominick Napolitano|Dominick &quot;Sonny Black&quot; Napolitano]] immensely disliked the rival [[Bonanno crime family]] ''capo'' because of living off his father's reputation in the [[La Cosa Nostra]]. He was supposed to be murdered with his father, Alphonse, [[Phillip Giaccone|Philip &quot;Philly Lucky&quot; Giaccone]] and [[Dominick Trinchera|Dominick &quot;Big Trin&quot; Trinchera]] on [[May 5]], [[1981]], but was high on [[cocaine]] and was fortunately late for the &quot;meeting&quot;. Convicted of Galante's murder during the historic [[Mafia Commission Trial]] in 1986, Indelicato was serving twelve years in a [[Lewisburg, Pennsylvania]] penitentary, when he met Catherine Burke, while visiting her incarcerated father [[Jimmy Burke (gangster)|Jimmy Burke]] in 1985 and were eventually married in 1992 while Indelicato was serving time in [[Terre Haute, Indiana]] for racketeering. Following his release in 1998, Indelicato resides with his wife in [[Howard Beach, Queens]], while taking care of his father's old crew and is being one of the [[Bonanno crime family]]'s biggest earners, with a murderous crew of at least fifteen of them are all listed as a [[made man]] or &quot;street soldier&quot;. Since the murder of his brother Alphonse, Joseph Indelicato has become the capo over his nephew Anthony and formed relationships with [[Vincent Basciano]]. She was murdered in revenge for Sho murdering a rival mobster's nephew. After the death of his father, Anthony attempted to assasinate [[John Gotti]] and [[Angelo Ruggiero]] (who were only minorly involved in arranging the disposal) by driving up alongside them and machinegunning them to death on the [[Van Wyck Expressway]] during a high speed chase but Ruggiero who was driving at the time careened the vehicle away avoiding imminent death.<br /> <br /> ==Cocaine Addiction==<br /> <br /> Anthony was very abusive to women. In one incident a sobbing woman approached Anthony in a social club, but he just ignored her, or one of the waiters would try to pull her away. Finally after she persisted for too long, Anthony got up from his chair, made a move like he was going to hug her, and instead, grabbed her by the hair, he dragged her towards the door. Someone opened the front door for him, and he pushed her down the stairs. He screamed, ''&quot;If you don't get the fuck out of here, I'm going to have to fucking kill you. And you better not open your mouth.&quot;'' Anthony was married in [[1977]] to a cocaine addict named Maryanne. She is described as weighed not much more than eighty-five pounds and was worse than Anthony. She was a petite woman to begin with, but she was nearly skeletal, with sunken eyes and hollow cheeks which made her frightening to look at. Anthony and Maryanne owned a house in Florida that was a block away from Frank Lino's vacation home. They would spend all day with their blinds closed snorting cocaine, and then at night they would come out, pale and cadaverous, like vampires. He was constantly irrational and badgered friends for drugs. The cocaine made him so paranoid that he was even suspicious of himself. On one occasion he even hassled Frank Lino's girlfriend Andrea Giovino and once broke into Frank's Florida home while she was asleep looking for cocaine. Frank eventually became concerned about Anthony's increasingly erratic behaviour. On a constant basis Anthony would swing back and forth between fits. He would go through periods when he would go to a drug [[rehabilitation center]] and clean himself up where he could be the most handsome, charming man that anyone could meet and the next day a volatile angry irrational man. He wore thousand dollar [[Armani]] suits and silk ties and displayed himself as the movie mobster stereotype. [[Frank Lino]] later informed his girlfriend Andrea Giovino that there had been several sit-downs involving the Gambino, Bonanno, Lucchese and Colombo crime families in New York City to discuss the situation. Anthony was often so volatile that he was ordering contract killings left and right for no good reason that the leaders of the organized crime families could not see. By [[1977]], the Bonanno crime family led by Phillip Rastelli were considering having him murdered to help ease the inner-familiy tensions that would eventually peak in 1981 with the Donnie Brasco investigation, as well as among the other crime famlies. Fortunately, for Anthony he was so &quot;arrogant and stupid&quot; that he was one of the first &quot;skippers&quot; to get arrested and convicted of racketeering charges in 1979. At this time, if he had not wound up being sent to prison for racketeering and the murder of [[Carmine Galante]], he himself would have been murdered.<br /> <br /> ==Further reading== <br /> *Jacobs, James B., Christopher Panarella and Jay Worthington. ''Busting the Mob: The United States Vs. Cosa Nostra''. New York: NYU Press, 1994. ISBN 0-8147-4230-0 <br /> *Raab, Selwyn. ''Five Families: The Rise, Decline, and Resurgence of America's Most Powerful Mafia Empires''. New York: St. Martin Press, 2005. ISBN 0-312-30094-8<br /> *Saggio, Frankie and Fred Rosen. ''Born to the Mob: The True-Life Story of the Only Man to Work for All Five of New York's Mafia Families''. New York: Thunder Mouth Press, 2004. ISBN 1-56025-559-5<br /> * Giovino, Andrea ''Divorced from the Mob: My Journey from Organized Crime to Independent Woman'' <br /> Retrieved from &quot;http://en.wikipedia.org/wiki/Frank_Lino&quot;<br /> <br /> ==External links==<br /> *[http://www.thelaborers.net/lexisnexis/articles/anthony_indelicato.htm Anthony Indelicato, Petitioner vs. United States of America], In the Supreme Court of the United States: On Petition for a Writ of Certiorari to the United States Court of Appeals for the Second Circuit<br /> *[http://www.ipsn.org/court_cases/us_v_indelicato.htm United States of America, Appellee, vs. Anthony Indelicato, Defendant - Appellant], United States Court of Appeals for the Second Circuit<br /> *[http://www.time.com/time/nation/article/0,8599,145082,00.html TIME.com - Hitting the Mafia] by Ed Magnuson<br /> <br /> {{DEFAULTSORT:Indelicato, Anthony}}<br /> [[Category:1956 births]]<br /> [[Category:Sicilian-American mobsters]]<br /> [[Category:Bonanno crime family]]<br /> [[Category:Living people]]<br /> <br /> [[nl:Anthony Indelicato]]</div> FatalError https://de.wikipedia.org/w/index.php?title=Anthony_Indelicato&diff=122676484 Anthony Indelicato 2008-07-02T06:17:45Z <p>FatalError: Reverted edits by 99.243.60.43 (using Huggle)</p> <hr /> <div>[[Image:Anthonyindelicato1.jpg|right|thumb|[[FBI]] [[mugshot]] of Anthony &quot;Bruno&quot; Indelicato]]<br /> <br /> '''Anthony Indelicato''' a.k.a. '''&quot;''Bruno''&quot;''' a.k.a. '''&quot;''Whack-Whack''&quot;''' (b. 1956 [[Little Italy, Manhattan]]) is one of the top [[caporegime]]s with the [[Bonanno crime family]] in [[New York City]], and the son of [[Alphonse Indelicato|Alphonse &quot;Sonny Red&quot; Indelicato]] and [[stepson]] of Mary Elizabeth McFhadden.<br /> <br /> ==Biography==<br /> <br /> <br /> Anthony B. (Bruno) Indelicato also the nephew of [[Bonanno crime family]] ''capo'' [[Joseph Indelicato]] who is a salesman for a [[New Jersey]]-based garment factory and is also the [[son-in-law]] to [[Lucchese crime family]] mob associate [[Jimmy Burke]] and [[brother-in-law]] to Jesse James Burke and the late [[Frank James Burke]]. He is a nephew of [[Gerard Indelicato]] born c.a. 1946 [[Boston, Massachusetts]], who was the Special Assistant for Educational Affairs to [[Governor of Massachusetts]] [[Michael Dukakis]] from 1983 to 1986. Gerard was later appointed [[President]] of [[Bridgewater State College]] and served from 1986 to December of 1988. He is the nephew of small-time [[Irish-American]] armed robber and burglar [[Edward Theodore Deegan]]. He is also a relative of [[Castellammare del Golfo]] born convicted [[heroin]] smuggler and [[Bonanno crime family]] [[capo]] [[Giuseppe Indelicato]]. Anthony has the physique of a welterweight boxer and suffered from premature hair loss which he was very insecure about. In 1982 he had a $500-a-day cocaine addiction. He is suspected by authorities to have participated in the [[July 12]], [[1979]] murder of [[Carmine Galante|Carmine &quot;Lilo the Cigar&quot; Galante]] that occurred while dining at a restaurant [[Bushwick, Brooklyn]]. After he was promoted to the rank of [[Caporegime|capo]], he intended to inherit his father's [[loanshark]] and [[bookmaking]] rackets, and live off his prosperity. [[Dominick Napolitano|Dominick &quot;Sonny Black&quot; Napolitano]] immensely disliked the rival [[Bonanno crime family]] ''capo'' because of living off his father's reputation in the [[La Cosa Nostra]]. He was supposed to be murdered with his father, Alphonse, [[Phillip Giaccone|Philip &quot;Philly Lucky&quot; Giaccone]] and [[Dominick Trinchera|Dominick &quot;Big Trin&quot; Trinchera]] on [[May 5]], [[1981]], but was high on [[cocaine]] and was fortunately late for the &quot;meeting&quot;. Convicted of Galante's murder during the historic [[Mafia Commission Trial]] in 1986, Indelicato was serving twelve years in a [[Lewisburg, Pennsylvania]] penitentary, when he met Catherine Burke, while visiting her incarcerated father [[Jimmy Burke (gangster)|Jimmy Burke]] in 1985 and were eventually married in 1992 while Indelicato was serving time in [[Terre Haute, Indiana]] for racketeering. Following his release in 1998, Indelicato resides with his wife in [[Howard Beach, Queens]], while taking care of his father's old crew and is being one of the [[Bonanno crime family]]'s biggest earners, with a murderous crew of at least fifteen of them are all listed as a [[made man]] or &quot;street soldier&quot;. Since the murder of his brother Alphonse, Joseph Indelicato has become the capo over his nephew Anthony and formed relationships with [[Vincent Basciano]]. Additionally, information surfaced in early 2008 revealing that Anthony Indelicato is the second cousin of mobster and recording artist [[Danyael Shovera Caliberi]], who is better known as Sho Caliberi and [[Genovese crime family]] mobster [[Vito Lasata]] whose daughter Britney married Sho. Britney was later gangbanged, mutilated and set on fire before finally dying from her wounds. She was murdered in revenge for Sho murdering a rival mobster's nephew. After the death of his father, Anthony attempted to assasinate [[John Gotti]] and [[Angelo Ruggiero]] (who were only minorly involved in arranging the disposal) by driving up alongside them and machinegunning them to death on the [[Van Wyck Expressway]] during a high speed chase but Ruggiero who was driving at the time careened the vehicle away avoiding imminent death.<br /> <br /> ==Further reading== <br /> *Jacobs, James B., Christopher Panarella and Jay Worthington. ''Busting the Mob: The United States Vs. Cosa Nostra''. New York: NYU Press, 1994. ISBN 0-8147-4230-0 <br /> *Raab, Selwyn. ''Five Families: The Rise, Decline, and Resurgence of America's Most Powerful Mafia Empires''. New York: St. Martin Press, 2005. ISBN 0-312-30094-8<br /> *Saggio, Frankie and Fred Rosen. ''Born to the Mob: The True-Life Story of the Only Man to Work for All Five of New York's Mafia Families''. New York: Thunder Mouth Press, 2004. ISBN 1-56025-559-5<br /> <br /> ==External links==<br /> *[http://www.thelaborers.net/lexisnexis/articles/anthony_indelicato.htm Anthony Indelicato, Petitioner vs. United States of America], In the Supreme Court of the United States: On Petition for a Writ of Certiorari to the United States Court of Appeals for the Second Circuit<br /> *[http://www.ipsn.org/court_cases/us_v_indelicato.htm United States of America, Appellee, vs. Anthony Indelicato, Defendant - Appellant], United States Court of Appeals for the Second Circuit<br /> *[http://www.time.com/time/nation/article/0,8599,145082,00.html TIME.com - Hitting the Mafia] by Ed Magnuson<br /> <br /> {{DEFAULTSORT:Indelicato, Anthony}}<br /> [[Category:1956 births]]<br /> [[Category:Sicilian-American mobsters]]<br /> [[Category:Bonanno crime family]]<br /> [[Category:Living people]]<br /> <br /> [[nl:Anthony Indelicato]]</div> FatalError https://de.wikipedia.org/w/index.php?title=Weltraumrecht&diff=127055393 Weltraumrecht 2008-07-02T06:07:36Z <p>FatalError: Reverted edits by 74.238.140.150 to last version by PipepBot (using Huggle)</p> <hr /> <div>{{Cleanup|date=August 2006}}<br /> '''Space law''' is an area of the [[law]] that encompasses national and [[international law]] governing activities in [[outer space]]. International lawyers have been unable to agree on a uniform definition of the term &quot;outer space,&quot; although most lawyers agree that outer space generally begins at the lowest altitude above sea level at which objects can orbit the [[Earth]], approximately 100 km (62 mi). <br /> <br /> The inception of the field of space law began with the launch in October [[1957]] of the world's first artificial satellite, the [[Soviet Union|Union of Soviet Socialist Republic]]'s ''[[Sputnik]]''. It was launched as part of the [[International Geophysical Year]]. Since then, space law has evolved and assumed more importance as humankind has increasingly come to use and rely on space-based resources.<br /> <br /> == Early developments ==<br /> <br /> Beginning in 1957, nations began discussing systems to ensure the peaceful use of outer space.&lt;ref name=&quot;inesap&quot;&gt;[http://www.inesap.org/bulletin17/bul17art22.htm inesap.org] Peaceful Uses of Outer Space and International Law.&lt;/ref&gt;&lt;ref&gt;[http://daccessdds.un.org/doc/RESOLUTION/GEN/NR0/119/31/IMG/NR011931.pdf?OpenElement UN website] UN Resolution 1148 (XII).&lt;/ref&gt; Bilateral discussions between the United States and USSR in 1958 resulted in the presentation of issues to the UN for debate.&lt;ref name=&quot;inesap&quot;/&gt;&lt;ref&gt;[http://books.google.ca/books?id=r2IfMEpPUIsC&amp;pg=PA289&amp;lpg=PA289&amp;dq=un+resolution+1148&amp;source=web&amp;ots=f7fK1HE9op&amp;sig=aqBDlbeUSYjEmBdXPOCyg7nee60&amp;hl=en#PPA291,M1 Google books] ''Nuclear Weapons and Contemporary International Law'' N.Singh, E. WcWhinney (p.289)&lt;/ref&gt;&lt;ref&gt;[http://daccessdds.un.org/doc/RESOLUTION/GEN/NR0/747/92/IMG/NR074792.pdf?OpenElement UN website] UN Resolution 1348 (XIII).&lt;/ref&gt; In 1959 the UN created the [[United Nations Committee on the Peaceful Uses of Outer Space|Committee on the Peaceful Uses of Outer Space]] (COPUOS).&lt;ref&gt;{{cite web | url = http://www.unoosa.org/oosa/COPUOS/copuos.html | title = United Nations Committee on the Peaceful Uses of Outer Space | publisher = United Nations Office for Outer Space Affairs}}&lt;/ref&gt; COPUOS in turn created two subcommittees, the Scientific and Technical Subcommittee and the Legal Subcommittee. The COPUOS Legal Subcommittee has been a primary forum for discussion and negotiation of international agreements relating to outer space.<br /> <br /> == International treaties ==<br /> Five international treaties have been negotiated and drafted in the COPUOS:<br /> <br /> * The 1967 Treaty on Principles Governing the Activities of States in the Exploration and Use of Outer Space, Including the Moon and Other Celestial Bodies (the &quot;[[Outer Space Treaty]]&quot;).<br /> <br /> * The 1968 Agreement on the Rescue of Astronauts, the Return of Astronauts and the Return of Objects Launched into Outer Space (the &quot;[[Rescue Agreement]]&quot;).<br /> <br /> * The 1972 Convention on International Liability for Damage Caused by Space Objects (the &quot;[[Liability Convention]]&quot;).<br /> <br /> * The 1975 Convention on Registration of Objects Launched Into Outer Space (the &quot;[[Registration Convention]]&quot;).<br /> <br /> * The 1979 Agreement Governing the Activities of States on the Moon and Other Celestial Bodies (the &quot;[[Moon Treaty]]&quot;). <br /> <br /> The Outer Space Treaty is the most widely-adopted treaty, with 98 parties. The Rescue Agreement, the Liability Convention and the Registration Convention all elaborate on provisions of the Outer Space Treaty. U.N. delegates apparently intended that the Moon Treaty serve as a new comprehensive treaty which would supersede or supplement the Outer Space Treaty, most notably by elaborating upon the Outer Space Treaty's provisions regarding resource appropriation and prohibition of territorial sovereignty. The Moon Treaty has only 12 parties, and many consider it to be a failed treaty due to its limited acceptance.<br /> <br /> In addition, the [[Treaty Banning Nuclear Weapon Tests in the Atmosphere, in Outer Space, and Under Water|nuclear test ban treaty]] of [[1963]] banned the testing of nuclear weapons in outer space.<br /> <br /> == Consensus ==<br /> The COPUOS operates on the basis of consensus, ''i.e.'' all committee and subcommittee delegates must agree on treaty language before it can be included in the final version of a treaty, and the committees cannot place new items on their agendas unless all member nations agree. One reason that the U.N. space treaties lack definitions and are unclear in other respects, is because it is easier to achieve consensus when language and terms are vague. In recent years, the COPUOS Legal Subcommittee has been unable to achieve consensus on discussion of a new comprehensive space agreement, and it is also unlikely that the Subcommittee will be able to agree to amend the Outer Space Treaty in the foreseeable future. Many space faring nations seem to believe that discussing a new space agreement or amendment of the Outer Space Treaty would be futile and time consuming, because entrenched differences regarding resource appropriation, property rights and other issues relating to commercial activity make consensus unlikely.<br /> <br /> == 1998 ISS agreement ==<br /> In addition to the international treaties that have been negotiated at the United Nations, the nations participating in the [[International Space Station]] have entered into the 1998 Agreement among the governments of [[Canada]], Member States of the [[European Space Agency]], [[Japan]], [[Russia|Russian Federation]], and the [[United States of America]] concerning cooperation on the Civil International Space Station (the &quot;[ftp://ftp.hq.nasa.gov/pub/pao/reports/1998/IGA.html Space Station Agreement]&quot;). This Agreement provides, among other things, that [[NASA]] is the lead agency in coordinating the member states' contributions to and activities on the space station, and that each nation has jurisdiction over its own module(s). The Agreement also provides for protection of intellectual property and procedures for criminal prosecution. This Agreement may very well serve as a model for future agreements regarding international cooperation in facilities on the Moon and Mars, where the first off-world colonies and scientific/industrial bases are likely to be established.<br /> <br /> == National law==<br /> Space law also encompasses national laws, and many countries have passed national space legislation in recent years. The Outer Space Treaty requires parties to authorize and supervise national space activities, including the activities of non-governmental entities such as commercial and non-profit organizations. The Outer Space Treaty also incorporates the [[United Nations Charter|UN Charter]] by reference, and requires parties to ensure that activities are conducted in accordance with other forms of international law such as [[customary international law]] (the custom and practice of states). <br /> <br /> The advent of commercial space activities beyond the scope of the satellite communications industry, and the development of many commercial spaceports, is leading many countries to consider how to regulate private space activities. The challenge is to regulate these activities in a manner that does not hinder or preclude investment, while still ensuring that commercial activities comply with international law. The developing nations are concerned that the space faring nations will monopolize space resources.<br /> <br /> == Geostationary orbit allocation ==<br /> Satellites in [[geostationary orbit]] must all occupy a single ring above the equator, approximately 35,800 km into space. The requirement to space these satellites apart means that there are a limited number of orbital &quot;slots&quot; available, thus only a limited number of satellites can be placed in geostationary orbit. This has led to conflict between different countries wishing access to the same orbital slots (countries at the same [[longitude]] but differing [[latitudes]]). These disputes are addressed through the [[International Telecommunication Union|ITU]] allocation mechanism.&lt;ref&gt;http://www.itu.int/ITU-R/conferences/seminars/mexico-2001/docs/06-procedure-mechanism.doc&lt;/ref&gt; Countries located at the Earth's equator have also asserted their legal claim to control the use of space above their territory.&lt;ref&gt;[http://www.esa.int/SPECIALS/ECSL/SEM1691XDYD_0.html ESA - ECSL European Centre for Space Law - Geostationary Orbit. Legal issues&lt;!-- Bot generated title --&gt;]&lt;/ref&gt;<br /> <br /> == The future of space law ==<br /> While this field of the law is still in its infancy, it is in an era of rapid change and development. Arguably the resources of space are infinite, and limited only by our ability to use them in a manner that is fair and equitable to all nations and which is environmentally ethical. If commercial space transportation becomes widely available, with substantially lower launch costs, then all countries will be able to directly reap the benefits of space resources. In that situation, it seems likely that consensus will be much easier to achieve with respect to commercial development and human settlement of outer space. High costs are not the only factor preventing the economic exploitation of space: it is argued that space should be considered as a pristine environment worthy of protection and conservation, and that the legal regime for space should further protect it from being used as a resource for Earth's needs &lt;ref&gt;Billings, L. (2006) To the Moon, Mars, and beyond: culture, law, and ethics in space-faring societies, Bulletin of Science, Technology &amp; Society, 26(5), 430-437&lt;/ref&gt;&lt;ref&gt;Lee, K. (1994) Awe and humility: intrinsic value in nature – beyond an earthbound environmental ethics, in: Attfield, R. &amp; Belsey, A. Philosophy and the Natural Environment, Cambridge: Cambridge University Press, 89-101&lt;/ref&gt;. Debate is also focussed on whether space should continue to be legally defined as part of the “common heritage of man,” and therefore unavailable for national claims, or whether its legal definition should be changed to allow private property in space.&lt;ref&gt;Fountain, L. (2003) Creating the momentum in Space: ending the paralysis produced by the “Common Heritage of Man” doctrine, Connecticut Law Review, 35(4), 1753-1787&lt;/ref&gt;&lt;ref&gt;Billings, L. (2006) To the Moon, Mars, and beyond: culture, law, and ethics in space-faring societies, Bulletin of Science, Technology &amp; Society, 26(5), 430-437&lt;/ref&gt;<br /> <br /> == References ==<br /> {{reflist}}<br /> {{refimprove | date=February 2008}}<br /> <br /> <br /> <br /> ==External links==<br /> *[http://www.L2MS.com Lunar Land Management Society]<br /> *[http://www.iafastro-iisl.com International Institute of Space Law]<br /> *[http://www.spacelawprobe.com Space Law Probe]<br /> *[http://www.planetaryinstitute.org Planetary Institute - Space Law Lobby]<br /> *[http://rescommunis.wordpress.com Res Communis Blog]<br /> *[http://www.auswaertiges-amt.de/www/en/aussenpolitik/vn/voelkerrecht/weltraumrecht_html Overview of space law] (in German)<br /> *[http://www.unoosa.org/oosa/en/SpaceLaw/index.html International Space Law]<br /> <br /> {{law}}<br /> <br /> [[Category:Space law| ]]<br /> <br /> [[el:Δίκαιο του διαστήματος]]<br /> [[es:Derecho aeronáutico]]<br /> [[fr:Droit de l'espace]]<br /> [[it:Diritto aerospaziale]]<br /> [[ja:宇宙法]]<br /> [[pl:Międzynarodowe prawo kosmiczne]]</div> FatalError https://de.wikipedia.org/w/index.php?title=I%E2%80%99m_Forever_Blowing_Bubbles&diff=103110880 I’m Forever Blowing Bubbles 2008-07-02T02:33:14Z <p>FatalError: Reverted edits by 204.96.196.147 to last version by ClueBot (using Huggle)</p> <hr /> <div>[[Image:ImForeverBlowingBubbles.jpg|right|]]<br /> &quot;'''I'm Forever Blowing Bubbles'''&quot; is a popular song which debuted in [[1918]] and was first published in [[1919]]. <br /> <br /> The tune is by [[John W. Kellette|John Kellette]]. The lyrics are credited to &quot;Jaan Kenbrovin&quot;, actually a collective [[pseudonym]] for the writers [[James Kendis]], [[James Brockman]] and [[Nat Vincent]]. The number was debuted in the [[Broadway musical]] ''[[The Passing Show of 1918]]'', and it was introduced by Helen Carrington.<br /> <br /> The [[copyright]] to &quot;I'm Forever Blowing Bubbles&quot; was originally registered in 1919, and was owned by the [[Kendis-Brockman Music Company|Kendis-Brockman Music Co. Inc]]. This was transferred later that year to [[Jerome H. Rernick]] &amp; Co. of New York and Detroit. When the song was written, James Kendis, James Brockman, and Nat Vincent all had separate contracts with publishers, which led them to use the name Jaan Kenbrovin for credit on this song. James Kendis and James Brockman were partners in the Kendis-Brockman Music Company.<br /> <br /> The [[Waltz (music)|waltz]] was a major [[Tin Pan Alley]] hit, and was performed and recorded by most major singers and bands of the late [[1910s]] and early [[1920s]].<br /> <br /> The song was a hit for [[Ben Selvin]]'s Novelty Orchestra in 1919. The [[Original Dixieland Jass Band]] recording of the number is an unusual early example of [[jazz]] in 3/4 time. <br /> <br /> The song also became a hit with the public in British [[music hall]]s and theatres during the early 1920s. [[Dorothy Ward]] was especially renowned for making the song famous with her appearances at these venues. The song was also used by English comedian &quot;Professor&quot; [[Jimmy Edwards]] as his signature tune - played on the trombone. [[Harpo Marx]] would play the song on clarinet, which would then begin emitting bubbles. The title air, or first line of the chorus, is quoted in the 1920s song &quot;[[Singing in the Bathtub]]&quot;, a favorite of cartoon [[canary]] [[Tweety Bird]]. In the early 1970s, The [[Bonzo Dog Band]]'s stage show featured a [[robot]] that sang the title air while blowing bubbles.<br /> <br /> The writer [[Ring Lardner]] parodied the lyric during the [[Black Sox]] scandal of 1919, when he began to suspect that players on the [[Chicago White Sox]] team were deliberately losing the World Series to the [[Cincinnati Reds]].&lt;ref&gt;[http://www.baseballlibrary.com/ballplayers/player.php?name=Ring_Lardner Entry for Ring Lardner at the Baseball Library]&lt;/ref&gt; His version began: &quot;I'm forever blowing ballgames&quot;.<br /> <br /> The song features extensively in the 1931 [[prohibition]] gangster movie ''[[The Public Enemy]]'' starring [[James Cagney]].<br /> <br /> A parody of the song was written and performed as; &quot;I'm forever blowing bubble-gum&quot; by Spike Jones and his City Slickers.<br /> <br /> ==West Ham United connection==<br /> <br /> The song is now better known in the UK as the club anthem of [[West Ham United F.C.|West Ham United]], a [[London]]-based football club.<br /> <br /> &quot;I'm Forever Blowing Bubbles&quot; was introduced to the club by former manager [[Charlie Paynter]] in the late twenties. A player, Billy J. &quot;Bubbles&quot; Murray who played for the local [[Park School, London|Park School]] had an almost uncanny resemblance to the boy in the famous &quot;[[bubbles (painting)|Bubbles]]&quot; painting by [[Millais]] used in a Pears soap commercial of the time. Headmaster Cornelius Beal coined singing the tune &quot;I'm Forever Blowing Bubbles&quot; with amended lyrics when Park players played well.&lt;ref name=&quot;Bubbles&quot;&gt;{{cite web |url=http://www.whufc.com/page/VintageClaret/0,,12562~1193983,00.html | title=The Story of Bubbles | publisher=West Ham United | author=John Helliar}}&lt;/ref&gt;<br /> <br /> Beal was a friend of Paynter, while Murray was a West Ham trialist and played football at schoolboy level with a number of West Ham players such as [[Jim Barrett, Sr.|Jim Barrett]]. Through this contrivance of association the club's fans took it upon themselves to begin singing the popular music hall tune before home games, sometimes reinforced by the presence of a house band requested to play the refrain by Charlie Paynter.&lt;ref name=&quot;Bubbles&quot;/&gt;<br /> <br /> There is a slight change to the lyrics sung by the Upton Park faithful. The second line's &quot;nearly reach the sky&quot; is changed to &quot;they reach the sky&quot;, &quot;Then like my dreams&quot; is also changed to &quot;And like my dreams&quot;. In addition the fans begin a chant of &quot;United, United!&quot; to cap it off.&lt;ref name=&quot;Bubbles&quot;/&gt;<br /> <br /> These touchline songs were a form of predecessor to the [[Football chant|terrace chants]] that have since become a trademark of the game. It was adopted by West Ham's supporters in the late 1920s and is now one of the most recognisable club anthems in [[Football in England|English football]] along with &quot;[[You'll Never Walk Alone (song)|You'll Never Walk Alone]]&quot;.<br /> <br /> As a tribute to West Ham, the [[punk rock]] band the [[Cockney Rejects]] covered the song in [[1980]]. The song is also distinctly heard in the movie ''[[Green Street]]'',&lt;ref&gt;The film is known alternatively as ''&quot;Green Street Hooligans&quot;'' (US) or ''&quot;Hooligans&quot;'' (Aus/Rest of the world)&lt;/ref&gt; starring [[Elijah Wood]].<br /> <br /> In [[2006]] at the final match at [[Arsenal Stadium|Arsenal F.C.'s Highbury stadium]], [[Arsenal F.C.|Arsenal]] supporters broke into song to celebrate West Ham's defeat of [[Tottenham Hotspur F.C.|Tottenham]] which elevated Arsenal into the Champions League on the last day. Similarly, [[Blackburn Rovers]] were heard singing 'Bubbles' in their dressing room after West Ham assisted them winning the Premiership in 1995 having held [[Manchester United]] 1-1.<br /> <br /> ==Lyrics==<br /> The original lyrics per first publication.<br /> &lt;!-- Note: 1919 song in public domain from expired copyright; no copyright violation--&gt;<br /> ===Verse 1===<br /> :''I'm dreaming dreams'',<br /> :''I'm scheming schemes'',<br /> :''I'm building castles high''.<br /> :''They're born anew'',<br /> :''Their days are few'',<br /> :''Just like a sweet butterfly''.<br /> :''And as the daylight is dawning'',<br /> :''They come again in the morning''.<br /> ===Chorus===<br /> :''I'm forever blowing bubbles'',<br /> :''Pretty bubbles in the air''.<br /> :''They fly so high'',<br /> :''Nearly reach the sky'',<br /> :''Then like my dreams'',<br /> :''They fade and die''.<br /> :''Fortune's always hiding'',<br /> :''I've looked everywhere'',<br /> :''I'm forever blowing bubbles'',<br /> :''Pretty bubbles in the air''.<br /> <br /> ==Notable recordings==<br /> <br /> Notable recordings of the song include:<br /> <br /> *[[Albert C. Campbell]] &amp; [[Henry Burr]]<br /> **[[Columbia Records|Columbia]] A-2701 (matrix: 78263-1)<br /> **Recorded [[January 22]], [[1919]]<br /> <br /> *[[Helen Clark_(singer)|Helen Clark]] &amp; [[George Wilton Ballard]]<br /> **[[Edison Records|Edison]] [[Blue Amberol Records|Blue Amberol]] 3798<br /> **Released August [[1919]]<br /> <br /> *[[Ben Selvin]] &amp; his Novelty Orchestra<br /> **[[Victor Records|Victor]] 18603 (matrix: 22966-6)<br /> **Recorded [[July 31]], [[1919]]<br /> <br /> *[[Peter Dawson]] (as Will Strong)<br /> **[[HMV Records|HMV]] B 1092<br /> **Recorded [[London]] [[February 17]], [[1920]]<br /> <br /> *[[Vera Lynn]]<br /> **Recorded [[London]]<br /> <br /> *[[Doris Day]] &amp; [[&quot;Smilin'&quot; Jack Smith (music)|Jack Smith]] with the [[Norman Luboff Choir]] with orchestra directed by [[Paul Weston]]<br /> **[[Columbia Records|Columbia]] 39453 (matrix: RHCO 4481-1N)<br /> **Also released as a track of the 10&quot; LP, ''[[On Moonlight Bay (album)|On Moonlight Bay]]''<br /> **Recorded [[Los Angeles]] [[April 27]], [[1951]]<br /> <br /> *[[Frank Fontaine]] (as Crazy Guggenheim on The Jackie Gleason Show/CBS-TV;'Songs I Sing on the Jackie Gleason Show' - Track 2)<br /> **[[ABC Paramount Records]] 90212<br /> **Recorded [[1962]]<br /> **Number One Album on Billboard in February 1963<br /> <br /> ==References==<br /> {{reflist}}<br /> <br /> ==External links==<br /> *[http://www.allmusic.com/cg/amg.dll?p=amg&amp;sql=17:714499 I'm Forever Blowing Bubbles] at the [[All Music Guide]]<br /> *[http://www.kumb.com/club.php West Ham United club history at KUMB], contains full lyrics for the song<br /> *[http://www.whufc.com/claret/?page_id=3595 The Story Of Bubbles] by John Helliar, from the official West Ham United website<br /> *{{cite book |last=Hogg |first=Tony |title=Who's Who of West Ham United |year=2005 |publisher=Profile Sports Media| id= ISBN 1 903135 50 8 |pages=24}}<br /> <br /> {{fb start}}<br /> {{WHUFC}}<br /> {{fb end}}<br /> <br /> [[Category:1919 songs]]<br /> [[Category:Pop standards]]<br /> [[Category:Football songs and chants]]<br /> [[Category:West Ham United F.C.]]<br /> [[Category:Original Dixieland Jazz Band songs]]<br /> <br /> [[it:I'm Forever Blowing Bubbles]]</div> FatalError https://de.wikipedia.org/w/index.php?title=Cranbrook_(Kent)&diff=157108855 Cranbrook (Kent) 2008-06-30T19:31:27Z <p>FatalError: Reverted 2 edits by Sebastian carnwath to last version by Rotational (using Huggle)</p> <hr /> <div>{{infobox UK place|<br /> |country = England<br /> |official_name= Cranbrook<br /> |latitude= 51.1007<br /> |longitude= 0.5345<br /> |population = <br /> |shire_district= [[Tunbridge Wells (borough)|Tunbridge Wells]]<br /> |shire_county = [[Kent]]<br /> |region= South East England<br /> |constituency_westminster= [[Maidstone and The Weald (UK Parliament constituency)|Maidstone and The Weald]]<br /> |post_town= CRANBROOK|postcode_district = TN17<br /> |postcode_area= TN |dial_code= 01580<br /> |os_grid_reference= TQ775365 <br /> }}<br /> {{otherplaces2|Cranbrook}}<br /> '''Cranbrook''' is an old market town in the [[Tunbridge Wells (borough)|Tunbridge Wells]] borough of [[Kent]] in [[South East England]]. It is also the smallest town in Kent. It is on the [[Maidstone]] to [[Hastings]] road and five miles north of [[Hawkhurst]]. The smaller settlements of [[Swattenden]], Colliers Green and [[Hartley, Cranbrook|Hartley]] lie within the parish.<br /> ==Origin of Name==<br /> <br /> The place name Cranbrook derives from [[Old English]] ''cran broc'', meaning Crane Marsh – marshy ground frequented by cranes (although more probably herons). The place name has evolved over the centuries from Cranebroca (c1100), by 1226 it is recorded as Cranebroc, then Cranebrok by 1610 the name had become Cranbrooke, which evolved into the current spelling.&lt;ref&gt;The Place Names of Kent, Judith Glover ISBN 0905270 614&lt;/ref&gt;&lt;ref&gt;The Origin of English Place Names, P.H.Reaney ISBN 0710020104&lt;/ref&gt;<br /> <br /> ==History==<br /> In medieval times it was a centre of the [[Wealden cloth industry]]; and [[Wealden iron industry|iron-making]] was also carried on at [[River Teise|Bedgebury]]. The church here, dedicated to St Dunstan, is often called the ''Cathedral of the Weald''; its 74&amp;nbsp;feet-high tower, completed in 1425, has a wooden figure of [[Father Time]] and his scythe on its south face.<br /> <br /> ==Mills==<br /> <br /> [[Image:Cranbrook windmill.jpg|thumb|Union mill.]]Cranbrook had a number of [[watermill]]s and [[windmill]]s over the centuries. There were about seventeen watermills around Cranbrook, all on tributaries of the [[River Beult]].<br /> <br /> There were four windmills in Cranbrook over the centuries, one of which survives today.<br /> <br /> ;Windmill Hill.<br /> This mill was marked on E Bowen's map of Kent, 1736 and also on Andrews, Drury and Herbert's map of Kent, 1769. It is thought that the mill was a [[smock mill]], and that it was moved to [[Sissinghurst]] circa 1814. It stood ½ mile (400m) west north west of the church.&lt;ref name=Finch&gt;{{cite book | first = William| last = Coles Finch| year = 1933| title = Watermills and Windmills| pages = p188-91| publisher = C W Daniel Company| location = London}}&lt;/ref&gt;<br /> <br /> ;Saint's Hill.<br /> This mill was marked on Andrews, Drury and Herbert's Map of Kent, 1769. It stood 1 mile 5 [[furlong]]s (2.6 km) north east of the church.&lt;ref name=Finch/&gt;<br /> <br /> ;Cranbrook Common.<br /> This was a smock mill with common sails&lt;ref name=Sail&gt;Cloth sails spread on a lattice framework&lt;/ref&gt; and winded&lt;ref name=Wind&gt;Turned to face the wind&lt;/ref&gt; by hand. It was marked on the 1858-72 [[Ordnance Survey]] map. The mill was last worked in 1876, and was demolished on [[9 August|9&amp;nbsp;August]] [[1902]]. The mill stood 1¾ miles (2.8 km) north north east of the church.&lt;ref name=Finch/&gt;<br /> <br /> ;Union Mill.<br /> One of the surviving Kent [[Windmills in the United Kingdom|windmills]]: the [[Union Mill, Cranbrook|Union Mill]] was built for Henry Dobell in 1814. Dobell went bankrupt in 1819 and run by a union of creditors until 1832. The Russell family ran it for the next 128 years, when it was sold to [[Kent County Council]], who have restored it, and it's kept in working order to this day. The mill stands ¼&amp;nbsp;mile (400m) south east of the church.&lt;ref name=Finch/&gt;<br /> <br /> ==About Cranbrook==<br /> [[Image:Cranbrook, Kent.jpg|thumb|right|200px|1906 watercolour of a cottage in Cranbrook]]<br /> Cranbrook has around 7,000 [[Residency (domicile)|residents]]. <br /> It is sited near the junction of the A262 (Lamberhurst – Biddenden) and the [[A229]] ([[Rochester, Kent|Rochester]] – [[Hawkhurst]]).<br /> The nearest [[railway]] station is Staplehurst, 5&amp;nbsp;miles to the north. The [[Cranbrook railway station]] was closed in 1961. Cranbrook is the smallest [[town]] in [[Kent]]{{Fact|date=December 2007}}.<br /> <br /> ===Education===<br /> There are two [[secondary schools]] in Cranbrook: [[Angley School]] (comprehensive, 11-18) and [[Cranbrook School, Kent]] (grammar, 13-18). Both are co-educational.<br /> <br /> There is also a [[primary school]] in Cranbrook, known simply as Cranbrook Primary. The primary school was originally located in an old [[manor house]], which was once visited by [[Queen Elizabeth I]]. After the original building burnt down, the school moved to a site to the north of the Church Yard and Jockey Lane. The primary school remained on this site for around a century, before growth of the town's population and the increasingly unmanageable collection of temporary classrooms and 1960's prefabs forced a move in 1985 to new brand new premises at the end of Carriers Road, where the school remains to this day. The building of the new school finally drew all the pupils together under one roof, but sadly further growth in the town's population forced the new school to buy in temporary classrooms to supplement the purpose-built ones barely three years after its opening. Almost all of the buildings of the old school were knocked down to make way for a development of sheltered accommodation for old people. The only building to resist the bulldozer was the south wing which had contained the three classrooms of infant school (the first three years). This building was internally gutted and converted to a surgery for general practice. A family planning clinic was built to the west of it on the site of Mr Leech's classroom. Sadly the old school's collection of formalin-pickled amphibians, reptiles and soft bodied sea creatures seemed to disappear (presumably it was thrown away) when the school moved to its new premises.<br /> <br /> ===Entertainment===<br /> The main place for entertainment in Cranbrook is the Queens Hall Theatre. It is often host to many theatre groups including the [[Cambridge Footlights]] and the local dramatic society CODS. Each year a pantomime is performed by the Showtimers pantomime group. The theatre is part of Cranbrook School and is one that plays a very central role to the entertainment in Cranbrook.<br /> <br /> Cranbrook is also the home of Cranbrook Town Band, which is a British style brass band. The band performs regular concerts in the Queens hall, St Dunstans church and around Kent. The history of the band goes back to the 1920s. The band rehearses on at 7.45pm on Thursday evenings at Angley school.<br /> <br /> ===Art===<br /> A group of artists who called themselves &quot;The Cranbrook Colony&quot; were located here during the 1800s.<br /> <br /> ==Other==<br /> There is a popular sports centre: the Weald Sports Centre on the northern side of the [[A229 road|A229]] next to Angley School. It has excellent indoor and outdoor facilities including four tennis courts, an indoor sports hall, a swimming pool and a dance studio.<br /> <br /> St. Dunstan's Church (known as The Cathedral in the Weald) contains the prototype for the clock of Big Ben in London.<br /> Over 600 people attend St. Dunstan's Christingle Services on Christmas Eve; requiring the church to provide two services the same to enable everyone to come along. <br /> <br /> The comedian [[Harry Hill]] was educated in the town, and comedian and writer [[Chris Langham]] also lives there.<br /> <br /> ==Quote==<br /> {{cquote|Cranbrook is a village giving the impression of trying to remember what once made it important|||[[H.E. Bates]], who knew Cranbrook well|The Darling Buds of May}}<br /> <br /> ==Sources==<br /> <br /> * The Place Names of Kent, Judith Glover.<br /> * The Origin of English Place Names, P.H.Reaney.<br /> * The Dictionary of British Place Names<br /> * Dictionary of English Place Names, A.D.Mills.<br /> <br /> ==References==<br /> {{reflist}}<br /> <br /> ==External links==<br /> *[http://www.cranbrook.org Official Cranbrook Town website]<br /> *[http://www.cranbrookods.org.uk Cranbrook Operatic and Dramatic Society]<br /> *[http://www.stdunstanscranbrook.org.uk St. Dunstan's Parish Church]<br /> *[http://www.cranbrookschool.co.uk Cranbrook School (Incl. Queens Hall Theatre)]<br /> *[http://www.cranbrooksquashclub.org.uk Cranbrook Squash Club]<br /> *[http://www.cranbrooktownband.org.uk Cranbrook Town Band]<br /> *[http://www.cranbrookfilmsociety.org Cranbrook Film Society]<br /> *[http://www.cso.org.uk Cranbrook Symphony Orchestra]<br /> *[http://www.unionmill.org.uk/ Cranbrook Union Mill site]<br /> {{Tunbridge Wells}}<br /> <br /> [[Category:Towns in Kent]]<br /> <br /> [[vo:Cranbrook (Kent)]]</div> FatalError https://de.wikipedia.org/w/index.php?title=New_Wave_of_American_Heavy_Metal&diff=145837569 New Wave of American Heavy Metal 2008-05-18T19:18:49Z <p>FatalError: /* History */</p> <hr /> <div>{{Infobox Music genre<br /> |name={{pagename}}<br /> |bgcolor=#b02<br /> |color=white<br /> |stylistic_origins= [[Hardcore punk]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;&lt;br/&gt;[[Thrash metal]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;&lt;br/&gt;[[Groove metal]]&lt;br/&gt;[[Death metal]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;&lt;br/&gt;[[Melodic death metal]]&lt;ref name=&quot;maximummetal&quot;&gt;{{cite web<br /> | url = http://www.maximummetal.com/columns/tales/37.asp<br /> | publisher = Maximum Metal<br /> | title = NWOAHM - New Frontier Or Well Worn Path?<br /> | author =<br /> | accessdate = 2008-05-18<br /> }}&lt;/ref&gt;<br /> |cultural_origins=Mid 1990s&lt;ref name=&quot;Blabbermouth&quot; /&gt; [[United States]]<br /> |instruments=[[Electric guitar]] - [[Bass guitar|Bass]] - [[Drums]] <br /> |popularity=Rise in worldwide popularity since 2000s<br /> |derivatives= [[Metalcore]], [[Mathcore]], [[Deathcore]]<br /> |subgenrelist=<br /> |subgenres=<br /> |fusiongenres= <br /> |regional_scenes=<br /> }}<br /> <br /> The '''New Wave of American Heavy Metal''' (abbreviated as '''NWOAHM''' or '''NWoAHM''') is a movement in [[heavy metal music]] that originated in the [[United States]] during the late 1990s. The term ''NWOAHM'' is a reference to the [[New Wave of British Heavy Metal]] movement of the 1980s.&lt;ref name=&quot;Blabbermouth&quot; /&gt;&lt;ref name=&quot;NWOAHM&quot;&gt;Garry Sharpe-Young, ''New Wave of American Heavy Metal'' [http://books.google.com/books?id=uIIf03bGyAAC&amp;pg=PP10&amp;dq=nwoahm&amp;ei=a7ohSNGYCrW2iQGP95nFDQ&amp;sig=yhEpvA_dhNF6I5YwMJACJGRA3XY#PPP10,M1 (link)]&lt;/ref&gt;&lt;ref name=&quot;LOTFP-TGOGMP&quot; /&gt; Although the term is used by the Rock media with increasing frequency, the definition has not been finished completely.&lt;ref name=&quot;NWOAHM&quot; /&gt; NWOAHM is considered to bring the heavy metal back to mainstream.&lt;ref name=&quot;LOTFP-TGOGMP&quot; /&gt;&lt;ref name=&quot;popmatters&quot; /&gt;<br /> <br /> == History ==<br /> <br /> The movement has its origins in a group of [[post-grunge]] acts such as [[Pantera]], [[Biohazard (band)|Biohazard]], [[Slipknot]] and [[Machine Head (band)|Machine Head]] that brought heavy metal &quot;back to its core brutality and drawing not from the traditional [[Blues]] formula but from [[New York hardcore|NYHC]], [[thrash metal]] and [[punk rock|punk]].&quot;&lt;ref name=&quot;NWOAHM&quot; /&gt; &quot;At one end of the spectrum, you have the traditionalists, the bands who choose to remain within the rigid confines of whatever style they play; and at the other, the innovators who, despite equally strong contributions from the traditionalists, are providing the most thrills these days, taking metal's sound in daring new directions.&quot;&lt;ref name=&quot;popmatters&quot; /&gt;<br /> <br /> Garry Sharpe-Young from [[Rockdetector]] says that in the book ''New Wave of American Heavy Metal'' he &quot;included some of the older bands that show the real roots of metalcore, like [[Agnostic Front]] and the whole [[New York hardcore|NYHC]], plus the groups that broke the metal scene into new territory after grunge — Pantera, Biohazard and Machine Head. From there it gets really diverse, crossing the spectrum from [[melodic death metal]] to emocore and everything in between.&quot;&lt;ref name=&quot;Blabbermouth&quot; /&gt; The movement encompasses a number of different styles including [[alternative metal]], [[Goth subculture|sub-Gothique]] [[Emo|emocore]], [[Hardcore punk|hardcore]], [[progressive metal]], math metal, [[melodic death metal]], [[metalcore]], [[groove metal|neo-thrash]] and [[screamo]] bands.&lt;ref name=&quot;Blabbermouth&quot;&gt;{{cite web |title='New Wave Of American Heavy Metal' Book Documents Over 600 Bands |url=http://www.roadrunnerrecords.com/blabbermouth.net/news.aspx?mode=Article&amp;newsitemID=44955 |publisher=Blabbermouth.net |accessmonthday=April 27 |accessyear=2008}}&lt;/ref&gt;&lt;ref name=&quot;maximummetal&quot; /&gt;&lt;ref name=&quot;NWOAHM&quot; /&gt;&lt;ref name=&quot;popmatters&quot;&gt;{{cite web<br /> | url = http://www.popmatters.com/columns/begrand/051014.shtml<br /> | publisher = Popmatters<br /> | title = BLOOD AND THUNDER: Regeneration<br /> | author = Adrien Begrand<br /> | accessdate = 2008-05-14<br /> }}&lt;/ref&gt;&lt;ref name=&quot;zonda&quot;&gt;{{cite web<br /> | url = http://www.zondabooks.com/titles/nwoahm/<br /> | publisher = Zondabooks<br /> | title = New Wave of American Heavy Metal<br /> | author =<br /> | accessdate = 2006-05-06<br /> }}&lt;/ref&gt;<br /> <br /> == List of NWOAHM key artists ==<br /> A list of notable bands who emerged during the NWOAHM era of music:<br /> {{col-begin}}<br /> {{col-2}}<br /> *[[All That Remains (band)|All That Remains]]&lt;ref&gt;{{cite web |author=Terry, Nick |title=''The Fall of Ideals'' review |url=http://www.decibelmagazine.com/reviews/aug2006/allthatremains.aspx |publisher=Decibelmagazine.com |accessmonthday=April 27 |accessyear=2008}}&lt;/ref&gt;<br /> *[[As I Lay Dying (band)|As I Lay Dying]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;<br /> *[[Atreyu (band)|Atreyu]]&lt;ref name=&quot;metalexpressradio&quot; /&gt;<br /> *[[Between the Buried and Me]]&lt;ref name=&quot;zonda&quot; /&gt;&lt;ref name=&quot;Blabbermouth&quot; /&gt;<br /> *[[Biohazard (band)|Biohazard]]&lt;ref name=&quot;NWOAHM&quot; /&gt;&lt;ref name=&quot;Blabbermouth&quot; /&gt;&lt;ref name=&quot;zonda&quot; /&gt;<br /> *[[Byzantine (band)|Byzantine]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;<br /> &lt;div class=&quot;NavFrame&quot; style=&quot;padding:0;border-style:none;&quot;&gt; <br /> &lt;div class=&quot;NavFrame&quot; style=&quot;border-style:none;padding:0;&quot;&gt; <br /> &lt;div class=&quot;NavHead&quot; style=&quot;background:#EDF1F1;text-align:left;text-style:normal&quot;&gt; <br /> *&lt;font size =2&gt;[[Chimaira (band)|Chimaira]]&lt;/font&gt;&lt;ref&gt;{{cite web |author=Bansal, Vik |title=''The Impossibility Of Reason'' review |url=http://www.musicomh.com/albums/chimaira.htm |publisher-Musicomh.com |accessmonthday=April 27 |accessyear=2008}}&lt;/ref&gt;&lt;ref name=&quot;rock of lamb&quot; /&gt;&lt;ref name=&quot;metalexpressradio&quot; /&gt;&lt;/div&gt; <br /> &lt;div class=&quot;NavContent&quot; style=&quot;display:none;text-align:left;&quot;&gt;<br /> :* [[This Present Darkness (album)|This Present Darkness EP]] (2000)<br /> :* [[Pass Out of Existence]] (2001)<br /> :* [[The Impossibility of Reason]] (2003)<br /> :* [[Chimaira (album)|Chimaira]] (2005)<br /> :* [[Resurrection (Chimaira album)|Resurrection]] (2007)<br /> &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;<br /> *[[Damageplan]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;<br /> *[[Darkest Hour (band)|Darkest Hour]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;<br /> *[[DevilDriver]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;<br /> *&lt;font size =2&gt;[[God Forbid]]&lt;/font&gt;&lt;ref&gt;{{cite web |author=Terry, Nick |title=''IV: Constitution of Treason'' review |url=http://www.decibelmagazine.com/reviews/oct2005/godforbid.aspx |publisher=Decibelmagazine.com |accessmonthday=April 27 |accessyear=2008}}&lt;/ref&gt;<br /> *[[Hatebreed]]&lt;ref&gt;{{cite web |author=Armin |title=Interview with Mike Chlasciak |url=http://www.metalglory.de/interviews.php?nr=253 |publisher=metalglory.de |accessmonthday=April 27 |accessyear=2008}}&lt;/ref&gt;<br /> &lt;div class=&quot;NavFrame&quot; style=&quot;padding:0;border-style:none;&quot;&gt; <br /> &lt;div class=&quot;NavFrame&quot; style=&quot;border-style:none;padding:0;&quot;&gt; <br /> &lt;div class=&quot;NavHead&quot; style=&quot;background:#EDF1F1;text-align:left;text-style:normal&quot;&gt; <br /> *&lt;font size =2&gt;[[Killswitch Engage]]&lt;/font&gt;&lt;ref name=&quot;rock of lamb&quot; /&gt;&lt;ref&gt;{{cite web |author=Terry, Nick |title=''As Daylight Dies'' review |publisher=Decibelmagazine.com |url=http://www.decibelmagazine.com/reviews/dec2006/killswitchengage.aspx |accessmonthday=April 27 |accessyear=2008}}&lt;/ref&gt;&lt;ref&gt;{{cite web |author=Bansal, Vik |title=Killswitch Engage - Metal To The Core |url=http://www.musicomh.com/interviews/killswitch-engage.htm |publisher-Musicomh.com |accessmonthday=April 27 |accessyear=2008}}&lt;/ref&gt;&lt;ref name=&quot;stylus sacrament&quot; /&gt;&lt;/div&gt; <br /> &lt;div class=&quot;NavContent&quot; style=&quot;display:none;text-align:left;&quot;&gt;<br /> :* [[Killswitch Engage (album)|Killswitch Engage]] (2000)<br /> :* [[Alive or Just Breathing]] (2002)<br /> :* [[The End of Heartache]] (2004)<br /> :* [[As Daylight Dies]] (2006)<br /> &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;<br /> &lt;div class=&quot;NavFrame&quot; style=&quot;padding:0;border-style:none;&quot;&gt; <br /> &lt;div class=&quot;NavFrame&quot; style=&quot;border-style:none;padding:0;&quot;&gt; <br /> &lt;div class=&quot;NavHead&quot; style=&quot;background:#EDF1F1;text-align:left;text-style:normal&quot;&gt; <br /> *&lt;font size =2&gt;[[Lamb of God (band)|Lamb of God]]&lt;/font&gt;&lt;ref name=&quot;LOTFP-TGOGMP&quot;&gt;{{cite web |author=James Edward |title=The Ghosts of Glam Metal Past |url=http://www.lotfp.com/content.php?editorialid=64 |publisher=Lamentations of the Flame Princess |accessmonthday=April 27 |accessyear=2008}}&lt;/ref&gt;&lt;ref name=&quot;rock of lamb&quot;&gt;{{cite web |author=Fong, Erik |title=Rock of Lamb |url=http://www.metroactive.com/papers/metro/07.20.05/lamb-0529.html |publisher=Metroactive.com |accessmonthday=April 27 |accessyear=2008}}&lt;/ref&gt;&lt;ref name=&quot;stylus sacrament&quot;&gt;{{cite web |author=Lee, Cosmo |title=''Sacrament'' review |publisher=Stylusmagazine.com |url=http://www.stylusmagazine.com/reviews/lamb-of-god/sacrament.htm |accessmonthday=April 27 |accessyear=2008}}&lt;/ref&gt;&lt;/div&gt;<br /> &lt;div class=&quot;NavContent&quot; style=&quot;display:none;text-align:left;&quot;&gt;<br /> :* [[Burn the Priest (album)|Burn the Priest]] (1999)<br /> :* [[New American Gospel]] (2000)<br /> :* [[As the Palaces Burn]] (2003)<br /> :* [[Ashes of the Wake]] (2004)<br /> :* [[Sacrament (album)|Sacrament]] (2006)<br /> &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;<br /> *[[Life of Agony]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;&lt;ref name=&quot;zonda&quot; /&gt;<br /> {{col-2}}<br /> &lt;div class=&quot;NavFrame&quot; style=&quot;padding:0;border-style:none;&quot;&gt; <br /> &lt;div class=&quot;NavFrame&quot; style=&quot;border-style:none;padding:0;&quot;&gt; <br /> &lt;div class=&quot;NavHead&quot; style=&quot;background:#EDF1F1;text-align:left;text-style:normal&quot;&gt; <br /> *&lt;font size =2&gt;[[Machine Head (band)|Machine Head]]&lt;ref name=&quot;NWOAHM&quot; /&gt;&lt;ref name=&quot;Blabbermouth&quot; /&gt;&lt;ref name=&quot;zonda&quot; /&gt;&lt;ref name=&quot;metalexpressradio&quot;&gt;{{cite web<br /> | url = http://www.metalexpressradio.com/menu.php?main=reviews&amp;id=1013<br /> | publisher = Metal Express Radio<br /> | title = LAMB OF GOD - Burn The Priest<br /> | author = SHOEGAZER ROSS<br /> | accessdate = 2008-05-06<br /> }}&lt;/ref&gt;&lt;/div&gt; <br /> &lt;div class=&quot;NavContent&quot; style=&quot;display:none;text-align:left;&quot;&gt;<br /> :* [[Burn My Eyes]] (1994)<br /> :* [[The More Things Change...]] (1997)<br /> :* [[The Burning Red]] (1999)<br /> :* [[Supercharger (album)|Supercharger]] (2001)<br /> :* [[Through the Ashes of Empires]] (2003)<br /> :* [[The Blackening]] (2007)<br /> &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;<br /> &lt;div class=&quot;NavFrame&quot; style=&quot;padding:0;border-style:none;&quot;&gt; <br /> &lt;div class=&quot;NavFrame&quot; style=&quot;border-style:none;padding:0;&quot;&gt; <br /> &lt;div class=&quot;NavHead&quot; style=&quot;background:#EDF1F1;text-align:left;text-style:normal&quot;&gt; <br /> *&lt;font size =2&gt;[[Mastodon (band)|Mastodon]]&lt;/font&gt;&lt;ref name=&quot;LOTFP-TGOGMP&quot; /&gt;&lt;ref name=&quot;popmatters&quot; /&gt;&lt;/div&gt; <br /> &lt;div class=&quot;NavContent&quot; style=&quot;display:none;text-align:left;&quot;&gt;<br /> :* [[Lifesblood]] (2001)<br /> :* [[Remission (Mastodon album)|Remission]] (2002)<br /> :* [[Leviathan (album)|Leviathan]] (2004)<br /> :* [[Blood Mountain (album)|Blood Mountain]] (2006)<br /> &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;<br /> *[[Otep]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;<br /> *[[Pantera]]&lt;ref name=&quot;NWOAHM&quot; /&gt;&lt;ref name=&quot;Blabbermouth&quot; /&gt;&lt;ref name=&quot;zonda&quot; /&gt;<br /> *[[Poison the Well]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;<br /> *[[Prong (band)|Prong]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;&lt;ref name=&quot;zonda&quot; /&gt;<br /> &lt;div class=&quot;NavFrame&quot; style=&quot;padding:0;border-style:none;&quot;&gt; <br /> &lt;div class=&quot;NavFrame&quot; style=&quot;border-style:none;padding:0;&quot;&gt; <br /> &lt;div class=&quot;NavHead&quot; style=&quot;background:#EDF1F1;text-align:left;text-style:normal&quot;&gt; <br /> *&lt;font size =2&gt;[[Shadows Fall]]&lt;/font&gt;&lt;ref name=&quot;LOTFP-TGOGMP&quot; /&gt;&lt;ref name=&quot;rock of lamb&quot; /&gt;&lt;ref name=&quot;stylus sacrament&quot; /&gt;&lt;ref&gt;{{cite web |author=Bansal, Vik |title=''The War Within'' review |url=http://www.musicomh.com/albums/shadows-fall.htm |publisher-Musicomh.com |accessmonthday=April 27 |accessyear=2008}}&lt;/ref&gt;&lt;ref&gt;{{cite web |author=Terry, Nick |title=''The War Within'' review |publisher=Decibelmagazine.com |url=http://www.decibelmagazine.com/reviews/oct2004/shadows_fall.aspx |accessmonthday=April 27 |accessyear=2008}}&lt;/ref&gt;&lt;/div&gt; <br /> &lt;div class=&quot;NavContent&quot; style=&quot;display:none;text-align:left;&quot;&gt;<br /> :* [[Somber Eyes to the Sky]] (1997)<br /> :* [[Of One Blood]] (2000)<br /> :* [[The Art of Balance]] (2002)<br /> :* [[The War Within]] (2004)<br /> :* [[Fallout from the War]] (2006)<br /> :* [[Threads of Life]] (2007)<br /> &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;<br /> &lt;div class=&quot;NavFrame&quot; style=&quot;padding:0;border-style:none;&quot;&gt; <br /> &lt;div class=&quot;NavFrame&quot; style=&quot;border-style:none;padding:0;&quot;&gt; <br /> &lt;div class=&quot;NavHead&quot; style=&quot;background:#EDF1F1;text-align:left;text-style:normal&quot;&gt; <br /> *&lt;font size =2&gt;[[Slipknot (band)|Slipknot]]&lt;ref name=&quot;NWOAHM&quot; /&gt;&lt;ref name=&quot;Blabbermouth&quot; /&gt;&lt;ref name=&quot;zonda&quot; /&gt;&lt;ref name=&quot;metalexpressradio&quot; /&gt;&lt;/div&gt; <br /> &lt;div class=&quot;NavContent&quot; style=&quot;display:none;text-align:left;&quot;&gt;<br /> :* [[Mate.Feed.Kill.Repeat.]] (1996)<br /> :* [[Slipknot (album)|Slipknot]] (1999)<br /> :* [[Iowa (album)]] (2001)<br /> :* [[Vol. 3: (The Subliminal Verses)]] (2004)<br /> &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;<br /> *[[Strapping Young Lad]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;<br /> *[[Superjoint Ritual]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;<br /> *[[The Dillinger Escape Plan]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;<br /> *[[The Red Chord]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;<br /> *[[Throwdown]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;<br /> &lt;div class=&quot;NavFrame&quot; style=&quot;padding:0;border-style:none;&quot;&gt; <br /> &lt;div class=&quot;NavFrame&quot; style=&quot;border-style:none;padding:0;&quot;&gt; <br /> &lt;div class=&quot;NavHead&quot; style=&quot;background:#EDF1F1;text-align:left;text-style:normal&quot;&gt; <br /> *&lt;font size =2&gt;[[Trivium (band)|Trivium]]&lt;/font&gt;&lt;ref&gt;{{cite web |author=Bansal, Vik |title=''Ascendancy'' review |url=http://www.musicomh.com/albums/trivium.htm |publisher-Musicomh.com |accessmonthday=April 27 |accessyear=2008}}&lt;/ref&gt;&lt;ref&gt;{{cite web |author=Terry, Nick |title=''Ascendancy'' review |publisher=Decibelmagazine.com |url=http://www.decibelmagazine.com/reviews/may2005/trivium.aspx |accessmonthday=April 27 |accessyear=2008}}&lt;/ref&gt;&lt;/div&gt; <br /> &lt;div class=&quot;NavContent&quot; style=&quot;display:none;text-align:left;&quot;&gt;<br /> :* [[Ember to Inferno]] (2003)<br /> :* [[Ascendancy (album)|Ascendancy]] (2005)<br /> :* [[The Crusade (album)|The Crusade]] (2006)<br /> &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;<br /> *[[Unearth]]&lt;ref name=&quot;Blabbermouth&quot; /&gt;<br /> {{col-end}}<br /> <br /> ==References==<br /> *{{citation |last=Sharpe-Young |first=Garry |title=New Wave of American Heavy Metal |location= New Plymouth |publisher=Zonda Books Limited |date=2005 |ISBN=0958268401}}<br /> *{{citation |last=Raggi IV |first=James Edward |title=The Ghosts of Glam Metal Past |url=http://www.lotfp.com/content.php?editorialid=64 |journal=Lamentations of the Flame Princess <br /> |date=December 2006 |accessdate=2008-04-27}}<br /> *Decibel Magazine - Sleepytime Gorilla Museum - Sleepytime Gorilla Museum of Natural History [http://www.decibelmagazine.com/reviews/dec2004/sleepytime.aspx?terms=NWOAHM&amp;searchtype=2&amp;fragment=True link]<br /> *Decibel Magazine - Diecast - Internal Revolution [http://www.decibelmagazine.com/reviews_detail.aspx?id=5314&amp;terms=NWOAHM&amp;searchtype=2&amp;fragment=True link]<br /> *Decibel Magazine - The Haunted - The Dead Eye [http://www.decibelmagazine.com/reviews/dec2006/thehaunted.aspx?terms=NWOAHM&amp;searchtype=2&amp;fragment=True link]<br /> *Music OMH - Killswitch Engage - Metal To The Core <br /> *Music OMH - Zao - The Funeral Of God [http://www.musicomh.com/albums/zao.htm link]<br /> *About Heavy Metal Albums - NWOAHM - Lamb Of God [http://www.about-heavy-metal-albums.com/20201.html link]<br /> *[http://acronyms.thefreedictionary.com/New+Wave+of+American+Heavy+Metal+(music+genre) The Free Dictionary]<br /> *[http://www.acronymfinder.com/acronym.aspx?rec={367D6167-3B1F-4312-A868-183882734F38} Acronymfinder]<br /> [[Category:Heavy metal]]<br /> <br /> ==Notes==<br /> {{reflist}}<br /> <br /> == External links ==<br /> *[http://www.last.fm/listen/globaltags/NWOAHM NWOAHM radio on Last FM]</div> FatalError https://de.wikipedia.org/w/index.php?title=The_Receiving_End_of_Sirens&diff=168505296 The Receiving End of Sirens 2008-05-16T01:39:50Z <p>FatalError: /* Name */</p> <hr /> <div>{{Infobox musical artist &lt;!-- See Wikipedia:WikiProject Musicians --&gt;<br /> | Name = The Receiving End Of Sirens<br /> | Img =&lt;!-- Put only the image name (e.g. Example.png) without the Image: prefix. --&gt;<br /> | Img_capt = L to R: Brendan Brown, Casey Crescenzo, Alex Bars, Nate Patterson, Andrew Cook<br /> | Img_size = &lt;!-- Only for images narrower than 220 pixels. Set the value as a number without &quot;px&quot;. --&gt;<br /> | Landscape = <br /> | Background = group_or_band<br /> | Alias = TREOS&lt;br&gt;The Red Eye Of Soromon<br /> | Origin = [[Boston]], [[Massachusetts]], [[USA]]<br /> | Genre = [[Indie rock]]&lt;br /&gt;[[Experimental rock]]&lt;br&gt;[[Post-hardcore]]<br /> | Years_active = 2003 - 2008<br /> | Label = [[Triple Crown Records|Triple Crown]]<br /> | Associated_acts = [[The Dear Hunter]]<br /> | URL = [http://www.thereceivingendofsirens.com/ Official Site]<br /> | Current_members = Alex Bars&lt;br&gt;Brendan Brown&lt;br&gt;Nate Patterson&lt;br&gt;Andrew Cook&lt;br&gt;Brian Southall<br /> | Past_members = [[Casey Crescenzo]]&lt;br&gt;Ben Potrykus<br /> | Notable_instruments = <br /> }}<br /> <br /> '''The Receiving End of Sirens''' (often abbreviated '''TREOS''') was a rock band from [[Braintree]], [[Massachusetts]] who originally formed in 2003. The band incorporates many elements from different genres and styles such as metal, electronica, punk, and progressive rock. Although the band likes to describe themselves as [[Experimental Rock|experimental]]&lt;ref&gt;{{cite web | url=http://thephoenix.com/bandguide/artistprofile2.aspx?id=2550 | title=TREOS listed as &quot;experimental, rock&quot;; the content for this page was, however, taken directly from the band's publicity materials}}&lt;/ref&gt;&lt;ref&gt;{{cite web | url=http://www.myspace.com/thereceivingendofsirens | title=TREOS again listing themselves as &quot;indie/experimental&quot;}}&lt;/ref&gt;, most listeners place their sound squarely in the realm of &quot;progressive emo/post-hardcore&quot;. &lt;!-- PLEASE RESPECT THE REFERENCES TO THE GENRE LISTING FOR THE BAND. THE BAND LISTED THEMSELVES AS EXPERIMENTAL, THEREFORE THE GENRE SHOULD STAY. --&gt; &lt;!-- [edit] the previous note is absurd; Vanilla Ice might consider himself &quot;gangsta-rap,&quot; but it still won't be true. --&gt;<br /> <br /> The band played on the 2005 [[Warped Tour]] and has toured with such acts as [[Gatsbys American Dream]], [[A Wilhelm Scream]], [[30 Seconds to Mars]], [[Funeral for a Friend]], [[Saves the Day]], [[Senses Fail]], [[Thrice]], and [[New Found Glory]].<br /> <br /> The band's first headlining tour, &quot;The New Hope Tour&quot;, began on March 31st 2006. About a week before the start of the tour, guitarist/vocalist Alex fell down a flight of stairs and broke his scapula and two ribs and punctured his lung. A question of whether or not he would be able to perform arose, yet he pulled through. Some bands supporting the band on their first headlining tour were [[As Tall as Lions]], [[A Thorn for Every Heart]], [[Hit the Lights]], [[I Am the Avalanche]], and [[Foredoes Me Quite]].<br /> <br /> On March 18, 2008 the band announced that it would &quot;no longer exist in the way it has for the past 5 years&quot; on their MySpace page. The main reason for the break up was the fact that Brendan had a child in January, and he decided he needed to reassess his priorities. In a MySpace Bulletin he claimed that all of the members still keep a passion for music and the love for their fans. The band played two of their last three last shows at Lupo's in Providence, RI on May 2nd, supported by [[Envy on the Coast]] and [[Therefore I Am]], and The Bamboozle Festival in East Rutherford, NJ on May 4th. On May 5th, a final farewell was performed under the pseudonym The Red Eye of Soromon at Harper's Ferry in Allston, MA.<br /> <br /> ==Name==<br /> According to drummer Andrew Cook: <br /> &lt;blockquote&gt;&quot;I was a cook at a place called McCarthy’s Pub in Massachusetts. A bunch of police cars and ambulances went screaming by and the name popped in my head. Like, thinking about how people never really think what’s ‘on the receiving end of sirens,’ because its such a common thing just to hear the sirens. Especially if you live in a city, it just becomes this commonplace thing, nobody thinks twice about it anymore. Even though there’s so much awful stuff going on in the world, and horrible things that happen to people, it’s kind of like ‘out of sight, out of mind.’ It’s just kind of a sad thing. So it’s kind of a commentary on that. It also works on a couple levels. It can be taken as the Greek mythology example with the Sirens that lure sailors in with their singing, so being on the receiving end of those sirens isn’t a great thing. It works both ways.&quot;&lt;ref&gt;http://www.heartsandsleeves.com/html/the_receiving_end_of_sirens.html&lt;/ref&gt;&lt;/blockquote&gt;<br /> <br /> The band has also been known to perform under the pseudonym The Red Eye of Soromon [''sic''], or if abbreviated, TREOS. The band plays under the name The Red Eye of Soromon, presumably, to avoid record label contract issues when playing local venues in Massachusetts. The most recent performance under the pseudonym was on [http://www.absolutepunk.net/showthread.php?t=209012 May 5, 2008].<br /> <br /> ==History==<br /> The band formed in 2003. In May of 2006, [[Casey Crescenzo]] parted ways with the band and started pursuing his side project full-time, [[The Dear Hunter]].<br /> <br /> On November 6, 2006 the band announced their new permanent member as Brian Southall (formerly the drummer of [[Boys Night Out (band)|Boys Night Out]]). He plays guitar, keys, and backup vocals.<br /> <br /> The band had arranged to stream a live concert from Vintage Vinyl Record Store in New Jersey on the new real-time entertainment site www.Yebotv.com on August 9th, 2007.<br /> <br /> In a December 10, 2007 interview, when referring to the unique sound of TREOS being, &quot;musical mojo,&quot; Stephen Kahler was quoted as saying, &quot;I think they might just be...the best band to have ever existed.&quot;&lt;ref&gt;December 10, 2007 interview for WBRH Radio by Aaron Louison&lt;/ref&gt;<br /> <br /> On March 18th, 2008 Brendan Brown announced on Myspace, via a Myspace bulletin that because of his new priorities (having a baby), the band is coming to an end.<br /> &lt;blockquote&gt;<br /> I, Brendan, must admit that I am the main reason why TREOS is ending. My choice to no longer continue on with The Receiving End of Sirens has nothing to do with a lack of love for my band, and/or band members. It has nothing to do with a lack of passion for our music, or any music for that matter. My decision is due mostly in part to a huge rearranging of priorities in my life, and the unquestionable responsibility that comes along with becoming a father. January 15th my<br /> wife and I welcomed Parker Brown, our first child, into the world. Since then everything has changed. The happiness and joy I gained from being part of this band can't ever be taken away from me, but to be honest, I have lived a long time thinking that specific joy was as good as it got. Since Parker's birth I have realized my joy is a great thing, in and of itself, but the happiness I receive from his happiness is exponentially greater than anything I could muster on my own. The thought of leaving him to tour for months at a time is something I just can't stomach. I can't<br /> stand to miss another thing. I realize how important I am to my band, and how important our band is to some people, but I am far more elemental in the growth and happiness of my child, than I am anything else in this world.<br /> &lt;/blockquote&gt;<br /> <br /> On Friday May 2nd, 2008 the band played its farewell show with Envy on the Coast and Therefore I Am. Casey Crescenzo made a return halfway through the set. TREOS performed virtually all of their tracks, forcing them to repeat Planning a Prison Break as their [[encore]]. Absolute punk made a statement about their &quot;final show&quot;.<br /> <br /> &lt;blockquote&gt;<br /> Casey Crescenzo played with The Receiving End of Sirens last night at their final headlining show in Providence, Rhode Island. They played 21 songs (technically 22 because the crowd got them to play &quot;Planning a Prison Break&quot; twice) - almost every track spanning their three CD discography. A fan (Brandon) also proposed to his girlfriend on stage during the set &amp; they are now engaged! It was truly an eve of magic &amp; delight. The band will be greatly missed by their fans, and we wish them each the best of luck in the future!<br /> &lt;/blockquote&gt;<br /> <br /> The band also played [[The Bamboozle]] on May 4th, 2008 and performed their final show as The Red Eye of Soromon in Allston, MA on May 5th, 2008, where they played all of &lt;i&gt;Between the Heart and the Synapse&lt;/i&gt; in order from start to finish, with Casey, followed by an encore set.<br /> <br /> ==Band members==<br /> Brendan Brown - Vocals, Bass guitar&lt;br&gt;<br /> Alex Bars - Rhythm Guitar, Vocals&lt;br&gt;<br /> Nate Patterson - Lead Guitar&lt;br&gt;<br /> Andrew Cook - Drums&lt;br&gt;<br /> Brian Southall - Guitar, Keyboard<br /> <br /> ==Discography==<br /> <br /> {| border=&quot;2&quot; cellpadding=&quot;4&quot; cellspacing=&quot;0&quot; style=&quot;margin: 1em 1em 1em 0; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;&quot;<br /> |'''Date of Release'''<br /> |'''Title'''<br /> |'''label'''<br /> |-<br /> |[[August 9]] [[2004]]<br /> |''[[The Receiving End Of Sirens E.P.]]''<br /> |Robotica Records<br /> |-<br /> |[[April 25]] [[2005]]<br /> |''[[Between the Heart and the Synapse]]''<br /> |[[Triple Crown Records]]<br /> |-<br /> |[[August 7]] [[2007]]<br /> |''[[The Earth Sings Mi Fa Mi]]''<br /> |[[Triple Crown Records]]<br /> |}<br /> <br /> ==Videography==<br /> *[[Planning A Prison Break]] ([[2005]])<br /> *This Armistice ([[2006]])<br /> *The Evidence ([[2007]])<br /> *Smoke &amp; Mirrors([[2007]])<br /> <br /> <br /> <br /> ==References==<br /> {{Reflist}}<br /> <br /> ==External links==<br /> *[http://www.thereceivingendofsirens.com/ Official Website]<br /> *[http://www.myspace.com/thereceivingendofsirens TREOS on MySpace]<br /> *[http://www.purevolume.com/thereceivingendofsirens TREOS on PureVolume]<br /> *[http://www.thedearhunter.com The Dear Hunter]<br /> *[http://www.plyrics.com/r/receivingendofsirens.html Lyrics]<br /> <br /> {{DEFAULTSORT:Receiving End of Sirens, The}}<br /> [[Category:American rock music groups]]<br /> [[Category:2000s music groups]]<br /> [[Category:Alternative musical groups]]<br /> [[Category:Boston musical groups]]<br /> [[Category:Post-hardcore groups]]<br /> [[Category:Musical groups established in 2003]]<br /> [[Category:Musical groups disestablished in 2008]]<br /> <br /> [[it:The Receiving End of Sirens]]</div> FatalError https://de.wikipedia.org/w/index.php?title=The_Receiving_End_of_Sirens&diff=168505295 The Receiving End of Sirens 2008-05-16T01:39:26Z <p>FatalError: /* Name */ Changed the link to a reference, looks better</p> <hr /> <div>{{Infobox musical artist &lt;!-- See Wikipedia:WikiProject Musicians --&gt;<br /> | Name = The Receiving End Of Sirens<br /> | Img =&lt;!-- Put only the image name (e.g. Example.png) without the Image: prefix. --&gt;<br /> | Img_capt = L to R: Brendan Brown, Casey Crescenzo, Alex Bars, Nate Patterson, Andrew Cook<br /> | Img_size = &lt;!-- Only for images narrower than 220 pixels. Set the value as a number without &quot;px&quot;. --&gt;<br /> | Landscape = <br /> | Background = group_or_band<br /> | Alias = TREOS&lt;br&gt;The Red Eye Of Soromon<br /> | Origin = [[Boston]], [[Massachusetts]], [[USA]]<br /> | Genre = [[Indie rock]]&lt;br /&gt;[[Experimental rock]]&lt;br&gt;[[Post-hardcore]]<br /> | Years_active = 2003 - 2008<br /> | Label = [[Triple Crown Records|Triple Crown]]<br /> | Associated_acts = [[The Dear Hunter]]<br /> | URL = [http://www.thereceivingendofsirens.com/ Official Site]<br /> | Current_members = Alex Bars&lt;br&gt;Brendan Brown&lt;br&gt;Nate Patterson&lt;br&gt;Andrew Cook&lt;br&gt;Brian Southall<br /> | Past_members = [[Casey Crescenzo]]&lt;br&gt;Ben Potrykus<br /> | Notable_instruments = <br /> }}<br /> <br /> '''The Receiving End of Sirens''' (often abbreviated '''TREOS''') was a rock band from [[Braintree]], [[Massachusetts]] who originally formed in 2003. The band incorporates many elements from different genres and styles such as metal, electronica, punk, and progressive rock. Although the band likes to describe themselves as [[Experimental Rock|experimental]]&lt;ref&gt;{{cite web | url=http://thephoenix.com/bandguide/artistprofile2.aspx?id=2550 | title=TREOS listed as &quot;experimental, rock&quot;; the content for this page was, however, taken directly from the band's publicity materials}}&lt;/ref&gt;&lt;ref&gt;{{cite web | url=http://www.myspace.com/thereceivingendofsirens | title=TREOS again listing themselves as &quot;indie/experimental&quot;}}&lt;/ref&gt;, most listeners place their sound squarely in the realm of &quot;progressive emo/post-hardcore&quot;. &lt;!-- PLEASE RESPECT THE REFERENCES TO THE GENRE LISTING FOR THE BAND. THE BAND LISTED THEMSELVES AS EXPERIMENTAL, THEREFORE THE GENRE SHOULD STAY. --&gt; &lt;!-- [edit] the previous note is absurd; Vanilla Ice might consider himself &quot;gangsta-rap,&quot; but it still won't be true. --&gt;<br /> <br /> The band played on the 2005 [[Warped Tour]] and has toured with such acts as [[Gatsbys American Dream]], [[A Wilhelm Scream]], [[30 Seconds to Mars]], [[Funeral for a Friend]], [[Saves the Day]], [[Senses Fail]], [[Thrice]], and [[New Found Glory]].<br /> <br /> The band's first headlining tour, &quot;The New Hope Tour&quot;, began on March 31st 2006. About a week before the start of the tour, guitarist/vocalist Alex fell down a flight of stairs and broke his scapula and two ribs and punctured his lung. A question of whether or not he would be able to perform arose, yet he pulled through. Some bands supporting the band on their first headlining tour were [[As Tall as Lions]], [[A Thorn for Every Heart]], [[Hit the Lights]], [[I Am the Avalanche]], and [[Foredoes Me Quite]].<br /> <br /> On March 18, 2008 the band announced that it would &quot;no longer exist in the way it has for the past 5 years&quot; on their MySpace page. The main reason for the break up was the fact that Brendan had a child in January, and he decided he needed to reassess his priorities. In a MySpace Bulletin he claimed that all of the members still keep a passion for music and the love for their fans. The band played two of their last three last shows at Lupo's in Providence, RI on May 2nd, supported by [[Envy on the Coast]] and [[Therefore I Am]], and The Bamboozle Festival in East Rutherford, NJ on May 4th. On May 5th, a final farewell was performed under the pseudonym The Red Eye of Soromon at Harper's Ferry in Allston, MA.<br /> <br /> ==Name==<br /> According to drummer Andrew Cook: <br /> &lt;blockquote&gt;&quot;I was a cook at a place called McCarthy’s Pub in Massachusetts. A bunch of police cars and ambulances went screaming by and the name popped in my head. Like, thinking about how people never really think what’s ‘on the receiving end of sirens,’ because its such a common thing just to hear the sirens. Especially if you live in a city, it just becomes this commonplace thing, nobody thinks twice about it anymore. Even though there’s so much awful stuff going on in the world, and horrible things that happen to people, it’s kind of like ‘out of sight, out of mind.’ It’s just kind of a sad thing. So it’s kind of a commentary on that. It also works on a couple levels. It can be taken as the Greek mythology example with the Sirens that lure sailors in with their singing, so being on the receiving end of those sirens isn’t a great thing. It works both ways.&quot;&lt;ref&gt;http://www.heartsandsleeves.com/html/the_receiving_end_of_sirens.html&lt;/ref&gt;&lt;/blockquote&gt;<br /> <br /> The band has also been known to perform under the pseudonym The Red Eye Of Soromon [''sic''], or if abbreviated, TREOS. The band plays under the name The Red Eye Of Soromon, presumably, to avoid record label contract issues when playing local venues in Massachusetts. The most recent performance under the pseudonym was on [http://www.absolutepunk.net/showthread.php?t=209012 May 5, 2008].<br /> <br /> ==History==<br /> The band formed in 2003. In May of 2006, [[Casey Crescenzo]] parted ways with the band and started pursuing his side project full-time, [[The Dear Hunter]].<br /> <br /> On November 6, 2006 the band announced their new permanent member as Brian Southall (formerly the drummer of [[Boys Night Out (band)|Boys Night Out]]). He plays guitar, keys, and backup vocals.<br /> <br /> The band had arranged to stream a live concert from Vintage Vinyl Record Store in New Jersey on the new real-time entertainment site www.Yebotv.com on August 9th, 2007.<br /> <br /> In a December 10, 2007 interview, when referring to the unique sound of TREOS being, &quot;musical mojo,&quot; Stephen Kahler was quoted as saying, &quot;I think they might just be...the best band to have ever existed.&quot;&lt;ref&gt;December 10, 2007 interview for WBRH Radio by Aaron Louison&lt;/ref&gt;<br /> <br /> On March 18th, 2008 Brendan Brown announced on Myspace, via a Myspace bulletin that because of his new priorities (having a baby), the band is coming to an end.<br /> &lt;blockquote&gt;<br /> I, Brendan, must admit that I am the main reason why TREOS is ending. My choice to no longer continue on with The Receiving End of Sirens has nothing to do with a lack of love for my band, and/or band members. It has nothing to do with a lack of passion for our music, or any music for that matter. My decision is due mostly in part to a huge rearranging of priorities in my life, and the unquestionable responsibility that comes along with becoming a father. January 15th my<br /> wife and I welcomed Parker Brown, our first child, into the world. Since then everything has changed. The happiness and joy I gained from being part of this band can't ever be taken away from me, but to be honest, I have lived a long time thinking that specific joy was as good as it got. Since Parker's birth I have realized my joy is a great thing, in and of itself, but the happiness I receive from his happiness is exponentially greater than anything I could muster on my own. The thought of leaving him to tour for months at a time is something I just can't stomach. I can't<br /> stand to miss another thing. I realize how important I am to my band, and how important our band is to some people, but I am far more elemental in the growth and happiness of my child, than I am anything else in this world.<br /> &lt;/blockquote&gt;<br /> <br /> On Friday May 2nd, 2008 the band played its farewell show with Envy on the Coast and Therefore I Am. Casey Crescenzo made a return halfway through the set. TREOS performed virtually all of their tracks, forcing them to repeat Planning a Prison Break as their [[encore]]. Absolute punk made a statement about their &quot;final show&quot;.<br /> <br /> &lt;blockquote&gt;<br /> Casey Crescenzo played with The Receiving End of Sirens last night at their final headlining show in Providence, Rhode Island. They played 21 songs (technically 22 because the crowd got them to play &quot;Planning a Prison Break&quot; twice) - almost every track spanning their three CD discography. A fan (Brandon) also proposed to his girlfriend on stage during the set &amp; they are now engaged! It was truly an eve of magic &amp; delight. The band will be greatly missed by their fans, and we wish them each the best of luck in the future!<br /> &lt;/blockquote&gt;<br /> <br /> The band also played [[The Bamboozle]] on May 4th, 2008 and performed their final show as The Red Eye of Soromon in Allston, MA on May 5th, 2008, where they played all of &lt;i&gt;Between the Heart and the Synapse&lt;/i&gt; in order from start to finish, with Casey, followed by an encore set.<br /> <br /> ==Band members==<br /> Brendan Brown - Vocals, Bass guitar&lt;br&gt;<br /> Alex Bars - Rhythm Guitar, Vocals&lt;br&gt;<br /> Nate Patterson - Lead Guitar&lt;br&gt;<br /> Andrew Cook - Drums&lt;br&gt;<br /> Brian Southall - Guitar, Keyboard<br /> <br /> ==Discography==<br /> <br /> {| border=&quot;2&quot; cellpadding=&quot;4&quot; cellspacing=&quot;0&quot; style=&quot;margin: 1em 1em 1em 0; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;&quot;<br /> |'''Date of Release'''<br /> |'''Title'''<br /> |'''label'''<br /> |-<br /> |[[August 9]] [[2004]]<br /> |''[[The Receiving End Of Sirens E.P.]]''<br /> |Robotica Records<br /> |-<br /> |[[April 25]] [[2005]]<br /> |''[[Between the Heart and the Synapse]]''<br /> |[[Triple Crown Records]]<br /> |-<br /> |[[August 7]] [[2007]]<br /> |''[[The Earth Sings Mi Fa Mi]]''<br /> |[[Triple Crown Records]]<br /> |}<br /> <br /> ==Videography==<br /> *[[Planning A Prison Break]] ([[2005]])<br /> *This Armistice ([[2006]])<br /> *The Evidence ([[2007]])<br /> *Smoke &amp; Mirrors([[2007]])<br /> <br /> <br /> <br /> ==References==<br /> {{Reflist}}<br /> <br /> ==External links==<br /> *[http://www.thereceivingendofsirens.com/ Official Website]<br /> *[http://www.myspace.com/thereceivingendofsirens TREOS on MySpace]<br /> *[http://www.purevolume.com/thereceivingendofsirens TREOS on PureVolume]<br /> *[http://www.thedearhunter.com The Dear Hunter]<br /> *[http://www.plyrics.com/r/receivingendofsirens.html Lyrics]<br /> <br /> {{DEFAULTSORT:Receiving End of Sirens, The}}<br /> [[Category:American rock music groups]]<br /> [[Category:2000s music groups]]<br /> [[Category:Alternative musical groups]]<br /> [[Category:Boston musical groups]]<br /> [[Category:Post-hardcore groups]]<br /> [[Category:Musical groups established in 2003]]<br /> [[Category:Musical groups disestablished in 2008]]<br /> <br /> [[it:The Receiving End of Sirens]]</div> FatalError https://de.wikipedia.org/w/index.php?title=The_Receiving_End_of_Sirens&diff=168505294 The Receiving End of Sirens 2008-05-16T01:38:37Z <p>FatalError: </p> <hr /> <div>{{Infobox musical artist &lt;!-- See Wikipedia:WikiProject Musicians --&gt;<br /> | Name = The Receiving End Of Sirens<br /> | Img =&lt;!-- Put only the image name (e.g. Example.png) without the Image: prefix. --&gt;<br /> | Img_capt = L to R: Brendan Brown, Casey Crescenzo, Alex Bars, Nate Patterson, Andrew Cook<br /> | Img_size = &lt;!-- Only for images narrower than 220 pixels. Set the value as a number without &quot;px&quot;. --&gt;<br /> | Landscape = <br /> | Background = group_or_band<br /> | Alias = TREOS&lt;br&gt;The Red Eye Of Soromon<br /> | Origin = [[Boston]], [[Massachusetts]], [[USA]]<br /> | Genre = [[Indie rock]]&lt;br /&gt;[[Experimental rock]]&lt;br&gt;[[Post-hardcore]]<br /> | Years_active = 2003 - 2008<br /> | Label = [[Triple Crown Records|Triple Crown]]<br /> | Associated_acts = [[The Dear Hunter]]<br /> | URL = [http://www.thereceivingendofsirens.com/ Official Site]<br /> | Current_members = Alex Bars&lt;br&gt;Brendan Brown&lt;br&gt;Nate Patterson&lt;br&gt;Andrew Cook&lt;br&gt;Brian Southall<br /> | Past_members = [[Casey Crescenzo]]&lt;br&gt;Ben Potrykus<br /> | Notable_instruments = <br /> }}<br /> <br /> '''The Receiving End of Sirens''' (often abbreviated '''TREOS''') was a rock band from [[Braintree]], [[Massachusetts]] who originally formed in 2003. The band incorporates many elements from different genres and styles such as metal, electronica, punk, and progressive rock. Although the band likes to describe themselves as [[Experimental Rock|experimental]]&lt;ref&gt;{{cite web | url=http://thephoenix.com/bandguide/artistprofile2.aspx?id=2550 | title=TREOS listed as &quot;experimental, rock&quot;; the content for this page was, however, taken directly from the band's publicity materials}}&lt;/ref&gt;&lt;ref&gt;{{cite web | url=http://www.myspace.com/thereceivingendofsirens | title=TREOS again listing themselves as &quot;indie/experimental&quot;}}&lt;/ref&gt;, most listeners place their sound squarely in the realm of &quot;progressive emo/post-hardcore&quot;. &lt;!-- PLEASE RESPECT THE REFERENCES TO THE GENRE LISTING FOR THE BAND. THE BAND LISTED THEMSELVES AS EXPERIMENTAL, THEREFORE THE GENRE SHOULD STAY. --&gt; &lt;!-- [edit] the previous note is absurd; Vanilla Ice might consider himself &quot;gangsta-rap,&quot; but it still won't be true. --&gt;<br /> <br /> The band played on the 2005 [[Warped Tour]] and has toured with such acts as [[Gatsbys American Dream]], [[A Wilhelm Scream]], [[30 Seconds to Mars]], [[Funeral for a Friend]], [[Saves the Day]], [[Senses Fail]], [[Thrice]], and [[New Found Glory]].<br /> <br /> The band's first headlining tour, &quot;The New Hope Tour&quot;, began on March 31st 2006. About a week before the start of the tour, guitarist/vocalist Alex fell down a flight of stairs and broke his scapula and two ribs and punctured his lung. A question of whether or not he would be able to perform arose, yet he pulled through. Some bands supporting the band on their first headlining tour were [[As Tall as Lions]], [[A Thorn for Every Heart]], [[Hit the Lights]], [[I Am the Avalanche]], and [[Foredoes Me Quite]].<br /> <br /> On March 18, 2008 the band announced that it would &quot;no longer exist in the way it has for the past 5 years&quot; on their MySpace page. The main reason for the break up was the fact that Brendan had a child in January, and he decided he needed to reassess his priorities. In a MySpace Bulletin he claimed that all of the members still keep a passion for music and the love for their fans. The band played two of their last three last shows at Lupo's in Providence, RI on May 2nd, supported by [[Envy on the Coast]] and [[Therefore I Am]], and The Bamboozle Festival in East Rutherford, NJ on May 4th. On May 5th, a final farewell was performed under the pseudonym The Red Eye of Soromon at Harper's Ferry in Allston, MA.<br /> <br /> ==Name==<br /> According to drummer Andrew Cook: <br /> &lt;blockquote&gt;&quot;I was a cook at a place called McCarthy’s Pub in Massachusetts. A bunch of police cars and ambulances went screaming by and the name popped in my head. Like, thinking about how people never really think what’s ‘on the receiving end of sirens,’ because its such a common thing just to hear the sirens. Especially if you live in a city, it just becomes this commonplace thing, nobody thinks twice about it anymore. Even though there’s so much awful stuff going on in the world, and horrible things that happen to people, it’s kind of like ‘out of sight, out of mind.’ It’s just kind of a sad thing. So it’s kind of a commentary on that. It also works on a couple levels. It can be taken as the Greek mythology example with the Sirens that lure sailors in with their singing, so being on the receiving end of those sirens isn’t a great thing. It works both ways.&quot; [http://www.heartsandsleeves.com/html/the_receiving_end_of_sirens.html]&lt;/blockquote&gt;<br /> <br /> The band has also been known to perform under the pseudonym The Red Eye Of Soromon [''sic''], or if abbreviated, TREOS. The band plays under the name The Red Eye Of Soromon, presumably, to avoid record label contract issues when playing local venues in Massachusetts. The most recent performance under the pseudonym was on [http://www.absolutepunk.net/showthread.php?t=209012 May 5, 2008].<br /> <br /> ==History==<br /> The band formed in 2003. In May of 2006, [[Casey Crescenzo]] parted ways with the band and started pursuing his side project full-time, [[The Dear Hunter]].<br /> <br /> On November 6, 2006 the band announced their new permanent member as Brian Southall (formerly the drummer of [[Boys Night Out (band)|Boys Night Out]]). He plays guitar, keys, and backup vocals.<br /> <br /> The band had arranged to stream a live concert from Vintage Vinyl Record Store in New Jersey on the new real-time entertainment site www.Yebotv.com on August 9th, 2007.<br /> <br /> In a December 10, 2007 interview, when referring to the unique sound of TREOS being, &quot;musical mojo,&quot; Stephen Kahler was quoted as saying, &quot;I think they might just be...the best band to have ever existed.&quot;&lt;ref&gt;December 10, 2007 interview for WBRH Radio by Aaron Louison&lt;/ref&gt;<br /> <br /> On March 18th, 2008 Brendan Brown announced on Myspace, via a Myspace bulletin that because of his new priorities (having a baby), the band is coming to an end.<br /> &lt;blockquote&gt;<br /> I, Brendan, must admit that I am the main reason why TREOS is ending. My choice to no longer continue on with The Receiving End of Sirens has nothing to do with a lack of love for my band, and/or band members. It has nothing to do with a lack of passion for our music, or any music for that matter. My decision is due mostly in part to a huge rearranging of priorities in my life, and the unquestionable responsibility that comes along with becoming a father. January 15th my<br /> wife and I welcomed Parker Brown, our first child, into the world. Since then everything has changed. The happiness and joy I gained from being part of this band can't ever be taken away from me, but to be honest, I have lived a long time thinking that specific joy was as good as it got. Since Parker's birth I have realized my joy is a great thing, in and of itself, but the happiness I receive from his happiness is exponentially greater than anything I could muster on my own. The thought of leaving him to tour for months at a time is something I just can't stomach. I can't<br /> stand to miss another thing. I realize how important I am to my band, and how important our band is to some people, but I am far more elemental in the growth and happiness of my child, than I am anything else in this world.<br /> &lt;/blockquote&gt;<br /> <br /> On Friday May 2nd, 2008 the band played its farewell show with Envy on the Coast and Therefore I Am. Casey Crescenzo made a return halfway through the set. TREOS performed virtually all of their tracks, forcing them to repeat Planning a Prison Break as their [[encore]]. Absolute punk made a statement about their &quot;final show&quot;.<br /> <br /> &lt;blockquote&gt;<br /> Casey Crescenzo played with The Receiving End of Sirens last night at their final headlining show in Providence, Rhode Island. They played 21 songs (technically 22 because the crowd got them to play &quot;Planning a Prison Break&quot; twice) - almost every track spanning their three CD discography. A fan (Brandon) also proposed to his girlfriend on stage during the set &amp; they are now engaged! It was truly an eve of magic &amp; delight. The band will be greatly missed by their fans, and we wish them each the best of luck in the future!<br /> &lt;/blockquote&gt;<br /> <br /> The band also played [[The Bamboozle]] on May 4th, 2008 and performed their final show as The Red Eye of Soromon in Allston, MA on May 5th, 2008, where they played all of &lt;i&gt;Between the Heart and the Synapse&lt;/i&gt; in order from start to finish, with Casey, followed by an encore set.<br /> <br /> ==Band members==<br /> Brendan Brown - Vocals, Bass guitar&lt;br&gt;<br /> Alex Bars - Rhythm Guitar, Vocals&lt;br&gt;<br /> Nate Patterson - Lead Guitar&lt;br&gt;<br /> Andrew Cook - Drums&lt;br&gt;<br /> Brian Southall - Guitar, Keyboard<br /> <br /> ==Discography==<br /> <br /> {| border=&quot;2&quot; cellpadding=&quot;4&quot; cellspacing=&quot;0&quot; style=&quot;margin: 1em 1em 1em 0; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;&quot;<br /> |'''Date of Release'''<br /> |'''Title'''<br /> |'''label'''<br /> |-<br /> |[[August 9]] [[2004]]<br /> |''[[The Receiving End Of Sirens E.P.]]''<br /> |Robotica Records<br /> |-<br /> |[[April 25]] [[2005]]<br /> |''[[Between the Heart and the Synapse]]''<br /> |[[Triple Crown Records]]<br /> |-<br /> |[[August 7]] [[2007]]<br /> |''[[The Earth Sings Mi Fa Mi]]''<br /> |[[Triple Crown Records]]<br /> |}<br /> <br /> ==Videography==<br /> *[[Planning A Prison Break]] ([[2005]])<br /> *This Armistice ([[2006]])<br /> *The Evidence ([[2007]])<br /> *Smoke &amp; Mirrors([[2007]])<br /> <br /> <br /> <br /> ==References==<br /> {{Reflist}}<br /> <br /> ==External links==<br /> *[http://www.thereceivingendofsirens.com/ Official Website]<br /> *[http://www.myspace.com/thereceivingendofsirens TREOS on MySpace]<br /> *[http://www.purevolume.com/thereceivingendofsirens TREOS on PureVolume]<br /> *[http://www.thedearhunter.com The Dear Hunter]<br /> *[http://www.plyrics.com/r/receivingendofsirens.html Lyrics]<br /> <br /> {{DEFAULTSORT:Receiving End of Sirens, The}}<br /> [[Category:American rock music groups]]<br /> [[Category:2000s music groups]]<br /> [[Category:Alternative musical groups]]<br /> [[Category:Boston musical groups]]<br /> [[Category:Post-hardcore groups]]<br /> [[Category:Musical groups established in 2003]]<br /> [[Category:Musical groups disestablished in 2008]]<br /> <br /> [[it:The Receiving End of Sirens]]</div> FatalError