1
0
Fork 0
mirror of https://gitlab.com/news-flash/article_scraper.git synced 2025-07-07 16:15:32 +02:00

update readability test results

This commit is contained in:
Jan Lukas Gernert 2023-04-26 21:04:35 +02:00
parent 2a4f17d458
commit f737ab27fd
108 changed files with 2709 additions and 3539 deletions

View file

@ -16,9 +16,9 @@ help.</strong>
actually works…</p>
<blockquote>
<p>Drinking game for web devs:
<br>(1) Think of a noun
<br>(2) Google "&lt;noun&gt;.js"
<br>(3) If a library with that name exists - drink</p>— Shay Friedman (@ironshay)
<br/>(1) Think of a noun
<br/>(2) Google "&lt;noun&gt;.js"
<br/>(3) If a library with that name exists - drink</p>— Shay Friedman (@ironshay)
<a href="https://twitter.com/ironshay/statuses/370525864523743232" target="_blank">August 22, 2013</a>
</blockquote>
<p><strong><a href="http://blanketjs.org/" target="_blank">Blanket.js</a></strong> is an <em>easy to install, easy to configure,
@ -114,7 +114,7 @@ describe("Cow", function() {
</ul>
<p>Running the tests now gives us something like this:</p>
<p>
<img alt="screenshot" src="http://fakehost/static/code/2013/blanket-coverage.png">
<img alt="screenshot" src="http://fakehost/static/code/2013/blanket-coverage.png"/>
</p>
<p>As you can see, the report at the bottom highlights that we haven't actually
tested the case where an error is raised in case a target name is missing.
@ -129,4 +129,4 @@ sessions
but that's another story.</p>
<p><strong>So is code coverage silver bullet? No. Is it useful? Definitely. Happy testing!</strong>
</p>
</section></article>
</section></article>

View file

@ -33,8 +33,7 @@
<p>The most useful, high-level part of the Fetch API is the <code>fetch()</code> function.
In its simplest form it takes a URL and returns a promise that resolves
to the response. The response is captured as a <code>Response</code> object.</p>
<DIV>
<pre>fetch<span>(</span><span>"/data.json"</span><span>)</span>.<span>then</span><span>(</span><span>function</span><span>(</span>res<span>)</span> <span>{</span>
<DIV><pre>fetch<span>(</span><span>"/data.json"</span><span>)</span>.<span>then</span><span>(</span><span>function</span><span>(</span>res<span>)</span> <span>{</span>
<span>// res instanceof Response == true.</span>
<span>if</span> <span>(</span>res.<span>ok</span><span>)</span> <span>{</span>
res.<span>json</span><span>(</span><span>)</span>.<span>then</span><span>(</span><span>function</span><span>(</span>data<span>)</span> <span>{</span>
@ -48,8 +47,7 @@
<span>}</span><span>)</span><span>;</span></pre>
</DIV>
<p>Submitting some parameters, it would look like this:</p>
<DIV>
<pre>fetch<span>(</span><span>"http://www.example.org/submit.php"</span><span>,</span> <span>{</span>
<DIV><pre>fetch<span>(</span><span>"http://www.example.org/submit.php"</span><span>,</span> <span>{</span>
method<span>:</span> <span>"POST"</span><span>,</span>
headers<span>:</span> <span>{</span>
<span>"Content-Type"</span><span>:</span> <span>"application/x-www-form-urlencoded"</span>
@ -67,23 +65,22 @@
</DIV>
<p>The <code>fetch()</code> functions arguments are the same as those passed
to the
<br>
<br/>
<code>Request()</code> constructor, so you may directly pass arbitrarily
complex requests to <code>fetch()</code> as discussed below.</p>
<h2>Headers</h2>
<p>Fetch introduces 3 interfaces. These are <code>Headers</code>, <code>Request</code> and
<br>
<br/>
<code>Response</code>. They map directly to the underlying HTTP concepts,
but have
<br>certain visibility filters in place for privacy and security reasons,
<br/>certain visibility filters in place for privacy and security reasons,
such as
<br>supporting CORS rules and ensuring cookies arent readable by third parties.</p>
<br/>supporting CORS rules and ensuring cookies arent readable by third parties.</p>
<p>The <a href="https://fetch.spec.whatwg.org/#headers-class" target="_blank">Headers interface</a> is
a simple multi-map of names to values:</p>
<DIV>
<pre><span>var</span> content <span>=</span> <span>"Hello World"</span><span>;</span>
<DIV><pre><span>var</span> content <span>=</span> <span>"Hello World"</span><span>;</span>
<span>var</span> reqHeaders <span>=</span> <span>new</span> Headers<span>(</span><span>)</span><span>;</span>
reqHeaders.<span>append</span><span>(</span><span>"Content-Type"</span><span>,</span> <span>"text/plain"</span>
reqHeaders.<span>append</span><span>(</span><span>"Content-Length"</span><span>,</span> content.<span>length</span>.<span>toString</span><span>(</span><span>)</span><span>)</span><span>;</span>
@ -91,17 +88,15 @@ reqHeaders.<span>append</span><span>(</span><span>"X-Custom-Header"</span><span>
</DIV>
<p>The same can be achieved by passing an array of arrays or a JS object
literal
<br>to the constructor:</p>
<DIV>
<pre>reqHeaders <span>=</span> <span>new</span> Headers<span>(</span><span>{</span>
<br/>to the constructor:</p>
<DIV><pre>reqHeaders <span>=</span> <span>new</span> Headers<span>(</span><span>{</span>
<span>"Content-Type"</span><span>:</span> <span>"text/plain"</span><span>,</span>
<span>"Content-Length"</span><span>:</span> content.<span>length</span>.<span>toString</span><span>(</span><span>)</span><span>,</span>
<span>"X-Custom-Header"</span><span>:</span> <span>"ProcessThisImmediately"</span><span>,</span>
<span>}</span><span>)</span><span>;</span></pre>
</DIV>
<p>The contents can be queried and retrieved:</p>
<DIV>
<pre>console.<span>log</span><span>(</span>reqHeaders.<span>has</span><span>(</span><span>"Content-Type"</span><span>)</span><span>)</span><span>;</span> <span>// true</span>
<DIV><pre>console.<span>log</span><span>(</span>reqHeaders.<span>has</span><span>(</span><span>"Content-Type"</span><span>)</span><span>)</span><span>;</span> <span>// true</span>
console.<span>log</span><span>(</span>reqHeaders.<span>has</span><span>(</span><span>"Set-Cookie"</span><span>)</span><span>)</span><span>;</span> <span>// false</span>
reqHeaders.<span>set</span><span>(</span><span>"Content-Type"</span><span>,</span> <span>"text/html"</span><span>)</span><span>;</span>
reqHeaders.<span>append</span><span>(</span><span>"X-Custom-Header"</span><span>,</span> <span>"AnotherValue"</span><span>)</span><span>;</span>
@ -113,33 +108,32 @@ reqHeaders.<span>delete</span><span>(</span><span>"X-Custom-Header"</span><span>
console.<span>log</span><span>(</span>reqHeaders.<span>getAll</span><span>(</span><span>"X-Custom-Header"</span><span>)</span><span>)</span><span>;</span> <span>// []</span></pre>
</DIV>
<p>Some of these operations are only useful in ServiceWorkers, but they provide
<br>a much nicer API to Headers.</p>
<br/>a much nicer API to Headers.</p>
<p>Since Headers can be sent in requests, or received in responses, and have
various limitations about what information can and should be mutable, <code>Headers</code> objects
have a <strong>guard</strong> property. This is not exposed to the Web, but
it affects which mutation operations are allowed on the Headers object.
<br>Possible values are:</p>
<br/>Possible values are:</p>
<ul>
<li>“none”: default.</li>
<li>“request”: guard for a Headers object obtained from a Request (<code>Request.headers</code>).</li>
<li>“request-no-cors”: guard for a Headers object obtained from a Request
created
<br>with mode “no-cors”.</li>
<br/>with mode “no-cors”.</li>
<li>“response”: naturally, for Headers obtained from Response (<code>Response.headers</code>).</li>
<li>“immutable”: Mostly used for ServiceWorkers, renders a Headers object
<br>read-only.</li>
<br/>read-only.</li>
</ul>
<p>The details of how each guard affects the behaviors of the Headers object
are
<br>in the <a href="https://fetch.spec.whatwg.org/" target="_blank">specification</a>. For example,
<br/>in the <a href="https://fetch.spec.whatwg.org/" target="_blank">specification</a>. For example,
you may not append or set a “request” guarded Headers “Content-Length”
header. Similarly, inserting “Set-Cookie” into a Response header is not
allowed so that ServiceWorkers may not set cookies via synthesized Responses.</p>
<p>All of the Headers methods throw TypeError if <code>name</code> is not a
<a href="https://fetch.spec.whatwg.org/#concept-header-name" target="_blank">valid HTTP Header name</a>. The mutation operations will throw TypeError
if there is an immutable guard. Otherwise they fail silently. For example:</p>
<DIV>
<pre><span>var</span> res <span>=</span> Response.<span>error</span><span>(</span><span>)</span><span>;</span>
<DIV><pre><span>var</span> res <span>=</span> Response.<span>error</span><span>(</span><span>)</span><span>;</span>
<span>try</span> <span>{</span>
res.<span>headers</span>.<span>set</span><span>(</span><span>"Origin"</span><span>,</span> <span>"http://mybank.com"</span><span>)</span><span>;</span>
<span>}</span> <span>catch</span><span>(</span>e<span>)</span> <span>{</span>
@ -154,27 +148,24 @@ console.<span>log</span><span>(</span>reqHeaders.<span>getAll</span><span>(</spa
a body, a request mode, credentials and cache hints.</p>
<p>The simplest Request is of course, just a URL, as you may do to GET a
resource.</p>
<DIV>
<pre><span>var</span> req <span>=</span> <span>new</span> Request<span>(</span><span>"/index.html"</span><span>)</span><span>;</span>
<DIV><pre><span>var</span> req <span>=</span> <span>new</span> Request<span>(</span><span>"/index.html"</span><span>)</span><span>;</span>
console.<span>log</span><span>(</span>req.<span>method</span><span>)</span><span>;</span> <span>// "GET"</span>
console.<span>log</span><span>(</span>req.<span>url</span><span>)</span><span>;</span> <span>// "http://example.com/index.html"</span></pre>
</DIV>
<p>You may also pass a Request to the <code>Request()</code> constructor to
create a copy.
<br>(This is not the same as calling the <code>clone()</code> method, which
<br/>(This is not the same as calling the <code>clone()</code> method, which
is covered in
<br>the “Reading bodies” section.).</p>
<DIV>
<pre><span>var</span> copy <span>=</span> <span>new</span> Request<span>(</span>req<span>)</span><span>;</span>
<br/>the “Reading bodies” section.).</p>
<DIV><pre><span>var</span> copy <span>=</span> <span>new</span> Request<span>(</span>req<span>)</span><span>;</span>
console.<span>log</span><span>(</span>copy.<span>method</span><span>)</span><span>;</span> <span>// "GET"</span>
console.<span>log</span><span>(</span>copy.<span>url</span><span>)</span><span>;</span> <span>// "http://example.com/index.html"</span></pre>
</DIV>
<p>Again, this form is probably only useful in ServiceWorkers.</p>
<p>The non-URL attributes of the <code>Request</code> can only be set by passing
initial
<br>values as a second argument to the constructor. This argument is a dictionary.</p>
<DIV>
<pre><span>var</span> uploadReq <span>=</span> <span>new</span> Request<span>(</span><span>"/uploadImage"</span><span>,</span> <span>{</span>
<br/>values as a second argument to the constructor. This argument is a dictionary.</p>
<DIV><pre><span>var</span> uploadReq <span>=</span> <span>new</span> Request<span>(</span><span>"/uploadImage"</span><span>,</span> <span>{</span>
method<span>:</span> <span>"POST"</span><span>,</span>
headers<span>:</span> <span>{</span>
<span>"Content-Type"</span><span>:</span> <span>"image/png"</span><span>,</span>
@ -189,9 +180,8 @@ console.<span>log</span><span>(</span>copy.<span>url</span><span>)</span><span>;
<p>The <code>"same-origin"</code> mode is simple, if a request is made to another
origin with this mode set, the result is simply an error. You could use
this to ensure that
<br>a request is always being made to your origin.</p>
<DIV>
<pre><span>var</span> arbitraryUrl <span>=</span> document.<span>getElementById</span><span>(</span><span>"url-input"</span><span>)</span>.<span>value</span><span>;</span>
<br/>a request is always being made to your origin.</p>
<DIV><pre><span>var</span> arbitraryUrl <span>=</span> document.<span>getElementById</span><span>(</span><span>"url-input"</span><span>)</span>.<span>value</span><span>;</span>
fetch<span>(</span>arbitraryUrl<span>,</span> <span>{</span> mode<span>:</span> <span>"same-origin"</span> <span>}</span><span>)</span>.<span>then</span><span>(</span><span>function</span><span>(</span>res<span>)</span> <span>{</span>
console.<span>log</span><span>(</span><span>"Response succeeded?"</span><span>,</span> res.<span>ok</span><span>)</span><span>;</span>
<span>}</span><span>,</span> <span>function</span><span>(</span>e<span>)</span> <span>{</span>
@ -210,13 +200,12 @@ fetch<span>(</span>arbitraryUrl<span>,</span> <span>{</span> mode<span>:</span>
<p><code>"cors"</code> mode is what youll usually use to make known cross-origin
requests to access various APIs offered by other vendors. These are expected
to adhere to
<br>the <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS" target="_blank">CORS protocol</a>.
<br/>the <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS" target="_blank">CORS protocol</a>.
Only a <a href="https://fetch.spec.whatwg.org/#concept-filtered-response-cors" target="_blank">limited set</a> of
headers is exposed in the Response, but the body is readable. For example,
you could get a list of Flickrs <a href="https://www.flickr.com/services/api/flickr.interestingness.getList.html" target="_blank">most interesting</a> photos
today like this:</p>
<DIV>
<pre><span>var</span> u <span>=</span> <span>new</span> URLSearchParams<span>(</span><span>)</span><span>;</span>
<DIV><pre><span>var</span> u <span>=</span> <span>new</span> URLSearchParams<span>(</span><span>)</span><span>;</span>
u.<span>append</span><span>(</span><span>'method'</span><span>,</span> <span>'flickr.interestingness.getList'</span><span>)</span><span>;</span>
u.<span>append</span><span>(</span><span>'api_key'</span><span>,</span> <span>'&lt;insert api key here&gt;'</span><span>)</span><span>;</span>
u.<span>append</span><span>(</span><span>'format'</span><span>,</span> <span>'json'</span><span>)</span><span>;</span>
@ -237,23 +226,22 @@ apiCall.<span>then</span><span>(</span><span>function</span><span>(</span>respon
</DIV>
<p>You may not read out the “Date” header since Flickr does not allow it
via
<br>
<br/>
<code>Access-Control-Expose-Headers</code>.</p>
<DIV>
<pre>response.<span>headers</span>.<span>get</span><span>(</span><span>"Date"</span><span>)</span><span>;</span> <span>// null</span></pre>
<DIV><pre>response.<span>headers</span>.<span>get</span><span>(</span><span>"Date"</span><span>)</span><span>;</span> <span>// null</span></pre>
</DIV>
<p>The <code>credentials</code> enumeration determines if cookies for the other
domain are
<br>sent to cross-origin requests. This is similar to XHRs <code>withCredentials</code>
<br>flag, but tri-valued as <code>"omit"</code> (default), <code>"same-origin"</code> and <code>"include"</code>.</p>
<br/>sent to cross-origin requests. This is similar to XHRs <code>withCredentials</code>
<br/>flag, but tri-valued as <code>"omit"</code> (default), <code>"same-origin"</code> and <code>"include"</code>.</p>
<p>The Request object will also give the ability to offer caching hints to
the user-agent. This is currently undergoing some <a href="https://github.com/slightlyoff/ServiceWorker/issues/585" target="_blank">security review</a>.
Firefox exposes the attribute, but it has no effect.</p>
<p>Requests have two read-only attributes that are relevant to ServiceWorkers
<br>intercepting them. There is the string <code>referrer</code>, which is
<br/>intercepting them. There is the string <code>referrer</code>, which is
set by the UA to be
<br>the referrer of the Request. This may be an empty string. The other is
<br>
<br/>the referrer of the Request. This may be an empty string. The other is
<br/>
<code>context</code> which is a rather <a href="https://fetch.spec.whatwg.org/#requestcredentials" target="_blank">large enumeration</a> defining
what sort of resource is being fetched. This could be “image” if the request
is from an
@ -275,22 +263,18 @@ apiCall.<span>then</span><span>(</span><span>function</span><span>(</span>respon
The <code>url</code> attribute reflects the URL of the corresponding request.</p>
<p>Response also has a <code>type</code>, which is “basic”, “cors”, “default”,
“error” or
<br>“opaque”.</p>
<br/>“opaque”.</p>
<ul>
<li>
<code>"basic"</code>: normal, same origin response, with all headers exposed
<li><code>"basic"</code>: normal, same origin response, with all headers exposed
except
<br>“Set-Cookie” and “Set-Cookie2″.</li>
<li>
<code>"cors"</code>: response was received from a valid cross-origin request.
<br/>“Set-Cookie” and “Set-Cookie2″.</li>
<li><code>"cors"</code>: response was received from a valid cross-origin request.
<a href="https://fetch.spec.whatwg.org/#concept-filtered-response-cors" target="_blank">Certain headers and the body</a>may be accessed.</li>
<li>
<code>"error"</code>: network error. No useful information describing
<li><code>"error"</code>: network error. No useful information describing
the error is available. The Responses status is 0, headers are empty and
immutable. This is the type for a Response obtained from <code>Response.error()</code>.</li>
<li>
<code>"opaque"</code>: response for “no-cors” request to cross-origin
resource. <a href="https://fetch.spec.whatwg.org/#concept-filtered-response-opaque" target="_blank">Severely<br>
<li><code>"opaque"</code>: response for “no-cors” request to cross-origin
resource. <a href="https://fetch.spec.whatwg.org/#concept-filtered-response-opaque" target="_blank">Severely<br/>
restricted</a>
</li>
</ul>
@ -298,10 +282,9 @@ apiCall.<span>then</span><span>(</span><span>function</span><span>(</span>respon
TypeError.</p>
<p>There are certain attributes that are useful only in a ServiceWorker scope.
The
<br>idiomatic way to return a Response to an intercepted request in ServiceWorkers
<br/>idiomatic way to return a Response to an intercepted request in ServiceWorkers
is:</p>
<DIV>
<pre>addEventListener<span>(</span><span>'fetch'</span><span>,</span> <span>function</span><span>(</span>event<span>)</span> <span>{</span>
<DIV><pre>addEventListener<span>(</span><span>'fetch'</span><span>,</span> <span>function</span><span>(</span>event<span>)</span> <span>{</span>
event.<span>respondWith</span><span>(</span><span>new</span> Response<span>(</span><span>"Response body"</span><span>,</span> <span>{</span>
headers<span>:</span> <span>{</span> <span>"Content-Type"</span> <span>:</span> <span>"text/plain"</span> <span>}</span>
<span>}</span><span>)</span><span>;</span>
@ -313,7 +296,7 @@ apiCall.<span>then</span><span>(</span><span>function</span><span>(</span>respon
<p>The static method <code>Response.error()</code> simply returns an error
response. Similarly, <code>Response.redirect(url, status)</code> returns
a Response resulting in
<br>a redirect to <code>url</code>.</p>
<br/>a redirect to <code>url</code>.</p>
<h2>Dealing with bodies</h2>
@ -322,22 +305,17 @@ apiCall.<span>then</span><span>(</span><span>function</span><span>(</span>respon
cover it in detail now.</p>
<p>A body is an instance of any of the following types.</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer" target="_blank">ArrayBuffer</a>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer" target="_blank">ArrayBuffer</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/API/ArrayBufferView" target="_blank">ArrayBufferView</a> (Uint8Array
<li><a href="https://developer.mozilla.org/en-US/docs/Web/API/ArrayBufferView" target="_blank">ArrayBufferView</a> (Uint8Array
and friends)</li>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/API/Blob" target="_blank">Blob</a>/
<li><a href="https://developer.mozilla.org/en-US/docs/Web/API/Blob" target="_blank">Blob</a>/
<a href="https://developer.mozilla.org/en-US/docs/Web/API/File" target="_blank">File</a>
</li>
<li>string</li>
<li>
<a href="https://url.spec.whatwg.org/#interface-urlsearchparams" target="_blank">URLSearchParams</a>
<li><a href="https://url.spec.whatwg.org/#interface-urlsearchparams" target="_blank">URLSearchParams</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/API/FormData" target="_blank">FormData</a>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/API/FormData" target="_blank">FormData</a>
currently not supported by either Gecko or Blink. Firefox expects to ship
this in version 39 along with the rest of Fetch.</li>
</ul>
@ -345,35 +323,28 @@ apiCall.<span>then</span><span>(</span><span>function</span><span>(</span>respon
extract their body. These all return a Promise that is eventually resolved
with the actual content.</p>
<ul>
<li>
<code>arrayBuffer()</code>
<li><code>arrayBuffer()</code>
</li>
<li>
<code>blob()</code>
<li><code>blob()</code>
</li>
<li>
<code>json()</code>
<li><code>json()</code>
</li>
<li>
<code>text()</code>
<li><code>text()</code>
</li>
<li>
<code>formData()</code>
<li><code>formData()</code>
</li>
</ul>
<p>This is a significant improvement over XHR in terms of ease of use of
non-text data!</p>
<p>Request bodies can be set by passing <code>body</code> parameters:</p>
<DIV>
<pre><span>var</span> form <span>=</span> <span>new</span> FormData<span>(</span>document.<span>getElementById</span><span>(</span><span>'login-form'</span><span>)</span><span>)</span><span>;</span>
<DIV><pre><span>var</span> form <span>=</span> <span>new</span> FormData<span>(</span>document.<span>getElementById</span><span>(</span><span>'login-form'</span><span>)</span><span>)</span><span>;</span>
fetch<span>(</span><span>"/login"</span><span>,</span> <span>{</span>
method<span>:</span> <span>"POST"</span><span>,</span>
body<span>:</span> form
<span>}</span><span>)</span></pre>
</DIV>
<p>Responses take the first argument as the body.</p>
<DIV>
<pre><span>var</span> res <span>=</span> <span>new</span> Response<span>(</span><span>new</span> File<span>(</span><span>[</span><span>"chunk"</span><span>,</span> <span>"chunk"</span><span>]</span><span>,</span> <span>"archive.zip"</span><span>,</span>
<DIV><pre><span>var</span> res <span>=</span> <span>new</span> Response<span>(</span><span>new</span> File<span>(</span><span>[</span><span>"chunk"</span><span>,</span> <span>"chunk"</span><span>]</span><span>,</span> <span>"archive.zip"</span><span>,</span>
<span>{</span> type<span>:</span> <span>"application/zip"</span> <span>}</span><span>)</span><span>)</span><span>;</span></pre>
</DIV>
<p>Both Request and Response (and by extension the <code>fetch()</code> function),
@ -386,8 +357,7 @@ fetch<span>(</span><span>"/login"</span><span>,</span> <span>{</span>
<p>It is important to realise that Request and Response bodies can only be
read once! Both interfaces have a boolean attribute <code>bodyUsed</code> to
determine if it is safe to read or not.</p>
<DIV>
<pre><span>var</span> res <span>=</span> <span>new</span> Response<span>(</span><span>"one time use"</span><span>)</span><span>;</span>
<DIV><pre><span>var</span> res <span>=</span> <span>new</span> Response<span>(</span><span>"one time use"</span><span>)</span><span>;</span>
console.<span>log</span><span>(</span>res.<span>bodyUsed</span><span>)</span><span>;</span> <span>// false</span>
res.<span>text</span><span>(</span><span>)</span>.<span>then</span><span>(</span><span>function</span><span>(</span>v<span>)</span> <span>{</span>
console.<span>log</span><span>(</span>res.<span>bodyUsed</span><span>)</span><span>;</span> <span>// true</span>
@ -411,8 +381,7 @@ res.<span>text</span><span>(</span><span>)</span>.<span>catch</span><span>(</spa
will return a clone of the object, with a new body. <code>clone()</code> MUST
be called before the body of the corresponding object has been used. That
is, <code>clone()</code> first, read later.</p>
<DIV>
<pre>addEventListener<span>(</span><span>'fetch'</span><span>,</span> <span>function</span><span>(</span>evt<span>)</span> <span>{</span>
<DIV><pre>addEventListener<span>(</span><span>'fetch'</span><span>,</span> <span>function</span><span>(</span>evt<span>)</span> <span>{</span>
<span>var</span> sheep <span>=</span> <span>new</span> Response<span>(</span><span>"Dolly"</span><span>)</span><span>;</span>
console.<span>log</span><span>(</span>sheep.<span>bodyUsed</span><span>)</span><span>;</span> <span>// false</span>
<span>var</span> clone <span>=</span> sheep.<span>clone</span><span>(</span><span>)</span><span>;</span>
@ -439,11 +408,11 @@ res.<span>text</span><span>(</span><span>)</span>.<span>catch</span><span>(</spa
in the issues in the <a href="https://www.w3.org/Bugs/Public/buglist.cgi?product=WHATWG&amp;component=Fetch&amp;resolution=---" target="_blank">Fetch</a> and
<a href="https://github.com/slightlyoff/ServiceWorker/issues" target="_blank">ServiceWorker</a>specifications.</p>
<p>For a better web!</p>
<p><em>The author would like to thank Andrea Marchesini, Anne van Kesteren and Ben<br>
<p><em>The author would like to thank Andrea Marchesini, Anne van Kesteren and Ben<br/>
Kelly for helping with the specification and implementation.</em>
</p>
</article>
</DIV></article>
</DIV></article>

View file

@ -16,4 +16,4 @@
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</article></DIV></article>
</article></DIV></article>

View file

@ -121,4 +121,4 @@
<p>
As we work to address the fallout from the current storm around Facebook and Cambridge Analytica, we can't afford to lose sight of these larger mechanisms at play. Cambridge Analytica's failures and mistakes are inherent to Facebook's business model. We need to seriously challenge the social structures that encourage people to opt in to this kind of surveillance. At the same time, we also need to protect those of us who manage to opt out.
</p>
</div></article>
</div></article>

View file

@ -1,8 +1,6 @@
<article><DIV id="readability-page-1">
<p>
<article><DIV id="readability-page-1"><p>
Zázrak jedné sezony? West Ham dává pochybovačům stále pádnější odpovědi a fotbalový svět si začíná uvědomovat, že se absolutní anglická fotbalová elita rozrůstá o nového člena. Tým manažera Davida Moyese prohání giganty i v aktuálním ročníku Premier League.
</p>
<div id="article-content">
</p><div id="article-content">
<p>
Pět vítězných soutěžních duelů v řadě, během nich jediný inkasovaný gól. Čtvrté místo v lize, stejný bodový zisk jako loňský šampion Manchester City a nadšené ohlasy z tábora těch nejrenomovanějších komentátorů ostrovního fotbalu.
</p>
@ -71,8 +69,6 @@
<p>
"Jsme na děleném třetím místě. Lidé se před sezonou hodně ptali, zda to můžeme dokázat znovu. Ukázali jsme, že ano. Ale musíme pokračovat. Tohle musí být náš standard. Nesmíme polevit, pokud chceme být velkým týmem," zdůrazňuje Rice.
</p>
</div>
<p>
</div><p>
Pokud jste v článku zaznamenali chybu nebo překlep, dejte nám, prosím, vědět prostřednictvím <a href="https://ankety.aktualne.cz/s3/00310d93156a?utm_source=aktualne.cz&amp;utm_medium=upozorneni&amp;from=https%3A%2F%2Fsport.aktualne.cz%2Ffotbal%2Fzahranici%2Fwest-ham-hrozi-gigantum-okouzlil-i-linekera-souckovu-praci-j%2Fr~8fa032ba3add11ec8a900cc47ab5f122%2F" target="_blank">kontaktního formuláře</a>. Děkujeme!
</p>
</DIV></article>
</p></DIV></article>

View file

@ -95,7 +95,7 @@
It might have been curiosity or it might have been the nagging sensation that chewed at his brain for the three weeks that he researched the subject of the conversation. All For One was a cryptid. Mystical in more ways than one, he was only a rumour on a network that was two-hundred years old. There were whispers of a shadowy figure who once ruled Japan, intermingled with a string of conspiracies and fragmented events.
</p>
<p>
Izuku had even braved the dark web, poking and prodding at some of the seedier elements of the world wide web. The internet had rumours, but the dark web had stories.<br>
Izuku had even braved the dark web, poking and prodding at some of the seedier elements of the world wide web. The internet had rumours, but the dark web had stories.<br/>
</p>
<p>
An implied yakuza wrote about his grandfather who lost a fire manipulation Quirk and his sanity without any reason. His grandfather had been institutionalised, crying and repeating “he took it, he took it” until his dying days. No one could console him.
@ -314,4 +314,4 @@
<p>
And hed be dealing with him again in another week.
</p>
</div></article>
</div></article>

View file

@ -7,16 +7,12 @@
<h2 itemprop="description">
Two-year-old bug exposes thousands of servers to crippling attack.
</h2>
<section>
</section>
</header>
<div itemprop="articleBody">
<figure>
<img src="https://cdn.arstechnica.net/wp-content/uploads/2015/04/server-crash-640x426.jpg" alt="Just-released Minecraft exploit makes it easy to crash game servers">
<figcaption>
</figcaption>
<img src="https://cdn.arstechnica.net/wp-content/uploads/2015/04/server-crash-640x426.jpg" alt="Just-released Minecraft exploit makes it easy to crash game servers"/>
</figure>
<p>
@ -90,4 +86,4 @@
</p>
</div>
</div></article>
</div></article>

View file

@ -18,11 +18,11 @@
<p><a href="http://test/foo/bar/baz.html" target="_blank">link</a></p>
<p><a href="https://test/foo/bar/baz.html" target="_blank">link</a></p>
<p>Images</p>
<p><img src="http://fakehost/test/base/foo/bar/baz.png"></p>
<p><img src="http://fakehost/test/base/foo/bar/baz.png"></p>
<p><img src="http://fakehost/foo/bar/baz.png"></p>
<p><img src="http://test/foo/bar/baz.png"></p>
<p><img src="https://test/foo/bar/baz.png"></p>
<p><img src="http://fakehost/test/base/foo/bar/baz.png"/></p>
<p><img src="http://fakehost/test/base/foo/bar/baz.png"/></p>
<p><img src="http://fakehost/foo/bar/baz.png"/></p>
<p><img src="http://test/foo/bar/baz.png"/></p>
<p><img src="https://test/foo/bar/baz.png"/></p>
<h2>Foo</h2>
<p>
Tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
@ -31,4 +31,4 @@
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</article></DIV></article>
</article></DIV></article>

View file

@ -1,5 +1,4 @@
<article><DIV id="readability-page-1">
<div>
<article><DIV id="readability-page-1"><div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.</p>
<p>Ut enim ad minim veniam,
@ -9,8 +8,7 @@
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
<div>
</div><div>
<p>Tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat.</p>
@ -19,5 +17,4 @@
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</DIV></article>
</div></DIV></article>

View file

@ -1,11 +1,5 @@
<article><div property="articleBody" id="readability-page-1">
<p>President Barack Obama has admitted that his failure to pass "common sense gun safety laws" in the US is the greatest frustration of his presidency. </p>
<p>In an interview with the BBC, Mr Obama said it was "distressing" not to have made progress on the issue "even in the face of repeated mass killings".</p>
<p>He vowed to keep trying, but the BBC's North America editor Jon Sopel said the president did not sound very confident. </p>
<p>However, Mr Obama said race relations had improved during his presidency. </p>
<p>Hours after the interview, a gunman opened fire at a cinema in the US state of Louisiana, killing two people and injuring several others before shooting himself.</p>
<p>In a wide-ranging interview, President Obama also said:</p>
<ul>
<p>President Barack Obama has admitted that his failure to pass "common sense gun safety laws" in the US is the greatest frustration of his presidency. </p><p>In an interview with the BBC, Mr Obama said it was "distressing" not to have made progress on the issue "even in the face of repeated mass killings".</p><p>He vowed to keep trying, but the BBC's North America editor Jon Sopel said the president did not sound very confident. </p><p>However, Mr Obama said race relations had improved during his presidency. </p><p>Hours after the interview, a gunman opened fire at a cinema in the US state of Louisiana, killing two people and injuring several others before shooting himself.</p><p>In a wide-ranging interview, President Obama also said:</p><ul>
<li>
<a href="http://www.bbc.co.uk/news/uk-politics-33647154" target="_blank">The UK must stay in the EU</a> to have influence on the world stage</li>
<li>He is confident the Iran nuclear deal will be passed by Congress </li>
@ -14,43 +8,15 @@
</li>
<li>He would defend his advocacy of gay rights following protests in Kenya</li>
<li>Despite racial tensions, the US is becoming more diverse and more tolerant</li>
</ul>
<p><a href="http://www.bbc.co.uk/news/world-us-canada-33646542" target="_blank">Read the full transcript of his interview</a></p>
<p>Mr Obama lands in Kenya later on Friday for his first visit since becoming president. </p>
<p>But with just 18 months left in power, he said gun control was the area where he has been "most frustrated and most stymied" since coming to power in 2009.</p>
<p>"If you look at the number of Americans killed since 9/11 by terrorism, it's less than 100. If you look at the number that have been killed by gun violence, it's in the tens of thousands," Mr Obama said. </p>
<figure><img src="http://ichef.bbci.co.uk/news/555/cpsprodpb/462D/production/_84456971_gettyimages-167501087.jpg" datasrc="http://ichef.bbci.co.uk/news/976/cpsprodpb/462D/production/_84456971_gettyimages-167501087.jpg" alt="Gun control campaigners protest in McPhearson Square in Washington DC - 25 April 2013" height="549" width="976">
</ul><p><a href="http://www.bbc.co.uk/news/world-us-canada-33646542" target="_blank">Read the full transcript of his interview</a></p><p>Mr Obama lands in Kenya later on Friday for his first visit since becoming president. </p><p>But with just 18 months left in power, he said gun control was the area where he has been "most frustrated and most stymied" since coming to power in 2009.</p><p>"If you look at the number of Americans killed since 9/11 by terrorism, it's less than 100. If you look at the number that have been killed by gun violence, it's in the tens of thousands," Mr Obama said. </p><figure><img src="http://ichef.bbci.co.uk/news/555/cpsprodpb/462D/production/_84456971_gettyimages-167501087.jpg" datasrc="http://ichef.bbci.co.uk/news/976/cpsprodpb/462D/production/_84456971_gettyimages-167501087.jpg" alt="Gun control campaigners protest in McPhearson Square in Washington DC - 25 April 2013" height="549" width="976"/>
<figcaption>
<span>
The president said he would continue fighting for greater gun control laws
</span>
</figcaption></figure><p>"For us not to be able to resolve that issue has been something that is distressing," he added. </p>
<p>Mr Obama has pushed for stricter gun control throughout his presidency but has been unable to secure any significant changes to the laws. </p>
<p>After nine African-American churchgoers were killed in South Carolina in June, he admitted "politics in this town" meant there were few options available.</p>
<figure><img src="http://ichef.bbci.co.uk/news/555/media/images/76020000/jpg/_76020974_line976.jpg" datasrc="http://ichef.bbci.co.uk/news/464/media/images/76020000/jpg/_76020974_line976.jpg" alt="line" height="2" width="464"></figure><h2>Analysis: Jon Sopel, BBC News, Washington</h2>
<figure><img src="http://ichef-1.bbci.co.uk/news/555/cpsprodpb/6D3D/production/_84456972_p072315al-0500.jpg" datasrc="http://ichef-1.bbci.co.uk/news/976/cpsprodpb/6D3D/production/_84456972_p072315al-0500.jpg" alt="President Barack Obama participates in an interview with Jon Sopel of BBC in the Roosevelt Room of the White House - 23 July 2015" height="549" width="976"></figure><p>Nine months ago, the president seemed like a spent force, after taking a beating in the midterm elections, during which members of his own party were reluctant to campaign on his record. </p>
<p>But the man sat before me today was relaxed and confident, buoyed by a string of "wins" on healthcare, Cuba and Iran, after bitter and ongoing battles with his many critics. </p>
<p>The only body swerve the president performed was when I asked him <a href="http://www.bbc.co.uk/news/world-us-canada-33643168" target="_blank"> how many minds he had changed on the Iran nuclear deal </a>after an intense sell aimed at Gulf allies and members of US Congress who remain implacably opposed. </p>
<p>There was a momentary flicker across the president's face as if to say "You think you got me?" before his smile returned and he proceeded to talk about how Congress would come round.</p>
<p>But notably, he did not give a direct answer to that question, which leaves me with the impression that he has persuaded precisely zero.</p>
<p><a href="http://www.bbc.co.uk/news/world-us-canada-33646875" target="_blank">Five things we learned from Obama interview</a></p>
<p><a href="http://www.bbc.co.uk/news/world-us-canada-33646545" target="_blank">The presidential body swerve</a></p>
<figure><img src="http://ichef.bbci.co.uk/news/555/media/images/76020000/jpg/_76020974_line976.jpg" datasrc="http://ichef.bbci.co.uk/news/464/media/images/76020000/jpg/_76020974_line976.jpg" alt="line" height="2" width="464"></figure><p>On race relations, Mr Obama said recent concerns around policing and mass incarcerations were "legitimate and deserve intense attention" but insisted progress had been made. </p>
<p>Children growing up during the eight years of his presidency "will have a different view of race relations in this country and what's possible," he said. </p>
<p>"There are going to be tensions that arise. But if you look at my daughters' generation, they have an attitude about race that's entirely different than even my generation."</p>
<p>Talking about how he was feeling after his recent successes, he said "every president, every leader has strengths and weaknesses". </p>
<p>"One of my strengths is I have a pretty even temperament. I don't get too high when it's high and I don't get too low when it's low," he said. </p>
<figure><img src="http://ichef-1.bbci.co.uk/news/555/cpsprodpb/142FD/production/_84458628_shirtreuters.jpg" datasrc="http://ichef-1.bbci.co.uk/news/976/cpsprodpb/142FD/production/_84458628_shirtreuters.jpg" alt="Customer looks at Obama shirts at a stall in Nairobi's Kibera slums, 23 July 2015" height="549" width="976">
</figcaption></figure><p>"For us not to be able to resolve that issue has been something that is distressing," he added. </p><p>Mr Obama has pushed for stricter gun control throughout his presidency but has been unable to secure any significant changes to the laws. </p><p>After nine African-American churchgoers were killed in South Carolina in June, he admitted "politics in this town" meant there were few options available.</p><figure><img src="http://ichef.bbci.co.uk/news/555/media/images/76020000/jpg/_76020974_line976.jpg" datasrc="http://ichef.bbci.co.uk/news/464/media/images/76020000/jpg/_76020974_line976.jpg" alt="line" height="2" width="464"/></figure><h2>Analysis: Jon Sopel, BBC News, Washington</h2><figure><img src="http://ichef-1.bbci.co.uk/news/555/cpsprodpb/6D3D/production/_84456972_p072315al-0500.jpg" datasrc="http://ichef-1.bbci.co.uk/news/976/cpsprodpb/6D3D/production/_84456972_p072315al-0500.jpg" alt="President Barack Obama participates in an interview with Jon Sopel of BBC in the Roosevelt Room of the White House - 23 July 2015" height="549" width="976"/></figure><p>Nine months ago, the president seemed like a spent force, after taking a beating in the midterm elections, during which members of his own party were reluctant to campaign on his record. </p><p>But the man sat before me today was relaxed and confident, buoyed by a string of "wins" on healthcare, Cuba and Iran, after bitter and ongoing battles with his many critics. </p><p>The only body swerve the president performed was when I asked him <a href="http://www.bbc.co.uk/news/world-us-canada-33643168" target="_blank"> how many minds he had changed on the Iran nuclear deal </a>after an intense sell aimed at Gulf allies and members of US Congress who remain implacably opposed. </p><p>There was a momentary flicker across the president's face as if to say "You think you got me?" before his smile returned and he proceeded to talk about how Congress would come round.</p><p>But notably, he did not give a direct answer to that question, which leaves me with the impression that he has persuaded precisely zero.</p><p><a href="http://www.bbc.co.uk/news/world-us-canada-33646875" target="_blank">Five things we learned from Obama interview</a></p><p><a href="http://www.bbc.co.uk/news/world-us-canada-33646545" target="_blank">The presidential body swerve</a></p><figure><img src="http://ichef.bbci.co.uk/news/555/media/images/76020000/jpg/_76020974_line976.jpg" datasrc="http://ichef.bbci.co.uk/news/464/media/images/76020000/jpg/_76020974_line976.jpg" alt="line" height="2" width="464"/></figure><p>On race relations, Mr Obama said recent concerns around policing and mass incarcerations were "legitimate and deserve intense attention" but insisted progress had been made. </p><p>Children growing up during the eight years of his presidency "will have a different view of race relations in this country and what's possible," he said. </p><p>"There are going to be tensions that arise. But if you look at my daughters' generation, they have an attitude about race that's entirely different than even my generation."</p><p>Talking about how he was feeling after his recent successes, he said "every president, every leader has strengths and weaknesses". </p><p>"One of my strengths is I have a pretty even temperament. I don't get too high when it's high and I don't get too low when it's low," he said. </p><figure><img src="http://ichef-1.bbci.co.uk/news/555/cpsprodpb/142FD/production/_84458628_shirtreuters.jpg" datasrc="http://ichef-1.bbci.co.uk/news/976/cpsprodpb/142FD/production/_84458628_shirtreuters.jpg" alt="Customer looks at Obama shirts at a stall in Nairobi's Kibera slums, 23 July 2015" height="549" width="976"/>
<figcaption>
<span>
Kenya is getting ready to welcome the US president
</span>
</figcaption></figure><h2>Kenya trip</h2>
<p>Mr Obama was speaking to the BBC at the White House before departing for Kenya.</p>
<p>His father was Kenyan and the president is expected to meet relatives in Nairobi.</p>
<p>Mr Obama has faced criticism in the country after the US legalised gay marriage. However, in his interview, the president said he would not fall silent on the issue.</p>
<p>"I am not a fan of discrimination and bullying of anybody on the basis of race, on the basis of religion, on the basis of sexual orientation or gender," he said.</p>
<p>The president also admitted that some African governments, including Kenya's, needed to improve their records on human rights and democracy. However, he defended his decision to engage with and visit those governments. </p>
<p>"Well, they're not ideal institutions. But what we found is, is that when we combined blunt talk with engagement, that gives us the best opportunity to influence and open up space for civil society." </p>
<p>Mr Obama will become the first US president to address the African Union when he travels on to Ethiopia on Sunday.</p>
</div></article>
</figcaption></figure><h2>Kenya trip</h2><p>Mr Obama was speaking to the BBC at the White House before departing for Kenya.</p><p>His father was Kenyan and the president is expected to meet relatives in Nairobi.</p><p>Mr Obama has faced criticism in the country after the US legalised gay marriage. However, in his interview, the president said he would not fall silent on the issue.</p><p>"I am not a fan of discrimination and bullying of anybody on the basis of race, on the basis of religion, on the basis of sexual orientation or gender," he said.</p><p>The president also admitted that some African governments, including Kenya's, needed to improve their records on human rights and democracy. However, he defended his decision to engage with and visit those governments. </p><p>"Well, they're not ideal institutions. But what we found is, is that when we combined blunt talk with engagement, that gives us the best opportunity to influence and open up space for civil society." </p><p>Mr Obama will become the first US president to address the African Union when he travels on to Ethiopia on Sunday.</p>
</div></article>

View file

@ -1,73 +1,61 @@
<article><div id="readability-page-1" itemprop="description articleBody">
<p>
I've written a couple of posts in the past few months but they were all for <a href="http://blog.ioactive.com/search/label/Andrew%20Zonenberg" target="_blank">the blog at work</a> so I figured I'm long overdue for one on Silicon Exposed.</p>
<h2>
<article><div id="readability-page-1" itemprop="description articleBody"><p>
I've written a couple of posts in the past few months but they were all for <a href="http://blog.ioactive.com/search/label/Andrew%20Zonenberg" target="_blank">the blog at work</a> so I figured I'm long overdue for one on Silicon Exposed.</p><h2>
So what's a GreenPak?</h2>
<br><p> Silego Technology is a fabless semiconductor company located in the SF Bay area, which makes (among other things) a line of programmable logic devices known as GreenPak. Their <a href="http://www.silego.com/products/greenpak5.html" target="_blank">5th generation parts</a> were just announced, but I started this project before that happened so I'm still targeting the <a href="http://www.silego.com/products/greenpak4.html" target="_blank">4th generation</a>.<br>
<br> GreenPak devices are kind of like itty bitty <a href="http://www.cypress.com/products/32-bit-arm-cortex-m-psoc" target="_blank">PSoCs</a> - they have a mixed signal fabric with an ADC, DACs, comparators, voltage references, plus a digital LUT/FF fabric and some typical digital MCU peripherals like counters and oscillators (but no CPU).<br>
<br> It's actually an interesting architecture - FPGAs (including some devices marketed as CPLDs) are a 2D array of LUTs connected via wires to adjacent cells, and true (product term) CPLDs are a star topology of AND-OR arrays connected by a crossbar. GreenPak, on the other hand, is a star topology of LUTs, flipflops, and analog/digital hard IP connected to a crossbar.<br>
<br> Without further ado, here's a block diagram showing all the cool stuff you get in the SLG46620V:</p>
<table>
<br/><p> Silego Technology is a fabless semiconductor company located in the SF Bay area, which makes (among other things) a line of programmable logic devices known as GreenPak. Their <a href="http://www.silego.com/products/greenpak5.html" target="_blank">5th generation parts</a> were just announced, but I started this project before that happened so I'm still targeting the <a href="http://www.silego.com/products/greenpak4.html" target="_blank">4th generation</a>.<br/>
<br/> GreenPak devices are kind of like itty bitty <a href="http://www.cypress.com/products/32-bit-arm-cortex-m-psoc" target="_blank">PSoCs</a> - they have a mixed signal fabric with an ADC, DACs, comparators, voltage references, plus a digital LUT/FF fabric and some typical digital MCU peripherals like counters and oscillators (but no CPU).<br/>
<br/> It's actually an interesting architecture - FPGAs (including some devices marketed as CPLDs) are a 2D array of LUTs connected via wires to adjacent cells, and true (product term) CPLDs are a star topology of AND-OR arrays connected by a crossbar. GreenPak, on the other hand, is a star topology of LUTs, flipflops, and analog/digital hard IP connected to a crossbar.<br/>
<br/> Without further ado, here's a block diagram showing all the cool stuff you get in the SLG46620V:</p><table>
<tbody>
<tr>
<td>
<a href="https://1.bp.blogspot.com/-YIPC5jkXkDE/Vy7YPSqFKWI/AAAAAAAAAxI/a7D6Ji2GxoUvcrwUkI4RLZcr2LFQEJCTACLcB/s1600/block-diagram.png" imageanchor="1" target="_blank"><img height="512" src="https://1.bp.blogspot.com/-YIPC5jkXkDE/Vy7YPSqFKWI/AAAAAAAAAxI/a7D6Ji2GxoUvcrwUkI4RLZcr2LFQEJCTACLcB/s640/block-diagram.png" width="640"></a>
<a href="https://1.bp.blogspot.com/-YIPC5jkXkDE/Vy7YPSqFKWI/AAAAAAAAAxI/a7D6Ji2GxoUvcrwUkI4RLZcr2LFQEJCTACLcB/s1600/block-diagram.png" imageanchor="1" target="_blank"><img height="512" src="https://1.bp.blogspot.com/-YIPC5jkXkDE/Vy7YPSqFKWI/AAAAAAAAAxI/a7D6Ji2GxoUvcrwUkI4RLZcr2LFQEJCTACLcB/s640/block-diagram.png" width="640"/></a>
</td>
</tr>
<tr>
<td>SLG46620V block diagram (from device datasheet)</td>
</tr>
</tbody>
</table>
<p>
They're also tiny (the SLG46620V is a 20-pin 0.4mm pitch STQFN measuring 2x3 mm, and the lower gate count SLG46140V is a mere 1.6x2 mm) and probably the cheapest programmable logic device on the market - $0.50 in low volume and less than $0.40 in larger quantities.<br>
<br> The Vdd range of GreenPak4 is huge, more like what you'd expect from an MCU than an FPGA! It can run on anything from 1.8 to 5V, although performance is only specified at 1.8, 3.3, and 5V nominal voltages. There's also a dual-rail version that trades one of the GPIO pins for a second power supply pin, allowing you to interface to logic at two different voltage levels.<br>
<br> To support low-cost/space-constrained applications, they even have the configuration memory on die. It's one-time programmable and needs external Vpp to program (presumably Silego didn't want to waste die area on charge pumps that would only be used once) but has a SRAM programming mode for prototyping.<br>
<br> The best part is that the development software (GreenPak Designer) is free of charge and provided for all major operating systems including Linux! Unfortunately, the only supported design entry method is schematic entry and there's no way to write your design in a HDL.<br>
<br> While schematics may be fine for quick tinkering on really simple designs, they quickly get unwieldy. The nightmare of a circuit shown below is just a bunch of counters hooked up to LEDs that blink at various rates.</p>
<table>
</table><p>
They're also tiny (the SLG46620V is a 20-pin 0.4mm pitch STQFN measuring 2x3 mm, and the lower gate count SLG46140V is a mere 1.6x2 mm) and probably the cheapest programmable logic device on the market - $0.50 in low volume and less than $0.40 in larger quantities.<br/>
<br/> The Vdd range of GreenPak4 is huge, more like what you'd expect from an MCU than an FPGA! It can run on anything from 1.8 to 5V, although performance is only specified at 1.8, 3.3, and 5V nominal voltages. There's also a dual-rail version that trades one of the GPIO pins for a second power supply pin, allowing you to interface to logic at two different voltage levels.<br/>
<br/> To support low-cost/space-constrained applications, they even have the configuration memory on die. It's one-time programmable and needs external Vpp to program (presumably Silego didn't want to waste die area on charge pumps that would only be used once) but has a SRAM programming mode for prototyping.<br/>
<br/> The best part is that the development software (GreenPak Designer) is free of charge and provided for all major operating systems including Linux! Unfortunately, the only supported design entry method is schematic entry and there's no way to write your design in a HDL.<br/>
<br/> While schematics may be fine for quick tinkering on really simple designs, they quickly get unwieldy. The nightmare of a circuit shown below is just a bunch of counters hooked up to LEDs that blink at various rates.</p><table>
<tbody>
<tr>
<td>
<a href="https://1.bp.blogspot.com/-k3naUT3uXao/Vy7WFac246I/AAAAAAAAAw8/mePy_ostO8QJra5ZJrbP2WGhTlJ0B_r8gCLcB/s1600/schematic-from-hell.png" imageanchor="1" target="_blank"><img height="334" src="https://1.bp.blogspot.com/-k3naUT3uXao/Vy7WFac246I/AAAAAAAAAw8/mePy_ostO8QJra5ZJrbP2WGhTlJ0B_r8gCLcB/s640/schematic-from-hell.png" width="640"></a>
<a href="https://1.bp.blogspot.com/-k3naUT3uXao/Vy7WFac246I/AAAAAAAAAw8/mePy_ostO8QJra5ZJrbP2WGhTlJ0B_r8gCLcB/s1600/schematic-from-hell.png" imageanchor="1" target="_blank"><img height="334" src="https://1.bp.blogspot.com/-k3naUT3uXao/Vy7WFac246I/AAAAAAAAAw8/mePy_ostO8QJra5ZJrbP2WGhTlJ0B_r8gCLcB/s640/schematic-from-hell.png" width="640"/></a>
</td>
</tr>
<tr>
<td>Schematic from hell!</td>
</tr>
</tbody>
</table>
<p>
As if this wasn't enough of a problem, the largest GreenPak4 device (the SLG46620V) is split into two halves with limited routing between them, and the GUI doesn't help the user manage this complexity at all - you have to draw your schematic in two halves and add "cross connections" between them.<br>
<br> The icing on the cake is that schematics are a pain to diff and collaborate on. Although GreenPak schematics are XML based, which is a touch better than binary, who wants to read a giant XML diff and try to figure out what's going on in the circuit?<br>
<br> This isn't going to be a post on the quirks of Silego's software, though - that would be boring. As it turns out, there's one more exciting feature of these chips that I didn't mention earlier: the configuration bitstream is 100% documented in the device datasheet! This is unheard of in the programmable logic world. As Nick of Arachnid Labs <a href="http://www.arachnidlabs.com/blog/2015/03/30/greenpak/" target="_blank">says</a>, the chip is "just dying for someone to write a VHDL or Verilog compiler for it". As you can probably guess by from the title of this post, I've been busy doing exactly that.</p>
<h2>
</table><p>
As if this wasn't enough of a problem, the largest GreenPak4 device (the SLG46620V) is split into two halves with limited routing between them, and the GUI doesn't help the user manage this complexity at all - you have to draw your schematic in two halves and add "cross connections" between them.<br/>
<br/> The icing on the cake is that schematics are a pain to diff and collaborate on. Although GreenPak schematics are XML based, which is a touch better than binary, who wants to read a giant XML diff and try to figure out what's going on in the circuit?<br/>
<br/> This isn't going to be a post on the quirks of Silego's software, though - that would be boring. As it turns out, there's one more exciting feature of these chips that I didn't mention earlier: the configuration bitstream is 100% documented in the device datasheet! This is unheard of in the programmable logic world. As Nick of Arachnid Labs <a href="http://www.arachnidlabs.com/blog/2015/03/30/greenpak/" target="_blank">says</a>, the chip is "just dying for someone to write a VHDL or Verilog compiler for it". As you can probably guess by from the title of this post, I've been busy doing exactly that.</p><h2>
Great! How does it work?</h2>
<br><p> Rather than wasting time writing a synthesizer, I decided to write a GreenPak technology library for Clifford Wolf's excellent open source synthesis tool, <a href="http://www.clifford.at/yosys/" target="_blank">Yosys</a>, and then make a place-and-route tool to turn that into a final netlist. The post-PAR netlist can then be loaded into GreenPak Designer in order to program the device.<br>
<br> The first step of the process is to run the "synth_greenpak4" Yosys flow on the Verilog source. This runs a generic RTL synthesis pass, then some coarse-grained extraction passes to infer shift register and counter cells from behavioral logic, and finally maps the remaining logic to LUT/FF cells and outputs a JSON-formatted netlist.<br>
<br> Once the design has been synthesized, my tool (named, surprisingly, gp4par) is then launched on the netlist. It begins by parsing the JSON and constructing a directed graph of cell objects in memory. A second graph, containing all of the primitives in the device and the legal connections between them, is then created based on the device specified on the command line. (As of now only the SLG46620V is supported; the SLG46621V can be added fairly easily but the SLG46140V has a slightly different microarchitecture which will require a bit more work to support.)<br>
<br> After the graphs are generated, each node in the netlist graph is assigned a numeric label identifying the type of cell and each node in the device graph is assigned a list of legal labels: for example, an I/O buffer site is legal for an input buffer, output buffer, or bidirectional buffer.</p>
<table>
<br/><p> Rather than wasting time writing a synthesizer, I decided to write a GreenPak technology library for Clifford Wolf's excellent open source synthesis tool, <a href="http://www.clifford.at/yosys/" target="_blank">Yosys</a>, and then make a place-and-route tool to turn that into a final netlist. The post-PAR netlist can then be loaded into GreenPak Designer in order to program the device.<br/>
<br/> The first step of the process is to run the "synth_greenpak4" Yosys flow on the Verilog source. This runs a generic RTL synthesis pass, then some coarse-grained extraction passes to infer shift register and counter cells from behavioral logic, and finally maps the remaining logic to LUT/FF cells and outputs a JSON-formatted netlist.<br/>
<br/> Once the design has been synthesized, my tool (named, surprisingly, gp4par) is then launched on the netlist. It begins by parsing the JSON and constructing a directed graph of cell objects in memory. A second graph, containing all of the primitives in the device and the legal connections between them, is then created based on the device specified on the command line. (As of now only the SLG46620V is supported; the SLG46621V can be added fairly easily but the SLG46140V has a slightly different microarchitecture which will require a bit more work to support.)<br/>
<br/> After the graphs are generated, each node in the netlist graph is assigned a numeric label identifying the type of cell and each node in the device graph is assigned a list of legal labels: for example, an I/O buffer site is legal for an input buffer, output buffer, or bidirectional buffer.</p><table>
<tbody>
<tr>
<td>
<a href="https://2.bp.blogspot.com/-kIekczO693g/Vy7dBqYifXI/AAAAAAAAAxc/hMNJBs5bedIQOrBzzkhq4gbmhR-n58EQwCLcB/s1600/graph-labels.png" imageanchor="1" target="_blank"><img height="141" src="https://2.bp.blogspot.com/-kIekczO693g/Vy7dBqYifXI/AAAAAAAAAxc/hMNJBs5bedIQOrBzzkhq4gbmhR-n58EQwCLcB/s400/graph-labels.png" width="400"></a>
<a href="https://2.bp.blogspot.com/-kIekczO693g/Vy7dBqYifXI/AAAAAAAAAxc/hMNJBs5bedIQOrBzzkhq4gbmhR-n58EQwCLcB/s1600/graph-labels.png" imageanchor="1" target="_blank"><img height="141" src="https://2.bp.blogspot.com/-kIekczO693g/Vy7dBqYifXI/AAAAAAAAAxc/hMNJBs5bedIQOrBzzkhq4gbmhR-n58EQwCLcB/s400/graph-labels.png" width="400"/></a>
</td>
</tr>
<tr>
<td>Example labeling for a subset of the netlist and device graphs</td>
</tr>
</tbody>
</table>
<p>
The labeled nodes now need to be placed. The initial placement uses a simple greedy algorithm to create a valid (although not necessarily optimal or even routable) placement:</p>
<ol>
</table><p>
The labeled nodes now need to be placed. The initial placement uses a simple greedy algorithm to create a valid (although not necessarily optimal or even routable) placement:</p><ol>
<li>Loop over the cells in the netlist. If any cell has a LOC constraint, which locks the cell to a specific physical site, attempt to assign the node to the specified site. If the specified node is the wrong type, doesn't exist, or is already used by another constrained node, the constraint is invalid so fail with an error.</li>
<li>Loop over all of the unconstrained cells in the netlist and assign them to the first unused site with the right label. If none are available, the design is too big for the device so fail with an error.</li>
</ol>
<p>
Once the design is placed, the placement optimizer then loops over the design and attempts to improve it. A simulated annealing algorithm is used, where changes to the design are accepted unconditionally if they make the placement better, and with a random, gradually decreasing probability if they make it worse. The optimizer terminates when the design receives a perfect score (indicating an optimal placement) or if it stops making progress for several iterations. Each iteration does the following:</p>
<ol>
</ol><p>
Once the design is placed, the placement optimizer then loops over the design and attempts to improve it. A simulated annealing algorithm is used, where changes to the design are accepted unconditionally if they make the placement better, and with a random, gradually decreasing probability if they make it worse. The optimizer terminates when the design receives a perfect score (indicating an optimal placement) or if it stops making progress for several iterations. Each iteration does the following:</p><ol>
<li>Compute a score for the current design based on the number of unroutable nets, the amount of routing congestion (number of nets crossing between halves of the device), and static timing analysis (not yet implemented, always zero).</li>
<li>Make a list of nodes that contributed to this score in some way (having some attached nets unroutable, crossing to the other half of the device, or failing timing).</li>
<li>Remove nodes from the list that are LOC'd to a specific location since we're not allowed to move them.</li>
@ -82,52 +70,40 @@
<li>Pick one of the candidates at random and move the pivot to that location. If another cell in the netlist is already there, put it in the vacant site left by the pivot.</li>
<li>Re-compute the score for the design. If it's better, accept this change and start the next iteration.</li>
<li>If the score is worse, accept it with a random probability which decreases as the iteration number goes up. If the change is not accepted, restore the previous placement.</li>
</ol>
<p>
After optimization, the design is checked for routability. If any edges in the netlist graph don't correspond to edges in the device graph, the user probably asked for something impossible (for example, trying to hook a flipflop's output to a comparator's reference voltage input) so fail with an error.<br>
<br> The design is then routed. This is quite simple due to the crossbar structure of the device. For each edge in the netlist:</p>
<ol>
</ol><p>
After optimization, the design is checked for routability. If any edges in the netlist graph don't correspond to edges in the device graph, the user probably asked for something impossible (for example, trying to hook a flipflop's output to a comparator's reference voltage input) so fail with an error.<br/>
<br/> The design is then routed. This is quite simple due to the crossbar structure of the device. For each edge in the netlist:</p><ol>
<li>If dedicated (non-fabric) routing is used for this path, configure the destination's input mux appropriately and stop.</li>
<li>If the source and destination are in the same half of the device, configure the destination's input mux appropriately and stop.</li>
<li>A cross-connection must be used. Check if we already used one to bring the source signal to the other half of the device. If found, configure the destination to route from that cross-connection and stop.</li>
<li>Check if we have any cross-connections left going in this direction. If they're all used, the design is unroutable due to congestion so fail with an error.</li>
<li>Pick the next unused cross-connection and configure it to route from the source. Configure the destination to route from the cross-connection and stop.</li>
</ol>
<p>
Once routing is finished, run a series of post-PAR design rule checks. These currently include the following:</p>
<ul>
</ol><p>
Once routing is finished, run a series of post-PAR design rule checks. These currently include the following:</p><ul>
<li>If any node has no loads, generate a warning</li>
<li>If an I/O buffer is connected to analog hard IP, fail with an error if it's not configured in analog mode.</li>
<li>Some signals (such as comparator inputs and oscillator power-down controls) are generated by a shared mux and fed to many loads. If different loads require conflicting settings for the shared mux, fail with an error.</li>
</ul>
<p>
If DRC passes with no errors, configure all of the individual cells in the netlist based on the HDL parameters. Fail with an error if an invalid configuration was requested.<br>
<br> Finally, generate the bitstream from all of the per-cell configuration and write it to a file.</p>
<h2>
Great, let's get started!</h2>
<p>
If you don't already have one, you'll need to buy a <a href="http://www.silego.com/buy/index.php?main_page=product_info&amp;products_id=388" target="_blank">GreenPak4 development kit</a>. The kit includes samples of the SLG46620V (among other devices) and a programmer/emulation board. While you're waiting for it to arrive, install <a href="http://www.silego.com/softdoc/software.html" target="_blank">GreenPak Designer</a>.<br>
<br> Download and install Yosys. Although Clifford is pretty good at merging my pull requests, only <a href="https://github.com/azonenberg/yosys/" target="_blank">my fork on Github</a> is guaranteed to have the most up-to-date support for GreenPak devices so don't be surprised if you can't use a bleeding-edge feature with mainline Yosys.<br>
<br> Download and install gp4par. You can get it from <a href="https://github.com/azonenberg/openfpga/" target="_blank">the Github repository</a>.<br>
<br> Write your HDL, compile with Yosys, P&amp;R with gp4par, and import the bitstream into GreenPak Designer to program the target device. The most current gp4par manual is included in LaTeX source form in the source tree and is automatically built as part of the compile process. If you're just browsing, there's a <a href="http://thanatos.virtual.antikernel.net/unlisted/gp4-hdl.pdf" target="_blank">relatively recent PDF version</a> on my web server.<br>
<br> If you'd like to see the Verilog that produced the nightmare of a schematic I showed above, <a href="https://github.com/azonenberg/openfpga/blob/master/tests/greenpak4/Blinky/Blinky.v" target="_blank">here it is</a>.<br>
<br> Be advised that this project is still very much a work in progress and there are still a number of SLG46620V features I don't support (see the manual for exact details).</p>
<h2>
I love it / it segfaulted / there's a problem in the manual!</h2>
<p>
Hop in our IRC channel (##openfpga on Freenode) and let me know. Feedback is great, pull requests are even better,</p>
<h2>
You're competing with Silego's IDE. Have they found out and sued you yet?</h2>
<p>
Nope. They're fully aware of what I'm doing and are rolling out the red carpet for me. They love the idea of a HDL flow as an alternative to schematic entry and are pretty amazed at how fast it's coming together.<br>
<br> After I reported a few bugs in their datasheets they decided to skip the middleman and give me direct access to the engineer who writes their documentation so that I can get faster responses. The last time I found a problem (two different parts of the datasheet contradicted each other) an updated datasheet was in my inbox and on their website by the next day. I only wish Xilinx gave me that kind of treatment!<br>
<br> They've even <a href="https://twitter.com/SilegoTech/status/717018987771469824" target="_blank">offered me free hardware</a> to help me add support for their latest product family, although I plan to get GreenPak4 support to a more stable state before taking them up on the offer.</p>
<h2>
</ul><p>
If DRC passes with no errors, configure all of the individual cells in the netlist based on the HDL parameters. Fail with an error if an invalid configuration was requested.<br/>
<br/> Finally, generate the bitstream from all of the per-cell configuration and write it to a file.</p><h2>
Great, let's get started!</h2><p>
If you don't already have one, you'll need to buy a <a href="http://www.silego.com/buy/index.php?main_page=product_info&amp;products_id=388" target="_blank">GreenPak4 development kit</a>. The kit includes samples of the SLG46620V (among other devices) and a programmer/emulation board. While you're waiting for it to arrive, install <a href="http://www.silego.com/softdoc/software.html" target="_blank">GreenPak Designer</a>.<br/>
<br/> Download and install Yosys. Although Clifford is pretty good at merging my pull requests, only <a href="https://github.com/azonenberg/yosys/" target="_blank">my fork on Github</a> is guaranteed to have the most up-to-date support for GreenPak devices so don't be surprised if you can't use a bleeding-edge feature with mainline Yosys.<br/>
<br/> Download and install gp4par. You can get it from <a href="https://github.com/azonenberg/openfpga/" target="_blank">the Github repository</a>.<br/>
<br/> Write your HDL, compile with Yosys, P&amp;R with gp4par, and import the bitstream into GreenPak Designer to program the target device. The most current gp4par manual is included in LaTeX source form in the source tree and is automatically built as part of the compile process. If you're just browsing, there's a <a href="http://thanatos.virtual.antikernel.net/unlisted/gp4-hdl.pdf" target="_blank">relatively recent PDF version</a> on my web server.<br/>
<br/> If you'd like to see the Verilog that produced the nightmare of a schematic I showed above, <a href="https://github.com/azonenberg/openfpga/blob/master/tests/greenpak4/Blinky/Blinky.v" target="_blank">here it is</a>.<br/>
<br/> Be advised that this project is still very much a work in progress and there are still a number of SLG46620V features I don't support (see the manual for exact details).</p><h2>
I love it / it segfaulted / there's a problem in the manual!</h2><p>
Hop in our IRC channel (##openfpga on Freenode) and let me know. Feedback is great, pull requests are even better,</p><h2>
You're competing with Silego's IDE. Have they found out and sued you yet?</h2><p>
Nope. They're fully aware of what I'm doing and are rolling out the red carpet for me. They love the idea of a HDL flow as an alternative to schematic entry and are pretty amazed at how fast it's coming together.<br/>
<br/> After I reported a few bugs in their datasheets they decided to skip the middleman and give me direct access to the engineer who writes their documentation so that I can get faster responses. The last time I found a problem (two different parts of the datasheet contradicted each other) an updated datasheet was in my inbox and on their website by the next day. I only wish Xilinx gave me that kind of treatment!<br/>
<br/> They've even <a href="https://twitter.com/SilegoTech/status/717018987771469824" target="_blank">offered me free hardware</a> to help me add support for their latest product family, although I plan to get GreenPak4 support to a more stable state before taking them up on the offer.</p><h2>
So what's next?</h2>
<br><p> Better testing, for starters. I have to verify functionality by hand with a DMM and oscilloscope, which is time consuming.<br>
<br> My contact at Silego says they're going to be giving me documentation on the SRAM emulation interface soon, so I'm going to make a hardware-in-loop test platform that connects to my desktop and the Silego ZIF socket, and lets me load new bitstreams via a scriptable interface. It'll have FPGA-based digital I/O as well as an ADC and DAC on every device pin, plus an adjustable voltage regulator for power, so I can feed in arbitrary mixed-signal test waveforms and write PC-based unit tests to verify correct behavior.<br>
<br> Other than that, I want to finish support for the SLG46620V in the next month or two. The SLG46621V will be an easy addition since only one pin and the relevant configuration bits have changed from the 46620 (I suspect they're the same die, just bonded out differently).<br>
<br> Once that's done I'll have to do some more extensive work to add the SLG46140V since the architecture is a bit different (a lot of the combinatorial logic is merged into multi-function blocks). Luckily, the 46140 has a lot in common architecturally with the GreenPak5 family, so once that's done GreenPak5 will probably be a lot easier to add support for.<br>
<br> My thanks go out to Clifford Wolf, whitequark, the IRC users in ##openfpga, and everyone at Silego I've worked with to help make this possible. I hope that one day this project will become mature enough that Silego will ship it as an officially supported extension to GreenPak Designer, making history by becoming the first modern programmable logic vendor to ship a fully open source synthesis and P&amp;R suite.
<br/><p> Better testing, for starters. I have to verify functionality by hand with a DMM and oscilloscope, which is time consuming.<br/>
<br/> My contact at Silego says they're going to be giving me documentation on the SRAM emulation interface soon, so I'm going to make a hardware-in-loop test platform that connects to my desktop and the Silego ZIF socket, and lets me load new bitstreams via a scriptable interface. It'll have FPGA-based digital I/O as well as an ADC and DAC on every device pin, plus an adjustable voltage regulator for power, so I can feed in arbitrary mixed-signal test waveforms and write PC-based unit tests to verify correct behavior.<br/>
<br/> Other than that, I want to finish support for the SLG46620V in the next month or two. The SLG46621V will be an easy addition since only one pin and the relevant configuration bits have changed from the 46620 (I suspect they're the same die, just bonded out differently).<br/>
<br/> Once that's done I'll have to do some more extensive work to add the SLG46140V since the architecture is a bit different (a lot of the combinatorial logic is merged into multi-function blocks). Luckily, the 46140 has a lot in common architecturally with the GreenPak5 family, so once that's done GreenPak5 will probably be a lot easier to add support for.<br/>
<br/> My thanks go out to Clifford Wolf, whitequark, the IRC users in ##openfpga, and everyone at Silego I've worked with to help make this possible. I hope that one day this project will become mature enough that Silego will ship it as an officially supported extension to GreenPak Designer, making history by becoming the first modern programmable logic vendor to ship a fully open source synthesis and P&amp;R suite.
</p>
</div></article>
</div></article>

View file

@ -1,18 +1,14 @@
<article><DIV id="readability-page-1">
<DIV>
<article><DIV id="readability-page-1"><DIV>
<figure>
<div>
<p><img itemprop="image" src="http://media.breitbart.com/media/2016/11/GettyImages-621866810-640x480.jpg" alt="Supporters of Republican presidential nominee Donald Trump cheer during election night at the New York Hilton Midtown in New York on November 9, 2016. / AFP / JIM WATSON (Photo credit should read JIM WATSON/AFP/Getty Images)" width="640" height="480"></p>
<p>JIM WATSON/AFP/Getty Images</p>
<div><p><img itemprop="image" src="http://media.breitbart.com/media/2016/11/GettyImages-621866810-640x480.jpg" alt="Supporters of Republican presidential nominee Donald Trump cheer during election night at the New York Hilton Midtown in New York on November 9, 2016. / AFP / JIM WATSON (Photo credit should read JIM WATSON/AFP/Getty Images)" width="640" height="480"/></p><p>JIM WATSON/AFP/Getty Images</p>
</div>
</figure>
<time datetime="2016-12-22T10:43:37Z">22 Dec, 2016</time>
<time datetime="2016-12-22T18:59:12Z">22 Dec, 2016</time>
</DIV>
<div>
</DIV><div>
<div id="EmailOptin">
@ -48,5 +44,4 @@
</div>
</DIV></article>
</div></DIV></article>

View file

@ -9,12 +9,12 @@
<p>Here are some of the secrets that the receptionist will never tell you when you check in, according to answers posted on <a href="https://www.quora.com/What-are-the-things-we-dont-know-about-hotel-rooms" target="_blank">Quora</a>.</p>
<h3> </h3>
<div>
<div>
<p><img src="https://static.independent.co.uk/s3fs-public/styles/story_medium/public/thumbnails/image/2014/03/18/10/bandb2.jpg" alt="bandb2.jpg" title="bandb2.jpg" width="564" height="423"></p>
<p><img src="https://static.independent.co.uk/s3fs-public/styles/story_medium/public/thumbnails/image/2014/03/18/10/bandb2.jpg" alt="bandb2.jpg" title="bandb2.jpg" width="564" height="423"/></p>
</div>
<p>Even posh hotels might not wash a blanket in between stays
@ -31,12 +31,12 @@
<p>Video shows bed bug infestation at New York hotel</p>
</div>
<h3> </h3>
<div>
<div>
<p><img src="https://static.independent.co.uk/s3fs-public/styles/story_medium/public/thumbnails/image/2015/05/26/11/hotel-door-getty.jpg" alt="hotel-door-getty.jpg" title="hotel-door-getty.jpg" width="564" height="423"></p>
<p><img src="https://static.independent.co.uk/s3fs-public/styles/story_medium/public/thumbnails/image/2015/05/26/11/hotel-door-getty.jpg" alt="hotel-door-getty.jpg" title="hotel-door-getty.jpg" width="564" height="423"/></p>
</div>
<p>Forrest Jones advised stuffing the peep hole with a strip of rolled up notepaper when not in use.
@ -48,12 +48,12 @@
<p>This is not common, but can happen, Forrest Jones said. He advised stuffing the peep hole with a strip of rolled up notepaper when not in use. When someone knocks on the door, the paper can be removed to check who is there. If no one is visible, he recommends calling the front desk immediately. “I look forward to the day when I can tell you to choose only hotels where every employee who has access to guestroom keys is subjected to a complete public records background check, prior to hire, and every year or two thereafter. But for now, I can't,” he said.</p>
<h3> </h3>
<div>
<div>
<p><img src="https://static.independent.co.uk/s3fs-public/styles/story_medium/public/thumbnails/image/2013/07/31/15/luggage-3.jpg" alt="luggage-3.jpg" title="luggage-3.jpg" width="564" height="423"></p>
<p><img src="https://static.independent.co.uk/s3fs-public/styles/story_medium/public/thumbnails/image/2013/07/31/15/luggage-3.jpg" alt="luggage-3.jpg" title="luggage-3.jpg" width="564" height="423"/></p>
</div>
<p>Put luggage on the floor
@ -65,12 +65,12 @@
<p>Bedbugs love wood. Even though a wooden luggage rack might look nicer and more expensive than a metal one, its a breeding ground for bugs. Forrest Jones says guests should put the items they plan to take from bags on other pieces of furniture and leave the bag on the floor.</p>
<h3> </h3>
<div>
<div>
<p><img src="https://static.independent.co.uk/s3fs-public/styles/story_medium/public/thumbnails/image/2015/04/13/11/Lifestyle-hotels.jpg" alt="Lifestyle-hotels.jpg" title="Lifestyle-hotels.jpg" width="564" height="423"></p>
<p><img src="https://static.independent.co.uk/s3fs-public/styles/story_medium/public/thumbnails/image/2015/04/13/11/Lifestyle-hotels.jpg" alt="Lifestyle-hotels.jpg" title="Lifestyle-hotels.jpg" width="564" height="423"/></p>
</div>
<p>The old rule of thumb is that for every 00 invested in a room, the hotel should charge in average daily rate
@ -88,7 +88,7 @@
<p>It contains the most germs of anything in the room. Other studies have said the TV remote and bedside lamp switches are the most unhygienic. “Perhaps because it's something that's easy for the housekeepers to forget to check or to squirt down with disinfectant,” Forrest Jones said.</p>
<h3> </h3>
@ -96,12 +96,12 @@
<p>Despite the snacks in the minibar seeming like the most overpriced food you have ever seen, hotel owners are still struggling to make a profit from those snacks. "Minibars almost always lose money, even when they charge $10 for a Diet Coke,” Sharon said.</p>
<h3> </h3>
<div>
<div>
<p><img src="https://static.independent.co.uk/s3fs-public/styles/story_medium/public/thumbnails/image/2014/03/13/16/agenda7.jpg" alt="agenda7.jpg" title="agenda7.jpg" width="564" height="423"></p>
<p><img src="https://static.independent.co.uk/s3fs-public/styles/story_medium/public/thumbnails/image/2014/03/13/16/agenda7.jpg" alt="agenda7.jpg" title="agenda7.jpg" width="564" height="423"/></p>
</div>
<p>Towels should always be cleaned between stays
@ -112,7 +112,7 @@
<p>7. Always made sure the hand towels are clean when you arrive</p>
<p>Forrest Jones made a discovery when he was helping out with the housekeepers. “You know where you almost always find a hand towel in any recently-vacated hotel room that was occupied by a guy? On the floor, next to the bed, about halfway down, maybe a little toward the foot of the bed. Same spot in the floor, next to almost every bed occupied by a man, in every room. I'll leave the rest to your imagination,” he said.</p>
<meta itemprop="datePublished" content="2016-05-08T10:11:51+01:00">
<meta itemprop="datePublished" content="2016-05-08T10:11:51+01:00"/>
<ul>
<li>
More about:
@ -121,6 +121,5 @@
<li><a itemprop="keywords" href="http://fakehost/topic/Hygiene" target="_blank">Hygiene</a></li>
</ul>
<p><a href="http://fakehost/syndication/reuse-permision-form?url=http://www.independent.co.uk/news/business/news/seven-secrets-that-hotel-owners-dont-want-you-to-know-10506160.html" target="_blank"><img src="http://fakehost/sites/all/themes/ines_themes/independent_theme/img/reuse.png" width="25">Reuse content</a>
</p>
</div></article>
<p><a href="http://fakehost/syndication/reuse-permision-form?url=http://www.independent.co.uk/news/business/news/seven-secrets-that-hotel-owners-dont-want-you-to-know-10506160.html" target="_blank"><img src="http://fakehost/sites/all/themes/ines_themes/independent_theme/img/reuse.png" width="25"/>Reuse content</a>
</p></div></article>

View file

@ -14,13 +14,13 @@
<div id="superlist_3758406_5547140">
<div>
<div>
<p><img src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608056-15.jpg" rel:bf_image_src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608056-15.jpg" height="412" width="203"></p>
<p><img src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608056-15.jpg" rel:bf_image_src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608056-15.jpg" height="412" width="203"/></p>
</div>
<p>Facebook</p>
</div>
<div>
<div>
<p><img src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608057-18.jpg" rel:bf_image_src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608057-18.jpg" height="412" width="412"></p>
<p><img src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608057-18.jpg" rel:bf_image_src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608057-18.jpg" height="412" width="412"/></p>
</div>
<p>Facebook</p>
</div>
@ -34,8 +34,8 @@
</div>
<div id="superlist_3758406_5547219" rel:buzz_num="5">
<h2>Fiona Parry issued a plea for people to stay away from pills containing the chemical.</h2>
<br>
<br/>
<p>“[Eloise] just never really understood how dangerous the tablets that she took were,” she said. “Most of us dont believe that a slimming tablet could possibly kill us.</p>
<p>“DNP is not a miracle slimming pill. It is a deadly toxin.”</p>
</div>
</div></article>
</div></article>

View file

@ -1,19 +1,19 @@
<article><DIV id="readability-page-1"><article itemscope="itemscope" itemtype="https://schema.org/NewsArticle">
<meta itemprop="datePublished" content="2019-04-30T13:39:00-04:00">
<meta itemprop="dateModified" content="2019-04-30T13:40:00-04:00">
<meta itemprop="mainEntityOfPage" content="https://www.citylab.com/design/2019/04/neon-signage-20th-century-history/588400/">
<meta itemprop="datePublished" content="2019-04-30T13:39:00-04:00"/>
<meta itemprop="dateModified" content="2019-04-30T13:40:00-04:00"/>
<meta itemprop="mainEntityOfPage" content="https://www.citylab.com/design/2019/04/neon-signage-20th-century-history/588400/"/>
<figure itemprop="image" itemscope="itemscope" itemtype="http://schema.org/ImageObject">
<picture>
<source srcset="https://cdn.citylab.com/media/img/citylab/2019/04/mr1/940.jpg?mod=1556645448" media="(min-width: 1024px)"></source>
<source srcset="https://cdn.citylab.com/media/img/citylab/2019/04/mr1/lead_large.jpg?mod=1556645448" media="(min-width: 576px)"></source>
<source srcset="https://cdn.citylab.com/media/img/citylab/2019/04/mr1/940.jpg?mod=1556645448" media="(min-width: 1024px)"/>
<source srcset="https://cdn.citylab.com/media/img/citylab/2019/04/mr1/lead_large.jpg?mod=1556645448" media="(min-width: 576px)"/>
</picture>
<meta itemprop="height" content="128">
<meta itemprop="width" content="300">
<meta itemprop="url" content="https://cdn.citylab.com/media/img/citylab/2019/04/mr1/300.jpg?mod=1556645448">
<meta itemprop="height" content="128"/>
<meta itemprop="width" content="300"/>
<meta itemprop="url" content="https://cdn.citylab.com/media/img/citylab/2019/04/mr1/300.jpg?mod=1556645448"/>
<picture>
<source srcset="https://cdn.citylab.com/media/img/citylab/2019/04/mr1/300.jpg?mod=1556645448" media="(max-width: 575px)"></source>
<img src="https://cdn.citylab.com/media/img/citylab/2019/04/mr1/300.jpg?mod=1556645448" alt="" srcset="https://cdn.citylab.com/media/img/citylab/2019/04/mr1/300.jpg?mod=1556645448">
<source srcset="https://cdn.citylab.com/media/img/citylab/2019/04/mr1/300.jpg?mod=1556645448" media="(max-width: 575px)"/>
<img src="https://cdn.citylab.com/media/img/citylab/2019/04/mr1/300.jpg?mod=1556645448" alt="" srcset="https://cdn.citylab.com/media/img/citylab/2019/04/mr1/300.jpg?mod=1556645448"/>
</picture>
<figcaption>
@ -117,7 +117,7 @@
</p>
<figure>
<picture>
<img alt="" data-srcset="https://cdn.theatlantic.com/assets/media/img/posts/2019/04/AP_8912060228/cbd32b0e1.jpg" src="https://cdn.theatlantic.com/assets/media/img/posts/2019/04/AP_8912060228/cbd32b0e1.jpg">
<img alt="" data-srcset="https://cdn.theatlantic.com/assets/media/img/posts/2019/04/AP_8912060228/cbd32b0e1.jpg" src="https://cdn.theatlantic.com/assets/media/img/posts/2019/04/AP_8912060228/cbd32b0e1.jpg"/>
</picture>
<figcaption>
Workers remove a hammer and sickle from a neon sign that reads “Glory to Communism,”
@ -150,8 +150,7 @@
<section>
<h2>
Cities are changing fast. Keep up with the <b>CityLab Daily</b> newsletter.
</h2>
<label for="promo-email-input-email">The best way to follow issues you
</h2><label for="promo-email-input-email">The best way to follow issues you
care about.</label>
</section>
@ -167,7 +166,7 @@
</p>
<figure>
<picture>
<img alt="" data-srcset="https://cdn.theatlantic.com/assets/media/img/posts/2019/04/AP_945361213236/888fdd750.jpg" src="https://cdn.theatlantic.com/assets/media/img/posts/2019/04/AP_945361213236/888fdd750.jpg">
<img alt="" data-srcset="https://cdn.theatlantic.com/assets/media/img/posts/2019/04/AP_945361213236/888fdd750.jpg" src="https://cdn.theatlantic.com/assets/media/img/posts/2019/04/AP_945361213236/888fdd750.jpg"/>
</picture>
<figcaption>
Martin Wartman, a student at Northern Kentucky University, works on a neon sign at
@ -224,4 +223,4 @@
</p>
</div>
</section>
</article></DIV></article>
</article></DIV></article>

View file

@ -1,12 +1,8 @@
<article><DIV id="readability-page-1">
<h3>Study Webtext</h3>
<h2>
<span face="Lucida Handwriting " color="Maroon
">"Bartleby the Scrivener: A Story of Wall-Street " </span>(1853) <br>
<h2><span face="Lucida Handwriting " color="Maroon&#10; ">"Bartleby the Scrivener: A Story of Wall-Street " </span>(1853) <br/>
Herman Melville</h2>
<h2>
<a href="http://www.vcu.edu/engweb/webtexts/bartleby.html" target="_blank"><img src="http://fakehost/test/base/hmhome.gif" alt="To the story text without notes
" height="38 " width="38 "></a>
<h2><a href="http://www.vcu.edu/engweb/webtexts/bartleby.html" target="_blank"><img src="http://fakehost/test/base/hmhome.gif" alt="To the story text without notes&#10; " height="38 " width="38 "/></a>
</h2>
<h3>Prepared by <a href="http://www.vcu.edu/engweb" target="_blank">Ann
Woodlief,</a> Virginia Commonwealth University</h3>
@ -33,8 +29,7 @@
I make some mention of myself, my employees, my business, my chambers,
and general surroundings; because some such description is indispensable
to an adequate understanding of the chief character about to be presented.
</p>
<p> <i>Imprimis</i>: I am a man who, from his youth upwards, has been
</p><p> <i>Imprimis</i>: I am a man who, from his youth upwards, has been
filled with a profound conviction that the easiest way of life is the best.. Hence, though I belong to a profession
proverbially energetic and nervous, even to turbulence, at times, yet
nothing of that sort have I ever suffered to invade
@ -1387,4 +1382,4 @@
</p>
<p> Ah
Bartleby! Ah humanity!</p>
</DIV></article>
</DIV></article>

File diff suppressed because one or more lines are too long

View file

@ -3,9 +3,7 @@
<figure section="shortcodeImage"><span><span itemprop="image" itemscope="" itemtype="https://schema.org/ImageObject"><img src="https://cnet1.cbsistatic.com/img/nAMdBzIE1ogVw5bOBZBaiJCt3Ro=/570x0/2014/03/21/863df5d9-e8b8-4b38-851b-5e3f77f2cf0e/mark-zuckerberg-facebook-home-10671610x407.jpg" alt="" width="570" height="0"><meta itemprop="url" content="https://cnet1.cbsistatic.com/img/nAMdBzIE1ogVw5bOBZBaiJCt3Ro=/570x0/2014/03/21/863df5d9-e8b8-4b38-851b-5e3f77f2cf0e/mark-zuckerberg-facebook-home-10671610x407.jpg">
<meta itemprop="height" content="0">
<meta itemprop="width" content="570"></span></span>
<figure section="shortcodeImage"><span><span itemprop="image" itemscope="" itemtype="https://schema.org/ImageObject"><img src="https://cnet1.cbsistatic.com/img/nAMdBzIE1ogVw5bOBZBaiJCt3Ro=/570x0/2014/03/21/863df5d9-e8b8-4b38-851b-5e3f77f2cf0e/mark-zuckerberg-facebook-home-10671610x407.jpg" alt="" width="570" height="0"/><meta itemprop="url" content="https://cnet1.cbsistatic.com/img/nAMdBzIE1ogVw5bOBZBaiJCt3Ro=/570x0/2014/03/21/863df5d9-e8b8-4b38-851b-5e3f77f2cf0e/mark-zuckerberg-facebook-home-10671610x407.jpg"/><meta itemprop="height" content="0"/><meta itemprop="width" content="570"/></span></span>
<figcaption><span><p>Facebook CEO Mark Zuckerberg, the man with the acquisition plan.</p></span><span>Photo by James Martin/CNET
</span></figcaption>
</figure>
@ -36,7 +34,7 @@
<p><em><strong>Tech Enabled:</strong> CNET chronicles tech's role in providing new kinds of accessibility. Check it out <a href="https://www.cnet.com/tech-enabled/" target="_blank">here</a>.</em><em><strong><br></strong></em></p>
<p><em><strong>Tech Enabled:</strong> CNET chronicles tech's role in providing new kinds of accessibility. Check it out <a href="https://www.cnet.com/tech-enabled/" target="_blank">here</a>.</em><em><strong><br/></strong></em></p>
<p><em><strong>Technically Literate:</strong> Original works of short fiction with unique perspectives on tech, exclusively on CNET. <a href="https://www.cnet.com/technically-literate/" target="_blank">Here</a>.</em></p>
@ -45,4 +43,4 @@
</div></article>
</div></article>

View file

@ -32,7 +32,7 @@
<p> The report also suggested the U.S. might not be the "jobs machine" it thinks it is, when compared to other countries. </p>
<p> It ranked near the bottom of the pack based on the levels of unemployment among men and women of prime working age. The study determined this by taking the ratio of employed men and women between the ages of 25 and 54 compared to the total population of each country. </p>
<p> The overall rankings of the countries were as follows:<span> <br>1. Finland <span> <br>2. Norway<span> <br>3. Australia <span> <br>4. Canada<span> <br>5. Germany<span> <br>6. France<span> <br>7. United Kingdom <span> <br>8. Italy<span> <br>9. Spain<span> <br>10. United States </span></span>
<p> The overall rankings of the countries were as follows:<span> <br/>1. Finland <span> <br/>2. Norway<span> <br/>3. Australia <span> <br/>4. Canada<span> <br/>5. Germany<span> <br/>6. France<span> <br/>7. United Kingdom <span> <br/>8. Italy<span> <br/>9. Spain<span> <br/>10. United States </span></span>
</span>
</span>
</span>
@ -48,4 +48,4 @@
<p><span> CNNMoney (New York) </span> <span>First published February 1, 2016: 1:28 AM ET</span> </p>
</div></article>
</div></article>

View file

@ -1,5 +1,4 @@
<article><DIV id="readability-page-1">
<div>
<article><DIV id="readability-page-1"><div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.</p>
<p>Ut enim ad minim veniam,
@ -8,8 +7,7 @@
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
<div>
</div><div>
<p>Tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat.</p>
@ -17,5 +15,4 @@
cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</DIV></article>
</div></DIV></article>

View file

@ -2,8 +2,8 @@
<h2>About This Site</h2>
<p>Daring Fireball is written and produced by John Gruber.</p>
<p>
<a href="http://fakehost/graphics/author/addison-bw.jpg" target="_blank"> <img src="http://fakehost/graphics/author/addison-bw-425.jpg" alt="Photograph of the author."></a>
<br><em>Portrait by <a href="http://superbiate.com/inquiries/" target="_blank">George Del Barrio</a></em> </p>
<a href="http://fakehost/graphics/author/addison-bw.jpg" target="_blank"> <img src="http://fakehost/graphics/author/addison-bw-425.jpg" alt="Photograph of the author."/></a>
<br/><em>Portrait by <a href="http://superbiate.com/inquiries/" target="_blank">George Del Barrio</a></em> </p>
<h2>Mac Apps</h2>
<ul>
<li><a href="http://www.barebones.com/products/bbedit/" target="_blank">BBEdit</a></li>
@ -27,4 +27,4 @@
<h2>Web Standards</h2>
<p>Web standards are important, and Daring Fireball adheres to them. Specifically, Daring Fireballs HTML markup should validate as either <a href="http://www.whatwg.org/specs/web-apps/current-work/" target="_blank">HTML 5</a> or XHTML 4.01 Transitional, its layout is constructed using <a href="http://jigsaw.w3.org/css-validator/validator?uri=http://daringfireball.net/css/fireball_screen.css" target="_blank">valid CSS</a>, and its syndicated feed is <a href="http://feedvalidator.org/check?url=http%3A%2F%2Fdaringfireball.net%2Findex.xml" target="_blank">valid Atom</a>.</p>
<p>If Daring Fireball looks goofy in your browser, youre likely using a shitty browser that doesnt support web standards. Internet Explorer, Im looking in your direction. If you complain about this, I will laugh at you, because I do not care. If, however, you are using a modern, standards-compliant browser and have trouble viewing or reading Daring Fireball, please do let me know.</p>
</div></article>
</div></article>

File diff suppressed because one or more lines are too long

View file

@ -3,22 +3,22 @@
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<hr>
<hr/>
<h2>
Single &lt;img&gt;
</h2>
<p>
<img src="http://fakehost/test/base/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image">
<img src="http://fakehost/test/base/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image"/>
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<hr>
<hr/>
<h2>
Single &lt;figure&gt;
</h2>
<figure>
<img src="http://fakehost/test/base/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image">
<img src="http://fakehost/test/base/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image"/>
<figcaption>
Caption of the figure
</figcaption>
@ -26,32 +26,32 @@
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<hr>
<hr/>
<h2>
&lt;ul&gt; List of &lt;img&gt;
</h2>
<ul>
<li>
<img src="http://fakehost/test/base/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image">
<img src="http://fakehost/test/base/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image"/>
</li>
<li>
<img src="http://fakehost/test/base/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image">
<img src="http://fakehost/test/base/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image"/>
</li>
<li>
<img src="http://fakehost/test/base/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image">
<img src="http://fakehost/test/base/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image"/>
</li>
</ul>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<hr>
<hr/>
<h2>
&lt;ul&gt; List of &lt;figure&gt;
</h2>
<ul>
<li>
<figure>
<img src="http://fakehost/test/base/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image">
<img src="http://fakehost/test/base/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image"/>
<figcaption>
Caption of the figure
</figcaption>
@ -59,7 +59,7 @@
</li>
<li>
<figure>
<img src="http://fakehost/test/base/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image">
<img src="http://fakehost/test/base/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image"/>
<figcaption>
Caption of the figure
</figcaption>
@ -67,7 +67,7 @@
</li>
<li>
<figure>
<img src="http://fakehost/test/base/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image">
<img src="http://fakehost/test/base/florian-giorgio-P1U7-ZgKeOM-unsplash.jpg" alt="An image"/>
<figcaption>
Caption of the figure
</figcaption>
@ -77,4 +77,4 @@
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
</DIV></article>
</DIV></article>

View file

@ -64,19 +64,19 @@
</div>
<div>
<p>
<b>Task scheduling</b><br>
<b>Task scheduling</b><br/>
Clients can schedule tasks to execute at a specified time. Tasks can be scheduled for immediate execution, or delayed to fit the use case.
</p>
<p>
<b>Priority based execution</b><br>
<b>Priority based execution</b><br/>
Tasks should be associated with a priority. Tasks with higher priority should get executed before tasks with a lower priority once they are ready for execution.
</p>
<p>
<b>Task gating</b><br>
<b>Task gating</b><br/>
ATF enables the the gating of tasks based on lambda, or a subset of tasks on a lambda based on collection. Tasks can be gated to be completely dropped or paused until a suitable time for execution.
</p>
<p>
<b>Track task status</b><br>
<b>Track task status</b><br/>
Clients can query the status of a scheduled task.
</p>
</div>
@ -89,19 +89,19 @@
</div>
<div>
<p>
<b>At-least once task execution<br></b> The ATF system guarantees that a task is executed at least once after being scheduled. Execution is said to be complete once the user-defined callback signals task completion to the ATF system.
<b>At-least once task execution<br/></b> The ATF system guarantees that a task is executed at least once after being scheduled. Execution is said to be complete once the user-defined callback signals task completion to the ATF system.
</p>
<p>
<b>No concurrent task execution<br></b> The ATF system guarantees that at most one instance of a task will be actively executing at any given in point. This helps users write their callbacks without designing for concurrent execution of the same task from different locations.
<b>No concurrent task execution<br/></b> The ATF system guarantees that at most one instance of a task will be actively executing at any given in point. This helps users write their callbacks without designing for concurrent execution of the same task from different locations.
</p>
<p>
<b>Isolation<br></b> Tasks in a given lambda are isolated from the tasks in other lambdas. This isolation spans across several dimensions, including worker capacity for task execution and resource use for task scheduling. Tasks on the same lambda but different priority levels are also isolated in their resource use for task scheduling.
<b>Isolation<br/></b> Tasks in a given lambda are isolated from the tasks in other lambdas. This isolation spans across several dimensions, including worker capacity for task execution and resource use for task scheduling. Tasks on the same lambda but different priority levels are also isolated in their resource use for task scheduling.
</p>
<p>
<b>Delivery latency<br></b> 95% of tasks begin execution within five seconds from their scheduled execution time.
<b>Delivery latency<br/></b> 95% of tasks begin execution within five seconds from their scheduled execution time.
</p>
<p>
<b>High availability for task scheduling<br></b> The ATF service is 99.9% available to accept task scheduling requests from any client.
<b>High availability for task scheduling<br/></b> The ATF service is 99.9% available to accept task scheduling requests from any client.
</p>
</div>
<div>
@ -116,15 +116,15 @@
Following are some restrictions we place on the callback logic (lambda):
</p>
<p>
<b>Idempotence</b><br>
<b>Idempotence</b><br/>
A single task on a lambda can be executed multiple times within the ATF system. Developers should ensure that their lambda logic and correctness of task execution in clients are not affected by this.
</p>
<p>
<b>Resiliency</b><br>
<b>Resiliency</b><br/>
Worker processes which execute tasks might die at any point during task execution. ATF retries abruptly interrupted tasks, which could also be retried on different hosts. Lambda owners must design their lambdas such that retries on different hosts do not affect lambda correctness.
</p>
<p>
<b>Terminal state handling<br></b> ATF retries tasks until they are signaled to be complete from the lambda logic. Client code can mark a task as successfully completed, fatally terminated, or retriable. It is critical that lambda owners design clients to signal task completion appropriately to avoid misbehavior such as infinite retries. 
<b>Terminal state handling<br/></b> ATF retries tasks until they are signaled to be complete from the lambda logic. Client code can mark a task as successfully completed, fatally terminated, or retriable. It is critical that lambda owners design clients to signal task completion appropriately to avoid misbehavior such as infinite retries. 
</p>
</div>
<div>
@ -136,7 +136,7 @@
</div>
<div>
<figure>
<img src="http://fakehost/cms/content/dam/dropbox/tech-blog/en-us/2020/11/atf/diagrams/Techblog-ATF-720x844px-1.png" aria-hidden="false" alt="Async Task Framework (ATF) [Fig 1]" height="1688" width="1440">
<img src="http://fakehost/cms/content/dam/dropbox/tech-blog/en-us/2020/11/atf/diagrams/Techblog-ATF-720x844px-1.png" aria-hidden="false" alt="Async Task Framework (ATF) [Fig 1]" height="1688" width="1440"/>
<figcaption>
Async Task Framework (ATF) [Fig 1]
</figcaption>
@ -162,18 +162,18 @@
</li>
<li>Executor
</li>
<li>Heartbeat and Status Controller (HSC)<span><br></span>
<li>Heartbeat and Status Controller (HSC)<span><br/></span>
</li>
</ul>
<p>
<span><b>Frontend</b><br>
This is the service that schedules requests via an RPC interface. The frontend accepts RPC requests from clients and schedules tasks by interacting with ATFs task store described below.</span><br>
<span><b>Frontend</b><br/>
This is the service that schedules requests via an RPC interface. The frontend accepts RPC requests from clients and schedules tasks by interacting with ATFs task store described below.</span><br/>
</p>
<p>
<b>Task Store<br></b> ATF tasks are stored in and triggered from the task store. The task store could be any generic data store with indexed querying capability. In ATFs case, We use our in-house metadata store Edgestore to power the task store. More details can be found in the <a href="https://paper.dropbox.com/doc/How-we-designed-Dropboxs-ATF-an-async-task-framework--A~wmq5aW48OkHns4LzkM~o6zAg-cf95JuxevqilF2iWWATj6#:uid=395988446153757833740421&amp;h2=Data-model" target="_blank">D</a><a href="https://paper.dropbox.com/doc/How-we-designed-Dropboxs-ATF-an-async-task-framework--A~wmq5aW48OkHns4LzkM~o6zAg-cf95JuxevqilF2iWWATj6#:uid=395988446153757833740421&amp;h2=Data-model" target="_blank">ata</a> <a href="https://paper.dropbox.com/doc/How-we-designed-Dropboxs-ATF-an-async-task-framework--A~wmq5aW48OkHns4LzkM~o6zAg-cf95JuxevqilF2iWWATj6#:uid=395988446153757833740421&amp;h2=Data-model" target="_blank">M</a><a href="https://paper.dropbox.com/doc/How-we-designed-Dropboxs-ATF-an-async-task-framework--A~wmq5aW48OkHns4LzkM~o6zAg-cf95JuxevqilF2iWWATj6#:uid=395988446153757833740421&amp;h2=Data-model" target="_blank">odel</a> section below.
<b>Task Store<br/></b> ATF tasks are stored in and triggered from the task store. The task store could be any generic data store with indexed querying capability. In ATFs case, We use our in-house metadata store Edgestore to power the task store. More details can be found in the <a href="https://paper.dropbox.com/doc/How-we-designed-Dropboxs-ATF-an-async-task-framework--A~wmq5aW48OkHns4LzkM~o6zAg-cf95JuxevqilF2iWWATj6#:uid=395988446153757833740421&amp;h2=Data-model" target="_blank">D</a><a href="https://paper.dropbox.com/doc/How-we-designed-Dropboxs-ATF-an-async-task-framework--A~wmq5aW48OkHns4LzkM~o6zAg-cf95JuxevqilF2iWWATj6#:uid=395988446153757833740421&amp;h2=Data-model" target="_blank">ata</a> <a href="https://paper.dropbox.com/doc/How-we-designed-Dropboxs-ATF-an-async-task-framework--A~wmq5aW48OkHns4LzkM~o6zAg-cf95JuxevqilF2iWWATj6#:uid=395988446153757833740421&amp;h2=Data-model" target="_blank">M</a><a href="https://paper.dropbox.com/doc/How-we-designed-Dropboxs-ATF-an-async-task-framework--A~wmq5aW48OkHns4LzkM~o6zAg-cf95JuxevqilF2iWWATj6#:uid=395988446153757833740421&amp;h2=Data-model" target="_blank">odel</a> section below.
</p>
<p>
<b>Store Consumer<br></b> The Store Consumer is a service that periodically polls the task store to find tasks that are ready for execution and pushes them onto the right queues, as described in the queue section below. These could be tasks that are newly ready for execution, or older tasks that are ready for execution again because they either failed in a retriable way on execution, or were dropped elsewhere within the ATF system. 
<b>Store Consumer<br/></b> The Store Consumer is a service that periodically polls the task store to find tasks that are ready for execution and pushes them onto the right queues, as described in the queue section below. These could be tasks that are newly ready for execution, or older tasks that are ready for execution again because they either failed in a retriable way on execution, or were dropped elsewhere within the ATF system. 
</p>
<p>
Below is a simple walkthrough of the Store Consumers function: 
@ -191,16 +191,16 @@
The Store Consumer polls tasks that failed in earlier execution attempts. This helps with the at-least-once guarantee that the ATF system provides. More details on how the Store Consumer polls new and previously failed tasks is presented in the <a href="https://paper.dropbox.com/doc/How-we-designed-Dropboxs-ATF-an-async-task-framework--A~wmq5aW48OkHns4LzkM~o6zAg-cf95JuxevqilF2iWWATj6#:uid=342792671048375002388848&amp;h2=Lifecycle-of-a-task" target="_blank">Lifecycle of a task</a> section below.
</p>
<p>
<b>Queue<br></b> ATF uses AWS <a href="https://aws.amazon.com/sqs/" target="_blank">Simple Queue Service</a> (SQS) to queue tasks internally. These queues act as a buffer between the Store Consumer and Controllers (described below). Each <span>&lt;lambda, priority&gt;</span>  pair gets a dedicated SQS queue. The total number of SQS queues used by ATF is <span>#lambdas x #priorities</span>.
<b>Queue<br/></b> ATF uses AWS <a href="https://aws.amazon.com/sqs/" target="_blank">Simple Queue Service</a> (SQS) to queue tasks internally. These queues act as a buffer between the Store Consumer and Controllers (described below). Each <span>&lt;lambda, priority&gt;</span>  pair gets a dedicated SQS queue. The total number of SQS queues used by ATF is <span>#lambdas x #priorities</span>.
</p>
<p>
<b>Controller<br></b> Worker hosts are physical hosts dedicated for task execution. Each worker host has one controller process responsible for polling tasks from SQS queues in a background thread, and then pushing them onto process local buffered queues. The Controller is only aware of the lambdas it is serving and thus polls only the limited set of necessary queues. 
<b>Controller<br/></b> Worker hosts are physical hosts dedicated for task execution. Each worker host has one controller process responsible for polling tasks from SQS queues in a background thread, and then pushing them onto process local buffered queues. The Controller is only aware of the lambdas it is serving and thus polls only the limited set of necessary queues. 
</p>
<p>
The Controller serves tasks from its process local queue as a response to <span>NextWork</span> RPCs. This is the layer where execution level task prioritization occurs. The Controller has different process level queues for tasks of different priorities and can thus prioritize tasks in response to <span>NextWork</span> RPCs.
</p>
<p>
<b>Executor<br></b> The Executor is a process with multiple threads, responsible for the actual task execution. Each thread within an Executor process follows this simple loop:
<b>Executor<br/></b> The Executor is a process with multiple threads, responsible for the actual task execution. Each thread within an Executor process follows this simple loop:
</p>
</div>
<div>
@ -214,7 +214,7 @@
Each worker host has a single Controller process and multiple executor processes. Both the Controller and Executors work in a “pull” model, in which active loops continuously long-poll for new work to be done.
</p>
<p>
<b>Heartbeat and Status Controller (HSC)</b><br>
<b>Heartbeat and Status Controller (HSC)</b><br/>
The HSC serves RPCs for claiming a task for execution (<span>ClaimTask</span>), setting task status after execution (<span>SetResults</span>) and heartbeats during task execution (<span>Heartbeat</span>). <span>ClaimTask</span> requests originate from the Controllers in response to <span>NextWork</span> requests. <span>Heartbeat</span> and <span>SetResults</span> requests originate from executor processes during and after task execution. The HSC interacts with the task store to update the task status on the kind of request it receives.
</p>
</div>
@ -413,9 +413,7 @@
N/A
</p>
</td>
<td>
</td>
</tr>
<tr>
<td>
@ -433,9 +431,7 @@
N/A
</p>
</td>
<td>
</td>
</tr>
</tbody>
</table>
@ -443,15 +439,15 @@
The store consumer polls for tasks based on the following query:
</p>
<p>
<span>assoc_status= &amp;&amp; next_timestamp&lt;=time.now()<br></span>
<span>assoc_status= &amp;&amp; next_timestamp&lt;=time.now()<br/></span>
</p>
<p>
Below is the state machine that defines task state transitions: <br>
Below is the state machine that defines task state transitions: <br/>
</p>
</div>
<div>
<figure>
<img src="http://fakehost/cms/content/dam/dropbox/tech-blog/en-us/2020/11/atf/diagrams/Techblog-ATF-720x225px-2.png" aria-hidden="false" alt="Task State Transitions [Fig 2]" height="450" width="1440">
<img src="http://fakehost/cms/content/dam/dropbox/tech-blog/en-us/2020/11/atf/diagrams/Techblog-ATF-720x225px-2.png" aria-hidden="false" alt="Task State Transitions [Fig 2]" height="450" width="1440"/>
</figure>
</div>
<div>
@ -463,22 +459,22 @@
</div>
<div>
<p>
<b>At-least-once task execution<br></b> At-least-once execution is guaranteed in ATF by retrying a task until it completes execution (which is signaled by a <span>Success</span> or a <span>FatalFailure</span> state). All ATF system errors are implicitly considered retriable failures, and lambda owners have an option of marking tasks with a <span>RetriableFailure</span> state. Tasks might be dropped from the ATF execution pipeline in different parts of the system through transient RPC failures and failures on dependencies like Edgestore or SQS. These transient failures at different parts of the system do not affect the at-least-once guarantee, though, because of the system of timeouts and re-polling from Store Consumer.
<b>At-least-once task execution<br/></b> At-least-once execution is guaranteed in ATF by retrying a task until it completes execution (which is signaled by a <span>Success</span> or a <span>FatalFailure</span> state). All ATF system errors are implicitly considered retriable failures, and lambda owners have an option of marking tasks with a <span>RetriableFailure</span> state. Tasks might be dropped from the ATF execution pipeline in different parts of the system through transient RPC failures and failures on dependencies like Edgestore or SQS. These transient failures at different parts of the system do not affect the at-least-once guarantee, though, because of the system of timeouts and re-polling from Store Consumer.
</p>
<p>
<b>No concurrent task execution<br></b> Concurrent task execution is avoided through a combination of two methods in ATF. First, tasks are explicitly claimed through an exclusive task state (<span>Claimed</span>) before starting execution. Once the task execution is complete, the task status is updated to one of <span>Success</span>, <span>FatalFailure</span> or <span>RetriableFailure</span>. A task can be claimed only if its existing task state is <span>Enqueued</span> (retried tasks go to the <span>Enqueued</span> state as well once they are re-pushed onto SQS).
<b>No concurrent task execution<br/></b> Concurrent task execution is avoided through a combination of two methods in ATF. First, tasks are explicitly claimed through an exclusive task state (<span>Claimed</span>) before starting execution. Once the task execution is complete, the task status is updated to one of <span>Success</span>, <span>FatalFailure</span> or <span>RetriableFailure</span>. A task can be claimed only if its existing task state is <span>Enqueued</span> (retried tasks go to the <span>Enqueued</span> state as well once they are re-pushed onto SQS).
</p>
<p>
However, there might be situations where once a long running task starts execution, its heartbeats might fail repeatedly yet the task execution continues. ATF would retry this task by polling it from the store consumer because the heartbeat timeouts wouldve expired. This task can then be claimed by another worker and lead to concurrent execution. <br>
However, there might be situations where once a long running task starts execution, its heartbeats might fail repeatedly yet the task execution continues. ATF would retry this task by polling it from the store consumer because the heartbeat timeouts wouldve expired. This task can then be claimed by another worker and lead to concurrent execution. <br/>
</p>
<p>
To avoid this situation, there is a termination logic in the Executor processes whereby an Executor process terminates itself as soon as three consecutive heartbeat calls fail. Each heartbeat timeout is large enough to eclipse three consecutive heartbeat failures. This ensures that the Store Consumer cannot pull such tasks before the termination logic ends them—the second method that helps achieve this guarantee.
</p>
<p>
<b>Isolation<br></b> Isolation of lambdas is achieved through dedicated worker clusters, dedicated queues, and dedicated per-lambda scheduling quotas. In addition, isolation across different priorities within the same lambda is likewise achieved through dedicated queues and scheduling bandwidth.
<b>Isolation<br/></b> Isolation of lambdas is achieved through dedicated worker clusters, dedicated queues, and dedicated per-lambda scheduling quotas. In addition, isolation across different priorities within the same lambda is likewise achieved through dedicated queues and scheduling bandwidth.
</p>
<p>
<b>Delivery latency<br></b> ATF use cases do not require ultra-low task delivery latencies. Task delivery latencies on the order of a couple of seconds are acceptable. Tasks ready for execution are periodically polled by the Store Consumer and this period of polling largely controls the task delivery latency. Using this as a tuning lever, ATF can achieve different delivery latencies as required. Increasing poll frequency reduces task delivery latency and vice versa. Currently, we have calibrated ATF to poll for ready tasks once every two seconds.
<b>Delivery latency<br/></b> ATF use cases do not require ultra-low task delivery latencies. Task delivery latencies on the order of a couple of seconds are acceptable. Tasks ready for execution are periodically polled by the Store Consumer and this period of polling largely controls the task delivery latency. Using this as a tuning lever, ATF can achieve different delivery latencies as required. Increasing poll frequency reduces task delivery latency and vice versa. Currently, we have calibrated ATF to poll for ready tasks once every two seconds.
</p>
</div>
<div>
@ -503,16 +499,16 @@
As described above, ATF provides an infrastructural building block for scheduling asynchronous tasks. With this foundation established, ATF can be extended to support more generic use cases and provide more features as a framework. Following are some examples of what could be built as an extension to ATF. 
</p>
<p>
<b>Periodic task execution<br></b> Currently, ATF is a system for one-time task scheduling. Building support for periodic task execution as an extension to this framework would be useful in unlocking new capabilities for our clients.
<b>Periodic task execution<br/></b> Currently, ATF is a system for one-time task scheduling. Building support for periodic task execution as an extension to this framework would be useful in unlocking new capabilities for our clients.
</p>
<p>
<b>Better support for task chaining<br></b> Currently, it is possible to chain tasks on ATF by scheduling a task onto ATF that then schedules other tasks onto ATF during its execution. Although it is possible to do this in the current ATF setup, visibility and control on this chaining is absent at the framework level. Another natural extension here would be to better support task chaining through framework-level visibility and control, to make this use case a first class concept in the ATF model.
<b>Better support for task chaining<br/></b> Currently, it is possible to chain tasks on ATF by scheduling a task onto ATF that then schedules other tasks onto ATF during its execution. Although it is possible to do this in the current ATF setup, visibility and control on this chaining is absent at the framework level. Another natural extension here would be to better support task chaining through framework-level visibility and control, to make this use case a first class concept in the ATF model.
</p>
<p>
<b>Dead letter queues for misbehaving tasks<br></b> One common source of maintenance overhead we observe on ATF is that some tasks get stuck in infinite retry loops due to occasional bugs in lambda logic. This requires manual intervention from the ATF framework owners in some cases where there are a large number of tasks stuck in such loops, occupying a lot of the scheduling bandwidth in the system. Typical manual actions in response to such a situation include pausing execution of the lambdas with misbehaving tasks, or dropping them outright.
<b>Dead letter queues for misbehaving tasks<br/></b> One common source of maintenance overhead we observe on ATF is that some tasks get stuck in infinite retry loops due to occasional bugs in lambda logic. This requires manual intervention from the ATF framework owners in some cases where there are a large number of tasks stuck in such loops, occupying a lot of the scheduling bandwidth in the system. Typical manual actions in response to such a situation include pausing execution of the lambdas with misbehaving tasks, or dropping them outright.
</p>
<p>
One way to reduce this operational overhead and provide an easy interface for lambda owners to recover from such incidents would be to create dead letter queues filled with such misbehaving tasks. The ATF framework could impose a maximum number of retries before tasks are pushed onto the dead letter queue. We could create and expose tools that make it easy to reschedule tasks from the dead letter queue back into the ATF system, once the associated lambda bugs are fixed.<br>
One way to reduce this operational overhead and provide an easy interface for lambda owners to recover from such incidents would be to create dead letter queues filled with such misbehaving tasks. The ATF framework could impose a maximum number of retries before tasks are pushed onto the dead letter queue. We could create and expose tools that make it easy to reschedule tasks from the dead letter queue back into the ATF system, once the associated lambda bugs are fixed.<br/>
</p>
</div>
<div>
@ -523,7 +519,7 @@
</P>
</div>
<p>
We hope this post helps engineers elsewhere to develop better async task frameworks of their own. Many thanks to everyone who worked on this project: Anirudh Jayakumar, Deepak Gupta, Dmitry Kopytkov, Koundinya Muppalla, Peng Kang, Rajiv Desai, Ryan Armstrong, Steve Rodrigues, Thomissa Comellas, Xiaonan Zhang and Yuhuan Du.<br>
We hope this post helps engineers elsewhere to develop better async task frameworks of their own. Many thanks to everyone who worked on this project: Anirudh Jayakumar, Deepak Gupta, Dmitry Kopytkov, Koundinya Muppalla, Peng Kang, Rajiv Desai, Ryan Armstrong, Steve Rodrigues, Thomissa Comellas, Xiaonan Zhang and Yuhuan Du.<br/>
 
</p>
</div></article>
</div></article>

View file

@ -1,5 +1,4 @@
<article><DIV id="readability-page-1">
<div id="contentWithSidebar">
<article><DIV id="readability-page-1"><div id="contentWithSidebar">
<p>
Tuesday 15 October 2019 by Bradley M. Kuhn
@ -45,14 +44,11 @@
</p>
</div>
<p>
<code>#include &lt;std/disclaimer.h&gt;</code><br>
<code>use Standard::Disclaimer;</code><br>
<code>from standard import disclaimer</code><br>
</div><p>
<code>#include &lt;std/disclaimer.h&gt;</code><br/>
<code>use Standard::Disclaimer;</code><br/>
<code>from standard import disclaimer</code><br/>
<code>SELECT full_text FROM standard WHERE type = 'disclaimer';</code>
</p>
<p>
</p><p>
Both previously and presently, I have been employed by and/or done work for various organizations that also have views on Free, Libre, and Open Source Software. As should be blatantly obvious, this is my website, not theirs, so please do not assume views and opinions here belong to any such organization. Since I do co-own ebb.org with my wife, it may not be so obvious that these aren't her views and opinions, either.
</p>
</DIV></article>
</p></DIV></article>

View file

@ -1,12 +1,8 @@
<article><div id="readability-page-1">
<header>
</header>
<div>
<p>Glass cloche terrariums are not only appealing to the eye, but they also preserve a bit of nature in your home and serve as a simple, yet beautiful, piece of art. Closed terrariums are easy to care for, as they retain much of their own moisture and provide a warm environment with a consistent level of humidity. You wont have to water the terrariums unless you see that the walls are not misting up. Small growing plants that dont require a lot of light work best such as succulents, ferns, moss, even orchids.</p>
<figure> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/16149374-814f-40bc-baf3-ca20f149f0ba.jpg" alt="Glass cloche terrariums" title="Glass cloche terrariums" data-credit="Lucy Akins " longdesc="http://s3.amazonaws.com/photography.prod.demandstudios.com/16149374-814f-40bc-baf3-ca20f149f0ba.jpg"> </figure>
<figure> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/16149374-814f-40bc-baf3-ca20f149f0ba.jpg" alt="Glass cloche terrariums" title="Glass cloche terrariums" data-credit="Lucy Akins " longdesc="http://s3.amazonaws.com/photography.prod.demandstudios.com/16149374-814f-40bc-baf3-ca20f149f0ba.jpg"/> </figure>
<figcaption> Glass cloche terrariums (Lucy Akins) </figcaption>
</div>
<div id="relatedContentUpper" data-module="rcp_top">
@ -14,8 +10,7 @@
<h3>Other People Are Reading</h3> </header>
</div>
<div> <p><span>What You'll Need:</span></p>
<ul>
<div> <p><span>What You'll Need:</span></p><ul>
<li>Cloche</li>
<li>Planter saucer, small shallow dish or desired platform</li>
<li>Floral foam oasis</li>
@ -29,75 +24,65 @@
</ul>
</div>
<div>
<div> <p><span>Step 1</span></p>
<p>Measure the circumference of your cloche and cut the foam oasis about 3/4 inch (2 cm) smaller. Place the foam oasis into a container full of water and allow to soak until it sinks to the bottom. Dig out a hole on the oasis large enough to fit your plant, being careful not to pierce all the way through to the bottom.</p>
<div> <p><span>Step 1</span></p><p>Measure the circumference of your cloche and cut the foam oasis about 3/4 inch (2 cm) smaller. Place the foam oasis into a container full of water and allow to soak until it sinks to the bottom. Dig out a hole on the oasis large enough to fit your plant, being careful not to pierce all the way through to the bottom.</p>
</div>
<figure> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/fc249ef6-4d27-41b4-8c21-15f7a8512b50.jpg" alt="Dig a hole in the oasis." data-credit="Lucy Akins"> </figure>
<figure> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/fc249ef6-4d27-41b4-8c21-15f7a8512b50.jpg" alt="Dig a hole in the oasis." data-credit="Lucy Akins"/> </figure>
<figcaption> Dig a hole in the oasis. (Lucy Akins) </figcaption>
</div>
<div>
<div> <p><span>Step 2</span></p>
<p>Insert your plant into the hole.</p>
<div> <p><span>Step 2</span></p><p>Insert your plant into the hole.</p>
</div>
<figure> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/aae11d4d-a4aa-4251-a4d9-41023ebf6d84.jpg" alt="Orchid in foam oasis" data-credit="Lucy Akins"> </figure>
<figure> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/aae11d4d-a4aa-4251-a4d9-41023ebf6d84.jpg" alt="Orchid in foam oasis" data-credit="Lucy Akins"/> </figure>
<figcaption> Orchid in foam oasis (Lucy Akins) </figcaption>
</div>
<div>
<div> <p><span>Step 3</span></p>
<p>You can add various plants if you wish.</p>
<div> <p><span>Step 3</span></p><p>You can add various plants if you wish.</p>
</div>
<figure> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/7afdfa1e-da74-44b5-b89c-ca8123516272.jpg" alt="Various foliage" data-credit="Lucy Akins"> </figure>
<figure> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/7afdfa1e-da74-44b5-b89c-ca8123516272.jpg" alt="Various foliage" data-credit="Lucy Akins"/> </figure>
<figcaption> Various foliage (Lucy Akins) </figcaption>
</div>
<div>
<div> <p><span>Step 4</span></p>
<p>Using floral pins, attach enough moss around the oasis to cover it.</p>
<div> <p><span>Step 4</span></p><p>Using floral pins, attach enough moss around the oasis to cover it.</p>
</div>
<figure> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/4f6612c0-316a-4c74-bb03-cb4e778f6d72.jpg" alt="Attach moss." data-credit="Lucy Akins"> </figure>
<figure> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/4f6612c0-316a-4c74-bb03-cb4e778f6d72.jpg" alt="Attach moss." data-credit="Lucy Akins"/> </figure>
<figcaption> Attach moss. (Lucy Akins) </figcaption>
</div>
<div>
<div> <p><span>Step 5</span></p>
<p>Gently place the cloche over the oasis. The glass may push some of the moss upward, exposing some of the foam.</p>
<div> <p><span>Step 5</span></p><p>Gently place the cloche over the oasis. The glass may push some of the moss upward, exposing some of the foam.</p>
</div>
<figure> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/eeb1e0b4-e573-40a3-8db1-2c76f0b13b84.jpg" alt="Place cloche over oasis." data-credit="Lucy Akins"> </figure>
<figure> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/eeb1e0b4-e573-40a3-8db1-2c76f0b13b84.jpg" alt="Place cloche over oasis." data-credit="Lucy Akins"/> </figure>
<figcaption> Place cloche over oasis. (Lucy Akins) </figcaption>
</div>
<div>
<div> <p><span>Step 6</span></p>
<p>Simply pull down the moss with tweezers or insert more moss to fill in the empty spaces.</p>
<div> <p><span>Step 6</span></p><p>Simply pull down the moss with tweezers or insert more moss to fill in the empty spaces.</p>
</div>
<figure> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/812d4649-4152-4363-97c0-f181d02e709a.jpg" alt="Rearrange moss." data-credit="Lucy Akins"> </figure>
<figure> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/812d4649-4152-4363-97c0-f181d02e709a.jpg" alt="Rearrange moss." data-credit="Lucy Akins"/> </figure>
<figcaption> Rearrange moss. (Lucy Akins) </figcaption>
</div>
<div>
<div> <p><span>Step 7</span></p>
<p>You can use any platform you wish. In this case, a small saucer was used.</p>
<div> <p><span>Step 7</span></p><p>You can use any platform you wish. In this case, a small saucer was used.</p>
</div>
<figure> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/0cb3988c-9318-47d6-bc9c-c798da1ede72.jpg" alt="Place cloche on a platform to sit on." data-credit="Lucy Akins"> </figure>
<figure> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/0cb3988c-9318-47d6-bc9c-c798da1ede72.jpg" alt="Place cloche on a platform to sit on." data-credit="Lucy Akins"/> </figure>
<figcaption> Place cloche on a platform to sit on. (Lucy Akins) </figcaption>
</div>
<div>
<div> <p><span>Step 8</span></p>
<p>This particular terrarium rests on a planter saucer and features a small white pumpkin.</p>
<div> <p><span>Step 8</span></p><p>This particular terrarium rests on a planter saucer and features a small white pumpkin.</p>
</div>
<figure> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/e3e18f0b-ab2c-4ffb-9988-a1ea63faef8b.jpg" alt="Cloche placed on a terracotta saucer" data-credit="Lucy Akins"> </figure>
<figure> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/e3e18f0b-ab2c-4ffb-9988-a1ea63faef8b.jpg" alt="Cloche placed on a terracotta saucer" data-credit="Lucy Akins"/> </figure>
<figcaption> Cloche placed on a terracotta saucer (Lucy Akins) </figcaption>
</div>
<div>
<div> <p><span>Step 9</span></p>
<p>This particular terrarium was placed on a wood slice and a little toy squirrel was placed inside to add a little whimsy.</p>
<div> <p><span>Step 9</span></p><p>This particular terrarium was placed on a wood slice and a little toy squirrel was placed inside to add a little whimsy.</p>
</div>
<figure> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/2cd79f8d-0d16-4573-8861-e47fb74b0638.jpg" alt="Placed on a wooden slice" data-credit="Lucy Akins"> </figure>
<figure> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/2cd79f8d-0d16-4573-8861-e47fb74b0638.jpg" alt="Placed on a wooden slice" data-credit="Lucy Akins"/> </figure>
<figcaption> Placed on a wooden slice (Lucy Akins) </figcaption>
</div>
<div>
<div> <p><span>Finished Terrarium</span></p>
<p>Displayed alone or in a group, these pretty arrangements allow you to add a little nature to your decor or tablescape.</p>
<div> <p><span>Finished Terrarium</span></p><p>Displayed alone or in a group, these pretty arrangements allow you to add a little nature to your decor or tablescape.</p>
</div>
<figure> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/78670312-8636-4c42-a75c-3029f7aa6c73.jpg" alt="Cloche terrarium" data-credit="Lucy Akins"> </figure>
<figure> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/78670312-8636-4c42-a75c-3029f7aa6c73.jpg" alt="Cloche terrarium" data-credit="Lucy Akins"/> </figure>
<figcaption> Cloche terrarium (Lucy Akins) </figcaption>
</div>
@ -110,4 +95,4 @@
<h2>Featured</h2>
</section>
</div></article>
</div></article>

View file

@ -1,20 +1,13 @@
<article><DIV id="readability-page-1">
<div data-type="AuthorProfile">
<article><DIV id="readability-page-1"><div data-type="AuthorProfile">
<div>
<p><a id="img-follow-tip" href="http://fakehost/contributor/gina_robertsgrey/" target="_blank">
<img src="http://img-aws.ehowcdn.com/60x60/cme/cme_public_images/www_demandstudios_com/sitelife.studiod.com/ver1.0/Content/images/store/9/2/d9dd6f61-b183-4893-927f-5b540e45be91.Small.jpg" data-failover="//img-aws.ehowcdn.com/60x60/ehow-cdn-assets/test15/media/images/authors/missing-author-image.png" onerror="var failover = this.getAttribute('data-failover');
if (failover) failover = failover.replace(/^https?:/,'');
var src = this.src ? this.src.replace(/^https?:/,'') : '';
if (src != failover){
this.src = failover;
}"> </a></p>
<img src="http://img-aws.ehowcdn.com/60x60/cme/cme_public_images/www_demandstudios_com/sitelife.studiod.com/ver1.0/Content/images/store/9/2/d9dd6f61-b183-4893-927f-5b540e45be91.Small.jpg" data-failover="//img-aws.ehowcdn.com/60x60/ehow-cdn-assets/test15/media/images/authors/missing-author-image.png" onerror="var failover = this.getAttribute('data-failover');&#10; if (failover) failover = failover.replace(/^https?:/,'');&#10; var src = this.src ? this.src.replace(/^https?:/,'') : '';&#10; if (src != failover){&#10; this.src = failover;&#10; }"/> </a></p>
</div>
<p><time datetime="2016-09-14T07:07:00-04:00" itemprop="dateModified">Last updated September 14, 2016</time>
</p>
</div>
<div>
</div><div>
<article data-type="article">
<div>
<div>
@ -23,7 +16,7 @@
<p>Thankfully, there are plenty of creative ways to trim a little grad party fat without sacrificing any of the fun or celebratory spirit.</p>
</div>
<figure>
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/2F/86/5547EF62-EAF5-4256-945D-0496F61C862F/5547EF62-EAF5-4256-945D-0496F61C862F.jpg" alt="Graduation" title="Graduation" data-credit="Mike Watson Images/Moodboard/Getty " longdesc="http://s3.amazonaws.com/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/2F/86/5547EF62-EAF5-4256-945D-0496F61C862F/5547EF62-EAF5-4256-945D-0496F61C862F.jpg" data-pin-ehow-hover="true" data-pin-no-hover="true">
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/2F/86/5547EF62-EAF5-4256-945D-0496F61C862F/5547EF62-EAF5-4256-945D-0496F61C862F.jpg" alt="Graduation" title="Graduation" data-credit="Mike Watson Images/Moodboard/Getty " longdesc="http://s3.amazonaws.com/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/2F/86/5547EF62-EAF5-4256-945D-0496F61C862F/5547EF62-EAF5-4256-945D-0496F61C862F.jpg" data-pin-ehow-hover="true" data-pin-no-hover="true"/>
</figure>
<figcaption>
(Mike Watson Images/Moodboard/Getty)
@ -36,7 +29,7 @@
<div>
<p><span><p>Parties hosted at restaurants, clubhouses and country clubs eliminate the need to spend hours cleaning up once party guests have gone home. But that convenience comes with a price tag. A country club may charge as much as $2,000 for room rental and restaurant food and beverage will almost always cost more than food prepped and served at home.</p></span> </p>
<figure>
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/FE/CB/121569D2-6984-4B2F-83C4-9D2D9A27CBFE/121569D2-6984-4B2F-83C4-9D2D9A27CBFE.jpg" alt="Save money hosting the party at home." data-credit="Thomas Jackson/Digital Vision/Getty Images" data-pin-ehow-hover="true" data-pin-no-hover="true">
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/FE/CB/121569D2-6984-4B2F-83C4-9D2D9A27CBFE/121569D2-6984-4B2F-83C4-9D2D9A27CBFE.jpg" alt="Save money hosting the party at home." data-credit="Thomas Jackson/Digital Vision/Getty Images" data-pin-ehow-hover="true" data-pin-no-hover="true"/>
</figure>
<figcaption>
Thomas Jackson/Digital Vision/Getty Images </figcaption>
@ -49,7 +42,7 @@
<p><span><p>Instead of hiring a DJ, use your iPod or Smartphone to spin the tunes. Both easily hook up to most speakers or mp3 compatible docks to play music from your music library. Or download Pandora, the free online radio app, and play hours of music for free.</p>
<p>Personalize the music with a playlist of the grads favorite songs or songs that were big hits during his or her years in school.</p></span> </p>
<figure>
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/DF/FC/A05B0252-BD73-4BC7-A09A-96F0A504FCDF/A05B0252-BD73-4BC7-A09A-96F0A504FCDF.jpg" alt="Online radio can take the place of a hired DJ." data-credit="Spencer Platt/Getty Images News/Getty Images" data-pin-ehow-hover="true" data-pin-no-hover="true">
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/DF/FC/A05B0252-BD73-4BC7-A09A-96F0A504FCDF/A05B0252-BD73-4BC7-A09A-96F0A504FCDF.jpg" alt="Online radio can take the place of a hired DJ." data-credit="Spencer Platt/Getty Images News/Getty Images" data-pin-ehow-hover="true" data-pin-no-hover="true"/>
</figure>
<figcaption>
Spencer Platt/Getty Images News/Getty Images </figcaption>
@ -61,7 +54,7 @@
<div>
<p><span><p>Avoid canned drinks, which guests often open, but don't finish. Serve pitchers of tap water with lemon and cucumber slices or sliced strawberries for an interesting and refreshing flavor. Opt for punches and non-alcoholic drinks for high school graduates that allow guests to dole out the exact amount they want to drink.</p></span> </p>
<figure>
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/EB/DB/8A04CCA7-3255-4225-B59A-C41441F8DBEB/8A04CCA7-3255-4225-B59A-C41441F8DBEB.jpg" alt="Serve drinks in pitchers, not in cans." data-credit="evgenyb/iStock/Getty Images" data-pin-ehow-hover="true" data-pin-no-hover="true">
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/EB/DB/8A04CCA7-3255-4225-B59A-C41441F8DBEB/8A04CCA7-3255-4225-B59A-C41441F8DBEB.jpg" alt="Serve drinks in pitchers, not in cans." data-credit="evgenyb/iStock/Getty Images" data-pin-ehow-hover="true" data-pin-no-hover="true"/>
</figure>
<figcaption>
evgenyb/iStock/Getty Images </figcaption>
@ -74,7 +67,7 @@
<div>
<p><span><p>Instead of inviting everyone you and the graduate know or ever knew, scale back the guest list. Forgo inviting guests that you or your grad haven't seen for eons. There is no reason to provide provisions for people who are essentially out of your lives. Sticking to a small, but personal, guest list allows more time to mingle with loved ones during the party, too.</p></span> </p>
<figure>
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/94/10/08035476-0167-4A03-AADC-13A7E7AA1094/08035476-0167-4A03-AADC-13A7E7AA1094.jpg" alt="Limit guests to those close to the graduate." data-credit="Kane Skennar/Photodisc/Getty Images" data-pin-ehow-hover="true" data-pin-no-hover="true">
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/94/10/08035476-0167-4A03-AADC-13A7E7AA1094/08035476-0167-4A03-AADC-13A7E7AA1094.jpg" alt="Limit guests to those close to the graduate." data-credit="Kane Skennar/Photodisc/Getty Images" data-pin-ehow-hover="true" data-pin-no-hover="true"/>
</figure>
<figcaption>
Kane Skennar/Photodisc/Getty Images </figcaption>
@ -86,7 +79,7 @@
<div>
<p><span><p>See if your grad and his best friend, girlfriend or close family member would consider hosting a joint party. You can split some of the expenses, especially when the two graduates share mutual friends. You'll also have another parent to bounce ideas off of and to help you stick to your budget when you're tempted to splurge.</p></span> </p>
<figure>
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/06/49/4AD62696-FC95-4DA2-8351-42740C7B4906/4AD62696-FC95-4DA2-8351-42740C7B4906.jpg" alt="Throw a joint bash for big savings." data-credit="Mike Watson Images/Moodboard/Getty" data-pin-ehow-hover="true" data-pin-no-hover="true">
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/06/49/4AD62696-FC95-4DA2-8351-42740C7B4906/4AD62696-FC95-4DA2-8351-42740C7B4906.jpg" alt="Throw a joint bash for big savings." data-credit="Mike Watson Images/Moodboard/Getty" data-pin-ehow-hover="true" data-pin-no-hover="true"/>
</figure>
<figcaption>
Mike Watson Images/Moodboard/Getty </figcaption>
@ -99,7 +92,7 @@
<p><span><p>Skip carving stations of prime rib and jumbo shrimp as appetizers, especially for high school graduation parties. Instead, serve some of the graduate's favorite side dishes that are cost effective, like a big pot of spaghetti with breadsticks. Opt for easy and simple food such as pizza, finger food and mini appetizers. </p>
<p>Avoid pre-packaged foods and pre-made deli platters. These can be quite costly. Instead, make your own cheese and deli platters for less than half the cost of pre-made.</p></span> </p>
<figure>
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/D0/51/B6AED06C-5E19-4A26-9AAD-0E175F6251D0/B6AED06C-5E19-4A26-9AAD-0E175F6251D0.jpg" alt="Cost effective appetizers are just as satisfying as pre-made deli platters." data-credit="Mark Stout/iStock/Getty Images" data-pin-ehow-hover="true" data-pin-no-hover="true">
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/D0/51/B6AED06C-5E19-4A26-9AAD-0E175F6251D0/B6AED06C-5E19-4A26-9AAD-0E175F6251D0.jpg" alt="Cost effective appetizers are just as satisfying as pre-made deli platters." data-credit="Mark Stout/iStock/Getty Images" data-pin-ehow-hover="true" data-pin-no-hover="true"/>
</figure>
<figcaption>
Mark Stout/iStock/Getty Images </figcaption>
@ -111,7 +104,7 @@
<div>
<p><span><p>Instead of an evening dinner party, host a grad lunch or all appetizers party. Brunch and lunch fare or finger food costs less than dinner. Guests also tend to consume less alcohol in the middle of the day, which keeps cost down.</p></span> </p>
<figure>
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/35/B4/DD5FD05A-B631-4AFE-BC8F-FDACAD1EB435/DD5FD05A-B631-4AFE-BC8F-FDACAD1EB435.jpg" alt="A brunch gathering will cost less than a dinner party." data-credit="Mark Stout/iStock/Getty Images" data-pin-ehow-hover="true" data-pin-no-hover="true">
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/35/B4/DD5FD05A-B631-4AFE-BC8F-FDACAD1EB435/DD5FD05A-B631-4AFE-BC8F-FDACAD1EB435.jpg" alt="A brunch gathering will cost less than a dinner party." data-credit="Mark Stout/iStock/Getty Images" data-pin-ehow-hover="true" data-pin-no-hover="true"/>
</figure>
<figcaption>
Mark Stout/iStock/Getty Images </figcaption>
@ -130,7 +123,7 @@
<div>
<p><span><p>Decorate your party in the graduate's current school colors or the colors of the school he or she will be headed to next. Décor that is not specifically graduation-themed may cost a bit less, and any leftovers can be re-used for future parties, picnics and events.</p></span> </p>
<figure>
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/A1/FA/2C368B34-8F6A-45F6-9DFC-0B0C4E33FAA1/2C368B34-8F6A-45F6-9DFC-0B0C4E33FAA1.jpg" alt="Theme the party by color without graduation-specific decor." data-credit="jethuynh/iStock/Getty Images" data-pin-ehow-hover="true" data-pin-no-hover="true">
<img src="http://img-aws.ehowcdn.com/640/cme/cme_public_images/www_ehow_com/cdn-write.demandstudios.com/upload/image/A1/FA/2C368B34-8F6A-45F6-9DFC-0B0C4E33FAA1/2C368B34-8F6A-45F6-9DFC-0B0C4E33FAA1.jpg" alt="Theme the party by color without graduation-specific decor." data-credit="jethuynh/iStock/Getty Images" data-pin-ehow-hover="true" data-pin-no-hover="true"/>
</figure>
<figcaption>
jethuynh/iStock/Getty Images </figcaption>
@ -147,5 +140,4 @@
<p>Promoted By Zergnet</p>
</article>
</div>
</DIV></article>
</div></DIV></article>

View file

@ -8,13 +8,13 @@
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p>At root</p>
<iframe width="100%" height="100%" src="https://www.youtube.com/embed/LtOGa5M8AuU" frameborder="0" allowfullscreen=""></iframe>
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/LtOGa5M8AuU" frameborder="0" allowfullscreen=""></iframe>
<iframe src="https://player.vimeo.com/video/32246206?color=ffffff+title=0+byline=0+portrait=0" width="500" height="281" frameborder="0" webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen=""></iframe>
<p>In a paragraph</p>
<p><iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/LtOGa5M8AuU" frameborder="0" allowfullscreen=""></iframe></p>
<p>In a div</p>
<div><iframe width="100%" height="100%" src="https://www.youtube.com/embed/LtOGa5M8AuU" frameborder="0" allowfullscreen=""></iframe></div>
<h2>Foo</h2>
<p>
Tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
@ -23,4 +23,4 @@
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</article></DIV></article>
</article></DIV></article>

View file

@ -1,5 +1,4 @@
<article><DIV id="readability-page-1">
<div>
<article><DIV id="readability-page-1"><div>
<p>The <a href="https://www.engadget.com/2017/06/13/the-xbox-one-x-is-aspirational-in-the-purest-sense-of-the-word/" target="_blank">Xbox
One X</a> is the ultimate video game system. It sports
more horsepower than any system ever. And it plays more
@ -14,13 +13,11 @@
Everyone else might be better off waiting, or opting for
the $279 <a href="https://www.engadget.com/2016/08/02/xbox-one-s-review/" target="_blank">Xbox
One S</a>. </p>
</div>
<section>
</div><section>
<h4> Gallery: Xbox One
X | 14 Photos </h4>
<div data-behavior="lightbox_trigger" data-engadget-slideshow-id="803271" data-eng-bang='{"gallery":803271,"slide":7142088,"index":0}' data-eng-mn="93511844">
<p><a href="#" data-index="0" data-engadget-slide-id="7142088" data-eng-bang='{"gallery":803271,"slide":7142088,"index":0}'>
<img src="https://o.aolcdn.com/images/dims?thumbnail=980%2C653&amp;quality=80&amp;image_uri=https%3A%2F%2Fs.blogcdn.com%2Fslideshows%2Fimages%2Fslides%2F714%2F208%2F8%2FS7142088%2Fslug%2Fl%2Fxbox-one-x-review-gallery-1-1.jpg&amp;client=cbc79c14efcebee57402&amp;signature=9bb08b52e12de8e4060f863a52c613489529818d">
<div data-behavior="lightbox_trigger" data-engadget-slideshow-id="803271" data-eng-bang="{&quot;gallery&quot;:803271,&quot;slide&quot;:7142088,&quot;index&quot;:0}" data-eng-mn="93511844"><p><a href="#" data-index="0" data-engadget-slide-id="7142088" data-eng-bang="{&quot;gallery&quot;:803271,&quot;slide&quot;:7142088,&quot;index&quot;:0}">
<img src="https://o.aolcdn.com/images/dims?thumbnail=980%2C653&amp;quality=80&amp;image_uri=https%3A%2F%2Fs.blogcdn.com%2Fslideshows%2Fimages%2Fslides%2F714%2F208%2F8%2FS7142088%2Fslug%2Fl%2Fxbox-one-x-review-gallery-1-1.jpg&amp;client=cbc79c14efcebee57402&amp;signature=9bb08b52e12de8e4060f863a52c613489529818d"/>
</a></p>
</div>
@ -64,12 +61,11 @@
PlayStation 4 Pro. 4K/HDR enhanced games look great, but
its lack of VR is disappointing in 2017.</p>
</div>
</div>
<div>
</div><div>
<div>
<h3>Hardware</h3>
<p><img data-credit="Devindra Hardawar/AOL" data-mep="2181678" src="https://o.aolcdn.com/images/dims?crop=1600%2C1067%2C0%2C0&amp;quality=85&amp;format=jpg&amp;resize=1600%2C1067&amp;image_uri=http%3A%2F%2Fo.aolcdn.com%2Fhss%2Fstorage%2Fmidas%2F93beb86758ae1cf95721699e1e006e35%2F205826074%2FXbox%2BOne%2BX%2Breview%2Bgallery%2B7.jpg&amp;client=a1acac3e1b3290917d92&amp;signature=c0f2d36259c2c1decfb60aae364527cda2560d4a" alt=""></p>
<p><img data-credit="Devindra Hardawar/AOL" data-mep="2181678" src="https://o.aolcdn.com/images/dims?crop=1600%2C1067%2C0%2C0&amp;quality=85&amp;format=jpg&amp;resize=1600%2C1067&amp;image_uri=http%3A%2F%2Fo.aolcdn.com%2Fhss%2Fstorage%2Fmidas%2F93beb86758ae1cf95721699e1e006e35%2F205826074%2FXbox%2BOne%2BX%2Breview%2Bgallery%2B7.jpg&amp;client=a1acac3e1b3290917d92&amp;signature=c0f2d36259c2c1decfb60aae364527cda2560d4a" alt=""/></p>
<p>Despite all the power inside, the One X is
Microsoft's smallest console to date. It looks
similar to the Xbox One S, except it has an entirely
@ -87,7 +83,7 @@
That additional horsepower means the Xbox One X can
run more games in full native 4K than the Sony's
console.</p>
<p><img data-credit="Devindra Hardawar/AOL" data-mep="2182489" src="https://o.aolcdn.com/images/dims?crop=1600%2C949%2C0%2C0&amp;quality=85&amp;format=jpg&amp;resize=1600%2C949&amp;image_uri=http%3A%2F%2Fo.aolcdn.com%2Fhss%2Fstorage%2Fmidas%2F9ece7fdad1e7025dec06ac9bf98688d0%2F205826075%2FXbox%2BOne%2BX%2Breview%2Bgallery%2B5.jpg&amp;client=a1acac3e1b3290917d92&amp;signature=9913883753141e7df322616bfe0bc41c6ecd80c8" alt=""></p>
<p><img data-credit="Devindra Hardawar/AOL" data-mep="2182489" src="https://o.aolcdn.com/images/dims?crop=1600%2C949%2C0%2C0&amp;quality=85&amp;format=jpg&amp;resize=1600%2C949&amp;image_uri=http%3A%2F%2Fo.aolcdn.com%2Fhss%2Fstorage%2Fmidas%2F9ece7fdad1e7025dec06ac9bf98688d0%2F205826075%2FXbox%2BOne%2BX%2Breview%2Bgallery%2B5.jpg&amp;client=a1acac3e1b3290917d92&amp;signature=9913883753141e7df322616bfe0bc41c6ecd80c8" alt=""/></p>
<p>Along the front, there's the slot-loading 4K Blu-ray
drive, a physical power button, a single USB port
and a controller pairing button. And around back,
@ -99,7 +95,7 @@
plug it in.</p>
</div>
<div data-engadget-breakout-type="image">
<figure><img src="https://o.aolcdn.com/images/dims?resize=980%2C640&amp;quality=100&amp;image_uri=https%3A%2F%2Fo.aolcdn.com%2Fimages%2Fdims%3Fcrop%3D1599%252C1043%252C0%252C0%26quality%3D85%26format%3Djpg%26resize%3D1600%252C1043%26image_uri%3Dhttp%253A%252F%252Fo.aolcdn.com%252Fhss%252Fstorage%252Fmidas%252F8b98ec8f6649158fe7448ac2f2695ac5%252F205826072%252FXbox%252BOne%252BX%252Breview%252Bgallery%252B6.jpg%26client%3Da1acac3e1b3290917d92%26signature%3D353dad1308f98c2c9dfc82c58a540a8b2f1fe63c&amp;client=cbc79c14efcebee57402&amp;signature=60b7c061460d0d45f5d367b8a9c62978af6b76ce">
<figure><img src="https://o.aolcdn.com/images/dims?resize=980%2C640&amp;quality=100&amp;image_uri=https%3A%2F%2Fo.aolcdn.com%2Fimages%2Fdims%3Fcrop%3D1599%252C1043%252C0%252C0%26quality%3D85%26format%3Djpg%26resize%3D1600%252C1043%26image_uri%3Dhttp%253A%252F%252Fo.aolcdn.com%252Fhss%252Fstorage%252Fmidas%252F8b98ec8f6649158fe7448ac2f2695ac5%252F205826072%252FXbox%252BOne%252BX%252Breview%252Bgallery%252B6.jpg%26client%3Da1acac3e1b3290917d92%26signature%3D353dad1308f98c2c9dfc82c58a540a8b2f1fe63c&amp;client=cbc79c14efcebee57402&amp;signature=60b7c061460d0d45f5d367b8a9c62978af6b76ce"/>
<figcaption><span>Devindra Hardawar/AOL</span>
</figcaption>
</figure>
@ -119,7 +115,7 @@
<h3>In use</h3>
</div>
<div data-engadget-breakout-type="image">
<figure><img src="https://o.aolcdn.com/images/dims?resize=980%2C640&amp;quality=100&amp;image_uri=https%3A%2F%2Fo.aolcdn.com%2Fimages%2Fdims%3Fcrop%3D1600%252C900%252C0%252C0%26quality%3D85%26format%3Djpg%26resize%3D1600%252C900%26image_uri%3Dhttp%253A%252F%252Fo.aolcdn.com%252Fhss%252Fstorage%252Fmidas%252F1885534bd201fc37481b806645c1fc8b%252F205828119%252FXbox%252Bone%252BX%252Bscreenshot%252Bgallery%252B8.jpg%26client%3Da1acac3e1b3290917d92%26signature%3Df63cf67c88b37fd9424855984e45f6b950c8c11a&amp;client=cbc79c14efcebee57402&amp;signature=0adca80fc8ee26a7353be639082881450a5ad49f">
<figure><img src="https://o.aolcdn.com/images/dims?resize=980%2C640&amp;quality=100&amp;image_uri=https%3A%2F%2Fo.aolcdn.com%2Fimages%2Fdims%3Fcrop%3D1600%252C900%252C0%252C0%26quality%3D85%26format%3Djpg%26resize%3D1600%252C900%26image_uri%3Dhttp%253A%252F%252Fo.aolcdn.com%252Fhss%252Fstorage%252Fmidas%252F1885534bd201fc37481b806645c1fc8b%252F205828119%252FXbox%252Bone%252BX%252Bscreenshot%252Bgallery%252B8.jpg%26client%3Da1acac3e1b3290917d92%26signature%3Df63cf67c88b37fd9424855984e45f6b950c8c11a&amp;client=cbc79c14efcebee57402&amp;signature=0adca80fc8ee26a7353be639082881450a5ad49f"/>
<figcaption><span>Devindra Hardawar/AOL</span>
</figcaption>
</figure>
@ -158,7 +154,7 @@
</div>
<div data-engadget-breakout-type="e2ehero">
<figure><img src="https://o.aolcdn.com/images/dims?crop=1600%2C900%2C0%2C0&amp;quality=85&amp;format=jpg&amp;resize=1600%2C900&amp;image_uri=http%3A%2F%2Fo.aolcdn.com%2Fhss%2Fstorage%2Fmidas%2F8352a8a14e88e2ca2ba5be4d8381a055%2F205828115%2FXbox%2Bone%2BX%2Bscreenshot%2Bgallery%2B1.jpg&amp;client=a1acac3e1b3290917d92&amp;signature=d2ccb22e0eaabeb05bfe46e83dbe26fd07f01da8">
<figure><img src="https://o.aolcdn.com/images/dims?crop=1600%2C900%2C0%2C0&amp;quality=85&amp;format=jpg&amp;resize=1600%2C900&amp;image_uri=http%3A%2F%2Fo.aolcdn.com%2Fhss%2Fstorage%2Fmidas%2F8352a8a14e88e2ca2ba5be4d8381a055%2F205828115%2FXbox%2Bone%2BX%2Bscreenshot%2Bgallery%2B1.jpg&amp;client=a1acac3e1b3290917d92&amp;signature=d2ccb22e0eaabeb05bfe46e83dbe26fd07f01da8"/>
</figure>
</div>
@ -192,9 +188,8 @@
<section data-engadget-breakout-type="gallery">
<h3> Gallery: Xbox
One X screenshots | 9 Photos </h3>
<div data-behavior="lightbox_trigger" data-engadget-slideshow-id="803330" data-eng-bang='{"gallery":803330,"slide":7142924}' data-eng-mn="93511844">
<p><a href="#" data-index="0" data-engadget-slide-id="7142924" data-eng-bang='{"gallery":803330,"slide":7142924}'>
<img src="https://o.aolcdn.com/images/dims?thumbnail=980%2C653&amp;quality=80&amp;image_uri=https%3A%2F%2Fs.blogcdn.com%2Fslideshows%2Fimages%2Fslides%2F714%2F292%2F4%2FS7142924%2Fslug%2Fl%2Fxbox-one-x-screenshot-gallery-2-1.jpg&amp;client=cbc79c14efcebee57402&amp;signature=38c95635c7aad58a8a48038e05589f5cf35b1e28">
<div data-behavior="lightbox_trigger" data-engadget-slideshow-id="803330" data-eng-bang="{&quot;gallery&quot;:803330,&quot;slide&quot;:7142924}" data-eng-mn="93511844"><p><a href="#" data-index="0" data-engadget-slide-id="7142924" data-eng-bang="{&quot;gallery&quot;:803330,&quot;slide&quot;:7142924}">
<img src="https://o.aolcdn.com/images/dims?thumbnail=980%2C653&amp;quality=80&amp;image_uri=https%3A%2F%2Fs.blogcdn.com%2Fslideshows%2Fimages%2Fslides%2F714%2F292%2F4%2FS7142924%2Fslug%2Fl%2Fxbox-one-x-screenshot-gallery-2-1.jpg&amp;client=cbc79c14efcebee57402&amp;signature=38c95635c7aad58a8a48038e05589f5cf35b1e28"/>
</a></p>
</div>
@ -234,7 +229,7 @@
</div>
<div data-engadget-breakout-type="e2ehero">
<figure><img src="https://o.aolcdn.com/images/dims?crop=1600%2C900%2C0%2C0&amp;quality=85&amp;format=jpg&amp;resize=1600%2C900&amp;image_uri=http%3A%2F%2Fo.aolcdn.com%2Fhss%2Fstorage%2Fmidas%2Facb08903fbe26ad77b80db8c8e7e8fb1%2F205828118%2FXbox%2Bone%2BX%2Bscreenshot%2Bgallery%2B7.jpg&amp;client=a1acac3e1b3290917d92&amp;signature=21630fa5ec6d8fdce2c35f7e1f652636a2d8efe7">
<figure><img src="https://o.aolcdn.com/images/dims?crop=1600%2C900%2C0%2C0&amp;quality=85&amp;format=jpg&amp;resize=1600%2C900&amp;image_uri=http%3A%2F%2Fo.aolcdn.com%2Fhss%2Fstorage%2Fmidas%2Facb08903fbe26ad77b80db8c8e7e8fb1%2F205828118%2FXbox%2Bone%2BX%2Bscreenshot%2Bgallery%2B7.jpg&amp;client=a1acac3e1b3290917d92&amp;signature=21630fa5ec6d8fdce2c35f7e1f652636a2d8efe7"/>
</figure>
</div>
@ -255,9 +250,7 @@
capable HDR 10 standard. That makes sense since it's
more widely supported, but it would have been nice
to see Dolby's, too.</p>
<p>
<iframe allowfullscreen="" frameborder="0" gesture="media" height="100%" src="https://www.youtube.com/embed/c8aFcHFu8QM" width="100%"></iframe>
</p>
<p>And speaking of Dolby technology, Microsoft is also
highlighting Atmos support on the One X, just like
it did with the One S. The company's app lets you
@ -283,7 +276,7 @@
<h3>Pricing and the competition</h3>
</div>
<div data-engadget-breakout-type="image">
<figure><img src="https://o.aolcdn.com/images/dims?resize=980%2C640&amp;quality=100&amp;image_uri=https%3A%2F%2Fo.aolcdn.com%2Fimages%2Fdims%3Fcrop%3D1600%252C1027%252C0%252C0%26quality%3D85%26format%3Djpg%26resize%3D1600%252C1027%26image_uri%3Dhttp%253A%252F%252Fo.aolcdn.com%252Fhss%252Fstorage%252Fmidas%252Fa2c8ba1caccdbb9e0559797e5141eafd%252F205826078%252FXbox%252BOne%252BX%252Breview%252Bgallery%252B11.jpg%26client%3Da1acac3e1b3290917d92%26signature%3Da11bcddced805c6e3698f8ce0494102aef057265&amp;client=cbc79c14efcebee57402&amp;signature=1e9bd192add2772bc842a34e67b7572cfd1b265a">
<figure><img src="https://o.aolcdn.com/images/dims?resize=980%2C640&amp;quality=100&amp;image_uri=https%3A%2F%2Fo.aolcdn.com%2Fimages%2Fdims%3Fcrop%3D1600%252C1027%252C0%252C0%26quality%3D85%26format%3Djpg%26resize%3D1600%252C1027%26image_uri%3Dhttp%253A%252F%252Fo.aolcdn.com%252Fhss%252Fstorage%252Fmidas%252Fa2c8ba1caccdbb9e0559797e5141eafd%252F205826078%252FXbox%252BOne%252BX%252Breview%252Bgallery%252B11.jpg%26client%3Da1acac3e1b3290917d92%26signature%3Da11bcddced805c6e3698f8ce0494102aef057265&amp;client=cbc79c14efcebee57402&amp;signature=1e9bd192add2772bc842a34e67b7572cfd1b265a"/>
<figcaption><span>Devindra Hardawar/AOL</span>
</figcaption>
</figure>
@ -320,7 +313,7 @@
PC, you won't be missing out on much by ditching
consoles.</p>
<h3>Wrap-up</h3>
<p><img data-credit="Devindra Hardawar/AOL" data-mep="2181681" src="https://o.aolcdn.com/images/dims?crop=1600%2C1028%2C0%2C0&amp;quality=85&amp;format=jpg&amp;resize=1600%2C1028&amp;image_uri=http%3A%2F%2Fo.aolcdn.com%2Fhss%2Fstorage%2Fmidas%2F5396460ef8b6bde7fb7272d9e66a7701%2F205826076%2FXbox%2BOne%2BX%2Breview%2Bgallery%2B9.jpg&amp;client=a1acac3e1b3290917d92&amp;signature=f5b5b4b986c2f8b5031a4469ae0ecec82aff65b0" alt=""></p>
<p><img data-credit="Devindra Hardawar/AOL" data-mep="2181681" src="https://o.aolcdn.com/images/dims?crop=1600%2C1028%2C0%2C0&amp;quality=85&amp;format=jpg&amp;resize=1600%2C1028&amp;image_uri=http%3A%2F%2Fo.aolcdn.com%2Fhss%2Fstorage%2Fmidas%2F5396460ef8b6bde7fb7272d9e66a7701%2F205826076%2FXbox%2BOne%2BX%2Breview%2Bgallery%2B9.jpg&amp;client=a1acac3e1b3290917d92&amp;signature=f5b5b4b986c2f8b5031a4469ae0ecec82aff65b0" alt=""/></p>
<p>Ultimately, the Xbox One X offers some major
performance upgrades that gamers will notice --
especially if you're coming from an original Xbox
@ -332,5 +325,4 @@
</div>
</div>
</DIV></article>
</div></DIV></article>

View file

@ -16,8 +16,7 @@
<ul>
<li>
<div id="attachment_994">
<p><a href="https://3sgkpvh31s44756j71xlti9b-wpengine.netdna-ssl.com/files/2020/12/headlines85_0.png" target="_blank"><img aria-describedby="caption-attachment-994" loading="lazy" src="https://3sgkpvh31s44756j71xlti9b-wpengine.netdna-ssl.com/files/2020/12/headlines85_0.png" alt='The about:restartrequired error page, saying "Sorry. We just need to do one small thing to keep going. Nightly has just been updated in the background. Click Restart Nightly to complete the update. We will restore all your pages, windows and tabs afterwards, so you can be on your way quickly.", followed by a button to restart Nightly.' width="1600" height="805" srcset="https://blog.nightly.mozilla.org/files/2020/12/headlines85_0.png 1600w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_0-300x151.png 300w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_0-600x302.png 600w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_0-768x386.png 768w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_0-1536x773.png 1536w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_0-1000x503.png 1000w" sizes="(max-width: 1600px) 100vw, 1600px"></a></p>
<p id="caption-attachment-994">
<p><a href="https://3sgkpvh31s44756j71xlti9b-wpengine.netdna-ssl.com/files/2020/12/headlines85_0.png" target="_blank"><img aria-describedby="caption-attachment-994" loading="lazy" src="https://3sgkpvh31s44756j71xlti9b-wpengine.netdna-ssl.com/files/2020/12/headlines85_0.png" alt="The about:restartrequired error page, saying &quot;Sorry. We just need to do one small thing to keep going. Nightly has just been updated in the background. Click Restart Nightly to complete the update. We will restore all your pages, windows and tabs afterwards, so you can be on your way quickly.&quot;, followed by a button to restart Nightly." width="1600" height="805" srcset="https://blog.nightly.mozilla.org/files/2020/12/headlines85_0.png 1600w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_0-300x151.png 300w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_0-600x302.png 600w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_0-768x386.png 768w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_0-1536x773.png 1536w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_0-1000x503.png 1000w" sizes="(max-width: 1600px) 100vw, 1600px"/></a></p><p id="caption-attachment-994">
Users who run multiple user profiles concurrently will probably see this less!
</p>
</div>
@ -119,8 +118,7 @@
<ul>
<li>
<div id="attachment_995">
<p><a href="https://3sgkpvh31s44756j71xlti9b-wpengine.netdna-ssl.com/files/2020/12/headlines85_1.png" target="_blank"><img aria-describedby="caption-attachment-995" loading="lazy" src="https://3sgkpvh31s44756j71xlti9b-wpengine.netdna-ssl.com/files/2020/12/headlines85_1.png" alt="A table showing the total number of remaining bugs for the MVP to make the DevTools Fission-compatible." width="1600" height="192" srcset="https://blog.nightly.mozilla.org/files/2020/12/headlines85_1.png 1600w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_1-300x36.png 300w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_1-600x72.png 600w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_1-768x92.png 768w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_1-1536x184.png 1536w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_1-1000x120.png 1000w" sizes="(max-width: 1600px) 100vw, 1600px"></a></p>
<p id="caption-attachment-995">
<p><a href="https://3sgkpvh31s44756j71xlti9b-wpengine.netdna-ssl.com/files/2020/12/headlines85_1.png" target="_blank"><img aria-describedby="caption-attachment-995" loading="lazy" src="https://3sgkpvh31s44756j71xlti9b-wpengine.netdna-ssl.com/files/2020/12/headlines85_1.png" alt="A table showing the total number of remaining bugs for the MVP to make the DevTools Fission-compatible." width="1600" height="192" srcset="https://blog.nightly.mozilla.org/files/2020/12/headlines85_1.png 1600w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_1-300x36.png 300w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_1-600x72.png 600w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_1-768x92.png 768w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_1-1536x184.png 1536w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_1-1000x120.png 1000w" sizes="(max-width: 1600px) 100vw, 1600px"/></a></p><p id="caption-attachment-995">
Our DevTools are ready for Fission (out-of-process iframes)!
</p>
</div>
@ -132,8 +130,7 @@
<ul>
<li>
<div id="attachment_996">
<p><a href="https://3sgkpvh31s44756j71xlti9b-wpengine.netdna-ssl.com/files/2020/12/headlines85_2.png" target="_blank"><img aria-describedby="caption-attachment-996" loading="lazy" src="https://3sgkpvh31s44756j71xlti9b-wpengine.netdna-ssl.com/files/2020/12/headlines85_2.png" alt="A table showing the total number of remaining bugs for the MVP to make Marionette Fission-compatible." width="1600" height="189" srcset="https://blog.nightly.mozilla.org/files/2020/12/headlines85_2.png 1600w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_2-300x35.png 300w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_2-600x71.png 600w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_2-768x91.png 768w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_2-1536x181.png 1536w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_2-1000x118.png 1000w" sizes="(max-width: 1600px) 100vw, 1600px"></a></p>
<p id="caption-attachment-996">
<p><a href="https://3sgkpvh31s44756j71xlti9b-wpengine.netdna-ssl.com/files/2020/12/headlines85_2.png" target="_blank"><img aria-describedby="caption-attachment-996" loading="lazy" src="https://3sgkpvh31s44756j71xlti9b-wpengine.netdna-ssl.com/files/2020/12/headlines85_2.png" alt="A table showing the total number of remaining bugs for the MVP to make Marionette Fission-compatible." width="1600" height="189" srcset="https://blog.nightly.mozilla.org/files/2020/12/headlines85_2.png 1600w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_2-300x35.png 300w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_2-600x71.png 600w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_2-768x91.png 768w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_2-1536x181.png 1536w, https://blog.nightly.mozilla.org/files/2020/12/headlines85_2-1000x118.png 1000w" sizes="(max-width: 1600px) 100vw, 1600px"/></a></p><p id="caption-attachment-996">
Marionette, the framework that allows Firefox to be tested with automation, is now Fission compatible too!
</p>
</div>
@ -292,4 +289,4 @@
</div>
</article>
</div></article>
</div></article>

View file

@ -21,4 +21,4 @@
<p>
"Em 2012 eu fiz e errei. O protocolo e a situação gerada no jogo do Palmeiras são fatos de opinião pessoal. CBF e Palmeiras, enquanto instituições têm a opinião. Errei lá atrás, não faria com o presidente antes da Copa e nem agora porque entendo que misturar esporte e política não é legal. Fiz errado lá atrás? Sim. Faria de novo? Não", acrescentou o comandante.
</p>
</div></article>
</div></article>

View file

@ -5,9 +5,9 @@
<p>  翱翔于距地球数千公里的太空中,进入广袤漆黑的未知领域,是一项艰苦卓绝的工作。这让人感到巨大压力和极度恐慌。那么,为什么不能让宇航员来一杯“地球末日”鸡尾酒来放松一下?</p>
<p>  不幸的是,对于希望能喝上一杯的太空探险者,那些将他们送上太空的政府机构普遍禁止他们染指包括酒在内的含酒精饮料。</p>
<p>  但是,很快普通人都会有机会向人类“最终的边疆”出发——以平民化旅行的形式,去探索和殖民火星。确实,火星之旅将是一次令人感到痛苦的旅行,可能一去不复返并要几年时间才能完成,但是否应该允许参与者在旅程中痛饮一番?或至少携带能在火星上发酵自制酒精饮料的设备?</p>
<p><img id="45395168" alt="(Credit: Nasa)" src="http://imgtech.gmw.cn/attachement/jpg/site2/20170310/448a5bc1e2861a2c4e5929.jpg" title="宇航员在太空中喝酒会怎么样?后果很严重"></p>
<p><img id="45395168" alt="(Credit: Nasa)" src="http://imgtech.gmw.cn/attachement/jpg/site2/20170310/448a5bc1e2861a2c4e5929.jpg" title="&#x5B87;&#x822A;&#x5458;&#x5728;&#x592A;&#x7A7A;&#x4E2D;&#x559D;&#x9152;&#x4F1A;&#x600E;&#x4E48;&#x6837;&#xFF1F;&#x540E;&#x679C;&#x5F88;&#x4E25;&#x91CD;"/></p>
<p>
<span face="楷体">  图注:巴兹?奥尔德林(Buzz Aldrin)可能是第二个在月球上行走的人,但他是第一个在月球上喝酒的人</span>
<span face="&#x6977;&#x4F53;">  图注:巴兹?奥尔德林(Buzz Aldrin)可能是第二个在月球上行走的人,但他是第一个在月球上喝酒的人</span>
</p>
<p>  事实是,历史上酒与太空探险有一种复杂的关系。让我们来看看喝了酒的航天员究竟会发生什么—— 如果我们开始给予进入太空的人类更大的自由度,又可能会发生什么。</p>
<p>  人们普遍认为,当一个人所处的海拔越高,喝醉后会越容易感到头昏。因此,人们自然地想到,当人身处地球轨道上时,饮酒会对人体有更强烈的致眩作用。但这种说法可能不是正确的。</p>
@ -20,9 +20,9 @@
<p>  所以,如果酒精对人体的物理效应与海拔高度无关,那么在国际空间站上睡前小饮一杯不应该是一个大问题,对吧?错了。</p>
<p>  美国宇航局约翰逊航天中心发言人丹尼尔·霍特(Daniel Huot)表示:“国际空间站上的宇航员不允许喝酒。在国际空间站上,酒精和其它挥发性化合物的使用受到控制,因为它们的挥发物可能对该站的水回收系统产生影响。”</p>
<p>  为此,国际空间站上的宇航员甚至没有被提供含有酒精的产品,例如漱口水、香水或须后水。如果在国际空间站上饮酒狂欢,溢出的啤酒也可能存在损坏设备的风险。</p>
<p><img id="45395150" alt="(Credit: iStock)" src="http://imgtech.gmw.cn/attachement/jpg/site2/20170310/448a5bc1e2861a2c4e592a.jpg" title="宇航员在太空中喝酒会怎么样?后果很严重"></p>
<p><img id="45395150" alt="(Credit: iStock)" src="http://imgtech.gmw.cn/attachement/jpg/site2/20170310/448a5bc1e2861a2c4e592a.jpg" title="&#x5B87;&#x822A;&#x5458;&#x5728;&#x592A;&#x7A7A;&#x4E2D;&#x559D;&#x9152;&#x4F1A;&#x600E;&#x4E48;&#x6837;&#xFF1F;&#x540E;&#x679C;&#x5F88;&#x4E25;&#x91CD;"/></p>
<p>
<span face="楷体">  图注:测试表明,有关人在高空中喝酒更容易醉的传言是不正确的</span>
<span face="&#x6977;&#x4F53;">  图注:测试表明,有关人在高空中喝酒更容易醉的传言是不正确的</span>
</p>
<p>  然后是责任的问题。我们不允许汽车司机或飞机飞行员喝醉后驾驶所以并不奇怪同样的规则适用于国际空间站上的宇航员。毕竟国际空间站的造价高达1500亿美元而且在接近真空的太空中其运行速度达到了每小时27680公里。</p>
<p>  然而2007年美国宇航局(NASA)成立了一个负责调查宇航员健康状况的独立小组称历史上该机构至少有两名宇航员在即将飞行前喝了大量的酒但仍然被允许飞行。Nasa安全负责人随后的审查发现并没有证据支持这一指控。宇航员在飞行前12小时是严禁饮酒的因为他们需要充分的思维能力和清醒的意识。</p>
@ -39,19 +39,19 @@
<p>  因此,即使宇航员自己被禁止在地球轨道上饮酒,但他们正在做的工作可以提高在地上消费的酒的质量。</p>
<p>  相比之下,执行登陆火星任务的人将远离家乡几年,而不是几个月,因此可能会有人提出有关禁止饮酒的规定可以放松一些。</p>
<p>  然而,像戴夫?汉森这样的专家认为,继续禁止饮酒并没有什么害处。除了实际的安全问题,饮酒还可能有其它挑战。汉森认为,地球人存在许多社会文化方面的差异,而且人连续几年时间呆在一个狭小的空间里,很容易突然发怒,这些因素都使饮酒问题变得很棘手。</p>
<p><img id="45395153" alt="(Credit: David Frohman/Peachstate Historical Consulting Inc)" src="http://imgtech.gmw.cn/attachement/jpg/site2/20170310/448a5bc1e2861a2c4e592d.jpg" title="宇航员在太空中喝酒会怎么样?后果很严重"> </p>
<p><img id="45395153" alt="(Credit: David Frohman/Peachstate Historical Consulting Inc)" src="http://imgtech.gmw.cn/attachement/jpg/site2/20170310/448a5bc1e2861a2c4e592d.jpg" title="&#x5B87;&#x822A;&#x5458;&#x5728;&#x592A;&#x7A7A;&#x4E2D;&#x559D;&#x9152;&#x4F1A;&#x600E;&#x4E48;&#x6837;&#xFF1F;&#x540E;&#x679C;&#x5F88;&#x4E25;&#x91CD;"/> </p>
<p>
<span face="楷体">  图注:奥尔德林的圣餐杯回到了地球上</span>
<span face="&#x6977;&#x4F53;">  图注:奥尔德林的圣餐杯回到了地球上</span>
</p>
<p>  他说:“这是一个政治问题,也是一个文化方面的问题,但不是一个科学上的问题。这将是未来一个可能产生冲突领域,因为人们具有不同的文化背景,他们对饮酒的态度不同。”他进一步指出,如果你与穆斯林、摩门教徒或禁酒主义者分配在同一间宿舍怎么办?面对未来人们可能在一个没有期限的时间内呆在一个有限的空间里,需要“尽早解决”如何协调不同文化观点的问题。</p>
<p><ins></ins>  所以,当宇航员在地球轨道上时,将还不得不满足于通过欣赏外面的景色来振作精神,而不要指望沉溺于烈酒中。我们留在地球上的人,则可以准备好适量的香槟酒,以迎接他们的归来。</p>
<p>  所以,当宇航员在地球轨道上时,将还不得不满足于通过欣赏外面的景色来振作精神,而不要指望沉溺于烈酒中。我们留在地球上的人,则可以准备好适量的香槟酒,以迎接他们的归来。</p>
<p>  原标题:他晚于阿姆斯特朗登月 却是首个敢在月球喝酒的人</p>
<p><strong>  出品︱网易科学人栏目组 胖胖</strong></p>
<p><strong>  作者︱春春</strong>
<a href="http://www.gmw.cn/" target="_blank"><img src="https://img.gmw.cn/pic/content_logo.png" title="返回光明网首页"></a>
<a href="http://www.gmw.cn/" target="_blank"><img src="https://img.gmw.cn/pic/content_logo.png" title="&#x8FD4;&#x56DE;&#x5149;&#x660E;&#x7F51;&#x9996;&#x9875;"/></a>
</p>
<p>[责任编辑:肖春芳]</p>
</div></article>
</div></article>

View file

@ -455,4 +455,4 @@
</p>
</section>
</section></article>
</section></article>

View file

@ -9,17 +9,14 @@
“Mans greed in the ocean is hurting the whales,” says Parata, a fierce and uncompromising elder of the Ngātiwai tribe of eastern Northland.
</p>
<figure itemprop="associatedMedia image" itemscope="itemscope" itemtype="http://schema.org/ImageObject" data-component="image" data-media-id="05cb692c634cd90e5411aab92ca3e649474ff786" id="img-2">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=f5b3d20f0dc5c22a83f96fb709ecd204">
<meta itemprop="width" content="4800">
<meta itemprop="height" content="3200">
<a href="#img-2" data-link-name="Launch Article Lightbox" data-is-ajax="">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=f5b3d20f0dc5c22a83f96fb709ecd204"/>
<meta itemprop="width" content="4800"/>
<meta itemprop="height" content="3200"/><a href="#img-2" data-link-name="Launch Article Lightbox" data-is-ajax="">
<div>
<picture>
<source media="(min-width: 1300px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1300px) and (min-resolution: 120dpi)" sizes="880px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=880&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=adbbf5d870d9cc7f0b9a24eb5472ebf3 1760w"></source> <source media="(min-width: 1300px)" sizes="880px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=880&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=f0a6d8fa60b5571e9e0e9a5673e407b7 880w"></source> <source media="(min-width: 1140px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1140px) and (min-resolution: 120dpi)" sizes="800px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=800&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=d39897e20bb677fda3feb14113aad381 1600w"></source> <source media="(min-width: 1140px)" sizes="800px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=800&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=dbf240ee147c5a0a43321f1634ee41eb 800w"></source> <source media="(min-width: 980px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 980px) and (min-resolution: 120dpi)" sizes="640px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=640&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=f7926915234cc22c9fe718771f5837cc 1280w"></source> <source media="(min-width: 980px)" sizes="640px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=640&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=fa3edf920739ca39d41e3fce38ab277b 640w"></source> <source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=f9fd7969943957bd4893fe29d248626c 1240w"></source> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=61ab70443d54f672febc609b4bfbc5c0 620w"></source> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=a416bff5ba9e0d62f1634aee83308528 1210w"></source> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=5ae3b22ecb3c7bde8b49a212d52b707c 605w"></source> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=c43d04fbea54b99991b541ce674da43d 890w"></source> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=a0c813b07b8d5b99a33a7133ea7185db 445w"></source>
<img itemprop="contentUrl" alt="Hori Parata at his Pātaua farm, the place where he was born and grew up." src="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=575838a657b26493e956c7f84b058080"></picture>
</div>
<span><svg width="22" height="22" viewbox="0 0 22 22">
<path d="M3.4 20.2L9 14.5 7.5 13l-5.7 5.6L1 14H0v7.5l.5.5H8v-1l-4.6-.8M18.7 1.9L13 7.6 14.4 9l5.7-5.7.5 4.7h1.2V.6l-.5-.5H14v1.2l4.7.6"></path></svg></span></a>
<source media="(min-width: 1300px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1300px) and (min-resolution: 120dpi)" sizes="880px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=880&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=adbbf5d870d9cc7f0b9a24eb5472ebf3 1760w"/> <source media="(min-width: 1300px)" sizes="880px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=880&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=f0a6d8fa60b5571e9e0e9a5673e407b7 880w"/> <source media="(min-width: 1140px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1140px) and (min-resolution: 120dpi)" sizes="800px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=800&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=d39897e20bb677fda3feb14113aad381 1600w"/> <source media="(min-width: 1140px)" sizes="800px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=800&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=dbf240ee147c5a0a43321f1634ee41eb 800w"/> <source media="(min-width: 980px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 980px) and (min-resolution: 120dpi)" sizes="640px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=640&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=f7926915234cc22c9fe718771f5837cc 1280w"/> <source media="(min-width: 980px)" sizes="640px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=640&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=fa3edf920739ca39d41e3fce38ab277b 640w"/> <source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=f9fd7969943957bd4893fe29d248626c 1240w"/> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=61ab70443d54f672febc609b4bfbc5c0 620w"/> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=a416bff5ba9e0d62f1634aee83308528 1210w"/> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=5ae3b22ecb3c7bde8b49a212d52b707c 605w"/> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=c43d04fbea54b99991b541ce674da43d 890w"/> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=a0c813b07b8d5b99a33a7133ea7185db 445w"/>
<img itemprop="contentUrl" alt="Hori Parata at his P&#x101;taua farm, the place where he was born and grew up." src="https://i.guim.co.uk/img/media/05cb692c634cd90e5411aab92ca3e649474ff786/0_0_4800_3200/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=575838a657b26493e956c7f84b058080"/></picture>
</div></a>
</figure>
<ul>
<li>
@ -35,17 +32,14 @@
Whale experts regard New Zealand or Aotearoa as it is called by Māori as the whale stranding capital of the world, with more than 5,000 incidents recorded since 1840, and an average of 300 individual animals beaching themselves each year.
</p>
<figure itemprop="associatedMedia image" itemscope="itemscope" itemtype="http://schema.org/ImageObject" data-component="image" data-media-id="98c683a7df9c83b2c13de2d93ca1825199ed5150" id="img-3">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/98c683a7df9c83b2c13de2d93ca1825199ed5150/0_0_4800_3166/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=d2432083289db6bd42f6ad7adc64a78d">
<meta itemprop="width" content="4800">
<meta itemprop="height" content="3166">
<a href="#img-3" data-link-name="Launch Article Lightbox" data-is-ajax="">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/98c683a7df9c83b2c13de2d93ca1825199ed5150/0_0_4800_3166/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=d2432083289db6bd42f6ad7adc64a78d"/>
<meta itemprop="width" content="4800"/>
<meta itemprop="height" content="3166"/><a href="#img-3" data-link-name="Launch Article Lightbox" data-is-ajax="">
<div>
<picture>
<source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/98c683a7df9c83b2c13de2d93ca1825199ed5150/0_0_4800_3166/master/4800.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=7234718ccc92b4251bdfe4c505f064f8 1240w"></source> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/98c683a7df9c83b2c13de2d93ca1825199ed5150/0_0_4800_3166/master/4800.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=b80f7e8fcfbbe8e12fa6954ddeb3bd1e 620w"></source> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/98c683a7df9c83b2c13de2d93ca1825199ed5150/0_0_4800_3166/master/4800.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=78ebc960d0c15f627bfbe60cd770a139 1210w"></source> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/98c683a7df9c83b2c13de2d93ca1825199ed5150/0_0_4800_3166/master/4800.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=1319684ba57c18162a45e56384d418b0 605w"></source> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/98c683a7df9c83b2c13de2d93ca1825199ed5150/0_0_4800_3166/master/4800.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=3170b3a80d76d6c6422b65045444829e 890w"></source> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/98c683a7df9c83b2c13de2d93ca1825199ed5150/0_0_4800_3166/master/4800.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=e835570164cc241d4009af47fc1051f7 445w"></source>
<img itemprop="contentUrl" alt="Kauri (Tekaurinui Robert) Parata, watched by his father Hori Parata, carves a traditional Maōri design at their home in Whangārei. Kauri is a member of the Manu Taupunga group that is the organising arm of the whale-body recovery operation started by his father, Hori Parata" src="https://i.guim.co.uk/img/media/98c683a7df9c83b2c13de2d93ca1825199ed5150/0_0_4800_3166/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=2f198e1958f140f3ac664a3fdd87177c"></picture>
</div>
<span><svg width="22" height="22" viewbox="0 0 22 22">
<path d="M3.4 20.2L9 14.5 7.5 13l-5.7 5.6L1 14H0v7.5l.5.5H8v-1l-4.6-.8M18.7 1.9L13 7.6 14.4 9l5.7-5.7.5 4.7h1.2V.6l-.5-.5H14v1.2l4.7.6"></path></svg></span></a>
<source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/98c683a7df9c83b2c13de2d93ca1825199ed5150/0_0_4800_3166/master/4800.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=7234718ccc92b4251bdfe4c505f064f8 1240w"/> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/98c683a7df9c83b2c13de2d93ca1825199ed5150/0_0_4800_3166/master/4800.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=b80f7e8fcfbbe8e12fa6954ddeb3bd1e 620w"/> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/98c683a7df9c83b2c13de2d93ca1825199ed5150/0_0_4800_3166/master/4800.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=78ebc960d0c15f627bfbe60cd770a139 1210w"/> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/98c683a7df9c83b2c13de2d93ca1825199ed5150/0_0_4800_3166/master/4800.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=1319684ba57c18162a45e56384d418b0 605w"/> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/98c683a7df9c83b2c13de2d93ca1825199ed5150/0_0_4800_3166/master/4800.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=3170b3a80d76d6c6422b65045444829e 890w"/> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/98c683a7df9c83b2c13de2d93ca1825199ed5150/0_0_4800_3166/master/4800.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=e835570164cc241d4009af47fc1051f7 445w"/>
<img itemprop="contentUrl" alt="Kauri (Tekaurinui Robert) Parata, watched by his father Hori Parata, carves a traditional Ma&#x14D;ri design at their home in Whang&#x101;rei. Kauri is a member of the Manu Taupunga group that is the organising arm of the whale-body recovery operation started by his father, Hori Parata" src="https://i.guim.co.uk/img/media/98c683a7df9c83b2c13de2d93ca1825199ed5150/0_0_4800_3166/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=2f198e1958f140f3ac664a3fdd87177c"/></picture>
</div></a>
</figure>
<ul>
<li>
@ -61,43 +55,34 @@
Climate change is to blame too, <a href="https://www.radionz.co.nz/news/national/377272/new-zealand-beached-whales-why-are-so-many-getting-stranded" data-link-name="in body link" target="_blank">scientists think</a>, with warming ocean temperatures moving whales prey closer to the shore and forcing them to pursue their food into shallow waters.
</p>
<figure itemprop="associatedMedia image" itemscope="itemscope" itemtype="http://schema.org/ImageObject" data-component="image" data-media-id="0447972cf47ca67882fcfc648edf7e574b0853bc" id="img-4">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/0447972cf47ca67882fcfc648edf7e574b0853bc/0_0_4800_3200/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=0e7302276c6cc7cb65be9bcdacd3081f">
<meta itemprop="width" content="4800">
<meta itemprop="height" content="3200">
<a href="#img-4" data-link-name="Launch Article Lightbox" data-is-ajax="">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/0447972cf47ca67882fcfc648edf7e574b0853bc/0_0_4800_3200/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=0e7302276c6cc7cb65be9bcdacd3081f"/>
<meta itemprop="width" content="4800"/>
<meta itemprop="height" content="3200"/><a href="#img-4" data-link-name="Launch Article Lightbox" data-is-ajax="">
<div>
<picture>
<source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/0447972cf47ca67882fcfc648edf7e574b0853bc/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=933c5693fbf9195f6e83a8928283f85e 1240w"></source> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/0447972cf47ca67882fcfc648edf7e574b0853bc/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=e07b988894308f3bfc052d1ff9dfc1e2 620w"></source> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/0447972cf47ca67882fcfc648edf7e574b0853bc/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=113cf92fe80bc5996634c34b3c7a0c09 1210w"></source> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/0447972cf47ca67882fcfc648edf7e574b0853bc/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=5a7358223e80941bd1b0e0f427beefde 605w"></source> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/0447972cf47ca67882fcfc648edf7e574b0853bc/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=292e941797de1671c185c1b074c688ad 890w"></source> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/0447972cf47ca67882fcfc648edf7e574b0853bc/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=d1bc1c4d9341f9b6d63b64861a3de711 445w"></source>
<img itemprop="contentUrl" alt="A bin of small whale bones." src="https://i.guim.co.uk/img/media/0447972cf47ca67882fcfc648edf7e574b0853bc/0_0_4800_3200/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=718132fd888108a18383c24a8425523b"></picture>
</div>
<span><svg width="22" height="22" viewbox="0 0 22 22">
<path d="M3.4 20.2L9 14.5 7.5 13l-5.7 5.6L1 14H0v7.5l.5.5H8v-1l-4.6-.8M18.7 1.9L13 7.6 14.4 9l5.7-5.7.5 4.7h1.2V.6l-.5-.5H14v1.2l4.7.6"></path></svg></span></a>
<source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/0447972cf47ca67882fcfc648edf7e574b0853bc/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=933c5693fbf9195f6e83a8928283f85e 1240w"/> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/0447972cf47ca67882fcfc648edf7e574b0853bc/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=e07b988894308f3bfc052d1ff9dfc1e2 620w"/> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/0447972cf47ca67882fcfc648edf7e574b0853bc/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=113cf92fe80bc5996634c34b3c7a0c09 1210w"/> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/0447972cf47ca67882fcfc648edf7e574b0853bc/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=5a7358223e80941bd1b0e0f427beefde 605w"/> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/0447972cf47ca67882fcfc648edf7e574b0853bc/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=292e941797de1671c185c1b074c688ad 890w"/> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/0447972cf47ca67882fcfc648edf7e574b0853bc/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=d1bc1c4d9341f9b6d63b64861a3de711 445w"/>
<img itemprop="contentUrl" alt="A bin of small whale bones." src="https://i.guim.co.uk/img/media/0447972cf47ca67882fcfc648edf7e574b0853bc/0_0_4800_3200/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=718132fd888108a18383c24a8425523b"/></picture>
</div></a>
</figure>
<figure itemprop="associatedMedia image" itemscope="itemscope" itemtype="http://schema.org/ImageObject" data-component="image" data-media-id="416800b8d06039780c3e6de28564e6f277b4e7b7" id="img-5">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/416800b8d06039780c3e6de28564e6f277b4e7b7/0_0_4800_3200/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=249ddc3119aa637c3a1ae4998509f604">
<meta itemprop="width" content="4800">
<meta itemprop="height" content="3200">
<a href="#img-5" data-link-name="Launch Article Lightbox" data-is-ajax="">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/416800b8d06039780c3e6de28564e6f277b4e7b7/0_0_4800_3200/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=249ddc3119aa637c3a1ae4998509f604"/>
<meta itemprop="width" content="4800"/>
<meta itemprop="height" content="3200"/><a href="#img-5" data-link-name="Launch Article Lightbox" data-is-ajax="">
<div>
<picture>
<source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/416800b8d06039780c3e6de28564e6f277b4e7b7/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=4197b7a2bc3c7e32d3eaee927b9d08e6 1240w"></source> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/416800b8d06039780c3e6de28564e6f277b4e7b7/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=82d6908c6ffe622566e1cc6513d60ddd 620w"></source> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/416800b8d06039780c3e6de28564e6f277b4e7b7/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=222e300fb2a60da1a841fbbc2bc8f752 1210w"></source> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/416800b8d06039780c3e6de28564e6f277b4e7b7/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=63ba1cfe4b5e7c7d741d311d58997fcf 605w"></source> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/416800b8d06039780c3e6de28564e6f277b4e7b7/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=231139825b311ede8d01e6c702d6d12c 890w"></source> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/416800b8d06039780c3e6de28564e6f277b4e7b7/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=1065dd4439e14c72fe520c19566172e2 445w"></source>
<img itemprop="contentUrl" alt="The baleen recovered from a stranded Pygmy Right Whale." src="https://i.guim.co.uk/img/media/416800b8d06039780c3e6de28564e6f277b4e7b7/0_0_4800_3200/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=c5a53178ebbe54490c97fad6b5e032c4"></picture>
</div>
<span><svg width="22" height="22" viewbox="0 0 22 22">
<path d="M3.4 20.2L9 14.5 7.5 13l-5.7 5.6L1 14H0v7.5l.5.5H8v-1l-4.6-.8M18.7 1.9L13 7.6 14.4 9l5.7-5.7.5 4.7h1.2V.6l-.5-.5H14v1.2l4.7.6"></path></svg></span></a>
<source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/416800b8d06039780c3e6de28564e6f277b4e7b7/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=4197b7a2bc3c7e32d3eaee927b9d08e6 1240w"/> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/416800b8d06039780c3e6de28564e6f277b4e7b7/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=82d6908c6ffe622566e1cc6513d60ddd 620w"/> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/416800b8d06039780c3e6de28564e6f277b4e7b7/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=222e300fb2a60da1a841fbbc2bc8f752 1210w"/> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/416800b8d06039780c3e6de28564e6f277b4e7b7/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=63ba1cfe4b5e7c7d741d311d58997fcf 605w"/> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/416800b8d06039780c3e6de28564e6f277b4e7b7/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=231139825b311ede8d01e6c702d6d12c 890w"/> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/416800b8d06039780c3e6de28564e6f277b4e7b7/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=1065dd4439e14c72fe520c19566172e2 445w"/>
<img itemprop="contentUrl" alt="The baleen recovered from a stranded Pygmy Right Whale." src="https://i.guim.co.uk/img/media/416800b8d06039780c3e6de28564e6f277b4e7b7/0_0_4800_3200/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=c5a53178ebbe54490c97fad6b5e032c4"/></picture>
</div></a>
</figure>
<figure itemprop="associatedMedia image" itemscope="itemscope" itemtype="http://schema.org/ImageObject" data-component="image" data-media-id="8c207197c0a9e6f407dcddfded5f868a142c9cab" id="img-6">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/8c207197c0a9e6f407dcddfded5f868a142c9cab/0_0_4800_3200/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=bcfefc5593dcc2bdb0dd3b0543cfa4eb">
<meta itemprop="width" content="4800">
<meta itemprop="height" content="3200">
<a href="#img-6" data-link-name="Launch Article Lightbox" data-is-ajax="">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/8c207197c0a9e6f407dcddfded5f868a142c9cab/0_0_4800_3200/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=bcfefc5593dcc2bdb0dd3b0543cfa4eb"/>
<meta itemprop="width" content="4800"/>
<meta itemprop="height" content="3200"/><a href="#img-6" data-link-name="Launch Article Lightbox" data-is-ajax="">
<div>
<picture>
<source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/8c207197c0a9e6f407dcddfded5f868a142c9cab/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=d272c4dc57408daa0dcdf5461a230e9e 1240w"></source> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/8c207197c0a9e6f407dcddfded5f868a142c9cab/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=890f0e0cee54663a90292471a16f95d2 620w"></source> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/8c207197c0a9e6f407dcddfded5f868a142c9cab/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=59a57c5bded93fe0efe0046226fe7c69 1210w"></source> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/8c207197c0a9e6f407dcddfded5f868a142c9cab/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=f1b2a4c79e965aa76a322ad25072a052 605w"></source> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/8c207197c0a9e6f407dcddfded5f868a142c9cab/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=ffbdfd671eb45e3a87e3dc9137e8b006 890w"></source> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/8c207197c0a9e6f407dcddfded5f868a142c9cab/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=c560f0b0ef9736c1a66215cc29c59d43 445w"></source>
<img itemprop="contentUrl" alt="Squid beaks, from the stomach of a Sperm Whale." src="https://i.guim.co.uk/img/media/8c207197c0a9e6f407dcddfded5f868a142c9cab/0_0_4800_3200/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=0dd659ae339b1aea9a99ed7f6f8eadeb"></picture>
</div>
<span><svg width="22" height="22" viewbox="0 0 22 22">
<path d="M3.4 20.2L9 14.5 7.5 13l-5.7 5.6L1 14H0v7.5l.5.5H8v-1l-4.6-.8M18.7 1.9L13 7.6 14.4 9l5.7-5.7.5 4.7h1.2V.6l-.5-.5H14v1.2l4.7.6"></path></svg></span></a>
<source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/8c207197c0a9e6f407dcddfded5f868a142c9cab/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=d272c4dc57408daa0dcdf5461a230e9e 1240w"/> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/8c207197c0a9e6f407dcddfded5f868a142c9cab/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=890f0e0cee54663a90292471a16f95d2 620w"/> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/8c207197c0a9e6f407dcddfded5f868a142c9cab/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=59a57c5bded93fe0efe0046226fe7c69 1210w"/> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/8c207197c0a9e6f407dcddfded5f868a142c9cab/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=f1b2a4c79e965aa76a322ad25072a052 605w"/> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/8c207197c0a9e6f407dcddfded5f868a142c9cab/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=ffbdfd671eb45e3a87e3dc9137e8b006 890w"/> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/8c207197c0a9e6f407dcddfded5f868a142c9cab/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=c560f0b0ef9736c1a66215cc29c59d43 445w"/>
<img itemprop="contentUrl" alt="Squid beaks, from the stomach of a Sperm Whale." src="https://i.guim.co.uk/img/media/8c207197c0a9e6f407dcddfded5f868a142c9cab/0_0_4800_3200/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=0dd659ae339b1aea9a99ed7f6f8eadeb"/></picture>
</div></a>
</figure>
<ul>
<li>
@ -134,17 +119,14 @@
Then the tribe moves in en masse and holds a <em>karakia</em> (prayer), names each animal and sets to work removing their bones, blubber, eyes and teeth for cultural purposes.
</p>
<figure itemprop="associatedMedia image" itemscope="itemscope" itemtype="http://schema.org/ImageObject" data-component="image" data-media-id="0d13adeb0790af5c5fa317ce477c323d0e1c773c" id="img-7">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=d73916fda0f6c60b5eebcb71fea643e9">
<meta itemprop="width" content="4800">
<meta itemprop="height" content="2334">
<a href="#img-7" data-link-name="Launch Article Lightbox" data-is-ajax="">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=d73916fda0f6c60b5eebcb71fea643e9"/>
<meta itemprop="width" content="4800"/>
<meta itemprop="height" content="2334"/><a href="#img-7" data-link-name="Launch Article Lightbox" data-is-ajax="">
<div>
<picture>
<source media="(min-width: 1300px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1300px) and (min-resolution: 120dpi)" sizes="1300px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=1300&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=524b92a6590a1b5c139bfe50581476a1 2600w"></source> <source media="(min-width: 1300px)" sizes="1300px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=1300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=837d7df48e565ffad49febab20fbd179 1300w"></source> <source media="(min-width: 1140px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1140px) and (min-resolution: 120dpi)" sizes="1140px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=1140&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=fe98f4515ae3490f53804235a4dcf84b 2280w"></source> <source media="(min-width: 1140px)" sizes="1140px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=1140&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=a3ec73ab7f20798ec264f5ecb59f6bcc 1140w"></source> <source media="(min-width: 980px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 980px) and (min-resolution: 120dpi)" sizes="1125px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=1125&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=3ac3fd319accb248cf8a13e8ef55ebcc 2250w"></source> <source media="(min-width: 980px)" sizes="1125px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=1125&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=2561c80af0d0e8eed2fc7c535be48696 1125w"></source> <source media="(min-width: 740px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 740px) and (min-resolution: 120dpi)" sizes="965px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=965&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=539617a30ea852b01218eec69d6066e6 1930w"></source> <source media="(min-width: 740px)" sizes="965px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=965&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=624139eae65dd4c96efd1a90243b9286 965w"></source> <source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="725px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=725&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=633619afab6a0ee26a3839b69160e854 1450w"></source> <source media="(min-width: 660px)" sizes="725px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=725&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=98b9351340e8ee30063a4b6eb6501d6f 725w"></source> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="645px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=645&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=e11a31f8adaab06b457fd9c7dda6bf6d 1290w"></source> <source media="(min-width: 480px)" sizes="645px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=645&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=912104c53b38d1cd424bfb82302480e1 645w"></source> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="465px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=465&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=209259fab8ec9e81386838f2d5cdecc3 930w"></source> <source media="(min-width: 0px)" sizes="465px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=465&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=06848a63793084a21bc86aa613b126a7 465w"></source>
<img itemprop="contentUrl" alt="Buck Cullen with his daughter Kaiarahi (10 months) in his back yard where he is storing a pair of massive Sperm Whale jawbones. Buck is a integral member of the whale recovery team, alongside Hori Parata." src="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=41b88ee343b9be76688b88443c7a8958"></picture>
</div>
<span><svg width="22" height="22" viewbox="0 0 22 22">
<path d="M3.4 20.2L9 14.5 7.5 13l-5.7 5.6L1 14H0v7.5l.5.5H8v-1l-4.6-.8M18.7 1.9L13 7.6 14.4 9l5.7-5.7.5 4.7h1.2V.6l-.5-.5H14v1.2l4.7.6"></path></svg></span></a>
<source media="(min-width: 1300px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1300px) and (min-resolution: 120dpi)" sizes="1300px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=1300&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=524b92a6590a1b5c139bfe50581476a1 2600w"/> <source media="(min-width: 1300px)" sizes="1300px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=1300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=837d7df48e565ffad49febab20fbd179 1300w"/> <source media="(min-width: 1140px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1140px) and (min-resolution: 120dpi)" sizes="1140px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=1140&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=fe98f4515ae3490f53804235a4dcf84b 2280w"/> <source media="(min-width: 1140px)" sizes="1140px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=1140&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=a3ec73ab7f20798ec264f5ecb59f6bcc 1140w"/> <source media="(min-width: 980px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 980px) and (min-resolution: 120dpi)" sizes="1125px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=1125&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=3ac3fd319accb248cf8a13e8ef55ebcc 2250w"/> <source media="(min-width: 980px)" sizes="1125px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=1125&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=2561c80af0d0e8eed2fc7c535be48696 1125w"/> <source media="(min-width: 740px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 740px) and (min-resolution: 120dpi)" sizes="965px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=965&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=539617a30ea852b01218eec69d6066e6 1930w"/> <source media="(min-width: 740px)" sizes="965px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=965&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=624139eae65dd4c96efd1a90243b9286 965w"/> <source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="725px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=725&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=633619afab6a0ee26a3839b69160e854 1450w"/> <source media="(min-width: 660px)" sizes="725px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=725&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=98b9351340e8ee30063a4b6eb6501d6f 725w"/> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="645px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=645&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=e11a31f8adaab06b457fd9c7dda6bf6d 1290w"/> <source media="(min-width: 480px)" sizes="645px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=645&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=912104c53b38d1cd424bfb82302480e1 645w"/> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="465px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=465&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=209259fab8ec9e81386838f2d5cdecc3 930w"/> <source media="(min-width: 0px)" sizes="465px" srcset="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=465&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=06848a63793084a21bc86aa613b126a7 465w"/>
<img itemprop="contentUrl" alt="Buck Cullen with his daughter Kaiarahi (10 months) in his back yard where he is storing a pair of massive Sperm Whale jawbones. Buck is a integral member of the whale recovery team, alongside Hori Parata." src="https://i.guim.co.uk/img/media/0d13adeb0790af5c5fa317ce477c323d0e1c773c/0_0_4800_2334/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=41b88ee343b9be76688b88443c7a8958"/></picture>
</div></a>
</figure>
<ul>
<li>
@ -160,17 +142,14 @@
Earlier this year in South Taranaki, a mass stranding that was described as <a href="https://www.stuff.co.nz/national/104249829/unprecedented-whale-strandings-reaches-11-in-total-on-taranaki-beach" data-link-name="in body link" target="_blank">“unprecedented”</a> left the local Māori tribe scrambling. Security was brought in when thieves attacked a sperm whale with an axe, trying to remove valuable teeth from its jaw.
</p>
<figure itemprop="associatedMedia image" itemscope="itemscope" itemtype="http://schema.org/ImageObject" data-component="image" data-media-id="4973b41f53b8ade499f99a305b01157eca659ca5" id="img-8">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/4973b41f53b8ade499f99a305b01157eca659ca5/0_0_1200_900/master/1200.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=ee921715aaf10e0816dcf15dfc3a21f5">
<meta itemprop="width" content="1200">
<meta itemprop="height" content="900">
<a href="#img-8" data-link-name="Launch Article Lightbox" data-is-ajax="">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/4973b41f53b8ade499f99a305b01157eca659ca5/0_0_1200_900/master/1200.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=ee921715aaf10e0816dcf15dfc3a21f5"/>
<meta itemprop="width" content="1200"/>
<meta itemprop="height" content="900"/><a href="#img-8" data-link-name="Launch Article Lightbox" data-is-ajax="">
<div>
<picture>
<source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/4973b41f53b8ade499f99a305b01157eca659ca5/0_0_1200_900/master/1200.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=8eb5af62092c8a0eb0d283cb0887f5c5 1240w"></source> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/4973b41f53b8ade499f99a305b01157eca659ca5/0_0_1200_900/master/1200.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=9ace0f595be568263c5991993632dae8 620w"></source> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/4973b41f53b8ade499f99a305b01157eca659ca5/0_0_1200_900/master/1200.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=97219f131f1013d15fed7c63308f2b2f 1210w"></source> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/4973b41f53b8ade499f99a305b01157eca659ca5/0_0_1200_900/master/1200.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=17191691b6cd81c2a67730d5475db08b 605w"></source> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/4973b41f53b8ade499f99a305b01157eca659ca5/0_0_1200_900/master/1200.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=30d51b75767551399ba174bae5c39e94 890w"></source> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/4973b41f53b8ade499f99a305b01157eca659ca5/0_0_1200_900/master/1200.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=936568b6e7da0a710abcd2c015fd0a8b 445w"></source>
<img itemprop="contentUrl" alt="12 Parāoa Whales (Sperm Whales) recently stranded on the South Taranaki coast of Kaupokonui, on a scale not seen on their coast in recent memory." src="https://i.guim.co.uk/img/media/4973b41f53b8ade499f99a305b01157eca659ca5/0_0_1200_900/master/1200.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=7c255bf6f8a27c56365a86813cdd1517"></picture>
</div>
<span><svg width="22" height="22" viewbox="0 0 22 22">
<path d="M3.4 20.2L9 14.5 7.5 13l-5.7 5.6L1 14H0v7.5l.5.5H8v-1l-4.6-.8M18.7 1.9L13 7.6 14.4 9l5.7-5.7.5 4.7h1.2V.6l-.5-.5H14v1.2l4.7.6"></path></svg></span></a>
<source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/4973b41f53b8ade499f99a305b01157eca659ca5/0_0_1200_900/master/1200.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=8eb5af62092c8a0eb0d283cb0887f5c5 1240w"/> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/4973b41f53b8ade499f99a305b01157eca659ca5/0_0_1200_900/master/1200.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=9ace0f595be568263c5991993632dae8 620w"/> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/4973b41f53b8ade499f99a305b01157eca659ca5/0_0_1200_900/master/1200.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=97219f131f1013d15fed7c63308f2b2f 1210w"/> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/4973b41f53b8ade499f99a305b01157eca659ca5/0_0_1200_900/master/1200.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=17191691b6cd81c2a67730d5475db08b 605w"/> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/4973b41f53b8ade499f99a305b01157eca659ca5/0_0_1200_900/master/1200.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=30d51b75767551399ba174bae5c39e94 890w"/> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/4973b41f53b8ade499f99a305b01157eca659ca5/0_0_1200_900/master/1200.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=936568b6e7da0a710abcd2c015fd0a8b 445w"/>
<img itemprop="contentUrl" alt="12 Par&#x101;oa Whales (Sperm Whales) recently stranded on the South Taranaki coast of Kaupokonui, on a scale not seen on their coast in recent memory." src="https://i.guim.co.uk/img/media/4973b41f53b8ade499f99a305b01157eca659ca5/0_0_1200_900/master/1200.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=7c255bf6f8a27c56365a86813cdd1517"/></picture>
</div></a>
</figure>
<ul>
<li>
@ -186,17 +165,14 @@
He says mass strandings are getting more local and international attention and money from donations, but traditional knowledge is being dismissed as overly spiritual.
</p>
<figure itemprop="associatedMedia image" itemscope="itemscope" itemtype="http://schema.org/ImageObject" data-component="image" data-media-id="d1941b6a6908314fab28f44da222a4c892213341" id="img-9">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=4e46b70079819caee86359a058c92be1">
<meta itemprop="width" content="4800">
<meta itemprop="height" content="3120">
<a href="#img-9" data-link-name="Launch Article Lightbox" data-is-ajax="">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=4e46b70079819caee86359a058c92be1"/>
<meta itemprop="width" content="4800"/>
<meta itemprop="height" content="3120"/><a href="#img-9" data-link-name="Launch Article Lightbox" data-is-ajax="">
<div>
<picture>
<source media="(min-width: 1300px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1300px) and (min-resolution: 120dpi)" sizes="880px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=880&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=b775d649981f7bc36cf0753dd9f47862 1760w"></source> <source media="(min-width: 1300px)" sizes="880px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=880&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=3aa0de336dad5991ff92d488288fcc92 880w"></source> <source media="(min-width: 1140px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1140px) and (min-resolution: 120dpi)" sizes="800px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=800&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=9133cf8cd42d42bb1342dbefbfc67c22 1600w"></source> <source media="(min-width: 1140px)" sizes="800px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=800&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=2916efc01252a457768bfd28b40591ee 800w"></source> <source media="(min-width: 980px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 980px) and (min-resolution: 120dpi)" sizes="640px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=640&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=c7044b93d3aa73f7eac1b56ab9d77d86 1280w"></source> <source media="(min-width: 980px)" sizes="640px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=640&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=2342e6519bfe1ce74a04ca96c06ed4cd 640w"></source> <source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=b6218129f26e09d8133bf226df3e9bed 1240w"></source> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=9d20a1ca789f2efe7ba2dfdef9c28725 620w"></source> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=73fb4a4f8d59a92325fef9faa2ddf90d 1210w"></source> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=7894b6600fbb6af1ec6552007ad12da8 605w"></source> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=19022ce9fcafebe383880059f34add78 890w"></source> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=ded05f2c1859d70d3b8d3de3dcb75e0f 445w"></source>
<img itemprop="contentUrl" alt="Kauri (Tekaurinui Robert) Parata, of the New Zealand Māori tribe Ngāti Wai, in front of the carving shed at Hihiaua Cultural Centre in Whangarei" src="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=76a26a289728e3d625e57d32eced57d8"></picture>
</div>
<span><svg width="22" height="22" viewbox="0 0 22 22">
<path d="M3.4 20.2L9 14.5 7.5 13l-5.7 5.6L1 14H0v7.5l.5.5H8v-1l-4.6-.8M18.7 1.9L13 7.6 14.4 9l5.7-5.7.5 4.7h1.2V.6l-.5-.5H14v1.2l4.7.6"></path></svg></span></a>
<source media="(min-width: 1300px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1300px) and (min-resolution: 120dpi)" sizes="880px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=880&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=b775d649981f7bc36cf0753dd9f47862 1760w"/> <source media="(min-width: 1300px)" sizes="880px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=880&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=3aa0de336dad5991ff92d488288fcc92 880w"/> <source media="(min-width: 1140px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1140px) and (min-resolution: 120dpi)" sizes="800px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=800&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=9133cf8cd42d42bb1342dbefbfc67c22 1600w"/> <source media="(min-width: 1140px)" sizes="800px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=800&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=2916efc01252a457768bfd28b40591ee 800w"/> <source media="(min-width: 980px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 980px) and (min-resolution: 120dpi)" sizes="640px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=640&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=c7044b93d3aa73f7eac1b56ab9d77d86 1280w"/> <source media="(min-width: 980px)" sizes="640px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=640&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=2342e6519bfe1ce74a04ca96c06ed4cd 640w"/> <source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=b6218129f26e09d8133bf226df3e9bed 1240w"/> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=9d20a1ca789f2efe7ba2dfdef9c28725 620w"/> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=73fb4a4f8d59a92325fef9faa2ddf90d 1210w"/> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=7894b6600fbb6af1ec6552007ad12da8 605w"/> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=19022ce9fcafebe383880059f34add78 890w"/> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=ded05f2c1859d70d3b8d3de3dcb75e0f 445w"/>
<img itemprop="contentUrl" alt="Kauri (Tekaurinui Robert) Parata, of the New Zealand M&#x101;ori tribe Ng&#x101;ti Wai, in front of the carving shed at Hihiaua Cultural Centre in Whangarei" src="https://i.guim.co.uk/img/media/d1941b6a6908314fab28f44da222a4c892213341/0_0_4800_3120/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=76a26a289728e3d625e57d32eced57d8"/></picture>
</div></a>
</figure>
<ul>
<li>
@ -215,30 +191,24 @@
“Our own ancestors wouldnt say to go down there and hug the whales. Thats a modern thing,” says Te Kaurinui.
</p>
<figure itemprop="associatedMedia image" itemscope="itemscope" itemtype="http://schema.org/ImageObject" data-component="image" data-media-id="14b462f5d9489def554e0f9f436f13aec332f7b8" id="img-10">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/14b462f5d9489def554e0f9f436f13aec332f7b8/0_0_4278_4800/master/4278.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=b8bf0c299908608310fb47e4163afb38">
<meta itemprop="width" content="4278">
<meta itemprop="height" content="4800">
<a href="#img-10" data-link-name="Launch Article Lightbox" data-is-ajax="">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/14b462f5d9489def554e0f9f436f13aec332f7b8/0_0_4278_4800/master/4278.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=b8bf0c299908608310fb47e4163afb38"/>
<meta itemprop="width" content="4278"/>
<meta itemprop="height" content="4800"/><a href="#img-10" data-link-name="Launch Article Lightbox" data-is-ajax="">
<div>
<picture>
<source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/14b462f5d9489def554e0f9f436f13aec332f7b8/0_0_4278_4800/master/4278.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=1a392a17d0c74d513ff14129ae5f7e6c 1240w"></source> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/14b462f5d9489def554e0f9f436f13aec332f7b8/0_0_4278_4800/master/4278.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=d5b05458659a4a06ff6583046f712ad1 620w"></source> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/14b462f5d9489def554e0f9f436f13aec332f7b8/0_0_4278_4800/master/4278.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=649c2127cfbab69a7d6e4085ea098d95 1210w"></source> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/14b462f5d9489def554e0f9f436f13aec332f7b8/0_0_4278_4800/master/4278.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=d45dfb664b5479650ba067c6a5af16c3 605w"></source> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/14b462f5d9489def554e0f9f436f13aec332f7b8/0_0_4278_4800/master/4278.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=f94f4c652479979124e52c237804eb83 890w"></source> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/14b462f5d9489def554e0f9f436f13aec332f7b8/0_0_4278_4800/master/4278.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=f6c8d3b38a8af6d197d0a60d22a326f3 445w"></source>
<img itemprop="contentUrl" alt="The Pou in front of the carving shed at Hihiaua Cultural centre" src="https://i.guim.co.uk/img/media/14b462f5d9489def554e0f9f436f13aec332f7b8/0_0_4278_4800/master/4278.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=a45ec7578a392eec201d2f6920b609a0"></picture>
</div>
<span><svg width="22" height="22" viewbox="0 0 22 22">
<path d="M3.4 20.2L9 14.5 7.5 13l-5.7 5.6L1 14H0v7.5l.5.5H8v-1l-4.6-.8M18.7 1.9L13 7.6 14.4 9l5.7-5.7.5 4.7h1.2V.6l-.5-.5H14v1.2l4.7.6"></path></svg></span></a>
<source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/14b462f5d9489def554e0f9f436f13aec332f7b8/0_0_4278_4800/master/4278.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=1a392a17d0c74d513ff14129ae5f7e6c 1240w"/> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/14b462f5d9489def554e0f9f436f13aec332f7b8/0_0_4278_4800/master/4278.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=d5b05458659a4a06ff6583046f712ad1 620w"/> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/14b462f5d9489def554e0f9f436f13aec332f7b8/0_0_4278_4800/master/4278.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=649c2127cfbab69a7d6e4085ea098d95 1210w"/> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/14b462f5d9489def554e0f9f436f13aec332f7b8/0_0_4278_4800/master/4278.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=d45dfb664b5479650ba067c6a5af16c3 605w"/> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/14b462f5d9489def554e0f9f436f13aec332f7b8/0_0_4278_4800/master/4278.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=f94f4c652479979124e52c237804eb83 890w"/> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/14b462f5d9489def554e0f9f436f13aec332f7b8/0_0_4278_4800/master/4278.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=f6c8d3b38a8af6d197d0a60d22a326f3 445w"/>
<img itemprop="contentUrl" alt="The Pou in front of the carving shed at Hihiaua Cultural centre" src="https://i.guim.co.uk/img/media/14b462f5d9489def554e0f9f436f13aec332f7b8/0_0_4278_4800/master/4278.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=a45ec7578a392eec201d2f6920b609a0"/></picture>
</div></a>
</figure>
<figure itemprop="associatedMedia image" itemscope="itemscope" itemtype="http://schema.org/ImageObject" data-component="image" data-media-id="e2cf54c36f17c6894844ea0cdd4346288a002da9" id="img-11">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/e2cf54c36f17c6894844ea0cdd4346288a002da9/915_0_3172_3189/master/3172.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=3691946929b4105ba35ff9d306cb4fbc">
<meta itemprop="width" content="3172">
<meta itemprop="height" content="3189">
<a href="#img-11" data-link-name="Launch Article Lightbox" data-is-ajax="">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/e2cf54c36f17c6894844ea0cdd4346288a002da9/915_0_3172_3189/master/3172.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=3691946929b4105ba35ff9d306cb4fbc"/>
<meta itemprop="width" content="3172"/>
<meta itemprop="height" content="3189"/><a href="#img-11" data-link-name="Launch Article Lightbox" data-is-ajax="">
<div>
<picture>
<source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/e2cf54c36f17c6894844ea0cdd4346288a002da9/915_0_3172_3189/master/3172.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=be6cf9beea564e7be872193b01c329a3 1240w"></source> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/e2cf54c36f17c6894844ea0cdd4346288a002da9/915_0_3172_3189/master/3172.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=c74497ec55bb1b680169d62684aa803d 620w"></source> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/e2cf54c36f17c6894844ea0cdd4346288a002da9/915_0_3172_3189/master/3172.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=06b2c03638556f85da582e419cf1817a 1210w"></source> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/e2cf54c36f17c6894844ea0cdd4346288a002da9/915_0_3172_3189/master/3172.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=8cc04403e3902dbe1e4a9b01b8d4e517 605w"></source> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/e2cf54c36f17c6894844ea0cdd4346288a002da9/915_0_3172_3189/master/3172.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=893cbf39d6db1d28ba8fc85419382f9d 890w"></source> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/e2cf54c36f17c6894844ea0cdd4346288a002da9/915_0_3172_3189/master/3172.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=6df725aaf59e21b09434b967e05b3272 445w"></source>
<img itemprop="contentUrl" alt="Kauri (Tekaurinui Robert) Parata, holds three whale teeth recovered from a beached whale. The middle tooth shows the marks where a poacher had attempted to hack it out with an axe before the recovery group arrived. Kauri is a member of the Manu Taupunga group that is the organising arm of the whale-body recovery operation started by his father, Hori Parata." src="https://i.guim.co.uk/img/media/e2cf54c36f17c6894844ea0cdd4346288a002da9/915_0_3172_3189/master/3172.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=0bd8e9f51bdf79a6e0a15ed176cfb57d"></picture>
</div>
<span><svg width="22" height="22" viewbox="0 0 22 22">
<path d="M3.4 20.2L9 14.5 7.5 13l-5.7 5.6L1 14H0v7.5l.5.5H8v-1l-4.6-.8M18.7 1.9L13 7.6 14.4 9l5.7-5.7.5 4.7h1.2V.6l-.5-.5H14v1.2l4.7.6"></path></svg></span></a>
<source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/e2cf54c36f17c6894844ea0cdd4346288a002da9/915_0_3172_3189/master/3172.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=be6cf9beea564e7be872193b01c329a3 1240w"/> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/e2cf54c36f17c6894844ea0cdd4346288a002da9/915_0_3172_3189/master/3172.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=c74497ec55bb1b680169d62684aa803d 620w"/> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/e2cf54c36f17c6894844ea0cdd4346288a002da9/915_0_3172_3189/master/3172.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=06b2c03638556f85da582e419cf1817a 1210w"/> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/e2cf54c36f17c6894844ea0cdd4346288a002da9/915_0_3172_3189/master/3172.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=8cc04403e3902dbe1e4a9b01b8d4e517 605w"/> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/e2cf54c36f17c6894844ea0cdd4346288a002da9/915_0_3172_3189/master/3172.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=893cbf39d6db1d28ba8fc85419382f9d 890w"/> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/e2cf54c36f17c6894844ea0cdd4346288a002da9/915_0_3172_3189/master/3172.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=6df725aaf59e21b09434b967e05b3272 445w"/>
<img itemprop="contentUrl" alt="Kauri (Tekaurinui Robert) Parata, holds three whale teeth recovered from a beached whale. The middle tooth shows the marks where a poacher had attempted to hack it out with an axe before the recovery group arrived. Kauri is a member of the Manu Taupunga group that is the organising arm of the whale-body recovery operation started by his father, Hori Parata." src="https://i.guim.co.uk/img/media/e2cf54c36f17c6894844ea0cdd4346288a002da9/915_0_3172_3189/master/3172.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=0bd8e9f51bdf79a6e0a15ed176cfb57d"/></picture>
</div></a>
</figure>
<p>
The Ngātiwai are investigating a possible link between the crisis of the dieback disease killing New Zealands native kauri trees and <a href="https://www.theguardian.com/world/2018/jul/14/like-losing-family-time-may-be-running-out-for-new-zealands-most-sacred-tree" data-link-name="in body link" target="_blank">threatening the giant Tāne Mahuta, which may be 2,000 years old</a> and the increase in whale strandings.
@ -250,17 +220,14 @@
“People dismiss us when we tell them our spiritual understanding of whales why they are beaching, why they are hurting,” says Te Kaurinui.
</p>
<figure itemprop="associatedMedia image" itemscope="itemscope" itemtype="http://schema.org/ImageObject" data-component="image" data-media-id="b5f3736b2ba2ef4df364258b0efcaba26f571d6e" id="img-12">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=72146577e379bdf9a21bc47994de5fb6">
<meta itemprop="width" content="4800">
<meta itemprop="height" content="3073">
<a href="#img-12" data-link-name="Launch Article Lightbox" data-is-ajax="">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=72146577e379bdf9a21bc47994de5fb6"/>
<meta itemprop="width" content="4800"/>
<meta itemprop="height" content="3073"/><a href="#img-12" data-link-name="Launch Article Lightbox" data-is-ajax="">
<div>
<picture>
<source media="(min-width: 1300px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1300px) and (min-resolution: 120dpi)" sizes="1300px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=1300&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=4bd713ae6f60b56e36378bb2fe45e9eb 2600w"></source> <source media="(min-width: 1300px)" sizes="1300px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=1300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=b93c6d33ca7496220eb30d0c8bfaccf9 1300w"></source> <source media="(min-width: 1140px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1140px) and (min-resolution: 120dpi)" sizes="1140px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=1140&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=f66f5a256170eced3c0a52aee235ae29 2280w"></source> <source media="(min-width: 1140px)" sizes="1140px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=1140&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=1f60eb7cf5fc6f899c7c9af9c05df9a0 1140w"></source> <source media="(min-width: 980px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 980px) and (min-resolution: 120dpi)" sizes="1125px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=1125&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=27526c9caf1a62110dfa16214ceccf14 2250w"></source> <source media="(min-width: 980px)" sizes="1125px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=1125&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=7d47ba3d7898a398e1f9d8f2d19d391e 1125w"></source> <source media="(min-width: 740px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 740px) and (min-resolution: 120dpi)" sizes="965px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=965&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=8974cfeb3e33bc51b55518f1bc81e68d 1930w"></source> <source media="(min-width: 740px)" sizes="965px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=965&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=04f953b4ec9555178204a1621b8a1f59 965w"></source> <source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="725px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=725&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=7e2c1494173f83f555806120a1fe43cc 1450w"></source> <source media="(min-width: 660px)" sizes="725px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=725&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=8f53cf25b514e283cce3d995220ca19b 725w"></source> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="645px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=645&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=2b770ca04273c921c8abe0a7de72030a 1290w"></source> <source media="(min-width: 480px)" sizes="645px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=645&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=0da775328d9ade5ca605079a9118a64a 645w"></source> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="465px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=465&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=e2e51037c5a6b8bf22d87cb927e45888 930w"></source> <source media="(min-width: 0px)" sizes="465px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=465&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=7ecf73b514ceb1b5e0391f17c7a4d3b0 465w"></source>
<img itemprop="contentUrl" alt="Whangārei Harbour from Tamaterau, looking south through Mangrove sprouts coming up through the harbourside silt." src="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=7fcadc35b3a44ebafe3c469c6e89241d"></picture>
</div>
<span><svg width="22" height="22" viewbox="0 0 22 22">
<path d="M3.4 20.2L9 14.5 7.5 13l-5.7 5.6L1 14H0v7.5l.5.5H8v-1l-4.6-.8M18.7 1.9L13 7.6 14.4 9l5.7-5.7.5 4.7h1.2V.6l-.5-.5H14v1.2l4.7.6"></path></svg></span></a>
<source media="(min-width: 1300px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1300px) and (min-resolution: 120dpi)" sizes="1300px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=1300&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=4bd713ae6f60b56e36378bb2fe45e9eb 2600w"/> <source media="(min-width: 1300px)" sizes="1300px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=1300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=b93c6d33ca7496220eb30d0c8bfaccf9 1300w"/> <source media="(min-width: 1140px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1140px) and (min-resolution: 120dpi)" sizes="1140px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=1140&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=f66f5a256170eced3c0a52aee235ae29 2280w"/> <source media="(min-width: 1140px)" sizes="1140px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=1140&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=1f60eb7cf5fc6f899c7c9af9c05df9a0 1140w"/> <source media="(min-width: 980px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 980px) and (min-resolution: 120dpi)" sizes="1125px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=1125&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=27526c9caf1a62110dfa16214ceccf14 2250w"/> <source media="(min-width: 980px)" sizes="1125px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=1125&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=7d47ba3d7898a398e1f9d8f2d19d391e 1125w"/> <source media="(min-width: 740px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 740px) and (min-resolution: 120dpi)" sizes="965px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=965&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=8974cfeb3e33bc51b55518f1bc81e68d 1930w"/> <source media="(min-width: 740px)" sizes="965px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=965&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=04f953b4ec9555178204a1621b8a1f59 965w"/> <source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="725px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=725&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=7e2c1494173f83f555806120a1fe43cc 1450w"/> <source media="(min-width: 660px)" sizes="725px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=725&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=8f53cf25b514e283cce3d995220ca19b 725w"/> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="645px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=645&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=2b770ca04273c921c8abe0a7de72030a 1290w"/> <source media="(min-width: 480px)" sizes="645px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=645&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=0da775328d9ade5ca605079a9118a64a 645w"/> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="465px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=465&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=e2e51037c5a6b8bf22d87cb927e45888 930w"/> <source media="(min-width: 0px)" sizes="465px" srcset="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=465&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=7ecf73b514ceb1b5e0391f17c7a4d3b0 465w"/>
<img itemprop="contentUrl" alt="Whang&#x101;rei Harbour from Tamaterau, looking south through Mangrove sprouts coming up through the harbourside silt." src="https://i.guim.co.uk/img/media/b5f3736b2ba2ef4df364258b0efcaba26f571d6e/0_0_4800_3073/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=7fcadc35b3a44ebafe3c469c6e89241d"/></picture>
</div></a>
</figure>
<ul>
<li>
@ -279,17 +246,14 @@
“I arrived at the beach and we leapfrogged between the animals. They were calling out to each other and reassuring each other,” says Werner. “It was a shock. Were working to adapt but the ocean is changing so fast.”
</p>
<figure itemprop="associatedMedia image" itemscope="itemscope" itemtype="http://schema.org/ImageObject" data-component="image" data-media-id="d5aaf60e3a427f278747acf0c3e7ba39b39ef923" id="img-13">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=1d00d3ea91d32110b40d85ff43227728">
<meta itemprop="width" content="4800">
<meta itemprop="height" content="3200">
<a href="#img-13" data-link-name="Launch Article Lightbox" data-is-ajax="">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=1d00d3ea91d32110b40d85ff43227728"/>
<meta itemprop="width" content="4800"/>
<meta itemprop="height" content="3200"/><a href="#img-13" data-link-name="Launch Article Lightbox" data-is-ajax="">
<div>
<picture>
<source media="(min-width: 1300px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1300px) and (min-resolution: 120dpi)" sizes="880px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=880&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=2a64f318f02a31bdf9f17ae01fca72a3 1760w"></source> <source media="(min-width: 1300px)" sizes="880px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=880&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=811b3a2ecee1a87b72813d328f59aa85 880w"></source> <source media="(min-width: 1140px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1140px) and (min-resolution: 120dpi)" sizes="800px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=800&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=47418e3f630c00af6124c471fdc54c20 1600w"></source> <source media="(min-width: 1140px)" sizes="800px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=800&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=93ec03888887d5eb6eabf07e40f2ed3b 800w"></source> <source media="(min-width: 980px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 980px) and (min-resolution: 120dpi)" sizes="640px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=640&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=476d165704890f40cc5f2d74f4d09b95 1280w"></source> <source media="(min-width: 980px)" sizes="640px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=640&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=6179da6bca697f83ac063a56660aa31b 640w"></source> <source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=df0c5b9ccac02dcd010d7f3ed8ff8c85 1240w"></source> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=e9fd2eedc9bb80286a6cabd1c7c3b0e2 620w"></source> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=e48f277772be7e455f9a4a4139b3bf4c 1210w"></source> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=2e0af911fcd7011f04ee91d445290e84 605w"></source> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=15161e07957f327b44aa124d94ae8291 890w"></source> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=ef6c6809f2adcff0f4ff32899095839b 445w"></source>
<img itemprop="contentUrl" alt="The skull of a Brydes whale, in the storage container at Hihiaua Cultural Centre, Whangārei." src="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=1b74b488aedb864287ff160f86d74c9d"></picture>
</div>
<span><svg width="22" height="22" viewbox="0 0 22 22">
<path d="M3.4 20.2L9 14.5 7.5 13l-5.7 5.6L1 14H0v7.5l.5.5H8v-1l-4.6-.8M18.7 1.9L13 7.6 14.4 9l5.7-5.7.5 4.7h1.2V.6l-.5-.5H14v1.2l4.7.6"></path></svg></span></a>
<source media="(min-width: 1300px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1300px) and (min-resolution: 120dpi)" sizes="880px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=880&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=2a64f318f02a31bdf9f17ae01fca72a3 1760w"/> <source media="(min-width: 1300px)" sizes="880px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=880&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=811b3a2ecee1a87b72813d328f59aa85 880w"/> <source media="(min-width: 1140px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1140px) and (min-resolution: 120dpi)" sizes="800px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=800&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=47418e3f630c00af6124c471fdc54c20 1600w"/> <source media="(min-width: 1140px)" sizes="800px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=800&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=93ec03888887d5eb6eabf07e40f2ed3b 800w"/> <source media="(min-width: 980px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 980px) and (min-resolution: 120dpi)" sizes="640px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=640&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=476d165704890f40cc5f2d74f4d09b95 1280w"/> <source media="(min-width: 980px)" sizes="640px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=640&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=6179da6bca697f83ac063a56660aa31b 640w"/> <source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=df0c5b9ccac02dcd010d7f3ed8ff8c85 1240w"/> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=e9fd2eedc9bb80286a6cabd1c7c3b0e2 620w"/> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=e48f277772be7e455f9a4a4139b3bf4c 1210w"/> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=2e0af911fcd7011f04ee91d445290e84 605w"/> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=15161e07957f327b44aa124d94ae8291 890w"/> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=ef6c6809f2adcff0f4ff32899095839b 445w"/>
<img itemprop="contentUrl" alt="The skull of a Brydes whale, in the storage container at Hihiaua Cultural Centre, Whang&#x101;rei." src="https://i.guim.co.uk/img/media/d5aaf60e3a427f278747acf0c3e7ba39b39ef923/0_0_4800_3200/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=1b74b488aedb864287ff160f86d74c9d"/></picture>
</div></a>
</figure>
<ul>
<li>
@ -299,17 +263,14 @@
</li>
</ul>
<figure itemprop="associatedMedia image" itemscope="itemscope" itemtype="http://schema.org/ImageObject" data-component="image" data-media-id="3766106f73e858d5b140ae3cdd2eef84060180cd" id="img-14">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/3766106f73e858d5b140ae3cdd2eef84060180cd/0_0_4800_3200/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=7dca3d798aef3526f42e281771d50f91">
<meta itemprop="width" content="4800">
<meta itemprop="height" content="3200">
<a href="#img-14" data-link-name="Launch Article Lightbox" data-is-ajax="">
<meta itemprop="url" content="https://i.guim.co.uk/img/media/3766106f73e858d5b140ae3cdd2eef84060180cd/0_0_4800_3200/master/4800.jpg?width=700&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=7dca3d798aef3526f42e281771d50f91"/>
<meta itemprop="width" content="4800"/>
<meta itemprop="height" content="3200"/><a href="#img-14" data-link-name="Launch Article Lightbox" data-is-ajax="">
<div>
<picture>
<source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/3766106f73e858d5b140ae3cdd2eef84060180cd/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=0daf794415132fc19259f8d2f654f57f 1240w"></source> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/3766106f73e858d5b140ae3cdd2eef84060180cd/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=98ce62f9d983fe8059c936a6c6cdff33 620w"></source> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/3766106f73e858d5b140ae3cdd2eef84060180cd/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=9ff4aac2a3b07867dfdfb8f470ea6977 1210w"></source> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/3766106f73e858d5b140ae3cdd2eef84060180cd/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=10d1b71094ecf1722f593eb49bb2effe 605w"></source> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/3766106f73e858d5b140ae3cdd2eef84060180cd/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=0705690fcb523f2781a5952f83528ff9 890w"></source> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/3766106f73e858d5b140ae3cdd2eef84060180cd/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=4c748337df5f0348eb0e7d3e3ec46571 445w"></source>
<img itemprop="contentUrl" alt="A large calibre bullet of the type that the New Zealand Department of Conservation (DOC) uses for euthanasing stranded whales that are beyond rescue." src="https://i.guim.co.uk/img/media/3766106f73e858d5b140ae3cdd2eef84060180cd/0_0_4800_3200/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=d2f5bb7c3c3642ac8733ca40509f6e20"></picture>
</div>
<span><svg width="22" height="22" viewbox="0 0 22 22">
<path d="M3.4 20.2L9 14.5 7.5 13l-5.7 5.6L1 14H0v7.5l.5.5H8v-1l-4.6-.8M18.7 1.9L13 7.6 14.4 9l5.7-5.7.5 4.7h1.2V.6l-.5-.5H14v1.2l4.7.6"></path></svg></span></a>
<source media="(min-width: 660px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 660px) and (min-resolution: 120dpi)" sizes="620px" srcset="https://i.guim.co.uk/img/media/3766106f73e858d5b140ae3cdd2eef84060180cd/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=0daf794415132fc19259f8d2f654f57f 1240w"/> <source media="(min-width: 660px)" sizes="620px" srcset="https://i.guim.co.uk/img/media/3766106f73e858d5b140ae3cdd2eef84060180cd/0_0_4800_3200/master/4800.jpg?width=620&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=98ce62f9d983fe8059c936a6c6cdff33 620w"/> <source media="(min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 480px) and (min-resolution: 120dpi)" sizes="605px" srcset="https://i.guim.co.uk/img/media/3766106f73e858d5b140ae3cdd2eef84060180cd/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=9ff4aac2a3b07867dfdfb8f470ea6977 1210w"/> <source media="(min-width: 480px)" sizes="605px" srcset="https://i.guim.co.uk/img/media/3766106f73e858d5b140ae3cdd2eef84060180cd/0_0_4800_3200/master/4800.jpg?width=605&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=10d1b71094ecf1722f593eb49bb2effe 605w"/> <source media="(min-width: 0px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 0px) and (min-resolution: 120dpi)" sizes="445px" srcset="https://i.guim.co.uk/img/media/3766106f73e858d5b140ae3cdd2eef84060180cd/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=45&amp;auto=format&amp;fit=max&amp;dpr=2&amp;s=0705690fcb523f2781a5952f83528ff9 890w"/> <source media="(min-width: 0px)" sizes="445px" srcset="https://i.guim.co.uk/img/media/3766106f73e858d5b140ae3cdd2eef84060180cd/0_0_4800_3200/master/4800.jpg?width=445&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=4c748337df5f0348eb0e7d3e3ec46571 445w"/>
<img itemprop="contentUrl" alt="A large calibre bullet of the type that the New Zealand Department of Conservation (DOC) uses for euthanasing stranded whales that are beyond rescue." src="https://i.guim.co.uk/img/media/3766106f73e858d5b140ae3cdd2eef84060180cd/0_0_4800_3200/master/4800.jpg?width=300&amp;quality=85&amp;auto=format&amp;fit=max&amp;s=d2f5bb7c3c3642ac8733ca40509f6e20"/></picture>
</div></a>
</figure>
<p>
The recent spate of mass strandings has been described as “heartbreaking” by the conservation department.
@ -320,4 +281,4 @@
<p>
“Its very emotional. Our ancestors tell us the strandings are a sign from the sea. So what is the sea telling us? We need to listen.”
</p>
</div></article>
</div></article>

View file

@ -2,7 +2,7 @@
<figure>
<img src="http://3.f.ix.de/scale/geometry/600/q75/imgs/18/1/4/6/2/3/5/1/Barcode-Scanner-With-Border-fc08c913da5cea5d.jpeg">
<img src="http://3.f.ix.de/scale/geometry/600/q75/imgs/18/1/4/6/2/3/5/1/Barcode-Scanner-With-Border-fc08c913da5cea5d.jpeg"/>
<figcaption>
@ -26,9 +26,9 @@
<span>(<a title="Ben Schwan" href="mailto:bsc@heise.de" target="_blank">bsc</a>)</span>
<br>
<br/>
</p>
</div></article>
</div></article>

View file

@ -1,6 +1,6 @@
<article><div id="readability-page-1">
<div>
<p><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227261885862?format=jpg&amp;group=iphone&amp;size=medium" alt="A new Bill would require telecommunications service providers to store so-called metadat">
<p><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227261885862?format=jpg&amp;group=iphone&amp;size=medium" alt="A new Bill would require telecommunications service providers to store so-called &#x2018;metadat"/>
</p>
<p>
<span id="imgCaption">A new Bill would require telecommunications service providers to store so-called metadata for two years.</span>
@ -11,27 +11,11 @@
<p><strong>
A HIGH-powered federal government team has been doing the rounds of media organisations in the past few days in an attempt to allay concerns about the impact of new surveillance legislation on press freedom. It failed.
</strong></p>
<p>The roadshow featured the Prime Ministers national security adviser, Andrew Shearer, Justin Bassi, who advises Attorney-General George Brandis on crime and security matters, and Australian Federal Police Commissioner Andrew Colvin. Staffers from the office of Communications Minister Malcolm Turnbull also took part.</p>
<p>They held meetings with executives from News Corporation and Fairfax, representatives of the TV networks, the ABC top brass and a group from the media union and the Walkley journalism foundation. I was involved as a member of the Walkley board.</p>
<p>The initiative, from Tony Abbotts office, is evidence that the Government has been alarmed by the strength of criticism from media of the Data Retention Bill it wants passed before Parliament rises in a fortnight. Bosses, journalists, even the Press Council, are up in arms, not only over this measure, but also over aspects of two earlier pieces of national security legislation that interfere with the ability of the media to hold government to account.</p>
<p>The roadshow featured the Prime Ministers national security adviser, Andrew Shearer, Justin Bassi, who advises Attorney-General George Brandis on crime and security matters, and Australian Federal Police Commissioner Andrew Colvin. Staffers from the office of Communications Minister Malcolm Turnbull also took part.</p><p>They held meetings with executives from News Corporation and Fairfax, representatives of the TV networks, the ABC top brass and a group from the media union and the Walkley journalism foundation. I was involved as a member of the Walkley board.</p><p>The initiative, from Tony Abbotts office, is evidence that the Government has been alarmed by the strength of criticism from media of the Data Retention Bill it wants passed before Parliament rises in a fortnight. Bosses, journalists, even the Press Council, are up in arms, not only over this measure, but also over aspects of two earlier pieces of national security legislation that interfere with the ability of the media to hold government to account.</p>
<div id="read-more">
<p>The Bill would require telecommunications service providers to store so-called “metadata” — the who, where, when and how of a communication, but not its content — for two years so security and law enforcement agencies can access it without warrant. Few would argue against the use of such material to catch criminals or terrorists. But, as Parliaments Joint Committee on Intelligence and Security has pointed out, it would also be used “for the purpose of determining the identity of a journalists sources”.</p>
<p>And that should ring warning bells for anyone genuinely concerned with the health of our democracy. Without the ability to protect the identity of sources, journalists would be greatly handicapped in exposing corruption, dishonesty, waste, incompetence and misbehaviour by public officials.</p>
<p>The Press Council is concerned the laws would crush investigative journalism.</p>
<p>“These legitimate concerns cannot be addressed effectively short of exempting journalists and media organisations,” says president David Weisbrot.</p>
<p>The media union is adamant journalists metadata must be exempted from the law. Thats what media bosses want, too, though they have a fallback position based on new safeguards being implemented in Britain.</p>
<p>That would prevent access to the metadata of journalists or media organisations without a judicial warrant. There would be a code including — according to the explanatory notes of the British Bill — “provision to protect the public interest in the confidentiality of journalistic sources”.</p>
<p>In their meetings this week, the government team boasted of concessions in the new Data Retention Bill. The number of agencies able to access metadata will be reduced by excluding such organisations as the RSPCA and local councils. And whenever an authorisation is issued for access to information about a journalists sources, the Ombudsman (or, where ASIO is involved, the Inspector-General of Intelligence and Security) will receive a copy.</p>
<p>That does nothing to solve the problem. The Government has effectively admitted as much by agreeing that the parliamentary committee should conduct a separate review of how to deal with the issue of journalists sources.</p>
<p>But another inquiry would be a waste of time — the committee has already received and considered dozens of submissions on the subject. The bottom line is that the Government does not deny that the legislation is flawed, but is demanding it be passed anyway with the possibility left open of a repair job down the track. That is a ridiculous approach.</p>
<p>Claims that immediate action is imperative do not stand up. These are measures that wont come into full effect for two years. Anyway, amending the Bill to either exempt journalists or adopt the UK model could be done quickly, without any risk to national security.</p>
<p>AS Opposition Leader Bill Shorten said in a letter to Abbott last month: “Press freedom concerns about mandatory data retention would ideally be addressed in this Bill to avoid the need for future additional amendments or procedures to be put in place in the future.”</p>
<p>The Data Retention Bill will be debated in the House of Representatives this week. Then, on Friday, CEOs from leading media organisations will front the parliamentary committee to air their concerns before the legislation goes to the Senate.</p>
<p>Those CEOs should make it clear they are just as angry about this as they were about Stephen Conroys attempt to impinge on press freedom through media regulation under the previous Labor government.</p>
<p>Memories of the grief Conroy brought down on his head would undoubtedly make Abbott sit up and take notice.</p>
<p><b>LAURIE OAKES IS THE NINE NETWORK POLITICAL EDITOR </b></p>
<p>The Bill would require telecommunications service providers to store so-called “metadata” — the who, where, when and how of a communication, but not its content — for two years so security and law enforcement agencies can access it without warrant. Few would argue against the use of such material to catch criminals or terrorists. But, as Parliaments Joint Committee on Intelligence and Security has pointed out, it would also be used “for the purpose of determining the identity of a journalists sources”.</p><p>And that should ring warning bells for anyone genuinely concerned with the health of our democracy. Without the ability to protect the identity of sources, journalists would be greatly handicapped in exposing corruption, dishonesty, waste, incompetence and misbehaviour by public officials.</p><p>The Press Council is concerned the laws would crush investigative journalism.</p><p>“These legitimate concerns cannot be addressed effectively short of exempting journalists and media organisations,” says president David Weisbrot.</p><p>The media union is adamant journalists metadata must be exempted from the law. Thats what media bosses want, too, though they have a fallback position based on new safeguards being implemented in Britain.</p><p>That would prevent access to the metadata of journalists or media organisations without a judicial warrant. There would be a code including — according to the explanatory notes of the British Bill — “provision to protect the public interest in the confidentiality of journalistic sources”.</p><p>In their meetings this week, the government team boasted of concessions in the new Data Retention Bill. The number of agencies able to access metadata will be reduced by excluding such organisations as the RSPCA and local councils. And whenever an authorisation is issued for access to information about a journalists sources, the Ombudsman (or, where ASIO is involved, the Inspector-General of Intelligence and Security) will receive a copy.</p><p>That does nothing to solve the problem. The Government has effectively admitted as much by agreeing that the parliamentary committee should conduct a separate review of how to deal with the issue of journalists sources.</p><p>But another inquiry would be a waste of time — the committee has already received and considered dozens of submissions on the subject. The bottom line is that the Government does not deny that the legislation is flawed, but is demanding it be passed anyway with the possibility left open of a repair job down the track. That is a ridiculous approach.</p><p>Claims that immediate action is imperative do not stand up. These are measures that wont come into full effect for two years. Anyway, amending the Bill to either exempt journalists or adopt the UK model could be done quickly, without any risk to national security.</p><p>AS Opposition Leader Bill Shorten said in a letter to Abbott last month: “Press freedom concerns about mandatory data retention would ideally be addressed in this Bill to avoid the need for future additional amendments or procedures to be put in place in the future.”</p><p>The Data Retention Bill will be debated in the House of Representatives this week. Then, on Friday, CEOs from leading media organisations will front the parliamentary committee to air their concerns before the legislation goes to the Senate.</p><p>Those CEOs should make it clear they are just as angry about this as they were about Stephen Conroys attempt to impinge on press freedom through media regulation under the previous Labor government.</p><p>Memories of the grief Conroy brought down on his head would undoubtedly make Abbott sit up and take notice.</p><p><b>LAURIE OAKES IS THE NINE NETWORK POLITICAL EDITOR </b></p>
</div>
</div></article>
</div></article>

View file

@ -11,4 +11,4 @@
Third header
</h2>
</DIV></article>
</DIV></article>

View file

@ -4,11 +4,11 @@
<tbody>
<tr>
<td>
<img src="http://fakehost/366/logo_bana/corner_1.gif" width="7" height="7">
<img src="http://fakehost/366/logo_bana/corner_1.gif" width="7" height="7"/>
</td>
<td></td>
<td/>
<td>
<img src="http://fakehost/366/logo_bana/corner_2.gif" width="7" height="7">
<img src="http://fakehost/366/logo_bana/corner_2.gif" width="7" height="7"/>
</td>
</tr>
</tbody>
@ -34,18 +34,18 @@
<a href="http://fakehost/index.html" target="_blank">福娘童話集</a> &gt; <a href="http://fakehost/test/index.html" target="_blank">きょうのイソップ童話</a> &gt; <a href="http://fakehost/test/itiran/01gatu.htm" target="_blank">1月のイソップ童話</a> &gt; 欲張りなイヌ
</p>
<p>
<span color="#FF0000" size="+2">元旦のイソップ童話</span><br>
<br>
<br>
<br>
<img src="http://fakehost/gazou/pc_gazou/aesop/aesop052.jpg" alt="よくばりなイヌ" width="480" height="360"><br>
<br>
<br>
<br>
欲張りなイヌ<br>
<br>
<br>
<br>
<span color="#FF0000" size="+2">元旦のイソップ童話</span><br/>
<br/>
<br/>
<br/>
<img src="http://fakehost/gazou/pc_gazou/aesop/aesop052.jpg" alt="&#x3088;&#x304F;&#x3070;&#x308A;&#x306A;&#x30A4;&#x30CC;" width="480" height="360"/><br/>
<br/>
<br/>
<br/>
欲張りなイヌ<br/>
<br/>
<br/>
<br/>
<a href="http://hukumusume.com/douwa/English/aesop/01/01_j.html" target="_blank">ひらがな</a> ←→ <a href="http://hukumusume.com/douwa/English/aesop/01/01_j&amp;E.html" target="_blank">日本語・英語</a> ←→ <a href="http://hukumusume.com/douwa/English/aesop/01/01_E.html" target="_blank">English</a>
</p>
<DIV>
@ -53,7 +53,7 @@
<tbody>
<tr>
<td>
<img src="http://fakehost/366/logo_bana/corner_1.gif" width="7" height="7">
<img src="http://fakehost/366/logo_bana/corner_1.gif" width="7" height="7"/>
</td>
<td>
<span color="#FF0000"><b>おりがみをつくろう</b></span>
@ -62,7 +62,7 @@
<span size="-1">( <a href="http://www.origami-club.com/index.html" target="_blank">おりがみくらぶ</a> より)</span>
</td>
<td>
<img src="http://fakehost/366/logo_bana/corner_2.gif" width="7" height="7">
<img src="http://fakehost/366/logo_bana/corner_2.gif" width="7" height="7"/>
</td>
</tr>
<tr>
@ -71,7 +71,7 @@
<tbody>
<tr>
<td>
<a href="http://www.origami-club.com/easy/dogfase/index.html" target="_blank"><span size="+2"><img src="http://fakehost/gazou/origami_gazou/kantan/dogface.gif" alt="犬の顔の折り紙" width="73" height="51">いぬのかお</span></a>   <a href="http://www.origami-club.com/easy/dog/index.html" target="_blank"><img src="http://fakehost/gazou/origami_gazou/kantan/dog.gif" alt="犬の顔の紙" width="62" height="43"><span size="+2">いぬ</span></a>
<a href="http://www.origami-club.com/easy/dogfase/index.html" target="_blank"><span size="+2"><img src="http://fakehost/gazou/origami_gazou/kantan/dogface.gif" alt="&#x72AC;&#x306E;&#x9854;&#x306E;&#x6298;&#x308A;&#x7D19;" width="73" height="51"/>いぬのかお</span></a>   <a href="http://www.origami-club.com/easy/dog/index.html" target="_blank"><img src="http://fakehost/gazou/origami_gazou/kantan/dog.gif" alt="&#x72AC;&#x306E;&#x9854;&#x306E;&#x7D19;" width="62" height="43"/><span size="+2">いぬ</span></a>
</td>
</tr>
</tbody>
@ -90,7 +90,7 @@
</tr>
<tr>
<td>
<audio src="http://ohanashi2.up.seesaa.net/mp3/ae_0101.mp3" controls=""></audio>
<audio src="http://ohanashi2.up.seesaa.net/mp3/ae_0101.mp3" controls=""/>
</td>
</tr>
<tr>
@ -107,27 +107,27 @@
おしまい
</p>
<p>
<span><img src="http://fakehost/gazou/pc_gazou/all/top_bana/back_logo_r.gif" alt="前のページへ戻る" name="Image10" width="175" height="32" id="Image10"></span><br>
<br>
<br>
<br>
<span><img src="http://fakehost/gazou/pc_gazou/all/top_bana/back_logo_r.gif" alt="&#x524D;&#x306E;&#x30DA;&#x30FC;&#x30B8;&#x3078;&#x623B;&#x308B;" name="Image10" width="175" height="32" id="Image10"/></span><br/>
<br/>
<br/>
<br/>
</p>
</td>
<td>
<img src="file:///C:/Documents%20and%20Settings/%E7%A6%8F%E5%A8%98note/%E3%83%87%E3%82%B9%E3%82%AF%E3%83%88%E3%83%83%E3%83%97/company_website15/image/spacer.gif" width="1" height="1">
<img src="file:///C:/Documents%20and%20Settings/%E7%A6%8F%E5%A8%98note/%E3%83%87%E3%82%B9%E3%82%AF%E3%83%88%E3%83%83%E3%83%97/company_website15/image/spacer.gif" width="1" height="1"/>
</td>
<td>
<table>
<tbody>
<tr>
<td>
<img src="http://fakehost/366/logo_bana/corner_1.gif" width="7" height="7">
<img src="http://fakehost/366/logo_bana/corner_1.gif" width="7" height="7"/>
</td>
<td></td>
<td/>
<td>
<img src="http://fakehost/366/logo_bana/corner_2.gif" width="7" height="7">
<img src="http://fakehost/366/logo_bana/corner_2.gif" width="7" height="7"/>
</td>
</tr>
</tbody>
@ -136,110 +136,110 @@
<tbody>
<tr>
<td>
     <span size="-1"><b>1月 1日の豆知識</b></span><br>
<br>
<span size="-2"><u><br>
<br>
     <span size="-1"><b>1月 1日の豆知識</b></span><br/>
<br/>
<span size="-2"><u><br/>
<br/>
366日への旅</u></span>
</td>
</tr>
<tr>
<td>
<img src="file:///C:/Documents%20and%20Settings/%E7%A6%8F%E5%A8%98note/%E3%83%87%E3%82%B9%E3%82%AF%E3%83%88%E3%83%83%E3%83%97" width="1" height="1"><b><span size="-1">きょうの記念日</span></b><br>
<br>
<img src="file:///C:/Documents%20and%20Settings/%E7%A6%8F%E5%A8%98note/%E3%83%87%E3%82%B9%E3%82%AF%E3%83%88%E3%83%83%E3%83%97" width="1" height="1"/><b><span size="-1">きょうの記念日</span></b><br/>
<br/>
<a href="http://fakehost/366/kinenbi/pc/01gatu/1_01.htm" target="_blank"><span size="-1">元旦</span></a>
</td>
</tr>
<tr>
<td>
<img src="file:///C:/Documents%20and%20Settings/%E7%A6%8F%E5%A8%98note/%E3%83%87%E3%82%B9%E3%82%AF%E3%83%88%E3%83%83%E3%83%97/company_website15/image/spacer.gif" width="1" height="1"><b><span size="-1">きょうの誕生花</span></b><br>
<br>
<img src="file:///C:/Documents%20and%20Settings/%E7%A6%8F%E5%A8%98note/%E3%83%87%E3%82%B9%E3%82%AF%E3%83%88%E3%83%83%E3%83%97/company_website15/image/spacer.gif" width="1" height="1"/><b><span size="-1">きょうの誕生花</span></b><br/>
<br/>
<a href="http://fakehost/366/hana/pc/01gatu/1_01.htm" target="_blank"><span size="-1">松(まつ)</span></a>
</td>
</tr>
<tr>
<td>
<b><span size="-1">きょうの誕生日・出来事</span></b><br>
<br>
<b><span size="-1">きょうの誕生日・出来事</span></b><br/>
<br/>
<a href="http://fakehost/366/birthday/pc/01gatu/1_01.htm" target="_blank"><span size="-1">1949年 Mr.マリック(マジシャン)</span></a>
</td>
</tr>
<tr>
<td>
<b><span size="-1">恋の誕生日占い</span></b><br>
<br>
<b><span size="-1">恋の誕生日占い</span></b><br/>
<br/>
<a href="http://fakehost/sakura/uranai/birthday/01/01.html" target="_blank"><span size="-1">自分の考えをしっかりと持った女の子。</span></a>
</td>
</tr>
<tr>
<td>
<b><span size="-1">なぞなぞ小学校</span></b><br>
<br>
<b><span size="-1">なぞなぞ小学校</span></b><br/>
<br/>
<a href="http://fakehost/nazonazo/new/2012/04/02.html" target="_blank"><span size="-1">○(丸)を取ったらお母さんになってしまう男の人は?</span></a>
</td>
</tr>
<tr>
<td>
<b><span size="-1">あこがれの職業紹介</span></b><br>
<br>
<b><span size="-1">あこがれの職業紹介</span></b><br/>
<br/>
<a href="http://fakehost/sakura/navi/work/2017/041.html" target="_blank"><span size="-1">歌手</span></a>
</td>
</tr>
<tr>
<td>
<b><span size="-1">恋の魔法とおまじない</span></b> 001<br>
<br>
<b><span size="-1">恋の魔法とおまじない</span></b> 001<br/>
<br/>
<a href="http://fakehost/omajinai/new/2012/00/re01.html" target="_blank"><span size="-1">両思いになれる おまじない</span></a>
</td>
</tr>
<tr>
<td>
<span size="-1">  <b>1月 1日の童話・昔話</b><br>
<br>
<u><span size="-2"><br>
<br>
<span size="-1">  <b>1月 1日の童話・昔話</b><br/>
<br/>
<u><span size="-2"><br/>
<br/>
福娘童話集</span></u></span>
</td>
</tr>
<tr>
<td>
<b><span size="-1">きょうの日本昔話</span></b><br>
<br>
<b><span size="-1">きょうの日本昔話</span></b><br/>
<br/>
<a href="http://fakehost/douwa/pc/jap/01/01.htm" target="_blank"><span size="-1">ネコがネズミを追いかける訳</span></a>
</td>
</tr>
<tr>
<td>
<b><span size="-1">きょうの世界昔話<img src="file:///C:/Documents%20and%20Settings/%E7%A6%8F%E5%A8%98note/%E3%83%87%E3%82%B9%E3%82%AF%E3%83%88%E3%83%83%E3%83%97/company_website15/image/spacer.gif" width="1" height="1"></span></b><br>
<br>
<b><span size="-1">きょうの世界昔話<img src="file:///C:/Documents%20and%20Settings/%E7%A6%8F%E5%A8%98note/%E3%83%87%E3%82%B9%E3%82%AF%E3%83%88%E3%83%83%E3%83%97/company_website15/image/spacer.gif" width="1" height="1"/></span></b><br/>
<br/>
<a href="http://fakehost/douwa/pc/world/01/01a.htm" target="_blank"><span size="-1">モンゴルの十二支話</span></a>
</td>
</tr>
<tr>
<td>
<img src="file:///C:/Documents%20and%20Settings/%E7%A6%8F%E5%A8%98note/%E3%83%87%E3%82%B9%E3%82%AF%E3%83%88%E3%83%83%E3%83%97/company_website15/image/spacer.gif" width="1" height="1"><b><span size="-1">きょうの日本民話</span></b><br>
<br>
<img src="file:///C:/Documents%20and%20Settings/%E7%A6%8F%E5%A8%98note/%E3%83%87%E3%82%B9%E3%82%AF%E3%83%88%E3%83%83%E3%83%97/company_website15/image/spacer.gif" width="1" height="1"/><b><span size="-1">きょうの日本民話</span></b><br/>
<br/>
<a href="http://fakehost/douwa/pc/minwa/01/01c.html" target="_blank"><span size="-1">仕事の取替えっこ</span></a>
</td>
</tr>
<tr>
<td>
<b><span size="-1">きょうのイソップ童話</span></b><br>
<br>
<b><span size="-1">きょうのイソップ童話</span></b><br/>
<br/>
<a href="http://fakehost/douwa/pc/aesop/01/01.htm" target="_blank"><span size="-1">欲張りなイヌ</span></a>
</td>
</tr>
<tr>
<td>
<b><span size="-1">きょうの江戸小話</span></b><br>
<br>
<b><span size="-1">きょうの江戸小話</span></b><br/>
<br/>
<a href="http://fakehost/douwa/pc/kobanashi/01/01.htm" target="_blank"><span size="-1">ぞうきんとお年玉</span></a>
</td>
</tr>
<tr>
<td>
<b><span size="-1">きょうの百物語</span></b><br>
<br>
<b><span size="-1">きょうの百物語</span></b><br/>
<br/>
<a href="http://fakehost/douwa/pc/kaidan/01/01.htm" target="_blank"><span size="-1">百物語の幽霊</span></a>
</td>
</tr>
@ -254,40 +254,40 @@
</tr>
<tr>
<td>
<span size="-1"><b>366日への旅</b><br>
<br>
<span size="-1"><b>366日への旅</b><br/>
<br/>
<a href="http://hukumusume.com/366/" target="_blank">毎日の記念日・誕生花 ・有名人の誕生日と性格判断</a></span>
</td>
</tr>
<tr>
<td>
<span size="-1"><b>福娘童話集</b><br>
<br>
<span size="-1"><b>福娘童話集</b><br/>
<br/>
<a href="http://hukumusume.com/douwa/" target="_blank">世界と日本の童話と昔話</a></span>
</td>
</tr>
<tr>
<td>
<span size="-1"><b>女の子応援サイト -さくら-</b><br>
<br>
<span size="-1"><b>女の子応援サイト -さくら-</b><br/>
<br/>
<a href="http://hukumusume.com/sakura/index.html" target="_blank">誕生日占い、お仕事紹介、おまじない、など</a></span>
</td>
</tr>
<tr>
<td>
<span size="-1"><b>子どもの病気相談所</b><br>
<br>
<span size="-1"><b>子どもの病気相談所</b><br/>
<br/>
<a href="http://hukumusume.com/my_baby/sick/" target="_blank">病気検索と対応方法、症状から検索するWEB問診</a></span>
</td>
</tr>
<tr>
<td>
<span size="-1"><b>世界60秒巡り</b><br>
<br>
<span size="-1"><b>世界60秒巡り</b><br/>
<br/>
<a href="http://hukumusume.com/366/world/" target="_blank">国旗国歌や世界遺産など、世界の国々の豆知識</a></span>
</td>
</tr>
</tbody>
</table>
</td>
</DIV></article>
</DIV></article>

View file

@ -8,7 +8,7 @@
<p>Through our pursuit of further automation and maximization of margins during the industrial age of media technology, we built advertising technology to optimize publishers yield of marketing budgets that had eroded after the last recession. Looking back now, our scraping of dimes may have cost us dollars in consumer loyalty. The fast, scalable systems of targeting users with ever-heftier advertisements have slowed down the public internet and drained more than a few batteries. We were so clever and so good at it that we over-engineered the capabilities of the plumbing laid down by, well, ourselves. This steamrolled the users, depleted their devices, and tried their patience.</p>
<p>The rise of ad blocking poses a threat to the internet and could potentially drive users to an enclosed platform world dominated by a few companies. We have let the fine equilibrium of content, commerce, and technology get out of balance in the open web. We had, and still do have, a responsibility to educate the business side, and in some cases to push back. We lost sight of our social and ethical responsibility to provide a safe, usable experience for anyone and everyone wanting to consume the content of their choice.</p>
<p>We need to bring that back into alignment, starting right now.</p>
<p><a href="http://www.iab.com/wp-content/uploads/2015/10/getting-lean-with-digital-ad-ux.jpg" target="_blank"><img width="300" height="250" alt="Getting LEAN with Digital Ad UX" src="http://www.iab.com/wp-content/uploads/2015/10/getting-lean-with-digital-ad-ux-300x250.jpg"></a>Today, the IAB Tech Lab is launching the L.E.A.N. Ads program. Supported by the Executive Committee of the IAB Tech Lab Board, IABs around the world, and hundreds of member companies, L.E.A.N. stands for Light, Encrypted, Ad choice supported, Non-invasive ads. These are principles that will help guide the next phases of advertising technical standards for the global digital advertising supply chain.</p>
<p><a href="http://www.iab.com/wp-content/uploads/2015/10/getting-lean-with-digital-ad-ux.jpg" target="_blank"><img width="300" height="250" alt="Getting LEAN with Digital Ad UX" src="http://www.iab.com/wp-content/uploads/2015/10/getting-lean-with-digital-ad-ux-300x250.jpg"/></a>Today, the IAB Tech Lab is launching the L.E.A.N. Ads program. Supported by the Executive Committee of the IAB Tech Lab Board, IABs around the world, and hundreds of member companies, L.E.A.N. stands for Light, Encrypted, Ad choice supported, Non-invasive ads. These are principles that will help guide the next phases of advertising technical standards for the global digital advertising supply chain.</p>
<p>As with any other industry, standards should be created by non-profit standards-setting bodies, with many diverse voices providing input. We will invite all parties for public comment, and make sure consumer interest groups have the opportunity to provide input.</p>
<p>L.E.A.N. Ads do not replace the current advertising standards many consumers still enjoy and engage with while consuming content on our sites across all IP enabled devices. Rather, these principles will guide an alternative set of standards that provide choice for marketers, content providers, and consumers.</p>
<p>Among the many areas of concentration, we must also address frequency capping on retargeting in Ad Tech and make sure a user is targeted appropriately before, but never AFTER they make a purchase. If we are so good at reach and scale, we can be just as good, if not better, at moderation. Additionally, we must address volume of ads per page as well as continue on the path to viewability. The dependencies here are critical to an optimized user experience.</p>
@ -19,4 +19,4 @@
<P>IAB Tech Lab Members can join the IAB Tech Lab Ad Blocking Working Group, please email <a href="mailto:adblocking@iab.com" target="_blank">adblocking@iab.com</a> for more information.</P>
<p>Read <a target="_blank" href="http://www.iab.com/insights/ad-blocking/">more about ad blocking here</a>.</p>
</div></article>
</div></article>

View file

@ -1,9 +1,9 @@
<article><DIV onload="addHeaderTags()" id="readability-page-1">
<span>[<a href="http://fakehost/test/html/" title="Document search and retrieval page" target="_blank">Docs</a>] [<a href="https://tools.ietf.org/id/draft-dejong-remotestorage-04.txt" title="Plaintext version of this document" target="_blank">txt</a>|<a href="http://fakehost/pdf/draft-dejong-remotestorage-04.txt" title="PDF version of this document" target="_blank">pdf</a>] [<a href="https://datatracker.ietf.org/doc/draft-dejong-remotestorage" title="IESG Datatracker information for this document" target="_blank">Tracker</a>] [<a href="mailto:draft-dejong-remotestorage@tools.ietf.org?subject=draft-dejong-remotestorage%20" title="Send email to the document authors" target="_blank">Email</a>] [<a href="http://fakehost/rfcdiff?difftype=--hwdiff&amp;url2=draft-dejong-remotestorage-04.txt" title="Inline diff (wdiff)" target="_blank">Diff1</a>] [<a href="http://fakehost/rfcdiff?url2=draft-dejong-remotestorage-04.txt" title="Side-by-side diff" target="_blank">Diff2</a>] [<a href="http://fakehost/idnits?url=https://tools.ietf.org/id/draft-dejong-remotestorage-04.txt" title="Run an idnits check of this document" target="_blank">Nits</a>] </span><br>
<span> </span><br>
<span>Versions: <a href="http://fakehost/test/base/draft-dejong-remotestorage-00" target="_blank">00</a> <a href="http://fakehost/test/base/draft-dejong-remotestorage-01" target="_blank">01</a> <a href="http://fakehost/test/base/draft-dejong-remotestorage-02" target="_blank">02</a> <a href="http://fakehost/test/base/draft-dejong-remotestorage-03" target="_blank">03</a> <a href="http://fakehost/test/base/draft-dejong-remotestorage-04" target="_blank">04</a> </span><br>
<span> </span><br>
<span>[<a href="http://fakehost/test/html/" title="Document search and retrieval page" target="_blank">Docs</a>] [<a href="https://tools.ietf.org/id/draft-dejong-remotestorage-04.txt" title="Plaintext version of this document" target="_blank">txt</a>|<a href="http://fakehost/pdf/draft-dejong-remotestorage-04.txt" title="PDF version of this document" target="_blank">pdf</a>] [<a href="https://datatracker.ietf.org/doc/draft-dejong-remotestorage" title="IESG Datatracker information for this document" target="_blank">Tracker</a>] [<a href="mailto:draft-dejong-remotestorage@tools.ietf.org?subject=draft-dejong-remotestorage%20" title="Send email to the document authors" target="_blank">Email</a>] [<a href="http://fakehost/rfcdiff?difftype=--hwdiff&amp;url2=draft-dejong-remotestorage-04.txt" title="Inline diff (wdiff)" target="_blank">Diff1</a>] [<a href="http://fakehost/rfcdiff?url2=draft-dejong-remotestorage-04.txt" title="Side-by-side diff" target="_blank">Diff2</a>] [<a href="http://fakehost/idnits?url=https://tools.ietf.org/id/draft-dejong-remotestorage-04.txt" title="Run an idnits check of this document" target="_blank">Nits</a>] </span><br/>
<br/>
<span>Versions: <a href="http://fakehost/test/base/draft-dejong-remotestorage-00" target="_blank">00</a> <a href="http://fakehost/test/base/draft-dejong-remotestorage-01" target="_blank">01</a> <a href="http://fakehost/test/base/draft-dejong-remotestorage-02" target="_blank">02</a> <a href="http://fakehost/test/base/draft-dejong-remotestorage-03" target="_blank">03</a> <a href="http://fakehost/test/base/draft-dejong-remotestorage-04" target="_blank">04</a> </span><br/>
<br/>
<pre>INTERNET DRAFT Michiel B. de Jong
Document: <a href="http://fakehost/test/base/draft-dejong-remotestorage-04" target="_blank">draft-dejong-remotestorage-04</a> IndieHosters
F. Kooman
@ -57,8 +57,7 @@ Copyright Notice
<span>de Jong [Page 1]</span>
</pre>
<pre><a name="page-2" id="page-2" href="#page-2"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -108,8 +107,7 @@ Table of Contents
<span>de Jong [Page 2]</span>
</pre>
<pre><a name="page-3" id="page-3" href="#page-3"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -159,8 +157,7 @@ Table of Contents
<span>de Jong [Page 3]</span>
</pre>
<pre><a name="page-4" id="page-4" href="#page-4"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -210,8 +207,7 @@ Table of Contents
<span>de Jong [Page 4]</span>
</pre>
<pre><a name="page-5" id="page-5" href="#page-5"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -261,8 +257,7 @@ Table of Contents
<span>de Jong [Page 5]</span>
</pre>
<pre><a name="page-6" id="page-6" href="#page-6"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -312,8 +307,7 @@ Table of Contents
<span>de Jong [Page 6]</span>
</pre>
<pre><a name="page-7" id="page-7" href="#page-7"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -363,8 +357,7 @@ Table of Contents
<span>de Jong [Page 7]</span>
</pre>
<pre><a name="page-8" id="page-8" href="#page-8"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -414,8 +407,7 @@ Table of Contents
<span>de Jong [Page 8]</span>
</pre>
<pre><a name="page-9" id="page-9" href="#page-9"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -465,8 +457,7 @@ Table of Contents
<span>de Jong [Page 9]</span>
</pre>
<pre><a name="page-10" id="page-10" href="#page-10"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -516,8 +507,7 @@ Table of Contents
<span>de Jong [Page 10]</span>
</pre>
<pre><a name="page-11" id="page-11" href="#page-11"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -567,8 +557,7 @@ Table of Contents
<span>de Jong [Page 11]</span>
</pre>
<pre><a name="page-12" id="page-12" href="#page-12"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -618,8 +607,7 @@ Table of Contents
<span>de Jong [Page 12]</span>
</pre>
<pre><a name="page-13" id="page-13" href="#page-13"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -669,8 +657,7 @@ motestorage-04",
<span>de Jong [Page 13]</span>
</pre>
<pre><a name="page-14" id="page-14" href="#page-14"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -720,8 +707,7 @@ XjzzzHNjkd1CJxoQubA1o%3D&amp;token_type=bearer&amp;state=
<span>de Jong [Page 14]</span>
</pre>
<pre><a name="page-15" id="page-15" href="#page-15"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -771,8 +757,7 @@ ntent-Type, Origin, X-Requested-With, If-Match, If-None-Match
<span>de Jong [Page 15]</span>
</pre>
<pre><a name="page-16" id="page-16" href="#page-16"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -822,8 +807,7 @@ e.io/spec/modules/myfavoritedrinks/drink"}
<span>de Jong [Page 16]</span>
</pre>
<pre><a name="page-17" id="page-17" href="#page-17"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -873,8 +857,7 @@ charset=UTF-8","Content-Length":106}}}
<span>de Jong [Page 17]</span>
</pre>
<pre><a name="page-18" id="page-18" href="#page-18"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -924,8 +907,7 @@ charset=UTF-8","Content-Length":106}}}
<span>de Jong [Page 18]</span>
</pre>
<pre><a name="page-19" id="page-19" href="#page-19"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -975,8 +957,7 @@ charset=UTF-8","Content-Length":106}}}
<span>de Jong [Page 19]</span>
</pre>
<pre><a name="page-20" id="page-20" href="#page-20"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -1026,8 +1007,7 @@ charset=UTF-8","Content-Length":106}}}
<span>de Jong [Page 20]</span>
</pre>
<pre><a name="page-21" id="page-21" href="#page-21"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -1077,8 +1057,7 @@ charset=UTF-8","Content-Length":106}}}
<span>de Jong [Page 21]</span>
</pre>
<pre><a name="page-22" id="page-22" href="#page-22"> </a>
</pre><pre>
<span>Internet-Draft remoteStorage December 2014</span>
@ -1129,9 +1108,8 @@ charset=UTF-8","Content-Length":106}}}
de Jong [Page 22]
</pre>
<br>
</pre><br/>
<span><small><small>Html markup produced by rfcmarkup 1.111, available from
<a href="https://tools.ietf.org/tools/rfcmarkup/" target="_blank">https://tools.ietf.org/tools/rfcmarkup/</a>
</small></small></span>
</DIV></article>
</DIV></article>

View file

@ -2,4 +2,4 @@
<p>abc</p>
<p>def</p>
ghi
</span></DIV></article>
</span></DIV></article>

View file

@ -3,9 +3,8 @@
<figure name="b9ad" id="b9ad">
<div>
<p><img data-image-id="1*sLDnS1UWEFIS33uLMxq3cw.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*sLDnS1UWEFIS33uLMxq3cw.jpeg">
</p>
</div>
<p><img data-image-id="1*sLDnS1UWEFIS33uLMxq3cw.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*sLDnS1UWEFIS33uLMxq3cw.jpeg"/>
</p></div>
</figure>
</div>
<div>
@ -16,9 +15,8 @@
<figure name="7417" id="7417">
<div>
<p><img data-image-id="1*3vIhkoHIzcxvUdijoCVx6w.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*3vIhkoHIzcxvUdijoCVx6w.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*3vIhkoHIzcxvUdijoCVx6w.png">
</p>
</div>
<p><img data-image-id="1*3vIhkoHIzcxvUdijoCVx6w.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*3vIhkoHIzcxvUdijoCVx6w.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*3vIhkoHIzcxvUdijoCVx6w.png"/>
</p></div>
</figure>
<p name="8a83" id="8a83">Standing at a table in a chemistry lab in Barcelona, Cristina Gil Lladanosa
tears open a silver, smell-proof protective envelope. She slides out a
@ -38,9 +36,8 @@
<figure name="c4e6" id="c4e6">
<div>
<p><img data-image-id="1*4gN1-fzOwCniw-DbqQjDeQ.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*4gN1-fzOwCniw-DbqQjDeQ.jpeg">
</p>
</div>
<p><img data-image-id="1*4gN1-fzOwCniw-DbqQjDeQ.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*4gN1-fzOwCniw-DbqQjDeQ.jpeg"/>
</p></div>
<figcaption>Cristina Gil Lladanosa, at the Barcelona testing lab | photo by Joan Bardeletti</figcaption>
</figure>
</div>
@ -73,9 +70,8 @@
<figure name="559c" id="559c">
<div>
<p><img data-image-id="1*2KPmZkIBUrhps-2uwDvYFQ.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*2KPmZkIBUrhps-2uwDvYFQ.jpeg">
</p>
</div>
<p><img data-image-id="1*2KPmZkIBUrhps-2uwDvYFQ.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*2KPmZkIBUrhps-2uwDvYFQ.jpeg"/>
</p></div>
<figcaption>Photo by Joan Bardeletti</figcaption>
</figure>
</div>
@ -93,9 +89,8 @@
<figure name="d6aa" id="d6aa">
<div>
<p><img data-image-id="1*PU40bbbox2Ompc5I3RE99A.jpeg" data-width="2013" data-height="1241" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*PU40bbbox2Ompc5I3RE99A.jpeg">
</p>
</div>
<p><img data-image-id="1*PU40bbbox2Ompc5I3RE99A.jpeg" data-width="2013" data-height="1241" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*PU40bbbox2Ompc5I3RE99A.jpeg"/>
</p></div>
<figcaption>Photo by Joan Bardeletti</figcaption>
</figure>
</div>
@ -123,9 +118,8 @@
<figure name="b821" id="b821">
<div>
<p><img data-image-id="1*ohyycinH18fz98TCyUzVgQ.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*ohyycinH18fz98TCyUzVgQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png">
</p>
</div>
<p><img data-image-id="1*ohyycinH18fz98TCyUzVgQ.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*ohyycinH18fz98TCyUzVgQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png"/>
</p></div>
</figure>
<p name="39a6" id="39a6">The deep web drug lab is the brainchild of Fernando Caudevilla, a Spanish
physician who is better known as “DoctorX” on the deep web, a nickname
@ -140,9 +134,8 @@
<figure name="eebc" id="eebc">
<div>
<p><img data-image-id="1*mKvUNOAVQxl6atCbxbCZsg.jpeg" data-width="2100" data-height="1241" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*mKvUNOAVQxl6atCbxbCZsg.jpeg">
</p>
</div>
<p><img data-image-id="1*mKvUNOAVQxl6atCbxbCZsg.jpeg" data-width="2100" data-height="1241" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*mKvUNOAVQxl6atCbxbCZsg.jpeg"/>
</p></div>
<figcaption>Fernando Caudevilla, AKA DoctorX. Photo: Joseph Cox</figcaption>
</figure>
</div>
@ -189,9 +182,8 @@
<figure name="4058" id="4058">
<div>
<p><img data-image-id="1*knT10_FNVUmqQIBLnutmzQ.jpeg" data-width="4400" data-height="3141" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*knT10_FNVUmqQIBLnutmzQ.jpeg">
</p>
</div>
<p><img data-image-id="1*knT10_FNVUmqQIBLnutmzQ.jpeg" data-width="4400" data-height="3141" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*knT10_FNVUmqQIBLnutmzQ.jpeg"/>
</p></div>
<figcaption>Photo: Joseph Cox</figcaption>
</figure>
</div>
@ -199,9 +191,8 @@
<figure name="818c" id="818c">
<div>
<p><img data-image-id="1*ohyycinH18fz98TCyUzVgQ.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*ohyycinH18fz98TCyUzVgQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png">
</p>
</div>
<p><img data-image-id="1*ohyycinH18fz98TCyUzVgQ.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*ohyycinH18fz98TCyUzVgQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png"/>
</p></div>
</figure>
<p name="7b5e" id="7b5e">While the Energy Control lab in Madrid lab only tests Spanish drugs from
various sources, it is the Barcelona location which vets the substances
@ -230,9 +221,8 @@
<figure name="b885" id="b885">
<div>
<p><img data-image-id="1*Vr61dyCTRwk6CemmVF8YAQ.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*Vr61dyCTRwk6CemmVF8YAQ.jpeg">
</p>
</div>
<p><img data-image-id="1*Vr61dyCTRwk6CemmVF8YAQ.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*Vr61dyCTRwk6CemmVF8YAQ.jpeg"/>
</p></div>
<figcaption>Photo by Joan Bardeletti</figcaption>
</figure>
</div>
@ -274,9 +264,8 @@
<figure name="8544" id="8544">
<div>
<p><img data-image-id="1*a-1_13xE6_ErQ-QSlz6myw.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*a-1_13xE6_ErQ-QSlz6myw.jpeg">
</p>
</div>
<p><img data-image-id="1*a-1_13xE6_ErQ-QSlz6myw.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*a-1_13xE6_ErQ-QSlz6myw.jpeg"/>
</p></div>
<figcaption>Photo by Joan Bardeletti</figcaption>
</figure>
</div>
@ -284,9 +273,8 @@
<figure name="d521" id="d521">
<div>
<p><img data-image-id="1*ohyycinH18fz98TCyUzVgQ.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*ohyycinH18fz98TCyUzVgQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png">
</p>
</div>
<p><img data-image-id="1*ohyycinH18fz98TCyUzVgQ.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*ohyycinH18fz98TCyUzVgQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png"/>
</p></div>
</figure>
<p name="126b" id="126b">Despite the prevalence of people using the service to gauge the quality
of what goes up their nose, many users send samples to Energy Control in
@ -327,9 +315,8 @@
<figure name="552a" id="552a">
<div>
<p><img data-image-id="1*IWXhtSsVv0gNnCwnDEXk-Q.jpeg" data-width="2100" data-height="1192" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*IWXhtSsVv0gNnCwnDEXk-Q.jpeg">
</p>
</div>
<p><img data-image-id="1*IWXhtSsVv0gNnCwnDEXk-Q.jpeg" data-width="2100" data-height="1192" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*IWXhtSsVv0gNnCwnDEXk-Q.jpeg"/>
</p></div>
<figcaption>Photo by Joan Bardeletti</figcaption>
</figure>
</div>
@ -357,9 +344,8 @@
<figure name="9d32" id="9d32">
<div>
<p><img data-image-id="1*NGcrjfkV0l37iQH2uyYjEw.jpeg" data-width="1368" data-height="913" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*NGcrjfkV0l37iQH2uyYjEw.jpeg">
</p>
</div>
<p><img data-image-id="1*NGcrjfkV0l37iQH2uyYjEw.jpeg" data-width="1368" data-height="913" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*NGcrjfkV0l37iQH2uyYjEw.jpeg"/>
</p></div>
<figcaption>Photo by Joan Bardeletti</figcaption>
</figure>
</div>
@ -419,9 +405,8 @@
<figure name="890b" id="890b">
<div>
<p><img data-image-id="1*WRlKt3q3mt7utmwxcbl3sQ.jpeg" data-width="2100" data-height="1373" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*WRlKt3q3mt7utmwxcbl3sQ.jpeg">
</p>
</div>
<p><img data-image-id="1*WRlKt3q3mt7utmwxcbl3sQ.jpeg" data-width="2100" data-height="1373" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*WRlKt3q3mt7utmwxcbl3sQ.jpeg"/>
</p></div>
<figcaption>Photo by Joan Bardeletti</figcaption>
</figure>
</div>
@ -437,9 +422,8 @@
<figure name="31cf" id="31cf">
<div>
<p><img data-image-id="1*320_4I0lxbn5x3bx4XPI5Q.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*320_4I0lxbn5x3bx4XPI5Q.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*320_4I0lxbn5x3bx4XPI5Q.png">
</p>
</div>
<p><img data-image-id="1*320_4I0lxbn5x3bx4XPI5Q.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*320_4I0lxbn5x3bx4XPI5Q.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*320_4I0lxbn5x3bx4XPI5Q.png"/>
</p></div>
</figure>
<p name="9b87" id="9b87" data-align="center"><em>Top photo by Joan Bardeletti</em>
</p>
@ -447,4 +431,4 @@
<em>|</em><a href="https://www.facebook.com/pages/Backchannel/1488568504730671" data-href="https://www.facebook.com/pages/Backchannel/1488568504730671" rel="nofollow" target="_blank"><em>Facebook</em></a>
</p>
</div>
</div></article>
</div></article>

View file

@ -35,7 +35,7 @@
<table>
<tbody>
<tr>
<td></td>
<td>General UX</td>
<td>UX draft</td>
<td>UX review</td>
@ -47,276 +47,260 @@
</tr>
<tr>
<td>Load map</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>Save map</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>Graphics settings</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>Control settings</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>Sound settings</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>Interface settings</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>Other settings</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>Map generator</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>Quick bar <i><b>Twinsen</b></i>
</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td>Quick bar <i><b>Twinsen</b></i></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
</tr>
<tr>
<td>Train GUI <i><b>kovarex</b></i>
</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td>Train GUI <i><b>kovarex</b></i></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
</tr>
<tr>
<td>Technology GUI<i> <b>Oxyd</b></i>
</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td>Technology GUI<i> <b>Oxyd</b></i></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
</tr>
<tr>
<td>Technology tooltip <i><b>Oxyd</b></i>
</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td>Technology tooltip <i><b>Oxyd</b></i></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
</tr>
<tr>
<td>Blueprint library<i> <b>kovarex</b></i>
</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td>Blueprint library<i> <b>kovarex</b></i></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>Shortcut bar <i><b>Oxyd</b></i>
</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td>Shortcut bar <i><b>Oxyd</b></i></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>Character screen <i><b>Dominik</b></i>
</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td>Character screen <i><b>Dominik</b></i></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>Help overlay <i><b>kovarex</b></i>
</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td>Help overlay <i><b>kovarex</b></i></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>Manage/Install mods <i><b>Rseding</b></i>
</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td>Manage/Install mods <i><b>Rseding</b></i></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>Recipe/item/Entity tooltip <i><b>Twinsen</b></i>
</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td>Recipe/item/Entity tooltip <i><b>Twinsen</b></i></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>Chat icon selector <i><b>?</b></i>
</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td>Chat icon selector <i><b>?</b></i></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>New game <i><b>?</b></i>
</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td>New game <i><b>?</b></i></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>Menu structure <i><b>?</b></i>
</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td>Menu structure <i><b>?</b></i></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>Main screen chat <i><b>?</b></i>
</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td>Main screen chat <i><b>?</b></i></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-282-newly-finished.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
</tr>
<tr>
<td>Recipe explorer <i><b>?</b></i>
</td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"></td>
<td>Recipe explorer <i><b>?</b></i></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
<td><img src="https://cdn.factorio.com/assets/img/blog/fff-277-not-finished-2.png" width="20px"/></td>
</tr>
</tbody>
</table>
<p><i>* Newly finished things since the last update in <a href="https://www.factorio.com/blog/post/fff-277" target="_blank">FFF-277</a>.</i></p>
<h3>Blueprint library</h3>
<p><i>* Newly finished things since the last update in <a href="https://www.factorio.com/blog/post/fff-277" target="_blank">FFF-277</a>.</i></p><h3>Blueprint library</h3>
<p>
The blueprint library changes have been split into several steps. The reason is, that there was a big motivation to do the integration with the new quickbar (final version introduced in <a href="https://www.factorio.com/blog/post/fff-278" target="_blank">FFF-278</a>) in time for 0.17.0, while the other changes can be done after. The thing with the quickbar is, that it is quite a big change to one of the most used tools in the game and people generally don't like change even when it is for the better. To minimize the hate of the change, we need to "sell it properly". By that, we should provide as many of the positive aspects of the new quickbar at the time of its introduction.
</p>
@ -327,19 +311,19 @@
In addition to this, other changes related to the blueprint library will follow soon after 0.17.0. The first thing is the change of how the GUI looks:
</p>
<p>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-blueprint-library-grid-view.png" width="900px">
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-blueprint-library-grid-view.png" width="900px"/>
</p>
<p>
We will also allow to switch between grid and list view. It mainly provides a way to nicely see the longer names of the blueprint. We noticed that players try to put a large amount of info about a blueprint in its name, so we are planning to add a possibility to write a textual description of the blueprint.
</p>
<p>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-blueprint-library-list-view.png" width="900px">
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-blueprint-library-list-view.png" width="900px"/>
</p>
<p>
The last big change is to allow to put blueprint books into blueprint books, allowing better organisation. Basically like a directory structure. Whenever a blueprint/book is opened, we plan to show its current location, so the player knows exactly what is going on.
</p>
<p>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-blueprint-book.png" width="900px">
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-blueprint-book.png" width="900px"/>
</p>
<h3>The hand</h3>
<p>
@ -349,7 +333,7 @@
This was annoying in 0.16 from time to time, but with the new quickbar, it started to happen even more, as now, you have only one inventory, and no reserved slots in the quickbar. To solve that, we just extended the "principal" of the hand. When you pick something from the inventory, the hand icon appears on the slot. As long as you hold the thing in your cursor, the hand stays there, and prevents other things from being inserted there. This way, you should always be able to return the currently selected item into your inventory as long as you didn't get it from external source like a chest.
</p>
<p>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-the-hand.png" width="900px"><br>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-the-hand.png" width="900px"/><br/>
<i>The hand is protecting the slot from the robots.</i>
</p>
<h2>Terrain generation updates <span size="2">(TOGoS)</span>
@ -372,8 +356,8 @@
For 0.17 we've reworked biter placement using a system similar to that with which we got resource placement under control. The size and frequency controls now act more like most people would expect, with frequency increasing the number of bases, and size changing the size of each base.
</p>
<p>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-enemy-bases.gif">
<br><i>New preview UI showing the effects of enemy base controls.
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-enemy-bases.gif"/>
<br/><i>New preview UI showing the effects of enemy base controls.
In reality the preview takes a couple seconds to regenerate after every change,
but the regeneration part is skipped in this animation to clearly show the effects of the controls.</i>
</p>
@ -392,8 +376,8 @@
Or you can turn it way down to make cliffs very rare or be completely absent.
</p>
<p>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-cliff-controls.gif">
<br><i>Changing cliff frequency and continuity. Since cliffs are based on elevation,
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-cliff-controls.gif"/>
<br/><i>Changing cliff frequency and continuity. Since cliffs are based on elevation,
you'll have to turn frequency <strong>way</strong> up if you want lots of layers
even near the starting lake.</i>
</p>
@ -414,8 +398,8 @@
and with overlap in some cases.
</p>
<p>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-rectangles.png" width="900" height="900">
<br><i>Rectangles.</i>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-rectangles.png" width="900" height="900"/>
<br/><i>Rectangles.</i>
</p>
<p>
Having the humidity-aux-tile chart is all well and good, but doesn't tell the whole story,
@ -427,8 +411,8 @@
linearly from north-south and west-east, respectively.
</p>
<p>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-moisture+aux-debug-map.png" width="900" height="900">
<br><i>Using 'debug-moisture' and 'debug-aux' generators to drive moisture and aux, respectively.</i>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-moisture+aux-debug-map.png" width="900" height="900"/>
<br/><i>Using 'debug-moisture' and 'debug-aux' generators to drive moisture and aux, respectively.</i>
</p>
<p>
This map helped us realize that, rather than having controls
@ -437,8 +421,8 @@
because 'aux' doesn't mean anything).
</p>
<p>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-moisture+aux-controls.gif" width="900" height="664">
<br><i>Sliding the moisture and aux bias sliders to make the world more or less grassy or red-deserty.</i>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-moisture+aux-controls.gif" width="900" height="664"/>
<br/><i>Sliding the moisture and aux bias sliders to make the world more or less grassy or red-deserty.</i>
</p>
<p>
A pet project of mine has been to
@ -495,14 +479,14 @@
There's a slider to let you change the size of the island(s).
</p>
<p>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-island.png" width="900" height="900">
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-island.png" width="900" height="900"/>
</p>
<p>
Maps with multiple starting points will have multiple islands.
</p>
<p>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-islands.png" width="900" height="900">
<br><i>PvP islands!</i>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-islands.png" width="900" height="900"/>
<br/><i>PvP islands!</i>
</p>
<p>
And speaking of scale sliders, we're expanding their range from ± a factor of 2 (the old 'very low' to 'very high' settings)
@ -521,7 +505,7 @@
<h2>High-res accumulators <span size="2">(Ernestas, Albert)</span>
</h2>
<p>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-accumulator.gif">
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-accumulator.gif"/>
</p>
<p>
The design of the accumulator has been always good. The 4 very visible cylinders, looking like giant batteries, Tesla poles and the electric beams perfectly telegraphed its function in terms of style and readability. Thats why for the high-res conversion we were very careful about keeping this entity as it was.
@ -530,11 +514,11 @@
The only thing that was a bit disturbing (for some) are the poles crossing to each other when more than one accumulator is placed in a row. So we decided to fix it (or break it). The rest of the work was making the entity compatible for the actual look of the game. But in essence accumulators are still the same.
</p>
<p>
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-accumulator-comparison.png" width="900px">
<img src="https://cdn.factorio.com/assets/img/blog/fff-282-accumulator-comparison.png" width="900px"/>
</p>
<p>
As always, let us know what you think on our <a href="https://forums.factorio.com/64912" target="_blank">forum</a>.
</p>
</div></article>
</div></article>

View file

@ -25,7 +25,7 @@
informe ubicó "con domicilios en Palermo y en el centro porteño", y aseguraba incluso que había sido
visto "en Neuquén, Río Negro y Chubut durante el juicio a Jones Huala".</p>
<figure>
<p><span title="Ampliar imagen"></span><img src="http://bucket2.glanacion.com/anexos/fotos/77/conflicto-mapuche-2585177w280.jpg"></p>
<p><img src="http://bucket2.glanacion.com/anexos/fotos/77/conflicto-mapuche-2585177w280.jpg"/></p>
<figcaption id="epigrafe2585177">Foto: LA NACION</figcaption>
</figure>
@ -93,4 +93,4 @@
administrativista y analista internacional</i></b></p>
</section>
</article></DIV></article>
</article></DIV></article>

View file

@ -1,7 +1,6 @@
<article><DIV id="readability-page-1">
<div>
<article><DIV id="readability-page-1"><div>
<div>
<p><a rel="noopener" href="http://fakehost/@vincentvallet?source=post_page-----d6e62af173e2----------------------" target="_blank"><img alt="Vincent Vallet" src="https://miro.medium.com/fit/c/96/96/1*vFTVh_mYyf0p6m7f77A3vw.jpeg" width="48" height="48"></a>
<p><a rel="noopener" href="http://fakehost/@vincentvallet?source=post_page-----d6e62af173e2----------------------" target="_blank"><img alt="Vincent Vallet" src="https://miro.medium.com/fit/c/96/96/1*vFTVh_mYyf0p6m7f77A3vw.jpeg" width="48" height="48"/></a>
</p>
</div>
@ -25,7 +24,7 @@
</p>
<figure>
<div>
<p><img src="https://miro.medium.com/max/3788/1*5o3M5niyi911waUrKWVZ0Q.png" width="1894" height="970" role="presentation" data-old-src="https://miro.medium.com/max/60/1*5o3M5niyi911waUrKWVZ0Q.png?q=20">
<p><img src="https://miro.medium.com/max/3788/1*5o3M5niyi911waUrKWVZ0Q.png" width="1894" height="970" role="presentation" data-old-src="https://miro.medium.com/max/60/1*5o3M5niyi911waUrKWVZ0Q.png?q=20"/>
</p>
</div>
<figcaption>
@ -48,7 +47,7 @@
</p>
<figure>
<div>
<p><img src="https://miro.medium.com/max/1994/1*8uOdeOfnUzTaFIY1r7oAMg.png" width="997" height="230" role="presentation" data-old-src="https://miro.medium.com/max/60/1*8uOdeOfnUzTaFIY1r7oAMg.png?q=20">
<p><img src="https://miro.medium.com/max/1994/1*8uOdeOfnUzTaFIY1r7oAMg.png" width="997" height="230" role="presentation" data-old-src="https://miro.medium.com/max/60/1*8uOdeOfnUzTaFIY1r7oAMg.png?q=20"/>
</p>
</div>
<figcaption>
@ -87,7 +86,7 @@
<pre><span id="16bd">node --prof app.js</span></pre>
<figure>
<div>
<p><img src="https://miro.medium.com/max/1698/1*e7gjTlzi55udTXbbPeEs2A.png" width="849" height="534" role="presentation" data-old-src="https://miro.medium.com/max/60/1*e7gjTlzi55udTXbbPeEs2A.png?q=20">
<p><img src="https://miro.medium.com/max/1698/1*e7gjTlzi55udTXbbPeEs2A.png" width="849" height="534" role="presentation" data-old-src="https://miro.medium.com/max/60/1*e7gjTlzi55udTXbbPeEs2A.png?q=20"/>
</p>
</div>
<figcaption>
@ -103,7 +102,7 @@
<pre><span id="061c">node --prof-process isolate-0xnnnnn-v8.log &gt; processed.txt</span></pre>
<figure>
<div>
<p><img src="https://miro.medium.com/max/1508/1*JJkRh7JihTUo2apW_9ZXAQ.png" width="754" height="306" role="presentation" data-old-src="https://miro.medium.com/max/60/1*JJkRh7JihTUo2apW_9ZXAQ.png?q=20">
<p><img src="https://miro.medium.com/max/1508/1*JJkRh7JihTUo2apW_9ZXAQ.png" width="754" height="306" role="presentation" data-old-src="https://miro.medium.com/max/60/1*JJkRh7JihTUo2apW_9ZXAQ.png?q=20"/>
</p>
</div>
<figcaption>
@ -121,7 +120,7 @@
</p>
<figure>
<div>
<p><img src="https://miro.medium.com/max/5760/1*6wi5BlNNnykjZs0PufrvLQ.png" width="2880" height="1534" role="presentation" data-old-src="https://miro.medium.com/max/60/1*6wi5BlNNnykjZs0PufrvLQ.png?q=20">
<p><img src="https://miro.medium.com/max/5760/1*6wi5BlNNnykjZs0PufrvLQ.png" width="2880" height="1534" role="presentation" data-old-src="https://miro.medium.com/max/60/1*6wi5BlNNnykjZs0PufrvLQ.png?q=20"/>
</p>
</div>
<figcaption>
@ -173,9 +172,7 @@
<p id="731f">
And here is how to make a CPU profiling with this module:
</p>
<figure>
</figure>
<p id="79d1">
As you can see, all the data is returned in variable “profile”. Basically, its a simple JSON object representing all the call stack and the CPU consumption for each function. And if you want to use an Async/await syntax you can install the module “inspector-api”.
</p>
@ -183,15 +180,11 @@
<p id="195d">
It also comes with a built-in exporter to send data to S3, with this method <strong>you dont write anything on the disk</strong>!
</p>
<figure>
</figure>
<p id="964f">
If you use another storage system you can just collect the data and export it by yourself.
</p>
<figure>
</figure>
<h2 id="848b">
And now, CPU profiling on-demand!
</h2>
@ -200,7 +193,7 @@
</p>
<figure>
<div>
<p><img src="https://miro.medium.com/max/1694/1*cS9IXYGfMmgxaAUlC7oqOQ.png" width="847" height="362" role="presentation" data-old-src="https://miro.medium.com/max/60/1*cS9IXYGfMmgxaAUlC7oqOQ.png?q=20">
<p><img src="https://miro.medium.com/max/1694/1*cS9IXYGfMmgxaAUlC7oqOQ.png" width="847" height="362" role="presentation" data-old-src="https://miro.medium.com/max/60/1*cS9IXYGfMmgxaAUlC7oqOQ.png?q=20"/>
</p>
</div>
</figure>
@ -210,18 +203,14 @@
<p id="2c91">
Here is a simple example of a server using the “ws” module to send a message to a unique instance.
</p>
<figure>
</figure>
<p id="2206">
Of course, it only works with one instance, but its a fake project to demonstrate the principle ;)
</p>
<p id="e92d">
Now we can request our server to ask it to send a message to our instance and start/stop a CPU profiling. In your instance, you can handle the CPU profiling like this:
</p>
<figure>
</figure>
<p id="c3d0">
<strong>To sum up</strong>: we are able to trigger a CPU profiling, on-demand, in real-time, without interruption or connection to the server. Data can be collected on the disk (and extracted later) or can be sent to S3 (or any other system, PR are welcomed on the <a href="https://github.com/wallet77/v8-inspector-api" target="_blank" rel="noopener nofollow">inspector-api project</a>).
</p>
@ -230,8 +219,7 @@
And because the profiler is a part of V8 itself, the format of the generated JSON file is compatible with the Chrome dev tools.
</p>
</blockquote>
</div>
<div>
</div><div>
<p id="2cda">
<strong>How can we identify an issue?</strong>
</p>
@ -258,7 +246,7 @@
</p>
<figure>
<div>
<p><img src="https://miro.medium.com/max/1860/1*87KlGgfbuWP38nAaQaj3xw.png" width="930" height="523" role="presentation" data-old-src="https://miro.medium.com/max/60/1*87KlGgfbuWP38nAaQaj3xw.png?q=20">
<p><img src="https://miro.medium.com/max/1860/1*87KlGgfbuWP38nAaQaj3xw.png" width="930" height="523" role="presentation" data-old-src="https://miro.medium.com/max/60/1*87KlGgfbuWP38nAaQaj3xw.png?q=20"/>
</p>
</div>
<figcaption>
@ -268,14 +256,13 @@
<p id="10ee">
As you can notice, we have to zoom to the profile if we want to see the call stack, because after optimizations the API was able to take a lot more traffic. Now every function in the call stack looks like a microtask.
</p>
</div>
<div>
</div><div>
<p id="10f1">
And now our application is able to serve more than 200,000 requests in 20 seconds; <strong>we increased the performance by a factor of 100k</strong>!
</p>
<figure>
<div>
<p><img src="https://miro.medium.com/max/1690/1*kfOK60PtmWx6iP681-qRcg.png" width="845" height="362" role="presentation" data-old-src="https://miro.medium.com/max/60/1*kfOK60PtmWx6iP681-qRcg.png?q=20">
<p><img src="https://miro.medium.com/max/1690/1*kfOK60PtmWx6iP681-qRcg.png" width="845" height="362" role="presentation" data-old-src="https://miro.medium.com/max/60/1*kfOK60PtmWx6iP681-qRcg.png?q=20"/>
</p>
</div>
</figure>
@ -343,5 +330,4 @@
<a href="https://www.npmjs.com/package/inspector-api" target="_blank" rel="noopener nofollow">https://www.npmjs.com/package/inspector-api</a>
</li>
</ul>
</div>
</DIV></article>
</div></DIV></article>

View file

@ -1,7 +1,7 @@
<article><div id="readability-page-1">
<figure data-id="18zu12g5xzyxojpg" data-recommend-id="image://18zu12g5xzyxojpg" data-format="jpg" data-width="970" data-height="546" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img id="dbg" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zu12g5xzyxojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zu12g5xzyxojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zu12g5xzyxojpg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_800/18zu12g5xzyxojpg.jpg 800w" draggable="auto" data-chomp-id="18zu12g5xzyxojpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zu12g5xzyxojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zu12g5xzyxojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zu12g5xzyxojpg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_800/18zu12g5xzyxojpg.jpg 800w">
<p><img id="dbg" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zu12g5xzyxojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zu12g5xzyxojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zu12g5xzyxojpg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_800/18zu12g5xzyxojpg.jpg 800w" draggable="auto" data-chomp-id="18zu12g5xzyxojpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zu12g5xzyxojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zu12g5xzyxojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zu12g5xzyxojpg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_800/18zu12g5xzyxojpg.jpg 800w"/>
</p>
</div>
</figure>
@ -9,7 +9,7 @@
<em>Nothing beats the passion of a true fan writing about something they love. That's what you're about to see here: one of the richest, most amazing tributes to a great gaming series that we've ever run on</em> Kotaku<em>. <strong>Warning #1:</strong> this one might make your browser chug, so close your other tabs. <strong>Warning #2:</strong> This piece might make it hurt a little more than there are no new</em> Metroid <em>games from Nintendo on the horizon.</em>
</p>
<p>
<em>Please note that this is the first half of Mama Robotnik's massive</em> Metroid <em>story.</em> <span><a data-ga='[["Embedded Url","Internal link","https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108",{"metric25":1}]]' href="https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108" target="_blank"><em>The second half can be found here</em></a></span><em>. The entire post is a greatly-expanded version of</em> <span><a data-ga='[["Embedded Url","External link","http://www.neogaf.com/forum/showthread.php?t=649215",{"metric25":1}]]' href="http://www.neogaf.com/forum/showthread.php?t=649215" target="_blank" rel="noopener noreferrer"><em>a post</em></a></span> <em>that Mama Robotnik originally published on the NeoGAF forum before revising and reworking it for Kotaku. Take it away, MR...</em>
<em>Please note that this is the first half of Mama Robotnik's massive</em> Metroid <em>story.</em> <span><a data-ga="[[&quot;Embedded Url&quot;,&quot;Internal link&quot;,&quot;https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108&quot;,{&quot;metric25&quot;:1}]]" href="https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108" target="_blank"><em>The second half can be found here</em></a></span><em>. The entire post is a greatly-expanded version of</em> <span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://www.neogaf.com/forum/showthread.php?t=649215&quot;,{&quot;metric25&quot;:1}]]" href="http://www.neogaf.com/forum/showthread.php?t=649215" target="_blank" rel="noopener noreferrer"><em>a post</em></a></span> <em>that Mama Robotnik originally published on the NeoGAF forum before revising and reworking it for Kotaku. Take it away, MR...</em>
</p>
@ -73,9 +73,7 @@
<p>
Each story section includes one or more of the below superscript annotations, to help inform the reader as to where the lore or speculation comes from. A brief key:
</p>
<figure data-id="18zqfwc3l0k28gif" data-recommend-id="image://18zqfwc3l0k28gif" data-format="gif" data-width="640" data-height="128" data-lightbox="true" data-recommended="false" draggable="false">
</figure>
<p>
With all that said, let us begin.
@ -88,13 +86,13 @@
</h3>
<figure data-id="18zqg21aub0sljpg" data-recommend-id="image://18zqg21aub0sljpg" data-format="jpg" data-width="640" data-height="488" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqg21aub0sljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqg21aub0sljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqg21aub0sljpg.jpg 470w" draggable="auto" data-chomp-id="18zqg21aub0sljpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqg21aub0sljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqg21aub0sljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqg21aub0sljpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqg21aub0sljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqg21aub0sljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqg21aub0sljpg.jpg 470w" draggable="auto" data-chomp-id="18zqg21aub0sljpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqg21aub0sljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqg21aub0sljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqg21aub0sljpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
<em>(</em><span><a data-ga='[["Embedded Url","External link","http://3ihard.deviantart.com/art/Chozo-dramatic-97410107",{"metric25":1}]]' href="http://3ihard.deviantart.com/art/Chozo-dramatic-97410107" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span><em>)</em>
<em>(</em><span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Chozo-dramatic-97410107&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Chozo-dramatic-97410107" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span><em>)</em>
</p>
<p>
On an unknown planet in the universe, a race of avian humanoids evolved. The species that will come to be known as the Chozo possessed great strength, agility and intelligence. The species is peaceful, and is driven by a social/religious value that nature is sacred. [M1 / MP]
@ -102,12 +100,12 @@
<figure data-id="18zqg86aaay9kjpg" data-recommend-id="image://18zqg86aaay9kjpg" data-format="jpg" data-width="640" data-height="575" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqg86aaay9kjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqg86aaay9kjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqg86aaay9kjpg.jpg 470w" draggable="auto" data-chomp-id="18zqg86aaay9kjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqg86aaay9kjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqg86aaay9kjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqg86aaay9kjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqg86aaay9kjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqg86aaay9kjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqg86aaay9kjpg.jpg 470w" draggable="auto" data-chomp-id="18zqg86aaay9kjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqg86aaay9kjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqg86aaay9kjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqg86aaay9kjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://3ihard.deviantart.com/art/Chozo-Goddess-121103720",{"metric25":1}]]' href="http://3ihard.deviantart.com/art/Chozo-Goddess-121103720" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Chozo-Goddess-121103720&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Chozo-Goddess-121103720" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
</p>
<p>
Certain blessed individuals were born with a unique gift the vague comprehension of events set to take place in the distant future. Driven by these prophecies, the race advanced quickly and became space faring. With abstract predictions of a hostile universe, the Chozo developed powered armour and armaments to defend themselves. Prepared for whatever hostility awaited them, the Chozo explored the stars. [M1 / MP / MP SP]
@ -115,7 +113,7 @@
<figure data-id="18zqgmn6fovtyjpg" data-recommend-id="image://18zqgmn6fovtyjpg" data-format="jpg" data-width="640" data-height="409" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgmn6fovtyjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgmn6fovtyjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgmn6fovtyjpg.jpg 470w" draggable="auto" data-chomp-id="18zqgmn6fovtyjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgmn6fovtyjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgmn6fovtyjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgmn6fovtyjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgmn6fovtyjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgmn6fovtyjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgmn6fovtyjpg.jpg 470w" draggable="auto" data-chomp-id="18zqgmn6fovtyjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgmn6fovtyjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgmn6fovtyjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgmn6fovtyjpg.jpg 470w"/>
</p>
</div>
</figure>
@ -128,12 +126,12 @@
<figure data-id="18zqgp7wzq6v9jpg" data-recommend-id="image://18zqgp7wzq6v9jpg" data-format="jpg" data-width="640" data-height="503" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgp7wzq6v9jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgp7wzq6v9jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgp7wzq6v9jpg.jpg 470w" draggable="auto" data-chomp-id="18zqgp7wzq6v9jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgp7wzq6v9jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgp7wzq6v9jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgp7wzq6v9jpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgp7wzq6v9jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgp7wzq6v9jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgp7wzq6v9jpg.jpg 470w" draggable="auto" data-chomp-id="18zqgp7wzq6v9jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgp7wzq6v9jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgp7wzq6v9jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgp7wzq6v9jpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://slapshoft.deviantart.com/art/quot-Past-is-Prologue-quot-259977883",{"metric25":1}]]' href="http://slapshoft.deviantart.com/art/quot-Past-is-Prologue-quot-259977883" target="_blank" rel="noopener noreferrer"><em>Artist: Slapshoft</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://slapshoft.deviantart.com/art/quot-Past-is-Prologue-quot-259977883&quot;,{&quot;metric25&quot;:1}]]" href="http://slapshoft.deviantart.com/art/quot-Past-is-Prologue-quot-259977883" target="_blank" rel="noopener noreferrer"><em>Artist: Slapshoft</em></a></span>)
</p>
<p>
Peace reigned through the cosmos. The alliance was a great universal renaissance, and lasted for a millennium. [MPH SP / MP2 SP / MP3 SP]
@ -141,12 +139,12 @@
<figure data-id="18zqgqj9kac9hjpg" data-recommend-id="image://18zqgqj9kac9hjpg" data-format="jpg" data-width="640" data-height="426" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgqj9kac9hjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgqj9kac9hjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgqj9kac9hjpg.jpg 470w" draggable="auto" data-chomp-id="18zqgqj9kac9hjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgqj9kac9hjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgqj9kac9hjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgqj9kac9hjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgqj9kac9hjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgqj9kac9hjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgqj9kac9hjpg.jpg 470w" draggable="auto" data-chomp-id="18zqgqj9kac9hjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgqj9kac9hjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgqj9kac9hjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgqj9kac9hjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://3ihard.deviantart.com/art/Oracle-of-Chozo-164523580",{"metric25":1}]]' href="http://3ihard.deviantart.com/art/Oracle-of-Chozo-164523580" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Oracle-of-Chozo-164523580&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Oracle-of-Chozo-164523580" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
</p>
<p>
During this calm, the Chozo prophets continued to receive increasingly severe visions of chaos. They foresaw a universe consumed by war, horrors evolving on distant worlds, and a great toxicity waiting to be unleashed. As the visions became more precise, the species isolated itself from its allies. The Chozo civilisation became intensely driven to fight this unclear threat. [MP / MP3 SP / M2 SP /MF SP]
@ -154,12 +152,12 @@
<figure data-id="18zqgrykgsndujpg" data-recommend-id="image://18zqgrykgsndujpg" data-format="jpg" data-width="640" data-height="273" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgrykgsndujpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgrykgsndujpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgrykgsndujpg.jpg 470w" draggable="auto" data-chomp-id="18zqgrykgsndujpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgrykgsndujpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgrykgsndujpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgrykgsndujpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgrykgsndujpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgrykgsndujpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgrykgsndujpg.jpg 470w" draggable="auto" data-chomp-id="18zqgrykgsndujpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgrykgsndujpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgrykgsndujpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgrykgsndujpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://danillovesfood.deviantart.com/art/Commission-Metroid-Prime-Skytown-Elysia-336095763",{"metric25":1}]]' href="http://danillovesfood.deviantart.com/art/Commission-Metroid-Prime-Skytown-Elysia-336095763" target="_blank" rel="noopener noreferrer"><em>Artist: DanilLovesFood</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://danillovesfood.deviantart.com/art/Commission-Metroid-Prime-Skytown-Elysia-336095763&quot;,{&quot;metric25&quot;:1}]]" href="http://danillovesfood.deviantart.com/art/Commission-Metroid-Prime-Skytown-Elysia-336095763" target="_blank" rel="noopener noreferrer"><em>Artist: DanilLovesFood</em></a></span>)
</p>
<p>
The Chozo needed more potent tools to locate this unseen and distant danger. They expanded their SkyTown colony on the gas giant Elysia and remade it into a vast interstellar observatory powered by the planets endless storms. The facility was of such scale that an entire species of artificial life became necessary to maintain it. The Chozo created their first species the mechanical Elysians. [MP3 / MP3 SP]
@ -170,13 +168,13 @@
</p>
<figure data-id="18zqgtjse9p7rjpg" data-recommend-id="image://18zqgtjse9p7rjpg" data-format="jpg" data-width="640" data-height="375" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgtjse9p7rjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgtjse9p7rjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgtjse9p7rjpg.jpg 470w" draggable="auto" data-chomp-id="18zqgtjse9p7rjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgtjse9p7rjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgtjse9p7rjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgtjse9p7rjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgtjse9p7rjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgtjse9p7rjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgtjse9p7rjpg.jpg 470w" draggable="auto" data-chomp-id="18zqgtjse9p7rjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgtjse9p7rjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgtjse9p7rjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgtjse9p7rjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://mechanical-hand.deviantart.com/art/Phaaze-138141037",{"metric25":1}]]' href="http://mechanical-hand.deviantart.com/art/Phaaze-138141037" target="_blank" rel="noopener noreferrer"><em>Artist: Mechanical-Hand</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://mechanical-hand.deviantart.com/art/Phaaze-138141037&quot;,{&quot;metric25&quot;:1}]]" href="http://mechanical-hand.deviantart.com/art/Phaaze-138141037" target="_blank" rel="noopener noreferrer"><em>Artist: Mechanical-Hand</em></a></span>)
</p>
<p>
The data received was terrifying. The blue planet registered as an organism, somehow existing as both mineral and flesh. Impossible radiation pulsed from the surface, which overwhelmed the Chozo satellite and rendered it inert. The location of the planet was immediately lost, and only a broad region of space could be established. [MP3]
@ -194,13 +192,13 @@
</h3>
<figure data-id="18zqgy9h1t7injpg" data-recommend-id="image://18zqgy9h1t7injpg" data-format="jpg" data-width="640" data-height="399" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgy9h1t7injpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgy9h1t7injpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgy9h1t7injpg.jpg 470w" draggable="auto" data-chomp-id="18zqgy9h1t7injpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgy9h1t7injpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgy9h1t7injpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgy9h1t7injpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgy9h1t7injpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgy9h1t7injpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgy9h1t7injpg.jpg 470w" draggable="auto" data-chomp-id="18zqgy9h1t7injpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgy9h1t7injpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgy9h1t7injpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgy9h1t7injpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://3ihard.deviantart.com/art/Chozo-flighter-175094535",{"metric25":1}]]' href="http://3ihard.deviantart.com/art/Chozo-flighter-175094535" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Chozo-flighter-175094535&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Chozo-flighter-175094535" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
</p>
<p>
Finding the exact location of the deadly planet becomes a priority for the Chozo civilisation. A gargantuan ship was assembled on the holy planet of Tallon IV, and dispatched to the dark corner of the universe where the Elysian satellite had been lost. The greatest Chozo warriors, scientists and prophets commenced a crusade for the hostile world, knowing that they would likely never make it back home. During their long journey, they conceive a name for their target: Phaaze. [MP3 SP]
@ -208,12 +206,12 @@
<figure data-id="18zqhapd1bv1hjpg" data-recommend-id="image://18zqhapd1bv1hjpg" data-format="jpg" data-width="640" data-height="450" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhapd1bv1hjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhapd1bv1hjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhapd1bv1hjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhapd1bv1hjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhapd1bv1hjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhapd1bv1hjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhapd1bv1hjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhapd1bv1hjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhapd1bv1hjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhapd1bv1hjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhapd1bv1hjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhapd1bv1hjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhapd1bv1hjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhapd1bv1hjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://sesakath.deviantart.com/art/MP-C-Phaaze-89786422",{"metric25":1}]]' href="http://sesakath.deviantart.com/art/MP-C-Phaaze-89786422" target="_blank" rel="noopener noreferrer"><em>Artist: SesakaTH</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://sesakath.deviantart.com/art/MP-C-Phaaze-89786422&quot;,{&quot;metric25&quot;:1}]]" href="http://sesakath.deviantart.com/art/MP-C-Phaaze-89786422" target="_blank" rel="noopener noreferrer"><em>Artist: SesakaTH</em></a></span>)
</p>
<p>
Generations passed, and the Chozo expedition finally located the blue planet. As they approached, they witnessed the living world as it endlessly pulsed with blue and white energies. There was nothing like this place elsewhere in the universe. [MP3 SP]
@ -224,13 +222,13 @@
</p>
<figure data-id="18zqhdvss5le8jpg" data-recommend-id="image://18zqhdvss5le8jpg" data-format="jpg" data-width="640" data-height="621" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhdvss5le8jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhdvss5le8jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhdvss5le8jpg.jpg 470w" draggable="auto" data-chomp-id="18zqhdvss5le8jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhdvss5le8jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhdvss5le8jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhdvss5le8jpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhdvss5le8jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhdvss5le8jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhdvss5le8jpg.jpg 470w" draggable="auto" data-chomp-id="18zqhdvss5le8jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhdvss5le8jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhdvss5le8jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhdvss5le8jpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://samusmmx.deviantart.com/art/Phazon-Worm-252806281",{"metric25":1}]]' href="http://samusmmx.deviantart.com/art/Phazon-Worm-252806281" target="_blank" rel="noopener noreferrer"><em>Artist: SamusMMX</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://samusmmx.deviantart.com/art/Phazon-Worm-252806281&quot;,{&quot;metric25&quot;:1}]]" href="http://samusmmx.deviantart.com/art/Phazon-Worm-252806281" target="_blank" rel="noopener noreferrer"><em>Artist: SamusMMX</em></a></span>)
</p>
<p>
For billions of years, Phaaze had mutated and irradiated life that evolved on its surface. The strongest creatures had survived to thrive in an ecosystem of beautiful poison. It was then that the Chozo understood: They had arrived at the home of the most devastating and deranged creatures in the known universe. [MP3 SP]
@ -248,13 +246,13 @@
</p>
<figure data-id="18zqhfmxw5dphjpg" data-recommend-id="image://18zqhfmxw5dphjpg" data-format="jpg" data-width="640" data-height="532" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhfmxw5dphjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhfmxw5dphjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhfmxw5dphjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhfmxw5dphjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhfmxw5dphjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhfmxw5dphjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhfmxw5dphjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhfmxw5dphjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhfmxw5dphjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhfmxw5dphjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhfmxw5dphjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhfmxw5dphjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhfmxw5dphjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhfmxw5dphjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://adoublea.deviantart.com/art/Metroid-Chozo-warrior-138820343",{"metric25":1}]]' href="http://adoublea.deviantart.com/art/Metroid-Chozo-warrior-138820343" target="_blank" rel="noopener noreferrer"><em>Artist: Adoublea</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://adoublea.deviantart.com/art/Metroid-Chozo-warrior-138820343&quot;,{&quot;metric25&quot;:1}]]" href="http://adoublea.deviantart.com/art/Metroid-Chozo-warrior-138820343" target="_blank" rel="noopener noreferrer"><em>Artist: Adoublea</em></a></span>)
</p>
<p>
Chozo Warriors in power suits fought the planets creatures as they swarmed the ship. The soldiers battled, watching their kin die around them, in a desperate mission to buy time. [MP3 SP]
@ -265,13 +263,13 @@
</p>
<figure data-id="18zqhh28q856sjpg" data-recommend-id="image://18zqhh28q856sjpg" data-format="jpg" data-width="640" data-height="598" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhh28q856sjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhh28q856sjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhh28q856sjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhh28q856sjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhh28q856sjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhh28q856sjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhh28q856sjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhh28q856sjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhh28q856sjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhh28q856sjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhh28q856sjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhh28q856sjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhh28q856sjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhh28q856sjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://methuselah3000.deviantart.com/art/Chozo-Creator-278707002",{"metric25":1}]]' href="http://methuselah3000.deviantart.com/art/Chozo-Creator-278707002" target="_blank" rel="noopener noreferrer"><em>Artist: Methuselah3000</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://methuselah3000.deviantart.com/art/Chozo-Creator-278707002&quot;,{&quot;metric25&quot;:1}]]" href="http://methuselah3000.deviantart.com/art/Chozo-Creator-278707002" target="_blank" rel="noopener noreferrer"><em>Artist: Methuselah3000</em></a></span>)
</p>
<p>
The Metroid creature was unleashed onto the planet, and the radiation caused it to reproduce quickly. The resulting swarm of Metroids began to consume the planets monstrosities and established themselves as Phaazes apex predator. [MP3 SP]
@ -282,13 +280,13 @@
</p>
<figure data-id="18zqhipfm1vidjpg" data-recommend-id="image://18zqhipfm1vidjpg" data-format="jpg" data-width="640" data-height="381" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhipfm1vidjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhipfm1vidjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhipfm1vidjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhipfm1vidjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhipfm1vidjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhipfm1vidjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhipfm1vidjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhipfm1vidjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhipfm1vidjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhipfm1vidjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhipfm1vidjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhipfm1vidjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhipfm1vidjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhipfm1vidjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://3ihard.deviantart.com/art/Phazon-Mines-178697159",{"metric25":1}]]' href="http://3ihard.deviantart.com/art/Phazon-Mines-178697159" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Phazon-Mines-178697159&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Phazon-Mines-178697159" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
</p>
<p>
On Phaaze, the Metroid presence lasted decades as they consumed the planets superpredators. The corpses of Chozo warriors were absorbed into the planet, and their battle armour slowly became weathered and scattered. The planets slow sentience developed an outrage that seethed under its continents. It had been violated by the Chozo. As the Metroid infestation began to die out, Phaaze developed a very primitive concept of purpose and retribution. [MP3 SP]
@ -303,12 +301,12 @@
<figure data-id="18zqhkgkmizwijpg" data-recommend-id="image://18zqhkgkmizwijpg" data-format="jpg" data-width="640" data-height="380" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhkgkmizwijpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhkgkmizwijpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhkgkmizwijpg.jpg 470w" draggable="auto" data-chomp-id="18zqhkgkmizwijpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhkgkmizwijpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhkgkmizwijpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhkgkmizwijpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhkgkmizwijpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhkgkmizwijpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhkgkmizwijpg.jpg 470w" draggable="auto" data-chomp-id="18zqhkgkmizwijpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhkgkmizwijpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhkgkmizwijpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhkgkmizwijpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://methuselah3000.deviantart.com/art/MDB-Bestiary-Metroid-Prime-338464952",{"metric25":1}]]' href="http://methuselah3000.deviantart.com/art/MDB-Bestiary-Metroid-Prime-338464952" target="_blank" rel="noopener noreferrer"><em>Artist: Methuselah3000</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://methuselah3000.deviantart.com/art/MDB-Bestiary-Metroid-Prime-338464952&quot;,{&quot;metric25&quot;:1}]]" href="http://methuselah3000.deviantart.com/art/MDB-Bestiary-Metroid-Prime-338464952" target="_blank" rel="noopener noreferrer"><em>Artist: Methuselah3000</em></a></span>)
</p>
<p>
As the Tallon IV seed began its centuries of travelling through space, the lone Metroid within absorbed vast amounts of Phazon and radiation. It became self-aware, and grew in size, intelligence and strength. It used the ruined pieces of Chozo armour to construct itself an exoskeleton, and descended into madness. The exoskeleton failed to protect the creature from the endless radiation, and the Metroid became as exotic as Phaazes extinct superpredators: An undying tortured genius. [MP / MP2 / MP3 / MP3 SP]
@ -326,12 +324,12 @@
<figure data-id="18zqhnuwesum0jpg" data-recommend-id="image://18zqhnuwesum0jpg" data-format="jpg" data-width="640" data-height="480" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhnuwesum0jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhnuwesum0jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhnuwesum0jpg.jpg 470w" draggable="auto" data-chomp-id="18zqhnuwesum0jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhnuwesum0jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhnuwesum0jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhnuwesum0jpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhnuwesum0jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhnuwesum0jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhnuwesum0jpg.jpg 470w" draggable="auto" data-chomp-id="18zqhnuwesum0jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhnuwesum0jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhnuwesum0jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhnuwesum0jpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://peacefistartist.deviantart.com/art/SR388-126083062",{"metric25":1}]]' href="http://peacefistartist.deviantart.com/art/SR388-126083062" target="_blank" rel="noopener noreferrer">Artist: PeaceFistArtist</a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://peacefistartist.deviantart.com/art/SR388-126083062&quot;,{&quot;metric25&quot;:1}]]" href="http://peacefistartist.deviantart.com/art/SR388-126083062" target="_blank" rel="noopener noreferrer">Artist: PeaceFistArtist</a></span>)
</p>
<p>
The Chozo detected strange readings coming from a world in a desolate part of the galaxy. The planet had been previously considered so obscure and unimportant that it didnt have a name, merely catalogued with the codename SR388 and left to its obscurity. A detailed analysis picked up some extremely strange observations; though seemingly mineral, the caverns and liquids beneath the surface shifted with metabolic rhythm as if the whole planet was somehow a living thing. A ship was dispatched, and the strongest Chozo warriors braved the caverns beneath the surface. [M2 / M2 SP]
@ -342,13 +340,13 @@
</p>
<figure data-id="18zqhokjxzrgmjpg" data-recommend-id="image://18zqhokjxzrgmjpg" data-format="jpg" data-width="640" data-height="355" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhokjxzrgmjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhokjxzrgmjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhokjxzrgmjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhokjxzrgmjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhokjxzrgmjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhokjxzrgmjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhokjxzrgmjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhokjxzrgmjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhokjxzrgmjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhokjxzrgmjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhokjxzrgmjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhokjxzrgmjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhokjxzrgmjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhokjxzrgmjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://lightningarts.deviantart.com/art/Metroid-Metal-Fusion-Sector1-393385160",{"metric25":1}]]' href="http://lightningarts.deviantart.com/art/Metroid-Metal-Fusion-Sector1-393385160" target="_blank" rel="noopener noreferrer">Artist: LightningArts</a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://lightningarts.deviantart.com/art/Metroid-Metal-Fusion-Sector1-393385160&quot;,{&quot;metric25&quot;:1}]]" href="http://lightningarts.deviantart.com/art/Metroid-Metal-Fusion-Sector1-393385160" target="_blank" rel="noopener noreferrer">Artist: LightningArts</a></span>)
</p>
<p>
Beneath that planet, evolution had been won by an abomination that could steal the flesh, abilities, memories and strengths of all of its prey. The creature was a fusion of energy and plasma that parasitized on life itself. With no word suitable for the nightmare they had discovered, the Chozo simply called it X. If these X-Parasites somehow gained access to the wider universe, there would be no force that could contain them. [M2]
@ -363,12 +361,12 @@
<figure data-id="18zqhrsyn6h9wjpg" data-recommend-id="image://18zqhrsyn6h9wjpg" data-format="jpg" data-width="640" data-height="552" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhrsyn6h9wjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhrsyn6h9wjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhrsyn6h9wjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhrsyn6h9wjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhrsyn6h9wjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhrsyn6h9wjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhrsyn6h9wjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhrsyn6h9wjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhrsyn6h9wjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhrsyn6h9wjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhrsyn6h9wjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhrsyn6h9wjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhrsyn6h9wjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhrsyn6h9wjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://3ihard.deviantart.com/art/Chozo-Account-119685313",{"metric25":1}]]' href="http://3ihard.deviantart.com/art/Chozo-Account-119685313" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Chozo-Account-119685313&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Chozo-Account-119685313" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
</p>
<p>
The Chozo tried to recreate the plan of their ancestors the use of Metroids to pacify superpredators too dangerous to exist. Without access to the same planetary radiation and materials the Phaaze expedition had, progress was slow. As the war against the planet was raging around them, the Chozo scientists were able to engineer Metroids, but not a variant strong enough to overcome the X-Parasites. As more and more Chozo died protecting the laboratory, a different approach was needed. [M2 SP]
@ -376,12 +374,12 @@
<figure data-id="18zqht0ddb9ozjpg" data-recommend-id="image://18zqht0ddb9ozjpg" data-format="jpg" data-width="640" data-height="396" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqht0ddb9ozjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqht0ddb9ozjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqht0ddb9ozjpg.jpg 470w" draggable="auto" data-chomp-id="18zqht0ddb9ozjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqht0ddb9ozjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqht0ddb9ozjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqht0ddb9ozjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqht0ddb9ozjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqht0ddb9ozjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqht0ddb9ozjpg.jpg 470w" draggable="auto" data-chomp-id="18zqht0ddb9ozjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqht0ddb9ozjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqht0ddb9ozjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqht0ddb9ozjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://starshadow76.deviantart.com/art/Metroid-Queen-Concept-Art-157008177",{"metric25":1}]]' href="http://starshadow76.deviantart.com/art/Metroid-Queen-Concept-Art-157008177" target="_blank" rel="noopener noreferrer"><em>Artist: Starshadow76</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://starshadow76.deviantart.com/art/Metroid-Queen-Concept-Art-157008177&quot;,{&quot;metric25&quot;:1}]]" href="http://starshadow76.deviantart.com/art/Metroid-Queen-Concept-Art-157008177" target="_blank" rel="noopener noreferrer"><em>Artist: Starshadow76</em></a></span>)
</p>
<p>
The Chozo succeeded in engineering a Metroid Queen, a colossal creature who would lay Metroid Hatchling eggs. When hatched, these resulting Metroids were strong and durable creatures, and finally potent enough to combat the X menace. The Chozo knew that to completely suppress the parasites, the Metroid presence on SR388 had to be permanent. To ensure that the species would not overfeed on the environment and wipe out its food chains, the scientists hardwired an instinct into the Metroid Queens feral mind: Only thirty-nine Metroids were to exist on the planet at any one time. This, it was hoped, would keep their numbers high enough to destroy any X re-emergence, but low enough so that they wouldnt consume the rest of the life on the planet, and starve to death from lack of food. [M2]
@ -399,13 +397,13 @@
</p>
<figure data-id="18zqhuzegzvcfjpg" data-recommend-id="image://18zqhuzegzvcfjpg" data-format="jpg" data-width="640" data-height="415" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhuzegzvcfjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhuzegzvcfjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhuzegzvcfjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhuzegzvcfjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhuzegzvcfjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhuzegzvcfjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhuzegzvcfjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhuzegzvcfjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhuzegzvcfjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhuzegzvcfjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhuzegzvcfjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhuzegzvcfjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhuzegzvcfjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhuzegzvcfjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://hermax669.deviantart.com/art/Omega-Metroid-93544917",{"metric25":1}]]' href="http://hermax669.deviantart.com/art/Omega-Metroid-93544917" target="_blank" rel="noopener noreferrer"><em>Artist: Hermax669</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://hermax669.deviantart.com/art/Omega-Metroid-93544917&quot;,{&quot;metric25&quot;:1}]]" href="http://hermax669.deviantart.com/art/Omega-Metroid-93544917" target="_blank" rel="noopener noreferrer"><em>Artist: Hermax669</em></a></span>)
</p>
<p>
SR388 had been violated by the Chozo. Though very different to Phaaze, SR388 had its own vague sense of awareness. It perceived the Chozo as a viral infection, and the dead X-Parasites as part of itself. It understood loss, and shook with ancient rage. [MP3 SP / M2 SP / MF SP]
@ -443,13 +441,13 @@
</p>
<figure data-id="18zqidecyjp0ujpg" data-recommend-id="image://18zqidecyjp0ujpg" data-format="jpg" data-width="640" data-height="315" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqidecyjp0ujpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqidecyjp0ujpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqidecyjp0ujpg.jpg 470w" draggable="auto" data-chomp-id="18zqidecyjp0ujpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqidecyjp0ujpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqidecyjp0ujpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqidecyjp0ujpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqidecyjp0ujpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqidecyjp0ujpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqidecyjp0ujpg.jpg 470w" draggable="auto" data-chomp-id="18zqidecyjp0ujpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqidecyjp0ujpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqidecyjp0ujpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqidecyjp0ujpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://hameed.deviantart.com/art/Cessation-619497",{"metric25":1}]]' href="http://hameed.deviantart.com/art/Cessation-619497" target="_blank" rel="noopener noreferrer"><em>Artist: Hameed</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://hameed.deviantart.com/art/Cessation-619497&quot;,{&quot;metric25&quot;:1}]]" href="http://hameed.deviantart.com/art/Cessation-619497" target="_blank" rel="noopener noreferrer"><em>Artist: Hameed</em></a></span>)
</p>
<p>
The Leviathan crashed down, and rained poison and death unto the world. The impact survivors watched as their sacred nature succumbed to the mutagens leaking from the seed, and barricaded themselves in their temples as the flora and fauna transformed. Phazon spread beneath the surface of the dying planet, and radiation storms battered the surface. [MP]
@ -457,12 +455,12 @@
<figure data-id="18zqiejsfe664jpg" data-recommend-id="image://18zqiejsfe664jpg" data-format="jpg" data-width="640" data-height="674" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiejsfe664jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiejsfe664jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiejsfe664jpg.jpg 470w" draggable="auto" data-chomp-id="18zqiejsfe664jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiejsfe664jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiejsfe664jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiejsfe664jpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiejsfe664jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiejsfe664jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiejsfe664jpg.jpg 470w" draggable="auto" data-chomp-id="18zqiejsfe664jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiejsfe664jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiejsfe664jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiejsfe664jpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://riivka.deviantart.com/art/Fading-321733899",{"metric25":1}]]' href="http://riivka.deviantart.com/art/Fading-321733899" target="_blank" rel="noopener noreferrer"><em>Source: Riivka</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://riivka.deviantart.com/art/Fading-321733899&quot;,{&quot;metric25&quot;:1}]]" href="http://riivka.deviantart.com/art/Fading-321733899" target="_blank" rel="noopener noreferrer"><em>Source: Riivka</em></a></span>)
</p>
<p>
The Chozos punishment for their sins, and the fulfilment of Phaazes wrath, reached biblical proportions. The Chozo of Tallon IV did not get to rest in peace. Their life energies suffered from Phazon disruption, and upon death they became mad ghosts who screamed forever as they were torn in and out of the material world. In this purgatory, the undead immaterial Chozo murdered anyone they could find. [MP / MP3 SP]
@ -473,13 +471,13 @@
</p>
<figure data-id="18zqigaxkohx4jpg" data-recommend-id="image://18zqigaxkohx4jpg" data-format="jpg" data-width="640" data-height="405" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqigaxkohx4jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqigaxkohx4jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqigaxkohx4jpg.jpg 470w" draggable="auto" data-chomp-id="18zqigaxkohx4jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqigaxkohx4jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqigaxkohx4jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqigaxkohx4jpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqigaxkohx4jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqigaxkohx4jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqigaxkohx4jpg.jpg 470w" draggable="auto" data-chomp-id="18zqigaxkohx4jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqigaxkohx4jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqigaxkohx4jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqigaxkohx4jpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://havoc-dm.deviantart.com/art/Metroid-Prime-74392852",{"metric25":1}]]' href="http://havoc-dm.deviantart.com/art/Metroid-Prime-74392852" target="_blank" rel="noopener noreferrer"><em>Source: Havoc-DM</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://havoc-dm.deviantart.com/art/Metroid-Prime-74392852&quot;,{&quot;metric25&quot;:1}]]" href="http://havoc-dm.deviantart.com/art/Metroid-Prime-74392852" target="_blank" rel="noopener noreferrer"><em>Source: Havoc-DM</em></a></span>)
</p>
<p>
Within the Impact Crater, Metroid Prime remained trapped within the Chozo energy field. In its armour constructed from ancient Chozo power suits, it continued its wait to be unleashed on the universe. [MP / MP3 SP]
@ -490,13 +488,13 @@
</h3>
<figure data-id="18zqiho9ab5xrjpg" data-recommend-id="image://18zqiho9ab5xrjpg" data-format="jpg" data-width="640" data-height="639" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiho9ab5xrjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiho9ab5xrjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiho9ab5xrjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiho9ab5xrjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiho9ab5xrjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiho9ab5xrjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiho9ab5xrjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiho9ab5xrjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiho9ab5xrjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiho9ab5xrjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiho9ab5xrjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiho9ab5xrjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiho9ab5xrjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiho9ab5xrjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://3ihard.deviantart.com/art/luminoth-priest-191995430",{"metric25":1}]]' href="http://3ihard.deviantart.com/art/luminoth-priest-191995430" target="_blank" rel="noopener noreferrer">Artist: 3ihard</a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/luminoth-priest-191995430&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/luminoth-priest-191995430" target="_blank" rel="noopener noreferrer">Artist: 3ihard</a></span>)
</p>
<p>
On the planet Aether, an ancient race of mystics known as the Luminoth received the horrifying data coming from Tallon IV. In distant times, the Luminoth and the Chozo had been steadfast allies until the Chozo retreat ended their ties. Desperate to assist, the Luminoth began to organise a rescue mission. [MP2 / MP2 SP]
@ -504,12 +502,12 @@
<figure data-id="18zqijbga70tljpg" data-recommend-id="image://18zqijbga70tljpg" data-format="jpg" data-width="640" data-height="480" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqijbga70tljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqijbga70tljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqijbga70tljpg.jpg 470w" draggable="auto" data-chomp-id="18zqijbga70tljpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqijbga70tljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqijbga70tljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqijbga70tljpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqijbga70tljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqijbga70tljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqijbga70tljpg.jpg 470w" draggable="auto" data-chomp-id="18zqijbga70tljpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqijbga70tljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqijbga70tljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqijbga70tljpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://pugofdoom.deviantart.com/art/Chozo-Ghost-88765133",{"metric25":1}]]' href="http://pugofdoom.deviantart.com/art/Chozo-Ghost-88765133" target="_blank" rel="noopener noreferrer">Artist: PugOfDoon</a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://pugofdoom.deviantart.com/art/Chozo-Ghost-88765133&quot;,{&quot;metric25&quot;:1}]]" href="http://pugofdoom.deviantart.com/art/Chozo-Ghost-88765133" target="_blank" rel="noopener noreferrer">Artist: PugOfDoon</a></span>)
</p>
<p>
A dark transmission was received from Tallon IV. The image showed a screaming, ghostly Chozo figure, flickering in and out of the living universe. In its undead madness, it spoke for its kin. It raged that they would kill anyone who would set foot on their world. The planet was pandemonium, a cursed world on which the dead could not die. As the signal faded, the Luminoth realised that there was no one left alive to rescue. [MP SP / MP2 SP]
@ -524,12 +522,12 @@
<figure data-id="18zqim04ra2w5jpg" data-recommend-id="image://18zqim04ra2w5jpg" data-format="jpg" data-width="640" data-height="736" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqim04ra2w5jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqim04ra2w5jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqim04ra2w5jpg.jpg 470w" draggable="auto" data-chomp-id="18zqim04ra2w5jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqim04ra2w5jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqim04ra2w5jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqim04ra2w5jpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqim04ra2w5jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqim04ra2w5jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqim04ra2w5jpg.jpg 470w" draggable="auto" data-chomp-id="18zqim04ra2w5jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqim04ra2w5jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqim04ra2w5jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqim04ra2w5jpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://sesakath.deviantart.com/art/Sanctuary-Fortress-Ing-Hive-72912247",{"metric25":1}]]' href="http://sesakath.deviantart.com/art/Sanctuary-Fortress-Ing-Hive-72912247" target="_blank" rel="noopener noreferrer"><em>Artist: SesaKath</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://sesakath.deviantart.com/art/Sanctuary-Fortress-Ing-Hive-72912247&quot;,{&quot;metric25&quot;:1}]]" href="http://sesakath.deviantart.com/art/Sanctuary-Fortress-Ing-Hive-72912247" target="_blank" rel="noopener noreferrer"><em>Artist: SesaKath</em></a></span>)
</p>
<p>
The Luminoth used their great Light to engineer a small pocket universe, a dark lifeless echo of existence. The plan was bold: they would use the Light of Aether to surgically open the fabric of reality in the path of the Phazon seed, and allow it to harmlessly enter the pocket universe. If all went well, they would be saved. [MP2 SP]
@ -540,13 +538,13 @@
</p>
<figure data-id="18zqimznelg78jpg" data-recommend-id="image://18zqimznelg78jpg" data-format="jpg" data-width="640" data-height="321" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqimznelg78jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqimznelg78jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqimznelg78jpg.jpg 470w" draggable="auto" data-chomp-id="18zqimznelg78jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqimznelg78jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqimznelg78jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqimznelg78jpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqimznelg78jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqimznelg78jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqimznelg78jpg.jpg 470w" draggable="auto" data-chomp-id="18zqimznelg78jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqimznelg78jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqimznelg78jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqimznelg78jpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://adriencgd.deviantart.com/art/Clashing-Neighbors-327277211",{"metric25":1}]]' href="http://adriencgd.deviantart.com/art/Clashing-Neighbors-327277211" target="_blank" rel="noopener noreferrer"><em>Artist: Adriencgd</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://adriencgd.deviantart.com/art/Clashing-Neighbors-327277211&quot;,{&quot;metric25&quot;:1}]]" href="http://adriencgd.deviantart.com/art/Clashing-Neighbors-327277211" target="_blank" rel="noopener noreferrer"><em>Artist: Adriencgd</em></a></span>)
</p>
<p>
Phaazes seed was a sum of living materials beyond Luminoth comprehension. It hit the pocket universe with incalculable force, and a tsunami of exotic energy ruptured space and time. The equipment containing the dark reality lost containment within moments, and the Luminoth were helpless as their creation expanded across the entire planet. A wave of dark energy absorbed creatures, structures and land into the dark universe, and what was once a single planet was now two. [MP2 / MP2 SP]
@ -557,13 +555,13 @@
</p>
<figure data-id="18zqiocyxn4ksjpg" data-recommend-id="image://18zqiocyxn4ksjpg" data-format="jpg" data-width="640" data-height="407" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiocyxn4ksjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiocyxn4ksjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiocyxn4ksjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiocyxn4ksjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiocyxn4ksjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiocyxn4ksjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiocyxn4ksjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiocyxn4ksjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiocyxn4ksjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiocyxn4ksjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiocyxn4ksjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiocyxn4ksjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiocyxn4ksjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiocyxn4ksjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://azureparagon.deviantart.com/art/Void-Xarasque-Sky-Station-244410462",{"metric25":1}]]' href="http://azureparagon.deviantart.com/art/Void-Xarasque-Sky-Station-244410462" target="_blank" rel="noopener noreferrer"><em>Artist: AzureParagon</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://azureparagon.deviantart.com/art/Void-Xarasque-Sky-Station-244410462&quot;,{&quot;metric25&quot;:1}]]" href="http://azureparagon.deviantart.com/art/Void-Xarasque-Sky-Station-244410462" target="_blank" rel="noopener noreferrer"><em>Artist: AzureParagon</em></a></span>)
</p>
<p>
In the dark universe, a grotesque world was being born. Previous inhabitants of Aether, having been absorbed when containment of the pocket universe was lost, found themselves twisted by the corrosive new reality around them. Most perished, and their flesh fed the strange carnivorous fungi that glowed sickly colours. Some survivors were mutated by the Phazon slowly spreading beneath the surface, and adapted to survive in the hostility. [MP2 SP]
@ -574,13 +572,13 @@
</p>
<figure data-id="18zqiq826qgjkjpg" data-recommend-id="image://18zqiq826qgjkjpg" data-format="jpg" data-width="640" data-height="379" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiq826qgjkjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiq826qgjkjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiq826qgjkjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiq826qgjkjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiq826qgjkjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiq826qgjkjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiq826qgjkjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiq826qgjkjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiq826qgjkjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiq826qgjkjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiq826qgjkjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiq826qgjkjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiq826qgjkjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiq826qgjkjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://xxkiragaxx.deviantart.com/art/ING-181463823",{"metric25":1}]]' href="http://xxkiragaxx.deviantart.com/art/ING-181463823" target="_blank" rel="noopener noreferrer"><em>Artist: Xxkiragaxx</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://xxkiragaxx.deviantart.com/art/ING-181463823&quot;,{&quot;metric25&quot;:1}]]" href="http://xxkiragaxx.deviantart.com/art/ING-181463823" target="_blank" rel="noopener noreferrer"><em>Artist: Xxkiragaxx</em></a></span>)
</p>
<p>
A womb of Phazon mutation and dark energies had birthed a cunning and ferocious horde. The Ing erupted through the cracks between the two worlds, and commenced slaughter. They were fought back by the Luminoth, and a war began between the two parallel worlds. The Ing invaded Aether with regularity, and killed, pillaged and destroyed all that they could find. The Luminoth retaliated and crusaded into Dark Aether in their Light Suits, on suicide missions to exterminate the source of the Ing menace. Both sides suffered colossal casualties as the decades went on. [MP2]
@ -588,12 +586,12 @@
<figure data-id="18zqirpbvm7a1jpg" data-recommend-id="image://18zqirpbvm7a1jpg" data-format="jpg" data-width="640" data-height="535" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqirpbvm7a1jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqirpbvm7a1jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqirpbvm7a1jpg.jpg 470w" draggable="auto" data-chomp-id="18zqirpbvm7a1jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqirpbvm7a1jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqirpbvm7a1jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqirpbvm7a1jpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqirpbvm7a1jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqirpbvm7a1jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqirpbvm7a1jpg.jpg 470w" draggable="auto" data-chomp-id="18zqirpbvm7a1jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqirpbvm7a1jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqirpbvm7a1jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqirpbvm7a1jpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://3ihard.deviantart.com/art/The-U-MOS-118477953",{"metric25":1}]]' href="http://3ihard.deviantart.com/art/The-U-MOS-118477953" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/The-U-MOS-118477953&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/The-U-MOS-118477953" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
</p>
<p>
The war was being lost by the Luminoth. The Ing had exterminated most of their race and had stolen too many vital technologies. With the theft of essential energy components from the Light of Aether power network, they had become a defeated people. [MP2]
@ -607,13 +605,13 @@
</h3>
<figure data-id="18zqitehsufhejpg" data-recommend-id="image://18zqitehsufhejpg" data-format="jpg" data-width="640" data-height="393" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqitehsufhejpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqitehsufhejpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqitehsufhejpg.jpg 470w" draggable="auto" data-chomp-id="18zqitehsufhejpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqitehsufhejpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqitehsufhejpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqitehsufhejpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqitehsufhejpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqitehsufhejpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqitehsufhejpg.jpg 470w" draggable="auto" data-chomp-id="18zqitehsufhejpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqitehsufhejpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqitehsufhejpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqitehsufhejpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://kihunter.deviantart.com/art/MPH-The-Alimbics-94723125",{"metric25":1}]]' href="http://kihunter.deviantart.com/art/MPH-The-Alimbics-94723125" target="_blank" rel="noopener noreferrer"><em>Artist: Kihunter</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://kihunter.deviantart.com/art/MPH-The-Alimbics-94723125&quot;,{&quot;metric25&quot;:1}]]" href="http://kihunter.deviantart.com/art/MPH-The-Alimbics-94723125" target="_blank" rel="noopener noreferrer"><em>Artist: Kihunter</em></a></span>)
</p>
<p>
As the Chozo and the Luminoth fell, so too did other ancient races. In a distant part of the universe, the Alimbics were a militaristic society that maintained peace in their galactic cluster. Their order was shattered when a murderous entity, originating from someplace beyond the understood universe, plummeted into one of their worlds. The creature emerged from the devastation as a gaseous entity, and assumed an Alimbic-styled body to begin its onslaught. [MPH]
@ -624,13 +622,13 @@
</p>
<figure data-id="18zqiuxqv4hadjpg" data-recommend-id="image://18zqiuxqv4hadjpg" data-format="jpg" data-width="640" data-height="355" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiuxqv4hadjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiuxqv4hadjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiuxqv4hadjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiuxqv4hadjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiuxqv4hadjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiuxqv4hadjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiuxqv4hadjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiuxqv4hadjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiuxqv4hadjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiuxqv4hadjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiuxqv4hadjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiuxqv4hadjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiuxqv4hadjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiuxqv4hadjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://sesakath.deviantart.com/art/The-Oubliette-46403925",{"metric25":1}]]' href="http://sesakath.deviantart.com/art/The-Oubliette-46403925" target="_blank" rel="noopener noreferrer"><em>Artist: Sesakath</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://sesakath.deviantart.com/art/The-Oubliette-46403925&quot;,{&quot;metric25&quot;:1}]]" href="http://sesakath.deviantart.com/art/The-Oubliette-46403925" target="_blank" rel="noopener noreferrer"><em>Artist: Sesakath</em></a></span>)
</p>
<p>
The Alimbics performed an act of supreme sacrifice. They combined the mental energies of their entire race to forge a prison for Gorea. The psychic prison held it bound, and it was transplanted into an organic vessel called The Oubliette. The vessel was launched into the void outside of the universe, a course that would keep its indestructible prisoner in exile forever. The systems of the prison ship were tasked to scan the every molecule of the imprisoned Gorea, and devise an Omega weapon that could be used to kill it. [MPH / MPH SP]
@ -644,13 +642,13 @@
</h3>
<figure data-id="18zqixy9iqkrejpg" data-recommend-id="image://18zqixy9iqkrejpg" data-format="jpg" data-width="640" data-height="414" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqixy9iqkrejpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqixy9iqkrejpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqixy9iqkrejpg.jpg 470w" draggable="auto" data-chomp-id="18zqixy9iqkrejpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqixy9iqkrejpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqixy9iqkrejpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqixy9iqkrejpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqixy9iqkrejpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqixy9iqkrejpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqixy9iqkrejpg.jpg 470w" draggable="auto" data-chomp-id="18zqixy9iqkrejpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqixy9iqkrejpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqixy9iqkrejpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqixy9iqkrejpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://sesakath.deviantart.com/art/MP-C-Bryyo-88412835",{"metric25":1}]]' href="http://sesakath.deviantart.com/art/MP-C-Bryyo-88412835" target="_blank" rel="noopener noreferrer"><em>Artist: Sesakath</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://sesakath.deviantart.com/art/MP-C-Bryyo-88412835&quot;,{&quot;metric25&quot;:1}]]" href="http://sesakath.deviantart.com/art/MP-C-Bryyo-88412835" target="_blank" rel="noopener noreferrer"><em>Artist: Sesakath</em></a></span>)
</p>
<p>
As the old races of the universe died around them, the lizard people of Bryyo faced their own challenges. The Bryyonians were an advanced, space-faring race who had learned much from their Chozo allies. Their society was a deeply polarised one, with tensions eternal between the scientific and religious factions.[MP3]
@ -672,12 +670,12 @@
<figure data-id="18zqiznfcy0icjpg" data-recommend-id="image://18zqiznfcy0icjpg" data-format="jpg" data-width="640" data-height="430" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiznfcy0icjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiznfcy0icjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiznfcy0icjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiznfcy0icjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiznfcy0icjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiznfcy0icjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiznfcy0icjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiznfcy0icjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiznfcy0icjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiznfcy0icjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiznfcy0icjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiznfcy0icjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiznfcy0icjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiznfcy0icjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://kaiquesilva.deviantart.com/art/Planet-Zebes-251229151",{"metric25":1}]]' href="http://kaiquesilva.deviantart.com/art/Planet-Zebes-251229151" target="_blank" rel="noopener noreferrer"><em>Artist: Kaiquesilva</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://kaiquesilva.deviantart.com/art/Planet-Zebes-251229151&quot;,{&quot;metric25&quot;:1}]]" href="http://kaiquesilva.deviantart.com/art/Planet-Zebes-251229151" target="_blank" rel="noopener noreferrer"><em>Artist: Kaiquesilva</em></a></span>)
</p>
<p>
On a small, rainy planet called Zebes, the last known Chozo colony had watched the stars with impotence. This small settlement of the nearly-extinct avian race witnessed the end of the great universal renaissance, and the slow beginning of a new chapter in galactic history. Gradually, the younger races were launching their first satellites into space. In time, new empires would rise to take the place of the old. [M1 / M1 SP]
@ -685,12 +683,12 @@
<figure data-id="18zqj0sv6pheljpg" data-recommend-id="image://18zqj0sv6pheljpg" data-format="jpg" data-width="640" data-height="591" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqj0sv6pheljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqj0sv6pheljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqj0sv6pheljpg.jpg 470w" draggable="auto" data-chomp-id="18zqj0sv6pheljpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqj0sv6pheljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqj0sv6pheljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqj0sv6pheljpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqj0sv6pheljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqj0sv6pheljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqj0sv6pheljpg.jpg 470w" draggable="auto" data-chomp-id="18zqj0sv6pheljpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqj0sv6pheljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqj0sv6pheljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqj0sv6pheljpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://3ihard.deviantart.com/art/Praying-for-Universe-179491357",{"metric25":1}]]' href="http://3ihard.deviantart.com/art/Praying-for-Universe-179491357" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Praying-for-Universe-179491357&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Praying-for-Universe-179491357" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
</p>
<p>
Zebes prophets saw the visions the Chozo had always endured: great wars, spreading poison and death. And suddenly, something bold was foreseen. [M1 SP / MP3 SP]
@ -698,12 +696,12 @@
<figure data-id="18zqj1sdn0v6rjpg" data-recommend-id="image://18zqj1sdn0v6rjpg" data-format="jpg" data-width="640" data-height="528" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqj1sdn0v6rjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqj1sdn0v6rjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqj1sdn0v6rjpg.jpg 470w" draggable="auto" data-chomp-id="18zqj1sdn0v6rjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqj1sdn0v6rjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqj1sdn0v6rjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqj1sdn0v6rjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqj1sdn0v6rjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqj1sdn0v6rjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqj1sdn0v6rjpg.jpg 470w" draggable="auto" data-chomp-id="18zqj1sdn0v6rjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqj1sdn0v6rjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqj1sdn0v6rjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqj1sdn0v6rjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://fddt.deviantart.com/art/Samus-Aran-368975394",{"metric25":1}]]' href="http://fddt.deviantart.com/art/Samus-Aran-368975394" target="_blank" rel="noopener noreferrer"><em>Artist: Fddt</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://fddt.deviantart.com/art/Samus-Aran-368975394&quot;,{&quot;metric25&quot;:1}]]" href="http://fddt.deviantart.com/art/Samus-Aran-368975394" target="_blank" rel="noopener noreferrer"><em>Artist: Fddt</em></a></span>)
</p>
<p>
A great hunter, clad in orange, red and green. The Chozo glimpsed a future hero, alone in the darkness beneath worlds, fighting so that good could survive evil. They saw her curing poisoned planets, and ending galactic wars. They saw the universes one chance to survive its apocalyptic future. They saw the only one who could defy prophecy. [M1 / MP3 SP]
@ -737,13 +735,13 @@
</p>
<figure data-id="18zqjuebmfw70jpg" data-recommend-id="image://18zqjuebmfw70jpg" data-format="jpg" data-width="640" data-height="489" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjuebmfw70jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjuebmfw70jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjuebmfw70jpg.jpg 470w" draggable="auto" data-chomp-id="18zqjuebmfw70jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjuebmfw70jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjuebmfw70jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjuebmfw70jpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjuebmfw70jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjuebmfw70jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjuebmfw70jpg.jpg 470w" draggable="auto" data-chomp-id="18zqjuebmfw70jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjuebmfw70jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjuebmfw70jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjuebmfw70jpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://mr-corr.deviantart.com/art/fight-for-norion-175087687",{"metric25":1}]]' href="http://mr-corr.deviantart.com/art/fight-for-norion-175087687" target="_blank" rel="noopener noreferrer"><em>Artist: Mr-Corr</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://mr-corr.deviantart.com/art/fight-for-norion-175087687&quot;,{&quot;metric25&quot;:1}]]" href="http://mr-corr.deviantart.com/art/fight-for-norion-175087687" target="_blank" rel="noopener noreferrer"><em>Artist: Mr-Corr</em></a></span>)
</p>
<p>
First contact was brief and furious. On that day, the warning went out to all the worlds of the Federation: Beware the Space Pirates. Though no state of war was officially declared, the empires attacked each other on sight. The Galactic Federation was large enough to repress any meaningful incursions into their space. [M1 SP / MP SP / MP3 SP / SM SP]
@ -761,13 +759,13 @@
</p>
<figure data-id="18zqjw7ft0zj5jpg" data-recommend-id="image://18zqjw7ft0zj5jpg" data-format="jpg" data-width="640" data-height="478" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjw7ft0zj5jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjw7ft0zj5jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjw7ft0zj5jpg.jpg 470w" draggable="auto" data-chomp-id="18zqjw7ft0zj5jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjw7ft0zj5jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjw7ft0zj5jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjw7ft0zj5jpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjw7ft0zj5jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjw7ft0zj5jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjw7ft0zj5jpg.jpg 470w" draggable="auto" data-chomp-id="18zqjw7ft0zj5jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjw7ft0zj5jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjw7ft0zj5jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjw7ft0zj5jpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://methuselah3000.deviantart.com/art/Zebesian-Space-Pirate-301454831",{"metric25":1}]]' href="http://methuselah3000.deviantart.com/art/Zebesian-Space-Pirate-301454831" target="_blank" rel="noopener noreferrer"><em>Artist: Methuselah3000</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://methuselah3000.deviantart.com/art/Zebesian-Space-Pirate-301454831&quot;,{&quot;metric25&quot;:1}]]" href="http://methuselah3000.deviantart.com/art/Zebesian-Space-Pirate-301454831" target="_blank" rel="noopener noreferrer"><em>Artist: Methuselah3000</em></a></span>)
</p>
<p>
Barely out of infancy, the young Samus witnessed her family die. A Space Pirate raiding party overwhelmed her colony and murdered everyone she ever knew. By staying silent while surrounded by horror, Samus survived as the Pirates ransacked the settlement and left. [M1]
@ -782,12 +780,12 @@
<figure data-id="18zqjz9xd98ltjpg" data-recommend-id="image://18zqjz9xd98ltjpg" data-format="jpg" data-width="640" data-height="524" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjz9xd98ltjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjz9xd98ltjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjz9xd98ltjpg.jpg 470w" draggable="auto" data-chomp-id="18zqjz9xd98ltjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjz9xd98ltjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjz9xd98ltjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjz9xd98ltjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjz9xd98ltjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjz9xd98ltjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjz9xd98ltjpg.jpg 470w" draggable="auto" data-chomp-id="18zqjz9xd98ltjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjz9xd98ltjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjz9xd98ltjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjz9xd98ltjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://r3dfive.deviantart.com/art/The-Birth-Of-The-Hunter-255511894",{"metric25":1}]]' href="http://r3dfive.deviantart.com/art/The-Birth-Of-The-Hunter-255511894" target="_blank" rel="noopener noreferrer"><em>Artist: R3dFiVe</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://r3dfive.deviantart.com/art/The-Birth-Of-The-Hunter-255511894&quot;,{&quot;metric25&quot;:1}]]" href="http://r3dfive.deviantart.com/art/The-Birth-Of-The-Hunter-255511894" target="_blank" rel="noopener noreferrer"><em>Artist: R3dFiVe</em></a></span>)
</p>
<p>
Samus Aran reached maturity amongst the Chozo. She was trained in the combat arts of the great extinct races. She was infused with Chozo genetic material so she could employ their technologies. She was educated to be a scientist, an explorer, and a tactician. Everything that was good about the Chozo civilisation was allowed to live on in Samus. [M1]
@ -795,12 +793,12 @@
<figure data-id="18zqjzzky4ffnjpg" data-recommend-id="image://18zqjzzky4ffnjpg" data-format="jpg" data-width="640" data-height="517" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjzzky4ffnjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjzzky4ffnjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjzzky4ffnjpg.jpg 470w" draggable="auto" data-chomp-id="18zqjzzky4ffnjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjzzky4ffnjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjzzky4ffnjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjzzky4ffnjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjzzky4ffnjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjzzky4ffnjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjzzky4ffnjpg.jpg 470w" draggable="auto" data-chomp-id="18zqjzzky4ffnjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjzzky4ffnjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjzzky4ffnjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjzzky4ffnjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://pyra.deviantart.com/art/Decaying-Elder-53293713",{"metric25":1}]]' href="http://pyra.deviantart.com/art/Decaying-Elder-53293713" target="_blank" rel="noopener noreferrer"><em>Artist: Pyra</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://pyra.deviantart.com/art/Decaying-Elder-53293713&quot;,{&quot;metric25&quot;:1}]]" href="http://pyra.deviantart.com/art/Decaying-Elder-53293713" target="_blank" rel="noopener noreferrer"><em>Artist: Pyra</em></a></span>)
</p>
<p>
Samus became an adult, and the Chozo presented her with their greatest works: a toughened power suit and an agile spacecraft, both more potent than anything their race had ever made. The Chozo leader, decaying and blind, told Samus it was time for her to find her destiny in the universe. Samus Aran departed for the stars, and years pass. [M1 / M1 SP]
@ -811,13 +809,13 @@
</p>
<figure data-id="18zqk1guma1bojpg" data-recommend-id="image://18zqk1guma1bojpg" data-format="jpg" data-width="640" data-height="401" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk1guma1bojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk1guma1bojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk1guma1bojpg.jpg 470w" draggable="auto" data-chomp-id="18zqk1guma1bojpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk1guma1bojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk1guma1bojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk1guma1bojpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk1guma1bojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk1guma1bojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk1guma1bojpg.jpg 470w" draggable="auto" data-chomp-id="18zqk1guma1bojpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk1guma1bojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk1guma1bojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk1guma1bojpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://phobos-romulus.deviantart.com/art/The-Chozo-187935440",{"metric25":1}]]' href="http://phobos-romulus.deviantart.com/art/The-Chozo-187935440" target="_blank" rel="noopener noreferrer"><em>Artist: Phobos-Romulus</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://phobos-romulus.deviantart.com/art/The-Chozo-187935440&quot;,{&quot;metric25&quot;:1}]]" href="http://phobos-romulus.deviantart.com/art/The-Chozo-187935440" target="_blank" rel="noopener noreferrer"><em>Artist: Phobos-Romulus</em></a></span>)
</p>
<p>
The Chozo hid their technologies throughout the planet, in places that they were certain Samus would find them. They concealed a second Power Suit within the walls of their holy temple, having foreseen that Samus may require it in the future. They then returned to the surface to await the inevitable. [M1 SP]
@ -835,12 +833,12 @@
<figure data-id="18zqk2icdbv0cjpg" data-recommend-id="image://18zqk2icdbv0cjpg" data-format="jpg" data-width="640" data-height="528" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk2icdbv0cjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk2icdbv0cjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk2icdbv0cjpg.jpg 470w" draggable="auto" data-chomp-id="18zqk2icdbv0cjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk2icdbv0cjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk2icdbv0cjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk2icdbv0cjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk2icdbv0cjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk2icdbv0cjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk2icdbv0cjpg.jpg 470w" draggable="auto" data-chomp-id="18zqk2icdbv0cjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk2icdbv0cjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk2icdbv0cjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk2icdbv0cjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://jaagup.deviantart.com/art/mother-brain-258536723",{"metric25":1}]]' href="http://jaagup.deviantart.com/art/mother-brain-258536723" target="_blank" rel="noopener noreferrer"><em>Artist: Jaagup</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://jaagup.deviantart.com/art/mother-brain-258536723&quot;,{&quot;metric25&quot;:1}]]" href="http://jaagup.deviantart.com/art/mother-brain-258536723" target="_blank" rel="noopener noreferrer"><em>Artist: Jaagup</em></a></span>)
</p>
<p>
The results went beyond High Commands most optimistic projections. The Space Pirates had created a leader, a desperately needed figure to unite their fragmented empire. They had created their Mother Brain. The great Space Pirate generals Ridley and Kraid arrived at Zebes, ready to pay tribute to their new master and to plan for the future. Mother Brain delivered to the Space Pirates knowledge and power. She told them of a world referenced in her oldest Chozo databanks, a planet bathed in a mutagenic poison waiting to be farmed. She instructed High Command to prepare an armada of ships and invade the planet Tallon IV. [M1 / MP SP]
@ -858,12 +856,12 @@
<figure data-id="18zqk5mt4ocetjpg" data-recommend-id="image://18zqk5mt4ocetjpg" data-format="jpg" data-width="640" data-height="477" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk5mt4ocetjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk5mt4ocetjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk5mt4ocetjpg.jpg 470w" draggable="auto" data-chomp-id="18zqk5mt4ocetjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk5mt4ocetjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk5mt4ocetjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk5mt4ocetjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk5mt4ocetjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk5mt4ocetjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk5mt4ocetjpg.jpg 470w" draggable="auto" data-chomp-id="18zqk5mt4ocetjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk5mt4ocetjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk5mt4ocetjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk5mt4ocetjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://firebornform.deviantart.com/art/SR388-Tunnels-353312617",{"metric25":1}]]' href="http://firebornform.deviantart.com/art/SR388-Tunnels-353312617" target="_blank" rel="noopener noreferrer"><em>Artist: Fireborn Form</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://firebornform.deviantart.com/art/SR388-Tunnels-353312617&quot;,{&quot;metric25&quot;:1}]]" href="http://firebornform.deviantart.com/art/SR388-Tunnels-353312617" target="_blank" rel="noopener noreferrer"><em>Artist: Fireborn Form</em></a></span>)
</p>
<p>
A Galactic Federation survey team studied the surface, and soon encountered a gelatinous creature that swam through air. The alien defied gravity and physics as it phased through dense rock with ease. It perceived the survey team, and made a few curious chirps in their direction. It then suddenly changed temperament, aggressively charging to latch itself onto the skull of one of the party. The victim died in agony as the Metroid fed on all the energy within, and could not be removed until its prey had been reduced to a dried husk of collapsing matter. The young Metroid had just killed, in a way that science could not explain. [M1 SP / M2 SP]
@ -891,13 +889,13 @@
</h3>
<figure data-id="18zqk7ps96cb3jpg" data-recommend-id="image://18zqk7ps96cb3jpg" data-format="jpg" data-width="640" data-height="480" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk7ps96cb3jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk7ps96cb3jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk7ps96cb3jpg.jpg 470w" draggable="auto" data-chomp-id="18zqk7ps96cb3jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk7ps96cb3jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk7ps96cb3jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk7ps96cb3jpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk7ps96cb3jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk7ps96cb3jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk7ps96cb3jpg.jpg 470w" draggable="auto" data-chomp-id="18zqk7ps96cb3jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk7ps96cb3jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk7ps96cb3jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk7ps96cb3jpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://ojanpohja.deviantart.com/art/Space-Pirate-31294390",{"metric25":1}]]' href="http://ojanpohja.deviantart.com/art/Space-Pirate-31294390" target="_blank" rel="noopener noreferrer"><em>Artist: Ojanpohja</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://ojanpohja.deviantart.com/art/Space-Pirate-31294390&quot;,{&quot;metric25&quot;:1}]]" href="http://ojanpohja.deviantart.com/art/Space-Pirate-31294390" target="_blank" rel="noopener noreferrer"><em>Artist: Ojanpohja</em></a></span>)
</p>
<p>
In her first mission as a Bounty Hunter, Samus Arran was commissioned by the Galactic Federation to neutralise the stolen Metroids. Through careful investigation, Samus discovered that the Pirates are operating from Zebes her home. She concluded that the Space Pirates had murdered her second family, as they had done with her first. They have took from her everyone she ever loved, and destroyed her two worlds. [M1]
@ -905,25 +903,25 @@
<figure data-id="18zqk8x71i4gnjpg" data-recommend-id="image://18zqk8x71i4gnjpg" data-format="jpg" data-width="640" data-height="384" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk8x71i4gnjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk8x71i4gnjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk8x71i4gnjpg.jpg 470w" draggable="auto" data-chomp-id="18zqk8x71i4gnjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk8x71i4gnjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk8x71i4gnjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk8x71i4gnjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk8x71i4gnjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk8x71i4gnjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk8x71i4gnjpg.jpg 470w" draggable="auto" data-chomp-id="18zqk8x71i4gnjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk8x71i4gnjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk8x71i4gnjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk8x71i4gnjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://stuarthughe.deviantart.com/art/Samus-Varia-322194081",{"metric25":1}]]' href="http://stuarthughe.deviantart.com/art/Samus-Varia-322194081" target="_blank" rel="noopener noreferrer"><em>Artist: Stuart Hughe</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://stuarthughe.deviantart.com/art/Samus-Varia-322194081&quot;,{&quot;metric25&quot;:1}]]" href="http://stuarthughe.deviantart.com/art/Samus-Varia-322194081" target="_blank" rel="noopener noreferrer"><em>Artist: Stuart Hughe</em></a></span>)
</p>
<p>
Samus stormed Zebes and killed everyone in her path. [M1]
</p>
<figure data-id="18zqkachpcz0ijpg" data-recommend-id="image://18zqkachpcz0ijpg" data-format="jpg" data-width="640" data-height="530" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkachpcz0ijpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkachpcz0ijpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkachpcz0ijpg.jpg 470w" draggable="auto" data-chomp-id="18zqkachpcz0ijpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkachpcz0ijpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkachpcz0ijpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkachpcz0ijpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkachpcz0ijpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkachpcz0ijpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkachpcz0ijpg.jpg 470w" draggable="auto" data-chomp-id="18zqkachpcz0ijpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkachpcz0ijpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkachpcz0ijpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkachpcz0ijpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://immarart.deviantart.com/art/Metroid-337270954",{"metric25":1}]]' href="http://immarart.deviantart.com/art/Metroid-337270954" target="_blank" rel="noopener noreferrer"><em>Artist: Immarart</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://immarart.deviantart.com/art/Metroid-337270954&quot;,{&quot;metric25&quot;:1}]]" href="http://immarart.deviantart.com/art/Metroid-337270954" target="_blank" rel="noopener noreferrer"><em>Artist: Immarart</em></a></span>)
</p>
<p>
As her defences were breached, Mother Brain unleashed the great generals Ridley and Kraid. Both were killled, and, desperate to stop the intruder, Mother Brain released the Metroids. Samus Aran exterminated the creatures, and invaded the inner sanctum. [M1]
@ -931,12 +929,12 @@
<figure data-id="18zqkbhxb2ugpjpg" data-recommend-id="image://18zqkbhxb2ugpjpg" data-format="jpg" data-width="640" data-height="360" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkbhxb2ugpjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkbhxb2ugpjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkbhxb2ugpjpg.jpg 470w" draggable="auto" data-chomp-id="18zqkbhxb2ugpjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkbhxb2ugpjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkbhxb2ugpjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkbhxb2ugpjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkbhxb2ugpjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkbhxb2ugpjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkbhxb2ugpjpg.jpg 470w" draggable="auto" data-chomp-id="18zqkbhxb2ugpjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkbhxb2ugpjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkbhxb2ugpjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkbhxb2ugpjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://twigs.deviantart.com/art/The-Mother-s-Chamber-140408495",{"metric25":1}]]' href="http://twigs.deviantart.com/art/The-Mother-s-Chamber-140408495" target="_blank" rel="noopener noreferrer"><em>Artist: Twigs</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://twigs.deviantart.com/art/The-Mother-s-Chamber-140408495&quot;,{&quot;metric25&quot;:1}]]" href="http://twigs.deviantart.com/art/The-Mother-s-Chamber-140408495" target="_blank" rel="noopener noreferrer"><em>Artist: Twigs</em></a></span>)
</p>
<p>
Samus confronted the malevolent Mother Brain and blasted apart her body. A power overload was caused, and the Tourian facility shook itself apart. Samus evacuated to her ship and tried to leave Zebes, but a Space Pirate battleship in orbit registered her ascent and opened fire. Samus gunship plummeted back towards the Zebes and impacted Chozodia, her former home. [M1]
@ -947,13 +945,13 @@
</p>
<figure data-id="18zqkdb1egv73jpg" data-recommend-id="image://18zqkdb1egv73jpg" data-format="jpg" data-width="640" data-height="500" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkdb1egv73jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkdb1egv73jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkdb1egv73jpg.jpg 470w" draggable="auto" data-chomp-id="18zqkdb1egv73jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkdb1egv73jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkdb1egv73jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkdb1egv73jpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkdb1egv73jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkdb1egv73jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkdb1egv73jpg.jpg 470w" draggable="auto" data-chomp-id="18zqkdb1egv73jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkdb1egv73jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkdb1egv73jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkdb1egv73jpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://eyes5.deviantart.com/art/Blessing-6012954",{"metric25":1}]]' href="http://eyes5.deviantart.com/art/Blessing-6012954" target="_blank" rel="noopener noreferrer"><em>Artist: Eyes5</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://eyes5.deviantart.com/art/Blessing-6012954&quot;,{&quot;metric25&quot;:1}]]" href="http://eyes5.deviantart.com/art/Blessing-6012954" target="_blank" rel="noopener noreferrer"><em>Artist: Eyes5</em></a></span>)
</p>
<p>
Samus found herself surrounded with murals of the dead Chozo, and accepted she was alone in the universe. Overcoming despair, she solved the trials of the Chozodian temple and a concealed power suit was revealed to her. This shining armour was even more potent than the one she had just lost, and was able to integrate the most exotic Chozo technologies. Samus realised the greater meaning of her find; the Chozo had left her gifts for her in places they had foreseen she would traverse. Her adopted family continued to protect her long after their deaths, and she would find their statues cradling survival equipment in the darkest corners of the cosmos. [M1 / MP / MP3 / M2 / SM]
@ -961,12 +959,12 @@
<figure data-id="18zqkeig3z5btjpg" data-recommend-id="image://18zqkeig3z5btjpg" data-format="jpg" data-width="640" data-height="374" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkeig3z5btjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkeig3z5btjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkeig3z5btjpg.jpg 470w" draggable="auto" data-chomp-id="18zqkeig3z5btjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkeig3z5btjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkeig3z5btjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkeig3z5btjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkeig3z5btjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkeig3z5btjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkeig3z5btjpg.jpg 470w" draggable="auto" data-chomp-id="18zqkeig3z5btjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkeig3z5btjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkeig3z5btjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkeig3z5btjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://imachinivid.deviantart.com/art/Super-missile-309591371",{"metric25":1}]]' href="http://imachinivid.deviantart.com/art/Super-missile-309591371" target="_blank" rel="noopener noreferrer"><em>Artist: Imachinivid</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://imachinivid.deviantart.com/art/Super-missile-309591371&quot;,{&quot;metric25&quot;:1}]]" href="http://imachinivid.deviantart.com/art/Super-missile-309591371" target="_blank" rel="noopener noreferrer"><em>Artist: Imachinivid</em></a></span>)
</p>
<p>
With her new armaments, Samus cleansed the Space Pirate presence from Zebes. She came to be known as “The Hunter”, and the Space Pirates learned that they will always be hunted down for what they did to her families. They fled the planet in terror. [M1 / MP / MP2 / MP3]
@ -984,13 +982,13 @@
</p>
<figure data-id="18zqkglfb56vojpg" data-recommend-id="image://18zqkglfb56vojpg" data-format="jpg" data-width="640" data-height="311" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkglfb56vojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkglfb56vojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkglfb56vojpg.jpg 470w" draggable="auto" data-chomp-id="18zqkglfb56vojpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkglfb56vojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkglfb56vojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkglfb56vojpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkglfb56vojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkglfb56vojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkglfb56vojpg.jpg 470w" draggable="auto" data-chomp-id="18zqkglfb56vojpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkglfb56vojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkglfb56vojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkglfb56vojpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://lightningarts.deviantart.com/art/Metroid-Metal-Where-It-All-Begins-393272172",{"metric25":1}]]' href="http://lightningarts.deviantart.com/art/Metroid-Metal-Where-It-All-Begins-393272172" target="_blank" rel="noopener noreferrer"><em>Artist: Lightningarts</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://lightningarts.deviantart.com/art/Metroid-Metal-Where-It-All-Begins-393272172&quot;,{&quot;metric25&quot;:1}]]" href="http://lightningarts.deviantart.com/art/Metroid-Metal-Where-It-All-Begins-393272172" target="_blank" rel="noopener noreferrer"><em>Artist: Lightningarts</em></a></span>)
</p>
<p>
Samus lost Ridley in the planets stormy atmosphere, and elected to land in a nearby jungle to conceal her presence from the Pirate ground forces. Exploring the surroundings, Samus discovered that the planet was once home to the bulk of the extinct Chozo civilisation. In a great temple Samus studied poetic murals that told of the Phazon comet that had struck their world. The scribblings informed her of a creature trapped deep in the comet that they referred to as “The Worm,” and of the powerful shield they erected to prevent its escape. Samus read their last prophecy; that a hero would traverse fire and ice, jungle and cave, and find twelve sacred keys that would deactivate the barrier and allow passage to the Impact Crater. This saviour from the stars would bring down the ancient shield, and destroy the worm that infected their planet. [MP1]
@ -1001,13 +999,13 @@
</p>
<figure data-id="18zqkick4w4i9jpg" data-recommend-id="image://18zqkick4w4i9jpg" data-format="jpg" data-width="640" data-height="517" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkick4w4i9jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkick4w4i9jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkick4w4i9jpg.jpg 470w" draggable="auto" data-chomp-id="18zqkick4w4i9jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkick4w4i9jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkick4w4i9jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkick4w4i9jpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkick4w4i9jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkick4w4i9jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkick4w4i9jpg.jpg 470w" draggable="auto" data-chomp-id="18zqkick4w4i9jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkick4w4i9jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkick4w4i9jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkick4w4i9jpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://r-sraven.deviantart.com/art/Metroid-Prime-Lost-Ruins-33577678",{"metric25":1}]]' href="http://r-sraven.deviantart.com/art/Metroid-Prime-Lost-Ruins-33577678" target="_blank" rel="noopener noreferrer"><em>Artist: R-Sraven</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://r-sraven.deviantart.com/art/Metroid-Prime-Lost-Ruins-33577678&quot;,{&quot;metric25&quot;:1}]]" href="http://r-sraven.deviantart.com/art/Metroid-Prime-Lost-Ruins-33577678" target="_blank" rel="noopener noreferrer"><em>Artist: R-Sraven</em></a></span>)
</p>
<p>
Samus hunted the Pirates and accessed their computer logs. The Empire had found quantities of an intensely potent mutagen called Phazon. Laboratories across the outpost experimented with the substance, and in a short space of time they had created prototypes for the next generation of their races: powerful Phazon-fuelled juggernauts. Should these advances continue, Samus knew that the Space Pirates would be able to conquer the Galactic Federation. [MP1]
@ -1015,12 +1013,12 @@
<figure data-id="18zqkje1rl63yjpg" data-recommend-id="image://18zqkje1rl63yjpg" data-format="jpg" data-width="800" data-height="816" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkje1rl63yjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkje1rl63yjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkje1rl63yjpg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_800/18zqkje1rl63yjpg.jpg 800w" draggable="auto" data-chomp-id="18zqkje1rl63yjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkje1rl63yjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkje1rl63yjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkje1rl63yjpg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_800/18zqkje1rl63yjpg.jpg 800w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkje1rl63yjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkje1rl63yjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkje1rl63yjpg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_800/18zqkje1rl63yjpg.jpg 800w" draggable="auto" data-chomp-id="18zqkje1rl63yjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkje1rl63yjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkje1rl63yjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkje1rl63yjpg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_800/18zqkje1rl63yjpg.jpg 800w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://greenstranger.deviantart.com/art/Metroid-Ceres-Station-Lab-358321968",{"metric25":1}]]' href="http://greenstranger.deviantart.com/art/Metroid-Ceres-Station-Lab-358321968" target="_blank" rel="noopener noreferrer"><em>Artist: Greenstranger</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://greenstranger.deviantart.com/art/Metroid-Ceres-Station-Lab-358321968&quot;,{&quot;metric25&quot;:1}]]" href="http://greenstranger.deviantart.com/art/Metroid-Ceres-Station-Lab-358321968" target="_blank" rel="noopener noreferrer"><em>Artist: Greenstranger</em></a></span>)
</p>
<p>
In the most secure laboratory, Samus made a devastating discovery. The Space Pirates had used Phazon to create an army of stable clone Metroids and lost containment. The Metroid creatures were roaming the caverns deep in the planet, reproducing and mutating as the Phazon influenced their physiology. [MP1]
@ -1028,12 +1026,12 @@
<figure data-id="18zqklb3wp0jajpg" data-recommend-id="image://18zqklb3wp0jajpg" data-format="jpg" data-width="640" data-height="365" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqklb3wp0jajpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqklb3wp0jajpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqklb3wp0jajpg.jpg 470w" draggable="auto" data-chomp-id="18zqklb3wp0jajpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqklb3wp0jajpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqklb3wp0jajpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqklb3wp0jajpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqklb3wp0jajpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqklb3wp0jajpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqklb3wp0jajpg.jpg 470w" draggable="auto" data-chomp-id="18zqklb3wp0jajpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqklb3wp0jajpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqklb3wp0jajpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqklb3wp0jajpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://greenstranger.deviantart.com/art/Metroid-Ceres-Station-Lab-358321968",{"metric25":1}]]' href="http://greenstranger.deviantart.com/art/Metroid-Ceres-Station-Lab-358321968" target="_blank" rel="noopener noreferrer"><em>Artist: Ohimseeinstars</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://greenstranger.deviantart.com/art/Metroid-Ceres-Station-Lab-358321968&quot;,{&quot;metric25&quot;:1}]]" href="http://greenstranger.deviantart.com/art/Metroid-Ceres-Station-Lab-358321968" target="_blank" rel="noopener noreferrer"><em>Artist: Ohimseeinstars</em></a></span>)
</p>
<p>
Samus final discovery was the most horrific. The powerful, poisonous Phazon was not a rare material on Tallon IV. Despite the Chozo shield containing the Impact Crater, the substance had spread and consumed the world inside-out. The core of the planet presented the Space Pirates with a vast supply of Phazon, enough to fuel their conquest of the stars. [MP1]
@ -1051,7 +1049,7 @@
<figure data-id="18zqkn672gklqjpg" data-recommend-id="image://18zqkn672gklqjpg" data-format="jpg" data-width="640" data-height="499" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkn672gklqjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkn672gklqjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkn672gklqjpg.jpg 470w" draggable="auto" data-chomp-id="18zqkn672gklqjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkn672gklqjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkn672gklqjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkn672gklqjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkn672gklqjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkn672gklqjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkn672gklqjpg.jpg 470w" draggable="auto" data-chomp-id="18zqkn672gklqjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkn672gklqjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkn672gklqjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkn672gklqjpg.jpg 470w"/>
</p>
</div>
</figure>
@ -1064,12 +1062,12 @@
<figure data-id="18zqkodlj2z8kjpg" data-recommend-id="image://18zqkodlj2z8kjpg" data-format="jpg" data-width="640" data-height="525" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkodlj2z8kjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkodlj2z8kjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkodlj2z8kjpg.jpg 470w" draggable="auto" data-chomp-id="18zqkodlj2z8kjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkodlj2z8kjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkodlj2z8kjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkodlj2z8kjpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkodlj2z8kjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkodlj2z8kjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkodlj2z8kjpg.jpg 470w" draggable="auto" data-chomp-id="18zqkodlj2z8kjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkodlj2z8kjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkodlj2z8kjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkodlj2z8kjpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://sabretoontigers.deviantart.com/art/Samus-308644319",{"metric25":1}]]' href="http://sabretoontigers.deviantart.com/art/Samus-308644319" target="_blank" rel="noopener noreferrer"><em>Artist: Sabretoontigers</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://sabretoontigers.deviantart.com/art/Samus-308644319&quot;,{&quot;metric25&quot;:1}]]" href="http://sabretoontigers.deviantart.com/art/Samus-308644319" target="_blank" rel="noopener noreferrer"><em>Artist: Sabretoontigers</em></a></span>)
</p>
<p>
Seemingly dying, Metroid Prime lashed out, grabbing a layer of material from Samus Arans armour. The creature melted into a pool of Phazon particles, and the bounty hunter evacuated the Impact Crater. [MP1]
@ -1087,22 +1085,22 @@
<figure data-id="18zqkq6pqyr8ljpg" data-recommend-id="image://18zqkq6pqyr8ljpg" data-format="jpg" data-width="640" data-height="412" data-lightbox="true" data-recommended="false" draggable="false">
<div data-syndicationrights="false">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkq6pqyr8ljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkq6pqyr8ljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkq6pqyr8ljpg.jpg 470w" draggable="auto" data-chomp-id="18zqkq6pqyr8ljpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkq6pqyr8ljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkq6pqyr8ljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkq6pqyr8ljpg.jpg 470w">
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkq6pqyr8ljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkq6pqyr8ljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkq6pqyr8ljpg.jpg 470w" draggable="auto" data-chomp-id="18zqkq6pqyr8ljpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkq6pqyr8ljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkq6pqyr8ljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkq6pqyr8ljpg.jpg 470w"/>
</p>
</div>
</figure>
<p>
(<span><a data-ga='[["Embedded Url","External link","http://imachinivid.deviantart.com/art/Dark-Samus-returns-295856131",{"metric25":1}]]' href="http://imachinivid.deviantart.com/art/Dark-Samus-returns-295856131" target="_blank" rel="noopener noreferrer"><em>Artist: Imachinivid</em></a></span>)
(<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://imachinivid.deviantart.com/art/Dark-Samus-returns-295856131&quot;,{&quot;metric25&quot;:1}]]" href="http://imachinivid.deviantart.com/art/Dark-Samus-returns-295856131" target="_blank" rel="noopener noreferrer"><em>Artist: Imachinivid</em></a></span>)
</p>
<p>
Dark Samus clawed its way out of the Impact Crater. It departed Tallon IV to spread its venom across the stars, and to sow the seeds of a great war. [MP1 / MP2 / MP3]
</p>
<p>
<span><a data-ga='[["Embedded Url","Internal link","https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108",{"metric25":1}]]' href="https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108" target="_blank"><em>Click here for the second half of this epic story.</em></a></span>
<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;Internal link&quot;,&quot;https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108&quot;,{&quot;metric25&quot;:1}]]" href="https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108" target="_blank"><em>Click here for the second half of this epic story.</em></a></span>
</p>
<hr>
<hr/>
<p>
<small>Mama Robotnik is a video game historian living somewhere in the British Empire. He specialises in unearthing lost gaming media, but also enjoys a good long essay about his favourite games every now and then. He drinks a lot of tea, and has a horrendously naughty black and white cat called Blossom. If you would like to contact him, he responds to his private messages over at</small> <span><a data-ga='[["Embedded Url","External link","http://www.neogaf.com/forum/",{"metric25":1}]]' href="http://www.neogaf.com/forum/" target="_blank" rel="noopener noreferrer"><small>NeoGAF</small></a></span><small>.</small>
<small>Mama Robotnik is a video game historian living somewhere in the British Empire. He specialises in unearthing lost gaming media, but also enjoys a good long essay about his favourite games every now and then. He drinks a lot of tea, and has a horrendously naughty black and white cat called Blossom. If you would like to contact him, he responds to his private messages over at</small> <span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://www.neogaf.com/forum/&quot;,{&quot;metric25&quot;:1}]]" href="http://www.neogaf.com/forum/" target="_blank" rel="noopener noreferrer"><small>NeoGAF</small></a></span><small>.</small>
</p>
</div></article>
</div></article>

View file

@ -1,6 +1,6 @@
<article><DIV id="readability-page-1"><article>
<h2>Test Case 1</h2>
<img data-src="https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/0579d17015b145a88dd93992c6447d7d~tplv-k3u1fbpfcp-watermark.jpg" alt="performance.jpg" src="https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/0579d17015b145a88dd93992c6447d7d~tplv-k3u1fbpfcp-watermark.jpg">
<img data-src="https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/0579d17015b145a88dd93992c6447d7d~tplv-k3u1fbpfcp-watermark.jpg" alt="performance.jpg" src="https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/0579d17015b145a88dd93992c6447d7d~tplv-k3u1fbpfcp-watermark.jpg"/>
<h2>Test Case 2</h2>
<img data-src="https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/0579d17015b145a88dd93992c6447d7d~tplv-k3u1fbpfcp-watermark.png" alt="performance.jpg" src="https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/0579d17015b145a88dd93992c6447d7d~tplv-k3u1fbpfcp-watermark.png">
</article></DIV></article>
<img data-src="https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/0579d17015b145a88dd93992c6447d7d~tplv-k3u1fbpfcp-watermark.png" alt="performance.jpg" src="https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/0579d17015b145a88dd93992c6447d7d~tplv-k3u1fbpfcp-watermark.png"/>
</article></DIV></article>

View file

@ -1,7 +1,5 @@
<article><div id="readability-page-1" itemprop="articleBody">
<P>
<iframe src="http://www.dailymotion.com/embed/video/x2p552m?syndication=131181" frameborder="0" width="534" height="320"></iframe>
</P>
<p>Les députés ont, sans surprise, adopté à une large majorité (438 contre 86 et 42 abstentions) le projet de loi sur le renseignement défendu par le gouvernement lors dun vote solennel, mardi 5 mai. Il sera désormais examiné par le Sénat, puis le Conseil constitutionnel, prochainement saisi par 75 députés. Dans un souci d'apaisement, François Hollande avait annoncé par avance qu'il saisirait les Sages.</p>
<p><strong>Revivez <a href="http://fakehost/pixels/live/2015/05/05/suivez-le-vote-de-la-loi-renseignement-en-direct_4628012_4408996.html" target="_blank">le direct du vote à lAssemblée avec vos questions.</a></strong></p>
<p>Ont voté contre : 10 députés socialistes (sur 288), 35 UMP (sur 198), 11 écologistes (sur 18), 11 UDI (sur 30), 12 députés Front de gauche (sur 15) et 7 non-inscrits (sur 9). <a href="http://www2.assemblee-nationale.fr/scrutins/detail/%28legislature%29/14/%28num%29/1109" target="_blank">Le détail est disponible sur le site de l'Assemblée nationale.</a></p>
@ -18,7 +16,7 @@
<h2>Les « boîtes noires »</h2>
<p>Une des dispositions les plus contestées de ce projet de loi prévoit de pouvoir contraindre les fournisseurs daccès à Internet (FAI) à « <em>détecter une menace terroriste sur la base dun traitement automatisé ». </em>Ce dispositif  autorisé par le premier ministre par tranche de quatre mois  permettrait de détecter, en temps réel ou quasi réel, les personnes ayant une activité en ligne typique de « schémas » utilisés par les terroristes pour transmettre des informations.</p>
<p>En pratique, les services de renseignement pourraient installer chez les FAI une « boîte noire » surveillant le trafic. Le contenu des communications qui resterait « anonyme » ne serait pas surveillé, mais uniquement les métadonnées : origine ou destinataire dun message, adresse IP dun site visité, durée de la conversation ou de la connexion… Ces données ne seraient pas conservées.</p>
<p>La Commission nationale informatique et libertés<strong> </strong>(CNIL), qui critique fortement cette disposition. La CNIL soulève notamment que lanonymat de ces données est très relatif, puisquil peut être levé.</p>
<p>La Commission nationale informatique et libertés(CNIL), qui critique fortement cette disposition. La CNIL soulève notamment que lanonymat de ces données est très relatif, puisquil peut être levé.</p>
<p>Lire aussi : <a href="http://fakehost/pixels/article/2015/03/18/les-critiques-de-la-cnil-contre-le-projet-de-loi-sur-le-renseignement_4595839_4408996.html" target="_blank">Les critiques de la CNIL contre le projet de loi sur le renseignement</a> </p>
<p>Le dispositif introduit une forme de « pêche au chalut »  un brassage très large des données des Français à la recherche de quelques individus. Le gouvernement se défend de toute similarité avec les dispositifs mis en place par la NSA américaine, arguant notamment que les données ne seront pas conservées et que cette activité sera contrôlée par une toute nouvelle commission aux moyens largement renforcés. Il sagit cependant dun dispositif très large, puisquil concernera tous les fournisseurs daccès à Internet, et donc tous les internautes français.</p>
<h2>Lélargissement de la surveillance électronique pour détecter les « futurs » terroristes</h2>
@ -38,4 +36,4 @@
<p>La durée de conservation des données collectées  et ladaptation de cette durée à la technique employée  a par ailleurs été inscrite dans la loi, contrairement au projet initial du gouvernement qui entendait fixer ces limites par décret. Elle pourra aller jusquà cinq ans dans le cas des données de connexion.</p>
<h2>Un dispositif pour les lanceurs dalerte</h2>
<p>La loi prévoit également une forme de protection pour les agents qui seraient témoins de surveillance illégale. Ces lanceurs dalerte pourraient solliciter la CNCTR, voire le premier ministre, et leur fournir toutes les pièces utiles. La CNCTR pourra ensuite aviser le procureur de la République et solliciter la Commission consultative du secret de la défense nationale afin que cette dernière <em>« donne au premier ministre son avis sur la possibilité de déclassifier tout ou partie de ces éléments »</em>. Aucune mesure de rétorsion ne pourra viser lagent qui aurait dénoncé des actes potentiellement illégaux.</p>
</div></article>
</div></article>

View file

@ -8,9 +8,7 @@
<p>Lappareil, mis à disposition par Airbus, était arrivé à Katmandou mercredi matin avec 55 personnels de santé et humanitaires, ainsi que 25 tonnes de matériel (abris, médicaments, aide alimentaire). Un deuxième avion dépêché par Paris, qui était immobilisé aux Emirats depuis mardi avec 20 tonnes de matériel, est arrivé jeudi à Katmandou, <a href="http://www.liberation.fr/monde/2015/04/29/embouteillages-et-retards-a-l-aeroport-de-katmandou_1276612" target="_blank">dont le petit aéroport est engorgé</a> par le trafic et lafflux daide humanitaire. Il devait lui aussi ramener des Français, <em>«les plus éprouvés»</em> par la catastrophe et les <em>«plus vulnérables (blessés, familles avec enfants)»</em>, selon le ministère des Affaires étrangères.</p>
<p>2 209 Français ont été localisés sains et saufs tandis que 393 nont pas encore pu être joints, selon le Quai dOrsay. Environ 400 Français ont demandé à être rapatriés dans les vols mis en place par la France.</p>
<p>Le séisme a fait près de 5 500 morts et touche huit des 28 millions dhabitants du Népal. Des dizaines de milliers de personnes sont sans abri.</p>
<p>
<iframe src="http://www.dailymotion.com/embed/video/x2oikl3" frameborder="0" width="100%" data-aspect-ratio="0.5625" data-responsive="1"></iframe>
<br><em></em></p>
</div>
</article>
</section></article>
</section></article>

View file

@ -1,5 +1,4 @@
<article><div id="readability-page-1">
<p data-textannotation-id="58a492029dca5e6a6e481d21b6b2933a"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--hqqO9fze--/n1s6c2m6kc07iqdyllj6.jpg" data-chomp-id="n1s6c2m6kc07iqdyllj6" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--hqqO9fze--/n1s6c2m6kc07iqdyllj6.jpg"></span></p>
<article><div id="readability-page-1"><p data-textannotation-id="58a492029dca5e6a6e481d21b6b2933a"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--hqqO9fze--/n1s6c2m6kc07iqdyllj6.jpg" data-chomp-id="n1s6c2m6kc07iqdyllj6" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--hqqO9fze--/n1s6c2m6kc07iqdyllj6.jpg"/></span></p>
@ -33,7 +32,7 @@
<p data-textannotation-id="268f7702467d33e3b0972dd09f1cf0a6"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--QeUTCiuW--/o4dpyrcbiqyfrc3bxx6p.jpg" data-chomp-id="o4dpyrcbiqyfrc3bxx6p" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--QeUTCiuW--/o4dpyrcbiqyfrc3bxx6p.jpg"></span></p>
<p data-textannotation-id="268f7702467d33e3b0972dd09f1cf0a6"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--QeUTCiuW--/o4dpyrcbiqyfrc3bxx6p.jpg" data-chomp-id="o4dpyrcbiqyfrc3bxx6p" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--QeUTCiuW--/o4dpyrcbiqyfrc3bxx6p.jpg"/></span></p>
@ -55,16 +54,7 @@
<ul>
<li data-textannotation-id="cd748c8b681c781cdd728c5e17b5e05f">
<strong>Color:</strong> Stores use color to make products attractive and eye-catching, but they also use color on price labels. Red stands out and can encourage taking action, that's why it's commonly associated with sale signage and advertising. When you see red, remember what they're trying to do to your brain with that color. You don't to buy something just because it's on sale.</li>
<li data-textannotation-id="29c11c0aec305293be282aa91f8fbc3d">
<strong>Navigation Roadblocks:</strong> Stores force you to walk around stuff you don't need to find the stuff you are really after. Have a list of what you need before you go in, go straight to it, and imagine it's the only item in the store.</li>
<li data-textannotation-id="252dc7e4a924d12c2d913861ab118bf5">
<strong>The Touch Factor:</strong> Stores place items they want to sell in easy to reach locations and encourage you to touch them. Don't do it! As soon as you pick something up, you're more likely to buy it because your mind suddenly takes ownership of the object. Don't pick anything up and don't play with display items.</li>
<li data-textannotation-id="05dde4d44056798acff5890759134a64">
<strong>Scents and Sounds:</strong> You'll probably hear classic, upbeat tunes when you walk into a store. The upbeat music makes you happy and excited, while playing familiar songs makes you feel comfortable. They also use pleasant smells to put your mind at ease. A happy, comfortable mind at ease is a dangerous combination for your brain when shopping. There's not much you can do to avoid this unless you shop online, but it's good to be aware of it.</li>
</ul>
<ul><li data-textannotation-id="cd748c8b681c781cdd728c5e17b5e05f"><strong>Color:</strong> Stores use color to make products attractive and eye-catching, but they also use color on price labels. Red stands out and can encourage taking action, that's why it's commonly associated with sale signage and advertising. When you see red, remember what they're trying to do to your brain with that color. You don't to buy something just because it's on sale.</li><li data-textannotation-id="29c11c0aec305293be282aa91f8fbc3d"><strong>Navigation Roadblocks:</strong> Stores force you to walk around stuff you don't need to find the stuff you are really after. Have a list of what you need before you go in, go straight to it, and imagine it's the only item in the store.</li><li data-textannotation-id="252dc7e4a924d12c2d913861ab118bf5"><strong>The Touch Factor:</strong> Stores place items they want to sell in easy to reach locations and encourage you to touch them. Don't do it! As soon as you pick something up, you're more likely to buy it because your mind suddenly takes ownership of the object. Don't pick anything up and don't play with display items.</li><li data-textannotation-id="05dde4d44056798acff5890759134a64"><strong>Scents and Sounds:</strong> You'll probably hear classic, upbeat tunes when you walk into a store. The upbeat music makes you happy and excited, while playing familiar songs makes you feel comfortable. They also use pleasant smells to put your mind at ease. A happy, comfortable mind at ease is a dangerous combination for your brain when shopping. There's not much you can do to avoid this unless you shop online, but it's good to be aware of it.</li></ul>
@ -129,9 +119,7 @@
<h3 data-textannotation-id="eedde8c384145f2593efc2a15a4d79de">
<strong>Make a List of </strong><em><strong>Everything</strong></em><strong> You Own and Do Some Decluttering</strong>
</h3>
<h3 data-textannotation-id="eedde8c384145f2593efc2a15a4d79de"><strong>Make a List of </strong><em><strong>Everything</strong></em><strong> You Own and Do Some Decluttering</strong></h3>
@ -142,7 +130,7 @@
<p data-textannotation-id="8044cf9aab698fd28931acd90ba96f7a"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--mlR3Ku0_--/xrhkwleyurcizy4akiae.jpg" data-chomp-id="xrhkwleyurcizy4akiae" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--mlR3Ku0_--/xrhkwleyurcizy4akiae.jpg"></span></p>
<p data-textannotation-id="8044cf9aab698fd28931acd90ba96f7a"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--mlR3Ku0_--/xrhkwleyurcizy4akiae.jpg" data-chomp-id="xrhkwleyurcizy4akiae" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--mlR3Ku0_--/xrhkwleyurcizy4akiae.jpg"/></span></p>
@ -207,16 +195,7 @@
<ul>
<li data-textannotation-id="8d7dc912152eddd0e3d56e28ad79e6f2">
<strong>Need:</strong> You absolutely need this item to get by on a day to day basis.</li>
<li data-textannotation-id="6f60a79627f0746d1f611999251e9f1b">
<strong>Sometimes Need:</strong> You don't need this item every day, but you use it on a somewhat regular basis.</li>
<li data-textannotation-id="54e10b108f95548966b657bd90fdbed4">
<strong>Want:</strong> You bought this item because you wanted it, not because you needed it.</li>
<li data-textannotation-id="26c461a85fbc78651be442e205cac58b">
<strong>Crap:</strong> You don't have a good reason why you have it and you already know it needs to go (there's probably a few of these items, at least).</li>
</ul>
<ul><li data-textannotation-id="8d7dc912152eddd0e3d56e28ad79e6f2"><strong>Need:</strong> You absolutely need this item to get by on a day to day basis.</li><li data-textannotation-id="6f60a79627f0746d1f611999251e9f1b"><strong>Sometimes Need:</strong> You don't need this item every day, but you use it on a somewhat regular basis.</li><li data-textannotation-id="54e10b108f95548966b657bd90fdbed4"><strong>Want:</strong> You bought this item because you wanted it, not because you needed it.</li><li data-textannotation-id="26c461a85fbc78651be442e205cac58b"><strong>Crap:</strong> You don't have a good reason why you have it and you already know it needs to go (there's probably a few of these items, at least).</li></ul>
@ -238,11 +217,7 @@
<ul>
<li data-textannotation-id="2048d6c0436bd34811442d6df32989a4">When was the last time I used this?</li>
<li data-textannotation-id="3f4b3686d822171b35e27bf1afde530b">When will I use this again?</li>
<li data-textannotation-id="63728605cc4fa66f5b225f674d12bbff">Does this item <a href="http://lifehacker.com/declutter-by-asking-one-question-does-this-spark-joy-1651256422" target="_blank">bring you joy</a>?</li>
</ul>
<ul><li data-textannotation-id="2048d6c0436bd34811442d6df32989a4">When was the last time I used this?</li><li data-textannotation-id="3f4b3686d822171b35e27bf1afde530b">When will I use this again?</li><li data-textannotation-id="63728605cc4fa66f5b225f674d12bbff">Does this item <a href="http://lifehacker.com/declutter-by-asking-one-question-does-this-spark-joy-1651256422" target="_blank">bring you joy</a>?</li></ul>
@ -286,7 +261,7 @@
<p data-textannotation-id="bc2f55587bf4ab07a1852a8d26217233"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--Tacb0tyW--/qodag11euf2npkawkn9v.jpg" data-chomp-id="qodag11euf2npkawkn9v" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--Tacb0tyW--/qodag11euf2npkawkn9v.jpg"></span></p>
<p data-textannotation-id="bc2f55587bf4ab07a1852a8d26217233"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--Tacb0tyW--/qodag11euf2npkawkn9v.jpg" data-chomp-id="qodag11euf2npkawkn9v" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--Tacb0tyW--/qodag11euf2npkawkn9v.jpg"/></span></p>
@ -330,7 +305,7 @@
<p data-textannotation-id="bafeac1c3808e0d2900190979f058b2c"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--x9hLbIKJ--/imfc9ybqfw0jmztbhfrh.jpg" data-chomp-id="imfc9ybqfw0jmztbhfrh" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--x9hLbIKJ--/imfc9ybqfw0jmztbhfrh.jpg"></span></p>
<p data-textannotation-id="bafeac1c3808e0d2900190979f058b2c"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--x9hLbIKJ--/imfc9ybqfw0jmztbhfrh.jpg" data-chomp-id="imfc9ybqfw0jmztbhfrh" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--x9hLbIKJ--/imfc9ybqfw0jmztbhfrh.jpg"/></span></p>
@ -374,7 +349,7 @@
<p data-textannotation-id="64f5c7155ad89bd2835399d33c1ae28a"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--6NwBgQLy--/afy7n45jfvsjdmmhonct.jpg" data-chomp-id="afy7n45jfvsjdmmhonct" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--6NwBgQLy--/afy7n45jfvsjdmmhonct.jpg"></span></p>
<p data-textannotation-id="64f5c7155ad89bd2835399d33c1ae28a"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--6NwBgQLy--/afy7n45jfvsjdmmhonct.jpg" data-chomp-id="afy7n45jfvsjdmmhonct" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--6NwBgQLy--/afy7n45jfvsjdmmhonct.jpg"/></span></p>
@ -418,7 +393,7 @@
<p data-textannotation-id="ff438b878771354bb7f6d065ff50dbb2"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--ciqk42G0--/s3pq8vjrvyjgne4lfsod.jpg" data-chomp-id="s3pq8vjrvyjgne4lfsod" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--ciqk42G0--/s3pq8vjrvyjgne4lfsod.jpg"></span></p>
<p data-textannotation-id="ff438b878771354bb7f6d065ff50dbb2"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--ciqk42G0--/s3pq8vjrvyjgne4lfsod.jpg" data-chomp-id="s3pq8vjrvyjgne4lfsod" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--ciqk42G0--/s3pq8vjrvyjgne4lfsod.jpg"/></span></p>
@ -440,15 +415,7 @@
<ul>
<li data-textannotation-id="fcfd78b1619bdf0b7330f4b40efb899d">Is this a planned purchase?</li>
<li data-textannotation-id="c16e7d5feae7cc2c3c6a8dd312ea206f">Will it end up in the "crap" list picture one day?</li>
<li data-textannotation-id="54d877fdee56080c87508fc9e6402889">
<a href="http://lifehacker.com/prevent-clutter-by-asking-yourself-where-items-will-go-1649480461" target="_blank">Where am I going to put it</a>?</li>
<li data-textannotation-id="59d5245217c84e6b2b2969b3492f2f2d">Have I included this in my budget?</li>
<li data-textannotation-id="8fe1582808b4d89f5c88c2708744d27d">
<em>Why</em> do I want/need it?</li>
</ul>
<ul><li data-textannotation-id="fcfd78b1619bdf0b7330f4b40efb899d">Is this a planned purchase?</li><li data-textannotation-id="c16e7d5feae7cc2c3c6a8dd312ea206f">Will it end up in the "crap" list picture one day?</li><li data-textannotation-id="54d877fdee56080c87508fc9e6402889"><a href="http://lifehacker.com/prevent-clutter-by-asking-yourself-where-items-will-go-1649480461" target="_blank">Where am I going to put it</a>?</li><li data-textannotation-id="59d5245217c84e6b2b2969b3492f2f2d">Have I included this in my budget?</li><li data-textannotation-id="8fe1582808b4d89f5c88c2708744d27d"><em>Why</em> do I want/need it?</li></ul>
@ -481,7 +448,7 @@
<p data-textannotation-id="1d43712fc5ce8f156e4661cca5750575"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--mtob1sjR--/y2ldv5eufb3jcrtfouye.jpg" data-chomp-id="y2ldv5eufb3jcrtfouye" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--mtob1sjR--/y2ldv5eufb3jcrtfouye.jpg"></span></p>
<p data-textannotation-id="1d43712fc5ce8f156e4661cca5750575"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--mtob1sjR--/y2ldv5eufb3jcrtfouye.jpg" data-chomp-id="y2ldv5eufb3jcrtfouye" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--mtob1sjR--/y2ldv5eufb3jcrtfouye.jpg"/></span></p>
@ -569,8 +536,7 @@
<blockquote data-textannotation-id="213e2e816ac88f8d177fb0db0f7fef09">
<p data-textannotation-id="7b98c5809df24dd04bb65285878c0335">Whenever I consistently cut quality time for my main interests out of my life, I start to long for them. As you saw in that "typical" day, I do make room for spending time with my family, but my other two main interests are absent. If that happens too many days in a row, I start to really miss reading. I start to really miss playing thoughtful board games with friends. What happens after that? <strong>I start to substitute.</strong> When I don't have the opportunity to sit down for an hour or even for half an hour and really get lost in a book, I start looking for an alternative way to fill in the tiny slices of time that I do have. I'll spend money.</p>
</blockquote>
<p data-textannotation-id="7b98c5809df24dd04bb65285878c0335">Whenever I consistently cut quality time for my main interests out of my life, I start to long for them. As you saw in that "typical" day, I do make room for spending time with my family, but my other two main interests are absent. If that happens too many days in a row, I start to really miss reading. I start to really miss playing thoughtful board games with friends. What happens after that? <strong>I start to substitute.</strong> When I don't have the opportunity to sit down for an hour or even for half an hour and really get lost in a book, I start looking for an alternative way to fill in the tiny slices of time that I do have. I'll spend money.</p></blockquote>
@ -603,7 +569,7 @@
<p data-textannotation-id="21154394d63f1943d01f2b717aa31115"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--4Ajak63w--/atb9qm07fvvg7hqkumkw.jpg" data-chomp-id="atb9qm07fvvg7hqkumkw" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--4Ajak63w--/atb9qm07fvvg7hqkumkw.jpg"></span></p>
<p data-textannotation-id="21154394d63f1943d01f2b717aa31115"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--4Ajak63w--/atb9qm07fvvg7hqkumkw.jpg" data-chomp-id="atb9qm07fvvg7hqkumkw" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--4Ajak63w--/atb9qm07fvvg7hqkumkw.jpg"/></span></p>
@ -690,5 +656,4 @@
<p data-textannotation-id="b54d87ffdace50f420c3a6ff0404cbf3"><em><small>Photos by <a target="_blank" href="http://www.shutterstock.com/pic-129762989/stock-vector-consumer.html?src=id&amp;ws=1">cmgirl</a> (Shutterstock), <a target="_blank" href="http://www.shutterstock.com/pic-227832739/stock-vector-hacker-icon-man-in-hoody-with-laptop-flat-isolated-on-dark-background-vector-illustration.html?src=id&amp;ws=1">Macrovector</a> (Shutterstock), <a target="_blank" href="https://www.flickr.com/photos/jetheriot/6186786217">J E Theriot</a>, <a target="_blank" href="https://www.flickr.com/photos/puuikibeach/15289861843">davidd</a>, <a target="_blank" href="https://www.flickr.com/photos/funfilledgeorgie/10922459733">George Redgrave</a>, <a target="_blank" href="https://www.flickr.com/photos/amslerpix/7252002214">David Amsler</a>, <a target="_blank" href="https://www.flickr.com/photos/amalakar/7299820870">Arup Malakar</a>, <a target="_blank" href="https://www.flickr.com/photos/lobsterstew/89644885">J B</a>, <a target="_blank" href="https://www.flickr.com/photos/jakerome/3298702453">jakerome</a>, <a target="_blank" href="http://401kcalculator.org/">401(K) 2012</a>.</small></em></p>
</div></article>
<p data-textannotation-id="b54d87ffdace50f420c3a6ff0404cbf3"><em><small>Photos by <a target="_blank" href="http://www.shutterstock.com/pic-129762989/stock-vector-consumer.html?src=id&amp;ws=1">cmgirl</a> (Shutterstock), <a target="_blank" href="http://www.shutterstock.com/pic-227832739/stock-vector-hacker-icon-man-in-hoody-with-laptop-flat-isolated-on-dark-background-vector-illustration.html?src=id&amp;ws=1">Macrovector</a> (Shutterstock), <a target="_blank" href="https://www.flickr.com/photos/jetheriot/6186786217">J E Theriot</a>, <a target="_blank" href="https://www.flickr.com/photos/puuikibeach/15289861843">davidd</a>, <a target="_blank" href="https://www.flickr.com/photos/funfilledgeorgie/10922459733">George Redgrave</a>, <a target="_blank" href="https://www.flickr.com/photos/amslerpix/7252002214">David Amsler</a>, <a target="_blank" href="https://www.flickr.com/photos/amalakar/7299820870">Arup Malakar</a>, <a target="_blank" href="https://www.flickr.com/photos/lobsterstew/89644885">J B</a>, <a target="_blank" href="https://www.flickr.com/photos/jakerome/3298702453">jakerome</a>, <a target="_blank" href="http://401kcalculator.org/">401(K) 2012</a>.</small></em></p></div></article>

View file

@ -1,5 +1,4 @@
<article><div id="readability-page-1">
<p data-textannotation-id="58a492029dca5e6a6e481d21b6b2933a"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--hqqO9fze--/n1s6c2m6kc07iqdyllj6.jpg" data-chomp-id="n1s6c2m6kc07iqdyllj6" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--hqqO9fze--/n1s6c2m6kc07iqdyllj6.jpg"></span></p>
<article><div id="readability-page-1"><p data-textannotation-id="58a492029dca5e6a6e481d21b6b2933a"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--hqqO9fze--/n1s6c2m6kc07iqdyllj6.jpg" data-chomp-id="n1s6c2m6kc07iqdyllj6" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--hqqO9fze--/n1s6c2m6kc07iqdyllj6.jpg"/></span></p>
@ -33,7 +32,7 @@
<p data-textannotation-id="268f7702467d33e3b0972dd09f1cf0a6"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--QeUTCiuW--/o4dpyrcbiqyfrc3bxx6p.jpg" data-chomp-id="o4dpyrcbiqyfrc3bxx6p" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--QeUTCiuW--/o4dpyrcbiqyfrc3bxx6p.jpg"></span></p>
<p data-textannotation-id="268f7702467d33e3b0972dd09f1cf0a6"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--QeUTCiuW--/o4dpyrcbiqyfrc3bxx6p.jpg" data-chomp-id="o4dpyrcbiqyfrc3bxx6p" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--QeUTCiuW--/o4dpyrcbiqyfrc3bxx6p.jpg"/></span></p>
@ -55,16 +54,7 @@
<ul>
<li data-textannotation-id="cd748c8b681c781cdd728c5e17b5e05f">
<strong>Color:</strong> Stores use color to make products attractive and eye-catching, but they also use color on price labels. Red stands out and can encourage taking action, that's why it's commonly associated with sale signage and advertising. When you see red, remember what they're trying to do to your brain with that color. You don't to buy something just because it's on sale.</li>
<li data-textannotation-id="29c11c0aec305293be282aa91f8fbc3d">
<strong>Navigation Roadblocks:</strong> Stores force you to walk around stuff you don't need to find the stuff you are really after. Have a list of what you need before you go in, go straight to it, and imagine it's the only item in the store.</li>
<li data-textannotation-id="252dc7e4a924d12c2d913861ab118bf5">
<strong>The Touch Factor:</strong> Stores place items they want to sell in easy to reach locations and encourage you to touch them. Don't do it! As soon as you pick something up, you're more likely to buy it because your mind suddenly takes ownership of the object. Don't pick anything up and don't play with display items.</li>
<li data-textannotation-id="05dde4d44056798acff5890759134a64">
<strong>Scents and Sounds:</strong> You'll probably hear classic, upbeat tunes when you walk into a store. The upbeat music makes you happy and excited, while playing familiar songs makes you feel comfortable. They also use pleasant smells to put your mind at ease. A happy, comfortable mind at ease is a dangerous combination for your brain when shopping. There's not much you can do to avoid this unless you shop online, but it's good to be aware of it.</li>
</ul>
<ul><li data-textannotation-id="cd748c8b681c781cdd728c5e17b5e05f"><strong>Color:</strong> Stores use color to make products attractive and eye-catching, but they also use color on price labels. Red stands out and can encourage taking action, that's why it's commonly associated with sale signage and advertising. When you see red, remember what they're trying to do to your brain with that color. You don't to buy something just because it's on sale.</li><li data-textannotation-id="29c11c0aec305293be282aa91f8fbc3d"><strong>Navigation Roadblocks:</strong> Stores force you to walk around stuff you don't need to find the stuff you are really after. Have a list of what you need before you go in, go straight to it, and imagine it's the only item in the store.</li><li data-textannotation-id="252dc7e4a924d12c2d913861ab118bf5"><strong>The Touch Factor:</strong> Stores place items they want to sell in easy to reach locations and encourage you to touch them. Don't do it! As soon as you pick something up, you're more likely to buy it because your mind suddenly takes ownership of the object. Don't pick anything up and don't play with display items.</li><li data-textannotation-id="05dde4d44056798acff5890759134a64"><strong>Scents and Sounds:</strong> You'll probably hear classic, upbeat tunes when you walk into a store. The upbeat music makes you happy and excited, while playing familiar songs makes you feel comfortable. They also use pleasant smells to put your mind at ease. A happy, comfortable mind at ease is a dangerous combination for your brain when shopping. There's not much you can do to avoid this unless you shop online, but it's good to be aware of it.</li></ul>
@ -129,9 +119,7 @@
<h3 data-textannotation-id="eedde8c384145f2593efc2a15a4d79de">
<strong>Make a List of </strong><em><strong>Everything</strong></em><strong> You Own and Do Some Decluttering</strong>
</h3>
<h3 data-textannotation-id="eedde8c384145f2593efc2a15a4d79de"><strong>Make a List of </strong><em><strong>Everything</strong></em><strong> You Own and Do Some Decluttering</strong></h3>
@ -142,7 +130,7 @@
<p data-textannotation-id="8044cf9aab698fd28931acd90ba96f7a"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--mlR3Ku0_--/xrhkwleyurcizy4akiae.jpg" data-chomp-id="xrhkwleyurcizy4akiae" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--mlR3Ku0_--/xrhkwleyurcizy4akiae.jpg"></span></p>
<p data-textannotation-id="8044cf9aab698fd28931acd90ba96f7a"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--mlR3Ku0_--/xrhkwleyurcizy4akiae.jpg" data-chomp-id="xrhkwleyurcizy4akiae" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--mlR3Ku0_--/xrhkwleyurcizy4akiae.jpg"/></span></p>
@ -207,16 +195,7 @@
<ul>
<li data-textannotation-id="8d7dc912152eddd0e3d56e28ad79e6f2">
<strong>Need:</strong> You absolutely need this item to get by on a day to day basis.</li>
<li data-textannotation-id="6f60a79627f0746d1f611999251e9f1b">
<strong>Sometimes Need:</strong> You don't need this item every day, but you use it on a somewhat regular basis.</li>
<li data-textannotation-id="54e10b108f95548966b657bd90fdbed4">
<strong>Want:</strong> You bought this item because you wanted it, not because you needed it.</li>
<li data-textannotation-id="26c461a85fbc78651be442e205cac58b">
<strong>Crap:</strong> You don't have a good reason why you have it and you already know it needs to go (there's probably a few of these items, at least).</li>
</ul>
<ul><li data-textannotation-id="8d7dc912152eddd0e3d56e28ad79e6f2"><strong>Need:</strong> You absolutely need this item to get by on a day to day basis.</li><li data-textannotation-id="6f60a79627f0746d1f611999251e9f1b"><strong>Sometimes Need:</strong> You don't need this item every day, but you use it on a somewhat regular basis.</li><li data-textannotation-id="54e10b108f95548966b657bd90fdbed4"><strong>Want:</strong> You bought this item because you wanted it, not because you needed it.</li><li data-textannotation-id="26c461a85fbc78651be442e205cac58b"><strong>Crap:</strong> You don't have a good reason why you have it and you already know it needs to go (there's probably a few of these items, at least).</li></ul>
@ -238,11 +217,7 @@
<ul>
<li data-textannotation-id="2048d6c0436bd34811442d6df32989a4">When was the last time I used this?</li>
<li data-textannotation-id="3f4b3686d822171b35e27bf1afde530b">When will I use this again?</li>
<li data-textannotation-id="63728605cc4fa66f5b225f674d12bbff">Does this item <a href="http://lifehacker.com/declutter-by-asking-one-question-does-this-spark-joy-1651256422" target="_blank">bring you joy</a>?</li>
</ul>
<ul><li data-textannotation-id="2048d6c0436bd34811442d6df32989a4">When was the last time I used this?</li><li data-textannotation-id="3f4b3686d822171b35e27bf1afde530b">When will I use this again?</li><li data-textannotation-id="63728605cc4fa66f5b225f674d12bbff">Does this item <a href="http://lifehacker.com/declutter-by-asking-one-question-does-this-spark-joy-1651256422" target="_blank">bring you joy</a>?</li></ul>
@ -286,7 +261,7 @@
<p data-textannotation-id="bc2f55587bf4ab07a1852a8d26217233"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--Tacb0tyW--/qodag11euf2npkawkn9v.jpg" data-chomp-id="qodag11euf2npkawkn9v" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--Tacb0tyW--/qodag11euf2npkawkn9v.jpg"></span></p>
<p data-textannotation-id="bc2f55587bf4ab07a1852a8d26217233"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--Tacb0tyW--/qodag11euf2npkawkn9v.jpg" data-chomp-id="qodag11euf2npkawkn9v" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--Tacb0tyW--/qodag11euf2npkawkn9v.jpg"/></span></p>
@ -330,7 +305,7 @@
<p data-textannotation-id="bafeac1c3808e0d2900190979f058b2c"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--x9hLbIKJ--/imfc9ybqfw0jmztbhfrh.jpg" data-chomp-id="imfc9ybqfw0jmztbhfrh" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--x9hLbIKJ--/imfc9ybqfw0jmztbhfrh.jpg"></span></p>
<p data-textannotation-id="bafeac1c3808e0d2900190979f058b2c"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--x9hLbIKJ--/imfc9ybqfw0jmztbhfrh.jpg" data-chomp-id="imfc9ybqfw0jmztbhfrh" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--x9hLbIKJ--/imfc9ybqfw0jmztbhfrh.jpg"/></span></p>
@ -374,7 +349,7 @@
<p data-textannotation-id="64f5c7155ad89bd2835399d33c1ae28a"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--6NwBgQLy--/afy7n45jfvsjdmmhonct.jpg" data-chomp-id="afy7n45jfvsjdmmhonct" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--6NwBgQLy--/afy7n45jfvsjdmmhonct.jpg"></span></p>
<p data-textannotation-id="64f5c7155ad89bd2835399d33c1ae28a"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--6NwBgQLy--/afy7n45jfvsjdmmhonct.jpg" data-chomp-id="afy7n45jfvsjdmmhonct" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--6NwBgQLy--/afy7n45jfvsjdmmhonct.jpg"/></span></p>
@ -418,7 +393,7 @@
<p data-textannotation-id="ff438b878771354bb7f6d065ff50dbb2"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--ciqk42G0--/s3pq8vjrvyjgne4lfsod.jpg" data-chomp-id="s3pq8vjrvyjgne4lfsod" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--ciqk42G0--/s3pq8vjrvyjgne4lfsod.jpg"></span></p>
<p data-textannotation-id="ff438b878771354bb7f6d065ff50dbb2"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--ciqk42G0--/s3pq8vjrvyjgne4lfsod.jpg" data-chomp-id="s3pq8vjrvyjgne4lfsod" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--ciqk42G0--/s3pq8vjrvyjgne4lfsod.jpg"/></span></p>
@ -440,15 +415,7 @@
<ul>
<li data-textannotation-id="fcfd78b1619bdf0b7330f4b40efb899d">Is this a planned purchase?</li>
<li data-textannotation-id="c16e7d5feae7cc2c3c6a8dd312ea206f">Will it end up in the "crap" list picture one day?</li>
<li data-textannotation-id="54d877fdee56080c87508fc9e6402889">
<a href="http://lifehacker.com/prevent-clutter-by-asking-yourself-where-items-will-go-1649480461" target="_blank">Where am I going to put it</a>?</li>
<li data-textannotation-id="59d5245217c84e6b2b2969b3492f2f2d">Have I included this in my budget?</li>
<li data-textannotation-id="8fe1582808b4d89f5c88c2708744d27d">
<em>Why</em> do I want/need it?</li>
</ul>
<ul><li data-textannotation-id="fcfd78b1619bdf0b7330f4b40efb899d">Is this a planned purchase?</li><li data-textannotation-id="c16e7d5feae7cc2c3c6a8dd312ea206f">Will it end up in the "crap" list picture one day?</li><li data-textannotation-id="54d877fdee56080c87508fc9e6402889"><a href="http://lifehacker.com/prevent-clutter-by-asking-yourself-where-items-will-go-1649480461" target="_blank">Where am I going to put it</a>?</li><li data-textannotation-id="59d5245217c84e6b2b2969b3492f2f2d">Have I included this in my budget?</li><li data-textannotation-id="8fe1582808b4d89f5c88c2708744d27d"><em>Why</em> do I want/need it?</li></ul>
@ -481,7 +448,7 @@
<p data-textannotation-id="1d43712fc5ce8f156e4661cca5750575"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--mtob1sjR--/y2ldv5eufb3jcrtfouye.jpg" data-chomp-id="y2ldv5eufb3jcrtfouye" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--mtob1sjR--/y2ldv5eufb3jcrtfouye.jpg"></span></p>
<p data-textannotation-id="1d43712fc5ce8f156e4661cca5750575"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--mtob1sjR--/y2ldv5eufb3jcrtfouye.jpg" data-chomp-id="y2ldv5eufb3jcrtfouye" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--mtob1sjR--/y2ldv5eufb3jcrtfouye.jpg"/></span></p>
@ -569,8 +536,7 @@
<blockquote data-textannotation-id="213e2e816ac88f8d177fb0db0f7fef09">
<p data-textannotation-id="7b98c5809df24dd04bb65285878c0335">Whenever I consistently cut quality time for my main interests out of my life, I start to long for them. As you saw in that "typical" day, I do make room for spending time with my family, but my other two main interests are absent. If that happens too many days in a row, I start to really miss reading. I start to really miss playing thoughtful board games with friends. What happens after that? <strong>I start to substitute.</strong> When I don't have the opportunity to sit down for an hour or even for half an hour and really get lost in a book, I start looking for an alternative way to fill in the tiny slices of time that I do have. I'll spend money.</p>
</blockquote>
<p data-textannotation-id="7b98c5809df24dd04bb65285878c0335">Whenever I consistently cut quality time for my main interests out of my life, I start to long for them. As you saw in that "typical" day, I do make room for spending time with my family, but my other two main interests are absent. If that happens too many days in a row, I start to really miss reading. I start to really miss playing thoughtful board games with friends. What happens after that? <strong>I start to substitute.</strong> When I don't have the opportunity to sit down for an hour or even for half an hour and really get lost in a book, I start looking for an alternative way to fill in the tiny slices of time that I do have. I'll spend money.</p></blockquote>
@ -603,7 +569,7 @@
<p data-textannotation-id="21154394d63f1943d01f2b717aa31115"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--4Ajak63w--/atb9qm07fvvg7hqkumkw.jpg" data-chomp-id="atb9qm07fvvg7hqkumkw" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--4Ajak63w--/atb9qm07fvvg7hqkumkw.jpg"></span></p>
<p data-textannotation-id="21154394d63f1943d01f2b717aa31115"><span><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--4Ajak63w--/atb9qm07fvvg7hqkumkw.jpg" data-chomp-id="atb9qm07fvvg7hqkumkw" alt="How to Program Your Mind to Stop Buying Crap You Don&#x2019;t Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--4Ajak63w--/atb9qm07fvvg7hqkumkw.jpg"/></span></p>
@ -690,5 +656,4 @@
<p data-textannotation-id="b54d87ffdace50f420c3a6ff0404cbf3"><em><small>Photos by <a target="_blank" href="http://www.shutterstock.com/pic-129762989/stock-vector-consumer.html?src=id&amp;ws=1">cmgirl</a> (Shutterstock), <a target="_blank" href="http://www.shutterstock.com/pic-227832739/stock-vector-hacker-icon-man-in-hoody-with-laptop-flat-isolated-on-dark-background-vector-illustration.html?src=id&amp;ws=1">Macrovector</a> (Shutterstock), <a target="_blank" href="https://www.flickr.com/photos/jetheriot/6186786217">J E Theriot</a>, <a target="_blank" href="https://www.flickr.com/photos/puuikibeach/15289861843">davidd</a>, <a target="_blank" href="https://www.flickr.com/photos/funfilledgeorgie/10922459733">George Redgrave</a>, <a target="_blank" href="https://www.flickr.com/photos/amslerpix/7252002214">David Amsler</a>, <a target="_blank" href="https://www.flickr.com/photos/amalakar/7299820870">Arup Malakar</a>, <a target="_blank" href="https://www.flickr.com/photos/lobsterstew/89644885">J B</a>, <a target="_blank" href="https://www.flickr.com/photos/jakerome/3298702453">jakerome</a>, <a target="_blank" href="http://401kcalculator.org/">401(K) 2012</a>.</small></em></p>
</div></article>
<p data-textannotation-id="b54d87ffdace50f420c3a6ff0404cbf3"><em><small>Photos by <a target="_blank" href="http://www.shutterstock.com/pic-129762989/stock-vector-consumer.html?src=id&amp;ws=1">cmgirl</a> (Shutterstock), <a target="_blank" href="http://www.shutterstock.com/pic-227832739/stock-vector-hacker-icon-man-in-hoody-with-laptop-flat-isolated-on-dark-background-vector-illustration.html?src=id&amp;ws=1">Macrovector</a> (Shutterstock), <a target="_blank" href="https://www.flickr.com/photos/jetheriot/6186786217">J E Theriot</a>, <a target="_blank" href="https://www.flickr.com/photos/puuikibeach/15289861843">davidd</a>, <a target="_blank" href="https://www.flickr.com/photos/funfilledgeorgie/10922459733">George Redgrave</a>, <a target="_blank" href="https://www.flickr.com/photos/amslerpix/7252002214">David Amsler</a>, <a target="_blank" href="https://www.flickr.com/photos/amalakar/7299820870">Arup Malakar</a>, <a target="_blank" href="https://www.flickr.com/photos/lobsterstew/89644885">J B</a>, <a target="_blank" href="https://www.flickr.com/photos/jakerome/3298702453">jakerome</a>, <a target="_blank" href="http://401kcalculator.org/">401(K) 2012</a>.</small></em></p></div></article>

View file

@ -54,7 +54,7 @@ to inefficient patches.
Watch how much the compressed text on the right side changes from a one-letter
change in the uncompressed text on the left:
</p>
<p><a href="https://2.bp.blogspot.com/-chCZZinlUTg/WEcxvJo9gdI/AAAAAAAADnk/3ND_BspqN6Y2j5xxkLFW3RyS2Ig0NHZpQCLcB/s1600/ipsum-opsum.gif" imageanchor="1" target="_blank"><img src="https://2.bp.blogspot.com/-chCZZinlUTg/WEcxvJo9gdI/AAAAAAAADnk/3ND_BspqN6Y2j5xxkLFW3RyS2Ig0NHZpQCLcB/s640/ipsum-opsum.gif" width="640" height="105"></a></p>
<p><a href="https://2.bp.blogspot.com/-chCZZinlUTg/WEcxvJo9gdI/AAAAAAAADnk/3ND_BspqN6Y2j5xxkLFW3RyS2Ig0NHZpQCLcB/s1600/ipsum-opsum.gif" imageanchor="1" target="_blank"><img src="https://2.bp.blogspot.com/-chCZZinlUTg/WEcxvJo9gdI/AAAAAAAADnk/3ND_BspqN6Y2j5xxkLFW3RyS2Ig0NHZpQCLcB/s640/ipsum-opsum.gif" width="640" height="105"/></a></p>
<p>
File-by-File therefore is based on detecting changes in the uncompressed data.
To generate a patch, we first decompress both old and new files before computing
@ -105,132 +105,54 @@ Patching?</span></strong>
Here are examples of app updates already using File-by-File Patching:
</p>
<div dir="ltr" trbidi="on">
<table>
<colgroup>
<col width="142">
<col width="102">
<col width="176">
<col width="176">
</colgroup>
<tbody>
<tr>
<td>
<p><span>Application</span></p>
</td>
<td>
<p><span>Original Size</span></p>
</td>
<td>
<p><span>Previous (BSDiff) Patch Size</span></p>
<table><colgroup><col width="142"/><col width="102"/><col width="176"/><col width="176"/></colgroup><tbody>
<tr><td><p><span>Application</span></p>
</td><td><p><span>Original Size</span></p>
</td><td><p><span>Previous (BSDiff) Patch Size</span></p>
<p><span>(% vs original)</span></p>
</td>
<td>
<p><span>File-by-File Patch Size (% vs original)</span></p>
</td>
</tr>
<tr>
<td>
<div dir="ltr">
<p><a href="https://play.google.com/store/apps/details?id=com.king.farmheroessupersaga&amp;hl=en" target="_blank"><span>Farm Heroes Super Saga</span></a></p>
</div>
</td>
<td>
<p><span>71.1 MB</span></p>
</td>
<td>
<p><span>13.4 MB (-81%)</span></p>
</td>
<td>
<p><span>8.0 MB (-89%)</span></p>
</td>
</tr>
<tr>
<td>
<div dir="ltr">
<p><a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps" target="_blank"><span>Google Maps</span></a></p>
</div>
</td>
<td>
<p><span>32.7 MB</span></p>
</td>
<td>
<p><span>17.5 MB (-46%)</span></p>
</td>
<td>
<p><span>9.6 MB (-71%)</span></p>
</td>
</tr>
<tr>
<td>
<div dir="ltr">
<p><a href="https://play.google.com/store/apps/details?id=com.google.android.gm" target="_blank"><span>Gmail</span></a></p>
</div>
</td>
<td>
<p><span>17.8 MB</span></p>
</td>
<td>
<p><span>7.6 MB (-57%)</span></p>
</td>
<td>
<p><span>7.3 MB (-59%)</span></p>
</td>
</tr>
<tr>
<td>
<div dir="ltr">
<p><a href="https://play.google.com/store/apps/details?id=com.google.android.tts" target="_blank"><span>Google TTS</span></a></p>
</div>
</td>
<td>
<p><span>18.9 MB</span></p>
</td>
<td>
<p><span>17.2 MB (-9%)</span></p>
</td>
<td>
<p><span>13.1 MB (-31%)</span></p>
</td>
</tr>
<tr>
<td>
<div dir="ltr">
<p><a href="https://play.google.com/store/apps/details?id=com.amazon.kindle" target="_blank"><span>Kindle</span></a></p>
</div>
</td>
<td>
<p><span>52.4 MB</span></p>
</td>
<td>
<p><span>19.1 MB (-64%)</span></p>
</td>
<td>
<p><span>8.4 MB (-84%)</span></p>
</td>
</tr>
<tr>
<td>
<div dir="ltr">
<p><a href="https://play.google.com/store/apps/details?id=com.netflix.mediaclient" target="_blank"><span>Netflix</span></a></p>
</div>
</td>
<td>
<p><span>16.2 MB</span></p>
</td>
<td>
<p><span>7.7 MB (-52%)</span></p>
</td>
<td>
<p><span>1.2 MB (-92%)</span></p>
</td>
</tr>
</tbody>
</table>
</td><td><p><span>File-by-File Patch Size (% vs original)</span></p>
</td></tr>
<tr><td><div dir="ltr">
<p><a href="https://play.google.com/store/apps/details?id=com.king.farmheroessupersaga&amp;hl=en" target="_blank"><span>Farm Heroes Super Saga</span></a></p></div>
</td><td><p><span>71.1 MB</span></p>
</td><td><p><span>13.4 MB (-81%)</span></p>
</td><td><p><span>8.0 MB (-89%)</span></p>
</td></tr>
<tr><td><div dir="ltr">
<p><a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps" target="_blank"><span>Google Maps</span></a></p></div>
</td><td><p><span>32.7 MB</span></p>
</td><td><p><span>17.5 MB (-46%)</span></p>
</td><td><p><span>9.6 MB (-71%)</span></p>
</td></tr>
<tr><td><div dir="ltr">
<p><a href="https://play.google.com/store/apps/details?id=com.google.android.gm" target="_blank"><span>Gmail</span></a></p></div>
</td><td><p><span>17.8 MB</span></p>
</td><td><p><span>7.6 MB (-57%)</span></p>
</td><td><p><span>7.3 MB (-59%)</span></p>
</td></tr>
<tr><td><div dir="ltr">
<p><a href="https://play.google.com/store/apps/details?id=com.google.android.tts" target="_blank"><span>Google TTS</span></a></p></div>
</td><td><p><span>18.9 MB</span></p>
</td><td><p><span>17.2 MB (-9%)</span></p>
</td><td><p><span>13.1 MB (-31%)</span></p>
</td></tr>
<tr><td><div dir="ltr">
<p><a href="https://play.google.com/store/apps/details?id=com.amazon.kindle" target="_blank"><span>Kindle</span></a></p></div>
</td><td><p><span>52.4 MB</span></p>
</td><td><p><span>19.1 MB (-64%)</span></p>
</td><td><p><span>8.4 MB (-84%)</span></p>
</td></tr>
<tr><td><div dir="ltr">
<p><a href="https://play.google.com/store/apps/details?id=com.netflix.mediaclient" target="_blank"><span>Netflix</span></a></p></div>
</td><td><p><span>16.2 MB</span></p>
</td><td><p><span>7.7 MB (-52%)</span></p>
</td><td><p><span>1.2 MB (-92%)</span></p>
</td></tr>
</tbody></table>
</div>
<p><em>Disclaimer: if you see different patch sizes when you press "update"
manually, that is because we are not currently using File-by-file for
interactive updates, only those done in the background.</em></p>
<p>
interactive updates, only those done in the background.</em></p><p>
<strong><span>Saving data and making our
users (&amp; developers!) happy</span></strong>
</p>
@ -252,6 +174,6 @@ As a developer if you're interested in reducing your APK size still further,
here are some <a href="https://developer.android.com/topic/performance/reduce-apk-size.html?utm_campaign=android_discussion_filebyfile_120616&amp;utm_source=anddev&amp;utm_medium=blog" target="_blank">general
tips on reducing APK size</a>.
</p>
<p><a href="https://2.bp.blogspot.com/-5aRh1dM6Unc/WEcNs55RGhI/AAAAAAAADnI/tzr_oOJjZwgWd9Vu25ydY0UwB3eXKupXwCLcB/s1600/image01.png" imageanchor="1" target="_blank"><img src="https://2.bp.blogspot.com/-5aRh1dM6Unc/WEcNs55RGhI/AAAAAAAADnI/tzr_oOJjZwgWd9Vu25ydY0UwB3eXKupXwCLcB/s200/image01.png" width="191" height="200"></a></p>
<p><a href="https://2.bp.blogspot.com/-5aRh1dM6Unc/WEcNs55RGhI/AAAAAAAADnI/tzr_oOJjZwgWd9Vu25ydY0UwB3eXKupXwCLcB/s1600/image01.png" imageanchor="1" target="_blank"><img src="https://2.bp.blogspot.com/-5aRh1dM6Unc/WEcNs55RGhI/AAAAAAAADnI/tzr_oOJjZwgWd9Vu25ydY0UwB3eXKupXwCLcB/s200/image01.png" width="191" height="200"/></a></p>
</div></article>
</div></article>

View file

@ -26,32 +26,28 @@ program</a> for third-party manufacturers interested in using the "Arduino" bran
<h2><a href="http://fakehost/Articles/637533/" target="_blank">Mapping and data mining with QGIS 2.8</a></h2>
<p> By <b>Nathan Willis</b>
<br>March 25, 2015 </p>
<br/>March 25, 2015 </p>
<p><a href="http://qgis.org/" target="_blank">QGIS</a> is a free-software geographic information system (GIS) tool; it provides a unified interface in which users can import, edit, and analyze geographic-oriented information, and it can produce output as varied as printable maps or map-based web services. The project recently made its first update to be designated a long-term release (LTR), and that release is both poised for high-end usage and friendly to newcomers alike. </p>
<p>The new release is version 2.8, which was unveiled on March 2. An official <a href="http://qgis.org/en/site/forusers/visualchangelog28/index.html" target="_blank">change
log</a> is available on the QGIS site, while the release itself was announced primarily through blog posts (such as <a href="http://anitagraser.com/2015/03/02/qgis-2-8-ltr-has-landed/" target="_blank">this
post</a> by Anita Graser of the project's steering committee). Downloads are <a href="http://qgis.org/en/site/forusers/download.html" target="_blank">available</a> for a variety of platforms, including packages for Ubuntu, Debian, Fedora, openSUSE, and several other distributions.</p>
<p><a href="http://fakehost/Articles/637747/" target="_blank"> <img src="http://fakehost/images/2015/03-qgis-map-sm.png" width="350" height="264" alt="[QGIS main interface]"> </a></p>
<p>As the name might suggest, QGIS is a Qt application; the latest release will, in fact, build on both Qt4 and Qt5, although the binaries released by the project come only in Qt4 form at present. 2.8 has been labeled a long-term release (LTR)—which, in this case, means that the project has committed to providing backported bug fixes for one full calendar year, and that the 2.8.x series is in permanent feature freeze. The goal, according to the change log, is to provide a stable version suitable for businesses and deployments in other large organizations. The change log itself points out that the development of quite a few new features was underwritten by various GIS companies or university groups, which suggests that taking care of these organizations' needs is reaping dividends for the project. </p>
<p><a href="http://fakehost/Articles/637747/" target="_blank"> <img src="http://fakehost/images/2015/03-qgis-map-sm.png" width="350" height="264" alt="[QGIS main interface]"/> </a></p><p>As the name might suggest, QGIS is a Qt application; the latest release will, in fact, build on both Qt4 and Qt5, although the binaries released by the project come only in Qt4 form at present. 2.8 has been labeled a long-term release (LTR)—which, in this case, means that the project has committed to providing backported bug fixes for one full calendar year, and that the 2.8.x series is in permanent feature freeze. The goal, according to the change log, is to provide a stable version suitable for businesses and deployments in other large organizations. The change log itself points out that the development of quite a few new features was underwritten by various GIS companies or university groups, which suggests that taking care of these organizations' needs is reaping dividends for the project. </p>
<p>For those new to QGIS (or GIS in general), there is a detailed new-user <a href="http://docs.qgis.org/testing/en/docs/training_manual/" target="_blank">tutorial</a> that provides a thorough walk-through of the data-manipulation, mapping, and analysis functions. Being a new user, I went through the tutorial; although there are a handful of minor differences between QGIS 2.8 and the version used in the text (primarily whether specific features were accessed through a toolbar or right-click menu), on the whole it is well worth the time. </p>
<p>QGIS is designed to make short work of importing spatially oriented data sets, mining information from them, and turning the results into a meaningful visualization. Technically speaking, the visualization output is optional: one could simply extract the needed statistics and results and use them to answer some question or, perhaps, publish the massaged data set as a database for others to use. </p>
<p>But well-made maps are often the easiest way to illuminate facts about populations, political regions, geography, and many other topics when human comprehension is the goal. QGIS makes importing data from databases, web-mapping services (WMS), and even unwieldy flat-file data dumps a painless experience. It handles converting between a variety of map-referencing systems more or less automatically, and allows the user to focus on finding the useful attributes of the data sets and rendering them on screen. </p>
<h4>Here be data</h4>
<p>The significant changes in QGIS 2.8 fall into several categories. There are updates to how QGIS handles the mathematical expressions and queries users can use to filter information out of a data set, improvements to the tools used to explore the on-screen map canvas, and enhancements to the "map composer" used to produce visual output. This is on top of plenty of other under-the-hood improvements, naturally.</p>
<p><a href="http://fakehost/Articles/637748/" target="_blank"> <img src="http://fakehost/images/2015/03-qgis-query-sm.png" width="300" height="302" alt="[QGIS query builder]"> </a></p>
<p>In the first category are several updates to the filtering tools used to mine a data set. Generally speaking, each independent data set is added to a QGIS project as its own layer, then transformed with filters to focus in on a specific portion of the original data. For instance, the land-usage statistics for a region might be one layer, while roads and buildings for the same region from OpenStreetMap might be two additional layers. Such filters can be created in several ways: there is a "query builder" that lets the user construct and test expressions on a data layer, then save the results, an SQL console for performing similar queries on a database, and spreadsheet-like editing tools for working directly on data tables. </p>
<p><a href="http://fakehost/Articles/637748/" target="_blank"> <img src="http://fakehost/images/2015/03-qgis-query-sm.png" width="300" height="302" alt="[QGIS query builder]"/> </a></p><p>In the first category are several updates to the filtering tools used to mine a data set. Generally speaking, each independent data set is added to a QGIS project as its own layer, then transformed with filters to focus in on a specific portion of the original data. For instance, the land-usage statistics for a region might be one layer, while roads and buildings for the same region from OpenStreetMap might be two additional layers. Such filters can be created in several ways: there is a "query builder" that lets the user construct and test expressions on a data layer, then save the results, an SQL console for performing similar queries on a database, and spreadsheet-like editing tools for working directly on data tables. </p>
<p>All three have been improved in this release. New are support for <tt>if(condition, true, false)</tt> conditional statements, a set of operations for geometry primitives (e.g., to test whether regions overlap or lines intersect), and an "integer divide" operation. Users can also add comments to their queries to annotate their code, and there is a new <a href="http://nathanw.net/2015/01/19/function-editor-for-qgis-expressions/" target="_blank">custom
function editor</a> for writing Python functions that can be called in mathematical expressions within the query builder. </p>
<p>It is also now possible to select only some rows in a table, then perform calculations just on the selection—previously, users would have to extract the rows of interest into a new table first. Similarly, in the SQL editor, the user can highlight a subset of the SQL query and execute it separately, which is no doubt helpful for debugging. </p>
<p>There have also been several improvements to the Python and Processing plugins. Users can now drag-and-drop Python scripts onto QGIS and they will be run automatically. Several new analysis algorithms are now available through the Processing interface that were previously Python-only; they include algorithms for generating grids of points or vectors within a region, splitting layers and lines, generating <a href="http://en.wikipedia.org/wiki/Hypsometric_curve" target="_blank">hypsometric
curves</a>, refactoring data sets, and more. </p>
<h4>Maps in, maps out</h4>
<p><a href="http://fakehost/Articles/637749/" target="_blank"> <img src="http://fakehost/images/2015/03-qgis-simplify-sm.png" width="300" height="303" alt="[QGIS simplify tool]"> </a></p>
<p>The process of working with on-screen map data picked up some improvements in the new release as well. Perhaps the most fundamental is that each map layer added to the canvas is now handled in its own thread, so fewer hangs in the user interface are experienced when re-rendering a layer (as happens whenever the user changes the look of points or shapes in a layer). Since remote databases can also be layers, this multi-threaded approach is more resilient against connectivity problems, too. The interface also now supports temporary "scratch" layers that can be used to merge, filter, or simply experiment with a data set, but are not saved when the current project is saved. </p>
<p><a href="http://fakehost/Articles/637749/" target="_blank"> <img src="http://fakehost/images/2015/03-qgis-simplify-sm.png" width="300" height="303" alt="[QGIS simplify tool]"/> </a></p><p>The process of working with on-screen map data picked up some improvements in the new release as well. Perhaps the most fundamental is that each map layer added to the canvas is now handled in its own thread, so fewer hangs in the user interface are experienced when re-rendering a layer (as happens whenever the user changes the look of points or shapes in a layer). Since remote databases can also be layers, this multi-threaded approach is more resilient against connectivity problems, too. The interface also now supports temporary "scratch" layers that can be used to merge, filter, or simply experiment with a data set, but are not saved when the current project is saved. </p>
<p>For working on the canvas itself, polygonal regions can now use raster images (tiled, if necessary) as fill colors, the map itself can be rotated arbitrarily, and objects can be "snapped" to align with items on any layer (not just the current layer). For working with raster image layers (e.g., aerial photographs) or simply creating new geometric shapes by hand, there is a new digitizing tool that can offer assistance by locking lines to specific angles, automatically keeping borders parallel, and other niceties. </p>
<p>There is a completely overhauled "simplify" tool that is used to reduce the number of extraneous vertices of a vector layer (thus reducing its size). The old simplify tool provided only a relative "tolerance" setting that did not correspond directly to any units. With the new tool, users can set a simplification threshold in terms of the underlying map units, layer-specific units, pixels, and more—and, in addition, the tool reports how much the simplify operation has reduced the size of the data.</p>
<p><a href="http://fakehost/Articles/637751/" target="_blank"> <img src="http://fakehost/images/2015/03-qgis-style-sm.png" width="300" height="286" alt="[QGIS style editing]"> </a></p>
<p>There has also been an effort to present a uniform interface to one of the most important features of the map canvas: the ability to change the symbology used for an item based on some data attribute. The simplest example might be to change the line color of a road based on whether its road-type attribute is "highway," "service road," "residential," or so on. But the same feature is used to automatically highlight layer information based on the filtering and querying functionality discussed above. The new release allows many more map attributes to be controlled by these "data definition" settings, and provides a hard-to-miss button next to each attribute, through which a custom data definition can be set. </p>
<p><a href="http://fakehost/Articles/637751/" target="_blank"> <img src="http://fakehost/images/2015/03-qgis-style-sm.png" width="300" height="286" alt="[QGIS style editing]"/> </a></p><p>There has also been an effort to present a uniform interface to one of the most important features of the map canvas: the ability to change the symbology used for an item based on some data attribute. The simplest example might be to change the line color of a road based on whether its road-type attribute is "highway," "service road," "residential," or so on. But the same feature is used to automatically highlight layer information based on the filtering and querying functionality discussed above. The new release allows many more map attributes to be controlled by these "data definition" settings, and provides a hard-to-miss button next to each attribute, through which a custom data definition can be set. </p>
<p>QGIS's composer module is the tool used to take project data and generate a map that can be used outside of the application (in print, as a static image, or as a layer for <a href="http://mapserver.org/" target="_blank">MapServer</a> or some other software tool, for example). Consequently, it is not a simple select-and-click-export tool; composing the output can involve a lot of choices about which data to make visible, how (and where) to label it, and how to make it generally accessible. </p>
<p>The updated composer in 2.8 now has a full-screen mode and sports several new options for configuring output. For instance, the user now has full control over how map axes are labeled. In previous releases, the grid coordinates of the map could be turned on or off, but the only options were all or nothing. Now, the user can individually choose whether coordinates are displayed on all four sides, and can even choose in which direction vertical text labels will run (so that they can be correctly justified to the edge of the map, for example). </p>
<p>There are, as usual, many more changes than there is room to discuss. Some particularly noteworthy improvements include the ability to save and load bookmarks for frequently used data sources (perhaps most useful for databases, web services, and other non-local data) and improvements to QGIS's server module. This module allows one QGIS instance to serve up data accessible to other QGIS applications (for example, to simply team projects). The server can now be extended with Python plugins and the data layers that it serves can be styled with style rules like those used in the desktop interface. </p>
@ -60,8 +56,7 @@ curves</a>, refactoring data sets, and more. </p>
<h2><a href="http://fakehost/Articles/637735/" target="_blank">Development activity in LibreOffice and OpenOffice</a></h2>
<p> By <b>Jonathan Corbet</b>
<br>March 25, 2015 </p>
<p> The LibreOffice project was <a href="http://fakehost/Articles/407383/" target="_blank">announced</a> with great fanfare in September 2010. Nearly one year later, the OpenOffice.org project (from which LibreOffice was forked) <a href="http://fakehost/Articles/446093/" target="_blank">was
<br/>March 25, 2015 </p><p> The LibreOffice project was <a href="http://fakehost/Articles/407383/" target="_blank">announced</a> with great fanfare in September 2010. Nearly one year later, the OpenOffice.org project (from which LibreOffice was forked) <a href="http://fakehost/Articles/446093/" target="_blank">was
cut loose from Oracle</a> and found a new home as an Apache project. It is fair to say that the rivalry between the two projects in the time since then has been strong. Predictions that one project or the other would fail have not been borne out, but that does not mean that the two projects are equally successful. A look at the two projects' development communities reveals some interesting differences.
</p>
<h4>Release histories</h4>
@ -582,8 +577,7 @@ cut loose from Oracle</a> and found a new home as an Apache project. It is fair
<td>38.0%</td>
</tr>
<tr>
<td>Collabora <strike>Multimedia</strike>
</td>
<td>Collabora <strike>Multimedia</strike></td>
<td>6531</td>
<td>29.5%</td>
</tr>
@ -642,7 +636,7 @@ bark but the caravan moves on.</span>" That may be true, but, in this case, the
<p><a href="http://fakehost/Articles/637735/#Comments" target="_blank">Comments (74 posted)</a> </p>
<p> <b>Page editor</b>: Jonathan Corbet
<br> </p>
<br/> </p>
<h2>Inside this week's LWN.net Weekly Edition</h2>
<ul>
<li> <a href="http://fakehost/Articles/637395/" target="_blank">Security</a>: Toward secure package downloads; New vulnerabilities in drupal, mozilla, openssl, python-django ... </li>
@ -651,12 +645,9 @@ bark but the caravan moves on.</span>" That may be true, but, in this case, the
<li> <a href="http://fakehost/Articles/637398/" target="_blank">Development</a>: A look at GlusterFS; LibreOffice Online; Open sourcing existing code; Secure Boot in Windows 10; ... </li>
<li> <a href="http://fakehost/Articles/637399/" target="_blank">Announcements</a>: A Turing award for Michael Stonebraker, Sébastien Jodogne, ReGlue are Free Software Award winners, Kat Walsh joins FSF board of directors, Cyanogen, ... </li>
</ul> <p><b>Next page</b>: <a href="http://fakehost/Articles/637395/" target="_blank">Security&gt;&gt;</a>
<br> </p>
</div>
<br/> </p></div>
</td>
<td>
</td>
</DIV></article>
</DIV></article>

View file

@ -1,102 +1,102 @@
<article><div itemprop="articleBody" id="readability-page-1">
<header>
Neuroscience tells us that most of the work done by our brains happens on an unconscious level, but when does that "a-ha!" moment occur? And what happens during it? New research investigates.
</header>
<p><img data-src="https://cdn1.medicalnewstoday.com/content/images/articles/318/318674/hand-holding-brain-lightbulb.jpg" alt="hand holding brain lightbulb" src="https://cdn1.medicalnewstoday.com/content/images/articles/318/318674/hand-holding-brain-lightbulb.jpg"><br>
<em>A new study investigates when the 'a-ha!' moment takes place in the brain, and how similar it is to other brain processes.</em>
</p>
<p>
Many of us have noticed that we seem to get our best ideas when we're in the shower, or that we can find the answer to a difficult question when we least think about it.
</p>
<p>
A large body of neuroscientific <a href="http://journals.sagepub.com/doi/abs/10.1177/0956797612446024" target="_blank" rel="noopener">studies</a> has pointed out that the brain does a lot of work in its spare time, the so-called idle state - wherein the brain does not appear to be thinking about anything at all - and that this is the time when it works at its hardest to find solutions to complex problems.
</p>
<p>
With time and advances in <a href="http://fakehost/articles/248680.php" title="What is neuroscience?" target="_blank">neuroscience</a>, it has become more and more clear to researchers that Freud <em>was</em> right and the mind, as well as the brain, do work unconsciously. In fact, it would be safe to say that what is consciously known to us is just the tip of a much larger iceberg, deeply submerged in unconscious waters.
</p>
<p>
But the exact moment at which information becomes known to us - or when the "tip of the iceberg" pierces through the water, and the unconscious becomes conscious - has been somewhat of a mystery, from a neuroscientific point of view.
</p>
<p>
In other words, we do not yet know when that intellectually satisfying "a-ha!" moment takes place, or what the biology is behind it. This is why a team of researchers at Columbia University in New York City, NY, set out to investigate this moment in more detail.
</p>
<p>
The scientists were led by Michael Shadlen, Ph.D., of Columbia University's Mortimer B. Zuckerman Mind Brain Behavior Institute, and the <a href="http://www.cell.com/current-biology/fulltext/S0960-9822(17)30784-4" target="_blank" rel="noopener">findings</a> were published in the journal <em>Current Biology.</em>
</p>
<h2>
The hypothesis
</h2>
<p>
Dr. Shadlen and colleagues started out from an interesting hypothesis, one which they derived from previous research on the neurobiological processes involved in decision-making.
</p>
<p>
As the authors explain, research conducted in both monkeys and humans shows that many of our decisions take place at a point when the brain "feels" as though it has gathered enough information, or when a critical level of information has been accumulated.
</p>
<p>
This process of making a decision once the brain has accumulated enough evidence bears the name of "bounded evidence accumulation." Reaching this threshold is important because, although the brain does not use <em>all</em> of the information available, it uses as much as is necessary to make a speedy yet accurate decision.
</p>
<p>
<strong>The researchers wondered whether or not this threshold is also responsible for our "eureka!" moments.</strong>
</p>
<p>
In Dr. Shadlen's words, "Could the moment when the brain believes it has accumulated enough evidence be tied to the person's awareness of having decided - that important 'a-ha!' moment?"
</p>
<h2>
Examining the 'a-ha!' moment
</h2>
<p>
To answer this question, the scientists asked five people to perform a "direction discrimination" task. In it, the participants looked at dots on a computer screen. The dots moved randomly, as grains of sand would when blown by the wind. The participants were asked to say in which direction the dots had moved.
</p>
<p>
The moment they "decided" which direction the dots seemed to be taking was considered to be the equivalent of the "a-ha!" moment.
</p>
<p>
In the center of the screen, there was a fixed point and a clock. The display also had two "choice targets" - namely, left or right - and these were the directions in which the participants had to decide that the dots had moved.
</p>
<p>
Shortly after the dots had stopped moving, the participants used an electronic, hand-held stylus to move the cursor in the direction that they thought the dots had moved.
</p>
<p>
To determine when the decision was made, the researchers used the technique called "mental chronometry" - that is, after they made their decision, the participants were asked to move the clock backward to the point when they felt that they had consciously done so.
</p>
<p>
"The moment in time indicated by the participants - this mental chronometry - was entirely subjective; it relied solely on their own estimation of how long it took them to make that decision," Dr. Shadlen says. "And because it was purely subjective, in principle it ought to be unverifiable."
</p>
<h2>
'A-ha' moment similar to making a decision
</h2>
<p>
However, by applying a mathematical model, the scientists were able to match these subjective decision times to the bounded evidence accumulation process.
</p>
<p>
<strong>The subjective decision times fit so well with what the scientists determined as the evidence accumulation threshold that they were able to predict the choices of four of the five participants.</strong>
</p>
<p>
"If the time reported to us by the participants was valid, we reasoned that it might be possible to predict the accuracy of the decision," explains Dr. Shadlen.
</p>
<p>
"We incorporated a kind of mathematical trick, based on earlier studies, which showed that the speed and accuracy of decisions were tied together by the same brain function." This "mathematical trick" was the evidence accumulation model.
</p>
<blockquote>
<p>
<span>"</span>Essentially, the act of becoming consciously aware of a decision conforms to the same process that the brain goes through to complete a decision, even a simple one - such as whether to turn left or right."
</p>
<p>
Michael Shadlen, Ph.D.
</p>
</blockquote>
<p>
In other words, the study shows that the conscious awareness of the "a-ha!" moment takes place precisely when the brain has reached that threshold of evidence accumulation.
</p>
<p>
The findings provide unique insights into the biology of consciousness, say the researchers, and they bring us closer to understanding the biological basis of decisions, ethics, and, generally, the human mind.
</p>
</div></article>
<article><div itemprop="articleBody" id="readability-page-1">&#13;
<header>&#13;
Neuroscience tells us that most of the work done by our brains happens on an unconscious level, but when does that "a-ha!" moment occur? And what happens during it? New research investigates.&#13;
</header>&#13;
<p><img data-src="https://cdn1.medicalnewstoday.com/content/images/articles/318/318674/hand-holding-brain-lightbulb.jpg" alt="hand holding brain lightbulb" src="https://cdn1.medicalnewstoday.com/content/images/articles/318/318674/hand-holding-brain-lightbulb.jpg"/><br/>&#13;
<em>A new study investigates when the 'a-ha!' moment takes place in the brain, and how similar it is to other brain processes.</em>&#13;
</p>&#13;
<p>&#13;
Many of us have noticed that we seem to get our best ideas when we're in the shower, or that we can find the answer to a difficult question when we least think about it.&#13;
</p>&#13;
<p>&#13;
A large body of neuroscientific <a href="http://journals.sagepub.com/doi/abs/10.1177/0956797612446024" target="_blank" rel="noopener">studies</a> has pointed out that the brain does a lot of work in its spare time, the so-called idle state - wherein the brain does not appear to be thinking about anything at all - and that this is the time when it works at its hardest to find solutions to complex problems.&#13;
</p>&#13;
<p>&#13;
With time and advances in <a href="http://fakehost/articles/248680.php" title="What is neuroscience?" target="_blank">neuroscience</a>, it has become more and more clear to researchers that Freud <em>was</em> right and the mind, as well as the brain, do work unconsciously. In fact, it would be safe to say that what is consciously known to us is just the tip of a much larger iceberg, deeply submerged in unconscious waters.&#13;
</p>&#13;
<p>&#13;
But the exact moment at which information becomes known to us - or when the "tip of the iceberg" pierces through the water, and the unconscious becomes conscious - has been somewhat of a mystery, from a neuroscientific point of view.&#13;
</p>&#13;
<p>&#13;
In other words, we do not yet know when that intellectually satisfying "a-ha!" moment takes place, or what the biology is behind it. This is why a team of researchers at Columbia University in New York City, NY, set out to investigate this moment in more detail.&#13;
</p>&#13;
&#13;
<p>&#13;
The scientists were led by Michael Shadlen, Ph.D., of Columbia University's Mortimer B. Zuckerman Mind Brain Behavior Institute, and the <a href="http://www.cell.com/current-biology/fulltext/S0960-9822(17)30784-4" target="_blank" rel="noopener">findings</a> were published in the journal <em>Current Biology.</em>&#13;
</p>&#13;
&#13;
<h2>&#13;
The hypothesis&#13;
</h2>&#13;
<p>&#13;
Dr. Shadlen and colleagues started out from an interesting hypothesis, one which they derived from previous research on the neurobiological processes involved in decision-making.&#13;
</p>&#13;
<p>&#13;
As the authors explain, research conducted in both monkeys and humans shows that many of our decisions take place at a point when the brain "feels" as though it has gathered enough information, or when a critical level of information has been accumulated.&#13;
</p>&#13;
&#13;
<p>&#13;
This process of making a decision once the brain has accumulated enough evidence bears the name of "bounded evidence accumulation." Reaching this threshold is important because, although the brain does not use <em>all</em> of the information available, it uses as much as is necessary to make a speedy yet accurate decision.&#13;
</p>&#13;
<p>&#13;
<strong>The researchers wondered whether or not this threshold is also responsible for our "eureka!" moments.</strong>&#13;
</p>&#13;
&#13;
<p>&#13;
In Dr. Shadlen's words, "Could the moment when the brain believes it has accumulated enough evidence be tied to the person's awareness of having decided - that important 'a-ha!' moment?"&#13;
</p>&#13;
&#13;
<h2>&#13;
Examining the 'a-ha!' moment&#13;
</h2>&#13;
<p>&#13;
To answer this question, the scientists asked five people to perform a "direction discrimination" task. In it, the participants looked at dots on a computer screen. The dots moved randomly, as grains of sand would when blown by the wind. The participants were asked to say in which direction the dots had moved.&#13;
</p>&#13;
<p>&#13;
The moment they "decided" which direction the dots seemed to be taking was considered to be the equivalent of the "a-ha!" moment.&#13;
</p>&#13;
<p>&#13;
In the center of the screen, there was a fixed point and a clock. The display also had two "choice targets" - namely, left or right - and these were the directions in which the participants had to decide that the dots had moved.&#13;
</p>&#13;
<p>&#13;
Shortly after the dots had stopped moving, the participants used an electronic, hand-held stylus to move the cursor in the direction that they thought the dots had moved.&#13;
</p>&#13;
<p>&#13;
To determine when the decision was made, the researchers used the technique called "mental chronometry" - that is, after they made their decision, the participants were asked to move the clock backward to the point when they felt that they had consciously done so.&#13;
</p>&#13;
&#13;
<p>&#13;
"The moment in time indicated by the participants - this mental chronometry - was entirely subjective; it relied solely on their own estimation of how long it took them to make that decision," Dr. Shadlen says. "And because it was purely subjective, in principle it ought to be unverifiable."&#13;
</p>&#13;
&#13;
<h2>&#13;
'A-ha' moment similar to making a decision&#13;
</h2>&#13;
<p>&#13;
However, by applying a mathematical model, the scientists were able to match these subjective decision times to the bounded evidence accumulation process.&#13;
</p>&#13;
<p>&#13;
<strong>The subjective decision times fit so well with what the scientists determined as the evidence accumulation threshold that they were able to predict the choices of four of the five participants.</strong>&#13;
</p>&#13;
<p>&#13;
"If the time reported to us by the participants was valid, we reasoned that it might be possible to predict the accuracy of the decision," explains Dr. Shadlen.&#13;
</p>&#13;
<p>&#13;
"We incorporated a kind of mathematical trick, based on earlier studies, which showed that the speed and accuracy of decisions were tied together by the same brain function." This "mathematical trick" was the evidence accumulation model.&#13;
</p>&#13;
<blockquote>&#13;
<p>&#13;
<span>"</span>Essentially, the act of becoming consciously aware of a decision conforms to the same process that the brain goes through to complete a decision, even a simple one - such as whether to turn left or right."&#13;
</p>&#13;
<p>&#13;
Michael Shadlen, Ph.D.&#13;
</p>&#13;
</blockquote>&#13;
<p>&#13;
In other words, the study shows that the conscious awareness of the "a-ha!" moment takes place precisely when the brain has reached that threshold of evidence accumulation.&#13;
</p>&#13;
<p>&#13;
The findings provide unique insights into the biology of consciousness, say the researchers, and they bring us closer to understanding the biological basis of decisions, ethics, and, generally, the human mind.&#13;
</p>&#13;
&#13;
</div></article>

View file

@ -1,5 +1,4 @@
<article><DIV id="readability-page-1">
<div>
<article><DIV id="readability-page-1"><div>
<h4 name="425a" id="425a" data-align="center"><em>Better Student Journalism</em></h4>
@ -29,9 +28,8 @@
<figure name="06e8" id="06e8">
<div>
<p><img data-image-id="1*AzYWbe4cZkMMEUbfRjysLQ.png" data-width="1000" data-height="500" data-action="zoom" data-action-value="1*AzYWbe4cZkMMEUbfRjysLQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*AzYWbe4cZkMMEUbfRjysLQ.png">
</p>
</div>
<p><img data-image-id="1*AzYWbe4cZkMMEUbfRjysLQ.png" data-width="1000" data-height="500" data-action="zoom" data-action-value="1*AzYWbe4cZkMMEUbfRjysLQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*AzYWbe4cZkMMEUbfRjysLQ.png"/>
</p></div>
<figcaption>topleftpixel.com</figcaption>
</figure>
<p name="930f" id="930f">I started discovering beautiful things the <a href="http://wvs.topleftpixel.com/13/02/06/timelapse-strips-homewood.htm" data-href="http://wvs.topleftpixel.com/13/02/06/timelapse-strips-homewood.htm" rel="nofollow" target="_blank">web could do with images</a>:
@ -53,9 +51,8 @@
<figure name="12da" id="12da">
<div>
<p><img data-image-id="1*d0Hp6KlzyIcGHcL6to1sYQ.png" data-width="868" data-height="451" data-action="zoom" data-action-value="1*d0Hp6KlzyIcGHcL6to1sYQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*d0Hp6KlzyIcGHcL6to1sYQ.png">
</p>
</div>
<p><img data-image-id="1*d0Hp6KlzyIcGHcL6to1sYQ.png" data-width="868" data-height="451" data-action="zoom" data-action-value="1*d0Hp6KlzyIcGHcL6to1sYQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*d0Hp6KlzyIcGHcL6to1sYQ.png"/>
</p></div>
</figure>
<h3 name="e2f0" id="e2f0">We dont know what we dont know</h3>
<p name="8263" id="8263">We spent much of the rest of the school year asking “what should we be
@ -103,9 +100,8 @@
<figure name="79ed" id="79ed">
<div>
<p><img data-image-id="1*_9KYIFrk_PqWFgptsMDeww.png" data-width="1086" data-height="500" data-action="zoom" data-action-value="1*_9KYIFrk_PqWFgptsMDeww.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*_9KYIFrk_PqWFgptsMDeww.png">
</p>
</div>
<p><img data-image-id="1*_9KYIFrk_PqWFgptsMDeww.png" data-width="1086" data-height="500" data-action="zoom" data-action-value="1*_9KYIFrk_PqWFgptsMDeww.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*_9KYIFrk_PqWFgptsMDeww.png"/>
</p></div>
<figcaption>From our 2011 research</figcaption>
</figure>
<h3 name="8d0c" id="8d0c">Common problems in student newsrooms (2013)</h3>
@ -158,9 +154,8 @@
<figure name="416f" id="416f">
<div>
<p><img data-image-id="1*Vh2MpQjqjPkzYJaaWExoVg.png" data-width="624" data-height="560" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*Vh2MpQjqjPkzYJaaWExoVg.png">
</p>
</div>
<p><img data-image-id="1*Vh2MpQjqjPkzYJaaWExoVg.png" data-width="624" data-height="560" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*Vh2MpQjqjPkzYJaaWExoVg.png"/>
</p></div>
<figcaption><strong>We designed many of these slides to help explain to ourselves what we were doing</strong>
</figcaption>
</figure>
@ -170,24 +165,21 @@
is a print issue. <em>However…</em>
</p>
<ol>
<li name="91b5" id="91b5">
<strong>The handoff</strong>
<br>Problems arise because web editors are given roles that absolve the rest
<li name="91b5" id="91b5"><strong>The handoff</strong>
<br/>Problems arise because web editors are given roles that absolve the rest
of the editors from thinking about the web. All editors should be involved
in the process of story development for the web. While its a good idea
to have one specific editor manage the website, contributors and editors
should all play with and learn about the web. Instead of “can you make
a computer do XYZ for me?”, we should be saying “can you show me how to
make a computer do XYZ?”</li>
<li name="6448" id="6448">
<strong>Not just social media<br></strong>A
<li name="6448" id="6448"><strong>Not just social media<br/></strong>A
web editor could do much more than simply being in charge of the social
media accounts for the student paper. Their responsibility could include
teaching all other editors to be listening to whats happening online.
The web editor can take advantage of live information to change how the
student newsroom reports news in real time.</li>
<li name="ab30" id="ab30">
<strong>Web (interactive) editor<br></strong>The
<li name="ab30" id="ab30"><strong>Web (interactive) editor<br/></strong>The
goal of having a web editor should be for someone to build and tell stories
that take full advantage of the web as their medium. Too often the webs
interactivity is not considered when developing the story. The web then
@ -210,17 +202,15 @@
<figure name="7aab" id="7aab">
<div>
<p><img data-image-id="1*2Ln_DmC95Xpz6LzgywkcFQ.png" data-width="1315" data-height="718" data-action="zoom" data-action-value="1*2Ln_DmC95Xpz6LzgywkcFQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*2Ln_DmC95Xpz6LzgywkcFQ.png">
</p>
</div>
<p><img data-image-id="1*2Ln_DmC95Xpz6LzgywkcFQ.png" data-width="1315" data-height="718" data-action="zoom" data-action-value="1*2Ln_DmC95Xpz6LzgywkcFQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*2Ln_DmC95Xpz6LzgywkcFQ.png"/>
</p></div>
<figcaption>The current Open Journalism site was a few years in the making. This was
an original launch page we use in 2012</figcaption>
</figure>
<h3 name="08f5" id="08f5">What we know</h3>
<ul>
<li name="f7fe" id="f7fe">
<strong>New process</strong>
<br>Our rough research has told us newsrooms need to be reorganized. This
<li name="f7fe" id="f7fe"><strong>New process</strong>
<br/>Our rough research has told us newsrooms need to be reorganized. This
includes every part of the newsrooms workflow: from where a story and
its information comes from, to thinking of every word, pixel, and interaction
the reader will have with your stories. If I was a photo editor that wanted
@ -232,18 +222,16 @@
“digital manifestos”, its about being curious enough that youll want
to to continue experimenting with your process until youve found one that
fits your newsrooms needs.</li>
<li name="d757" id="d757">
<strong>More (remote) mentorship</strong>
<br>Lack of mentorship is still a big problem. <a href="http://www.google.com/get/journalismfellowship/" data-href="http://www.google.com/get/journalismfellowship/" rel="nofollow" target="_blank">Googles fellowship program</a> is great. The fact that it
<li name="d757" id="d757"><strong>More (remote) mentorship</strong>
<br/>Lack of mentorship is still a big problem. <a href="http://www.google.com/get/journalismfellowship/" data-href="http://www.google.com/get/journalismfellowship/" rel="nofollow" target="_blank">Googles fellowship program</a> is great. The fact that it
only caters to United States students isnt. There are only a handful of
internships in Canada where students interested in journalism can get experience
writing code and building interactive stories. Were OK with this for now,
as we expect internships and mentorship over the next 5 years between professional
newsrooms and student newsrooms will only increase. Its worth noting that
some of that mentorship will likely be done remotely.</li>
<li name="a9b8" id="a9b8">
<strong>Changing a newsroom culture</strong>
<br>Skill diversity needs to change. We encourage every student newsroom we
<li name="a9b8" id="a9b8"><strong>Changing a newsroom culture</strong>
<br/>Skill diversity needs to change. We encourage every student newsroom we
talk to, to start building a partnership with their schools Computer Science
department. It will take some work, but youll find there are many CS undergrads
that love playing with web technologies, and using data to tell stories.
@ -256,35 +244,30 @@
</ul>
<h3 name="a67e" id="a67e">What we dont know</h3>
<ul>
<li name="7320" id="7320">
<strong>Sharing curiosity for the web</strong>
<br>We dont know how to best teach students about the web. Its not efficient
<li name="7320" id="7320"><strong>Sharing curiosity for the web</strong>
<br/>We dont know how to best teach students about the web. Its not efficient
for us to teach coding classes. We do go into newsrooms and get them running
their first code exercises, but if someone wants to learn to program, we
can only provide the initial push and curiosity. We will be trying out
“labs” with a few schools next school year to hopefully get a better idea
of how to teach students about the web.</li>
<li name="8b23" id="8b23">
<strong>Business</strong>
<br>We dont know how to convince the business side of student papers that
<li name="8b23" id="8b23"><strong>Business</strong>
<br/>We dont know how to convince the business side of student papers that
they should invest in the web. At the very least were able to explain
that having students graduate with their current skill set is painful in
the current job market.</li>
<li name="191e" id="191e">
<strong>The future</strong>
<br>We dont know what journalism or the web will be like in 10 years, but
<li name="191e" id="191e"><strong>The future</strong>
<br/>We dont know what journalism or the web will be like in 10 years, but
we can start encouraging students to keep an open mind about the skills
theyll need. Were less interested in preparing students for the current
newsroom climate, than we are in teaching students to have the ability
to learn new tools quickly as they come and go.</li>
</ul>
</div>
<div>
</div><div>
<h3 name="009a" id="009a">What were trying to share with others</h3>
<ul>
<li name="8bfa" id="8bfa">
<strong>A concise guide to building stories for the web</strong>
<br>There are too many options to get started. We hope to provide an opinionated
<li name="8bfa" id="8bfa"><strong>A concise guide to building stories for the web</strong>
<br/>There are too many options to get started. We hope to provide an opinionated
guide that follows both our experiences, research, and observations from
trying to teach our peers.</li>
</ul>
@ -300,9 +283,8 @@
<figure name="7ed3" id="7ed3">
<div>
<p><img data-image-id="1*bXaR_NBJdoHpRc8lUWSsow.png" data-width="686" data-height="400" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*bXaR_NBJdoHpRc8lUWSsow.png">
</p>
</div>
<p><img data-image-id="1*bXaR_NBJdoHpRc8lUWSsow.png" data-width="686" data-height="400" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*bXaR_NBJdoHpRc8lUWSsow.png"/>
</p></div>
<figcaption>2012</figcaption>
</figure>
<h3 name="ee1b" id="ee1b">This is a start</h3>
@ -323,9 +305,8 @@
<figure name="4c68" id="4c68">
<div>
<p><img data-image-id="1*lulfisQxgSQ209vPHMAifg.png" data-width="950" data-height="534" data-action="zoom" data-action-value="1*lulfisQxgSQ209vPHMAifg.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*lulfisQxgSQ209vPHMAifg.png">
</p>
</div>
<p><img data-image-id="1*lulfisQxgSQ209vPHMAifg.png" data-width="950" data-height="534" data-action="zoom" data-action-value="1*lulfisQxgSQ209vPHMAifg.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*lulfisQxgSQ209vPHMAifg.png"/>
</p></div>
</figure>
<p name="2c5c" id="2c5c"><strong>Lets talk. Lets listen.</strong>
@ -340,5 +321,4 @@
<strong><em>manifesto™©</em>
</strong><em> we just think its pretty cool to share what weve learned so far, and hope youll do the same. Were all in this together.</em>
</p>
</div>
</DIV></article>
</div></DIV></article>

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,6 @@
<article><DIV id="readability-page-1">
<div>
<article><DIV id="readability-page-1"><div>
<div>
<p><a rel="noopener" href="http://fakehost/@johncwelch?source=post_page-----d146a92473a1----------------------" target="_blank"><img alt="John C. Welch" src="https://miro.medium.com/fit/c/96/96/0*qPHQu8WqsC6cV_ud.jpg" width="48" height="48"></a>
<p><a rel="noopener" href="http://fakehost/@johncwelch?source=post_page-----d146a92473a1----------------------" target="_blank"><img alt="John C. Welch" src="https://miro.medium.com/fit/c/96/96/0*qPHQu8WqsC6cV_ud.jpg" width="48" height="48"/></a>
</p>
</div>
@ -10,7 +9,7 @@
</p>
<blockquote>
<p id="df70">
dont preach to me<br>
dont preach to me<br/>
Mr. integrity
</p>
</blockquote>
@ -29,8 +28,7 @@
<p id="ae07">
That, readers, is “The Big Lie”. It is a lie so big that if one ponders the reality of it, as I am going to, one wonders why anyone would believe it. It is a lie and it is one we should stop telling.
</p>
</div>
<div>
</div><div>
<p id="a02f">
Samanthas points (I assume you read it, for you are smart people who know the importance of such things) are fairly clear:
</p>
@ -55,8 +53,7 @@
<p id="3bc7">
If you really believe that, you are the most preciously ignorant person in the world, and can I have your seriously charmed life.
</p>
</div>
<div>
</div><div>
<p id="0fb2">
The response, from all quarters, including Marco, someone who is so sensitive to criticism that the word “useless” is <a href="http://www.marco.org/2011/03/30/here-is-a-tip-for-all-the-non-developers-out" target="_blank" rel="noopener nofollow">enough to shut him down</a>, who <a href="https://twitter.com/marcoarment/status/641330113934700544" target="_blank" rel="noopener nofollow">blocked a friend of mine for the high crime of pointing out that his review of podcasting mics centered around higher priced gear and ignored folks without the scratch, who might not be ready for such things</a>, is, in a single word, disgusting. Vomitous even.
</p>
@ -479,7 +476,7 @@
</p>
<figure>
<div>
<p><img alt="Image for post" src="https://miro.medium.com/max/796/1*kbPh7V97eyRodSOw2-ALDw.png" width="398" height="542" srcset="https://miro.medium.com/max/552/1*kbPh7V97eyRodSOw2-ALDw.png 276w, https://miro.medium.com/max/796/1*kbPh7V97eyRodSOw2-ALDw.png 398w" sizes="398px" data-old-src="https://miro.medium.com/max/44/1*kbPh7V97eyRodSOw2-ALDw.png?q=20">
<p><img alt="Image for post" src="https://miro.medium.com/max/796/1*kbPh7V97eyRodSOw2-ALDw.png" width="398" height="542" srcset="https://miro.medium.com/max/552/1*kbPh7V97eyRodSOw2-ALDw.png 276w, https://miro.medium.com/max/796/1*kbPh7V97eyRodSOw2-ALDw.png 398w" sizes="398px" data-old-src="https://miro.medium.com/max/44/1*kbPh7V97eyRodSOw2-ALDw.png?q=20"/>
</p>
</div>
</figure>
@ -576,7 +573,7 @@
</p>
<figure>
<div>
<p><img alt="Image for post" src="https://miro.medium.com/max/1388/1*Fpb2Bvdx7Q-688vdm-NdkQ.png" width="694" height="771" srcset="https://miro.medium.com/max/552/1*Fpb2Bvdx7Q-688vdm-NdkQ.png 276w, https://miro.medium.com/max/1104/1*Fpb2Bvdx7Q-688vdm-NdkQ.png 552w, https://miro.medium.com/max/1280/1*Fpb2Bvdx7Q-688vdm-NdkQ.png 640w, https://miro.medium.com/max/1388/1*Fpb2Bvdx7Q-688vdm-NdkQ.png 694w" sizes="694px" data-old-src="https://miro.medium.com/max/54/1*Fpb2Bvdx7Q-688vdm-NdkQ.png?q=20">
<p><img alt="Image for post" src="https://miro.medium.com/max/1388/1*Fpb2Bvdx7Q-688vdm-NdkQ.png" width="694" height="771" srcset="https://miro.medium.com/max/552/1*Fpb2Bvdx7Q-688vdm-NdkQ.png 276w, https://miro.medium.com/max/1104/1*Fpb2Bvdx7Q-688vdm-NdkQ.png 552w, https://miro.medium.com/max/1280/1*Fpb2Bvdx7Q-688vdm-NdkQ.png 640w, https://miro.medium.com/max/1388/1*Fpb2Bvdx7Q-688vdm-NdkQ.png 694w" sizes="694px" data-old-src="https://miro.medium.com/max/54/1*Fpb2Bvdx7Q-688vdm-NdkQ.png?q=20"/>
</p>
</div>
</figure>
@ -629,7 +626,7 @@
</p>
<figure>
<div>
<p><img alt="Image for post" src="https://miro.medium.com/max/616/1*lvOySry5gHHJfGU_bQXrzA.png" width="308" height="269" srcset="https://miro.medium.com/max/552/1*lvOySry5gHHJfGU_bQXrzA.png 276w, https://miro.medium.com/max/616/1*lvOySry5gHHJfGU_bQXrzA.png 308w" sizes="308px" data-old-src="https://miro.medium.com/max/60/1*lvOySry5gHHJfGU_bQXrzA.png?q=20">
<p><img alt="Image for post" src="https://miro.medium.com/max/616/1*lvOySry5gHHJfGU_bQXrzA.png" width="308" height="269" srcset="https://miro.medium.com/max/552/1*lvOySry5gHHJfGU_bQXrzA.png 276w, https://miro.medium.com/max/616/1*lvOySry5gHHJfGU_bQXrzA.png 308w" sizes="308px" data-old-src="https://miro.medium.com/max/60/1*lvOySry5gHHJfGU_bQXrzA.png?q=20"/>
</p>
</div>
</figure>
@ -639,8 +636,7 @@
<p id="bf45">
Great Feminists are often tools.
</p>
</div>
<div>
</div><div>
<p id="45bb">
Luckily, I hope, the people who get Samanthas point also started chiming in (and you get 100% of the women commenting here that Ive seen):
</p>
@ -664,8 +660,7 @@
Catching up on the debate, and agreeing with Harrys remark. (Enjoyed your article, Samantha, and got your point.)
</p>
</blockquote>
</div>
<div>
</div><div>
<p id="6134">
I would like to say Im surprised at the reaction to Samanthas article, but Im not. In spite of his loud declarations of support for The Big Lie, Marco Arment is as bad at any form of criticism that he hasnt already approved as a very insecure tween. An example from 2011: <a href="http://www.businessinsider.com/marco-arment-2011-9" target="_blank" rel="noopener nofollow">http://www.businessinsider.com/marco-arment-2011-9</a>
</p>
@ -690,5 +685,4 @@
<p id="9710">
So I hope she stays, but if she goes, I understand. For what its worth, I dont think shes wrong either way.
</p>
</div>
</DIV></article>
</div></DIV></article>

View file

@ -1,19 +1,19 @@
<article><DIV id="readability-page-1"><article>
<h2>Test document title</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</article></DIV></article>
<article><DIV id="readability-page-1"><article>&#13;
<h2>Test document title</h2>&#13;
<p>&#13;
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod&#13;
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,&#13;
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo&#13;
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse&#13;
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non&#13;
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.&#13;
</p>&#13;
<p>&#13;
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod&#13;
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,&#13;
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo&#13;
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse&#13;
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non&#13;
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.&#13;
</p>&#13;
</article></DIV></article>

View file

@ -1,50 +1,50 @@
<article><DIV id="readability-page-1">
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy
eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam
voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet
clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit
amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.
Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor
sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed
diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.
Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor
sit amet.</p>
<h2>Secondary header</h2>
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy
eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam
voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet
clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit
amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.
Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor
sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed
diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.
Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor
sit amet.</p>
<h2>Secondary header</h2>
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy
eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam
voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet
clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit
amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.
Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor
sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed
diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.
Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor
sit amet.</p>
</DIV></article>
<article><DIV id="readability-page-1">&#13;
&#13;
&#13;
&#13;
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy&#13;
eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam&#13;
voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet&#13;
clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit&#13;
amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam&#13;
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,&#13;
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.&#13;
Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor&#13;
sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed&#13;
diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,&#13;
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.&#13;
Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor&#13;
sit amet.</p>&#13;
&#13;
<h2>Secondary header</h2>&#13;
&#13;
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy&#13;
eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam&#13;
voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet&#13;
clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit&#13;
amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam&#13;
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,&#13;
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.&#13;
Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor&#13;
sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed&#13;
diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,&#13;
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.&#13;
Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor&#13;
sit amet.</p>&#13;
&#13;
<h2>Secondary header</h2>&#13;
&#13;
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy&#13;
eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam&#13;
voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet&#13;
clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit&#13;
amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam&#13;
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,&#13;
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.&#13;
Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor&#13;
sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed&#13;
diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,&#13;
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.&#13;
Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor&#13;
sit amet.</p>&#13;
</DIV></article>

View file

@ -1,105 +1,96 @@
<article><DIV role="main" id="readability-page-1">
<div id="intro">
<p>Its easier than ever to personalize Firefox and make it work the way
you do.
<br>No other browser gives you so much choice and flexibility.</p>
<div id="flexible-top-animation">
<p><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/animations/flexible-top-fallback.c960365ba781.png" alt=""></p>
</div>
</div>
<div id="designed">
<div id="designed-copy">
<h2>Designed to <br>be redesigned</h2>
<p>Get fast and easy access to the features you use most in the new menu.
Open the “Customize” panel to add, move or remove any button you want.
Keep your favorite features — add-ons, private browsing, Sync and more
— one quick click away.</p>
<p><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/designed-redesigned.fbd3ee9402e6.png" alt="" id="designed-mobile" data-src="//mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/designed-redesigned.fbd3ee9402e6.png">
</p>
</div>
<div id="flexible-bottom-animation">
<p><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/animations/flexible-bottom-fallback.cafd48a3d0a4.png" alt=""></p>
</div>
</div>
<div id="customize">
<h2>More ways to customize</h2>
<ul id="customizer-list" role="tablist">
<li> <a id="customize-themes" href="#themes">
Themes
</a>
</li>
<li> <a id="customize-addons" href="#add-ons">
Add-ons
</a>
</li>
<li> <a id="customize-awesomebar" href="#awesome-bar">
Awesome Bar
</a>
</li>
</ul>
</div>
<div id="customizers-wrapper">
<div id="themes">
<div>
<h3>Themes</h3>
<p>Make Firefox match your style. Choose from thousands of themes and dress
up your browser with a single click.</p>
<p><a rel="external" href="https://addons.mozilla.org/firefox/themes/" target="_blank">Try it now</a>
<br> <a rel="external" href="https://support.mozilla.org/kb/use-themes-change-look-of-firefox" target="_blank">Learn more</a>
</p>
</div> <p><a href="#add-ons" role="button">Next</a></p>
<p><img id="theme-demo" src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/theme-red.61611c5734ab.png" alt="Preview of the currently selected theme">
</p>
</div>
<div id="add-ons">
<div>
<h3>Add-ons</h3>
<p><a href="#awesome-bar" role="button">Next</a></p>
<p>Add-ons are like apps that you install to add features to Firefox. They
let you compare prices, check the weather, listen to music, send a tweet
and more.</p>
<ul>
<li>Read the latest news &amp; blogs</li>
<li>Manage your downloads</li>
<li>Watch videos &amp; view photos</li>
</ul> <p><a rel="external" href="https://addons.mozilla.org/firefox/extensions/?sort=featured" target="_blank">Here are a few of our favorites</a>
<br> <a rel="external" href="https://support.mozilla.org/kb/find-and-install-add-ons-add-features-to-firefox" target="_blank">Learn more</a>
</p>
</div>
<p><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/add-ons.63a4b761f822.png" alt="">
</p>
</div>
<div id="awesome-bar">
<div>
<h3>Awesome Bar</h3>
<p><a href="#themes" role="button">Next</a></p>
<p>The Awesome Bar learns as you browse to make your version of Firefox unique.
Find and return to your favorite sites without having to remember a URL.</p>
<p><a rel="external" href="https://support.mozilla.org/kb/awesome-bar-find-your-bookmarks-history-and-tabs" target="_blank">See what it can do for you</a>
</p>
</div>
<p><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/awesome-bar.437df162126c.png" alt="Firefox Awesome Bar">
</p>
</div>
</div>
<section id="sync" data-ga-label="Keep your Firefox in Sync">
</section>
</DIV></article>
<article><DIV role="main" id="readability-page-1">&#13;
<div id="intro">&#13;
&#13;
&#13;
<p>Its easier than ever to personalize Firefox and make it work the way&#13;
you do.&#13;
<br/>No other browser gives you so much choice and flexibility.</p>&#13;
<div id="flexible-top-animation">&#13;
<p><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/animations/flexible-top-fallback.c960365ba781.png" alt=""/></p>&#13;
</div>&#13;
</div>&#13;
<div id="designed">&#13;
<div id="designed-copy">&#13;
<h2>Designed to <br/>be redesigned</h2>&#13;
&#13;
<p>Get fast and easy access to the features you use most in the new menu.&#13;
Open the “Customize” panel to add, move or remove any button you want.&#13;
Keep your favorite features — add-ons, private browsing, Sync and more&#13;
— one quick click away.</p>&#13;
<p><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/designed-redesigned.fbd3ee9402e6.png" alt="" id="designed-mobile" data-src="//mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/designed-redesigned.fbd3ee9402e6.png"/>&#13;
</p></div>&#13;
<div id="flexible-bottom-animation">&#13;
<p><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/animations/flexible-bottom-fallback.cafd48a3d0a4.png" alt=""/></p>&#13;
</div>&#13;
</div>&#13;
<div id="customize">&#13;
<h2>More ways to customize</h2>&#13;
&#13;
<ul id="customizer-list" role="tablist">&#13;
<li> <a id="customize-themes" href="#themes">&#13;
&#13;
Themes&#13;
</a>&#13;
&#13;
</li>&#13;
<li> <a id="customize-addons" href="#add-ons">&#13;
&#13;
Add-ons&#13;
</a>&#13;
&#13;
</li>&#13;
<li> <a id="customize-awesomebar" href="#awesome-bar">&#13;
&#13;
Awesome Bar&#13;
</a>&#13;
&#13;
</li>&#13;
</ul>&#13;
</div>&#13;
<div id="customizers-wrapper">&#13;
<div id="themes">&#13;
<div>&#13;
<h3>Themes</h3>&#13;
&#13;
<p>Make Firefox match your style. Choose from thousands of themes and dress&#13;
up your browser with a single click.</p>&#13;
<p><a rel="external" href="https://addons.mozilla.org/firefox/themes/" target="_blank">Try it now</a>&#13;
&#13;
<br/> <a rel="external" href="https://support.mozilla.org/kb/use-themes-change-look-of-firefox" target="_blank">Learn more</a>&#13;
&#13;
</p></div> <p><a href="#add-ons" role="button">Next</a></p><p><img id="theme-demo" src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/theme-red.61611c5734ab.png" alt="Preview of the currently selected theme"/>&#13;
</p>&#13;
</div>&#13;
<div id="add-ons">&#13;
<div>&#13;
<h3>Add-ons</h3>&#13;
<p><a href="#awesome-bar" role="button">Next</a></p><p>Add-ons are like apps that you install to add features to Firefox. They&#13;
let you compare prices, check the weather, listen to music, send a tweet&#13;
and more.</p>&#13;
<ul>&#13;
<li>Read the latest news &amp; blogs</li>&#13;
<li>Manage your downloads</li>&#13;
<li>Watch videos &amp; view photos</li>&#13;
</ul> <p><a rel="external" href="https://addons.mozilla.org/firefox/extensions/?sort=featured" target="_blank">Here are a few of our favorites</a>&#13;
&#13;
<br/> <a rel="external" href="https://support.mozilla.org/kb/find-and-install-add-ons-add-features-to-firefox" target="_blank">Learn more</a>&#13;
&#13;
</p></div>&#13;
&#13;
<p><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/add-ons.63a4b761f822.png" alt=""/>&#13;
</p>&#13;
</div>&#13;
<div id="awesome-bar">&#13;
<div>&#13;
<h3>Awesome Bar</h3>&#13;
<p><a href="#themes" role="button">Next</a></p><p>The Awesome Bar learns as you browse to make your version of Firefox unique.&#13;
Find and return to your favorite sites without having to remember a URL.</p>&#13;
<p><a rel="external" href="https://support.mozilla.org/kb/awesome-bar-find-your-bookmarks-history-and-tabs" target="_blank">See what it can do for you</a>&#13;
</p></div>&#13;
<p><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/awesome-bar.437df162126c.png" alt="Firefox Awesome Bar"/>&#13;
</p>&#13;
</div>&#13;
</div>&#13;
&#13;
&#13;
</DIV></article>

View file

@ -7,7 +7,7 @@
<ul>
<li>
<a href="https://www.youtube.com/watch?v=1R9_WdXwUsE" rel="external" target="_blank">
<img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-webide.16763db341cb.jpg" alt="Screenshot">
<img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-webide.16763db341cb.jpg" alt="Screenshot"/>
</a>
<h2>WebIDE</h2>
<p>Develop, deploy and debug Firefox OS apps directly in your browser, or on a Firefox OS device, with this tool that replaces App Manager.</p>
@ -16,7 +16,7 @@
</li>
<li>
<a href="https://www.youtube.com/watch?v=eH0R10Ga4Hs" rel="external" target="_blank">
<img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-valence.251f9def4d8d.jpg" alt="Screenshot">
<img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-valence.251f9def4d8d.jpg" alt="Screenshot"/>
</a>
<h2>Valence</h2>
<p>Develop and debug your apps across multiple browsers and devices with this powerful extension that comes pre-installed with Firefox Developer Edition.</p>
@ -40,7 +40,7 @@
<ul>
<li>
<a href="https://www.youtube.com/watch?v=eQqNfkqIJdw" rel="external" target="_blank">
<img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-inspector.c791bf1f1a59.jpg" alt="Screenshot">
<img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-inspector.c791bf1f1a59.jpg" alt="Screenshot"/>
</a>
<h2>Page Inspector</h2>
<p>Examine the HTML and CSS of any Web page and easily modify the structure and layout of a page.</p>
@ -49,7 +49,7 @@
</li>
<li>
<a href="https://www.youtube.com/watch?v=iEDk8o9ehlw" rel="external" target="_blank">
<img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-console.42666aaf6d03.jpg" alt="Screenshot">
<img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-console.42666aaf6d03.jpg" alt="Screenshot"/>
</a>
<h2>Web Console</h2>
<p>See logged information associated with a Web page and use Web Console to interact with Web pages using JavaScript.</p>
@ -58,7 +58,7 @@
</li>
<li>
<a href="https://www.youtube.com/watch?v=OS4AxYFLCIE" rel="external" target="_blank">
<img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-debugger.02ed86fb0c9f.jpg" alt="Screenshot">
<img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-debugger.02ed86fb0c9f.jpg" alt="Screenshot"/>
</a>
<h2>JavaScript Debugger</h2>
<p>Step through JavaScript code and examine or modify its state to help track down bugs.</p>
@ -67,7 +67,7 @@
</li>
<li>
<a href="https://www.youtube.com/watch?v=w4zSG53Qlbk" rel="external" target="_blank">
<img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-network.740d6082b3f6.jpg" alt="Screenshot">
<img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-network.740d6082b3f6.jpg" alt="Screenshot"/>
</a>
<h2>Network Monitor</h2>
<p>See all the network requests your browser makes, how long each request takes and details of each request.</p>
@ -76,7 +76,7 @@
</li>
<li>
<a href="https://www.youtube.com/watch?v=R_qDaLQ8ghg" rel="external" target="_blank">
<img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-webaudio.a10ebc48d017.jpg" alt="Screenshot">
<img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-webaudio.a10ebc48d017.jpg" alt="Screenshot"/>
</a>
<h2>Web Audio Editor</h2>
<p>Inspect and interact with Web Audio API in real time to ensure that all audio nodes are connected in the way you expect.</p>
@ -85,7 +85,7 @@
</li>
<li>
<a href="https://www.youtube.com/watch?v=3kdBvvIZIqU" rel="external" target="_blank">
<img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-style-editor.87c5d2017506.jpg" alt="Screenshot">
<img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-style-editor.87c5d2017506.jpg" alt="Screenshot"/>
</a>
<h2>Style Editor</h2>
<p>View and edit CSS styles associated with a Web page, create new ones and apply existing CSS stylesheets to any page.</p>
@ -94,4 +94,4 @@
</li>
</ul>
</div>
</DIV></article>
</DIV></article>

View file

@ -2,8 +2,8 @@
<section itemprop="articleBody" data-aop="articlebody">
<p>
<span data-aop="image">
<span data-attrib="Provided by Business Insider Inc" data-caption='&lt;span style="font-size:13px;"&gt;Nintendo/Apple&lt;/span&gt;' data-id="55" data-m='{"i":55,"p":52,"n":"openModal","t":"articleImages","o":3}'>
<img alt='&lt;span style="font-size:13px;"&gt;Nintendo/Apple&lt;/span&gt;' data-src='{"default":{"load":"default","w":"73","h":"41","src":"//img-s-msn-com.akamaized.net/tenant/amp/entityid/AAkk5fh.img?h=410&amp;w=728&amp;m=6&amp;q=60&amp;o=f&amp;l=f&amp;x=1162&amp;y=540"},"size3column":{"load":"default","w":"62","h":"35","src":"//img-s-msn-com.akamaized.net/tenant/amp/entityid/AAkk5fh.img?h=351&amp;w=624&amp;m=6&amp;q=60&amp;o=f&amp;l=f&amp;x=1162&amp;y=540"},"size2column":{"load":"default","w":"62","h":"35","src":"//img-s-msn-com.akamaized.net/tenant/amp/entityid/AAkk5fh.img?h=351&amp;w=624&amp;m=6&amp;q=60&amp;o=f&amp;l=f&amp;x=1162&amp;y=540"}}' src="http://img-s-msn-com.akamaized.net/tenant/amp/entityid/AAkk5fh.img?h=820&amp;w=1456&amp;m=6&amp;q=60&amp;o=f&amp;l=f&amp;x=1162&amp;y=540" data-initial-set="true">
<span data-attrib="Provided by Business Insider Inc" data-caption="&lt;span style=&quot;font-size:13px;&quot;&gt;Nintendo/Apple&lt;/span&gt;" data-id="55" data-m="{&quot;i&quot;:55,&quot;p&quot;:52,&quot;n&quot;:&quot;openModal&quot;,&quot;t&quot;:&quot;articleImages&quot;,&quot;o&quot;:3}">
<img alt="&lt;span style=&quot;font-size:13px;&quot;&gt;Nintendo/Apple&lt;/span&gt;" data-src="{&quot;default&quot;:{&quot;load&quot;:&quot;default&quot;,&quot;w&quot;:&quot;73&quot;,&quot;h&quot;:&quot;41&quot;,&quot;src&quot;:&quot;//img-s-msn-com.akamaized.net/tenant/amp/entityid/AAkk5fh.img?h=410&amp;w=728&amp;m=6&amp;q=60&amp;o=f&amp;l=f&amp;x=1162&amp;y=540&quot;},&quot;size3column&quot;:{&quot;load&quot;:&quot;default&quot;,&quot;w&quot;:&quot;62&quot;,&quot;h&quot;:&quot;35&quot;,&quot;src&quot;:&quot;//img-s-msn-com.akamaized.net/tenant/amp/entityid/AAkk5fh.img?h=351&amp;w=624&amp;m=6&amp;q=60&amp;o=f&amp;l=f&amp;x=1162&amp;y=540&quot;},&quot;size2column&quot;:{&quot;load&quot;:&quot;default&quot;,&quot;w&quot;:&quot;62&quot;,&quot;h&quot;:&quot;35&quot;,&quot;src&quot;:&quot;//img-s-msn-com.akamaized.net/tenant/amp/entityid/AAkk5fh.img?h=351&amp;w=624&amp;m=6&amp;q=60&amp;o=f&amp;l=f&amp;x=1162&amp;y=540&quot;}}" src="http://img-s-msn-com.akamaized.net/tenant/amp/entityid/AAkk5fh.img?h=820&amp;w=1456&amp;m=6&amp;q=60&amp;o=f&amp;l=f&amp;x=1162&amp;y=540" data-initial-set="true"/>
</span>
<span>
<span>© Provided by Business Insider Inc</span>
@ -16,7 +16,7 @@
<p>The name and basic idea might sound like one of those endless score attack games like "Temple Run," but that's not the case. "Super Mario Run" is divided into hand-crafted levels with a clear end-point like any other Mario game, meaning you're essentially getting the Mario experience for $10 without needing to control his movement.</p>
<p>$10 might seem like a bit much compared to the $0 people pay for most mobile games, but it's possible the game has $10 worth of levels to play in it. It's also not iPhone exclusive, but the Android version will launch at a later, currently unknown date. </p>
<p>To see "Super Mario Run" in action, check out the footage below:</p>
<div><iframe allowfullscreen="" src="https://www.youtube.com/embed/E39ychZKnDI" frameborder="0" width="100%" height="100%"></iframe></div>
</section>
</article></DIV></article>
</article></DIV></article>

View file

@ -23,4 +23,4 @@
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</article></DIV></article>
</article></DIV></article>

View file

@ -16,9 +16,9 @@
<figure id="media-100000004869232" data-media-action="modal" itemprop="associatedMedia" itemscope="" itemid="https://static01.nyt.com/images/2017/01/14/world/13SUDAN-1/13SUDAN-1-master768.jpg" itemtype="http://schema.org/ImageObject" aria-label="media" role="group">
<span>Photo</span>
<div>
<p><img src="https://static01.nyt.com/images/2017/01/14/world/13SUDAN-1/13SUDAN-1-master768.jpg" alt="" data-mediaviewer-src="https://static01.nyt.com/images/2017/01/14/world/13SUDAN-1/13SUDAN-1-superJumbo.jpg" data-mediaviewer-caption="United Nations peacekeepers at a refugee camp in Sudan on Monday. In exchange for the lifting of United States trade sanctions, Sudan has said it will improve access for aid groups, stop supporting rebels in neighboring South Sudan and cooperate with American intelligence agents." data-mediaviewer-credit="Ashraf Shazly/Agence France-Presse Getty Images" itemprop="url" itemid="https://static01.nyt.com/images/2017/01/14/world/13SUDAN-1/13SUDAN-1-master768.jpg"></p>
<meta itemprop="height" content="512">
<meta itemprop="width" content="768">
<p><img src="https://static01.nyt.com/images/2017/01/14/world/13SUDAN-1/13SUDAN-1-master768.jpg" alt="" data-mediaviewer-src="https://static01.nyt.com/images/2017/01/14/world/13SUDAN-1/13SUDAN-1-superJumbo.jpg" data-mediaviewer-caption="United Nations peacekeepers at a refugee camp in Sudan on Monday. In exchange for the lifting of United States trade sanctions, Sudan has said it will improve access for aid groups, stop supporting rebels in neighboring South Sudan and cooperate with American intelligence agents." data-mediaviewer-credit="Ashraf Shazly/Agence France-Presse &#x2014; Getty Images" itemprop="url" itemid="https://static01.nyt.com/images/2017/01/14/world/13SUDAN-1/13SUDAN-1-master768.jpg"/></p>
<meta itemprop="height" content="512"/>
<meta itemprop="width" content="768"/>
</div>
<figcaption itemprop="caption description">
<span>United Nations peacekeepers at a refugee camp in Sudan on Monday. In exchange for the lifting of United States trade sanctions, Sudan has said it will improve access for aid groups, stop supporting rebels in neighboring South Sudan and cooperate with American intelligence agents.</span>
@ -50,8 +50,7 @@
<p data-para-count="149" data-total-count="4723" data-node-uid="1">Mr. Reeves said he thought that the American government was being manipulated and that the Obama administration had made a “deal with the devil.”</p>
<p><a href="#whats-next">Continue reading the main story</a>
</p>
</div>
</p></div>
@ -60,30 +59,17 @@
</article>
<section id="related-combined-coverage">
</section>
<section id="whats-next">
</section>
</main>
<section id="site-index">
</section>
</div></article>
</div></article>

View file

@ -18,9 +18,9 @@
<figure id="media-100000004560166" data-media-action="modal" itemprop="associatedMedia" itemscope="" itemid="https://static01.nyt.com/images/2016/07/30/business/db-dealprof/db-dealprof-master315.jpg" itemtype="http://schema.org/ImageObject" aria-label="media" role="group">
<span>Photo</span>
<div>
<p><img src="https://static01.nyt.com/images/2016/07/30/business/db-dealprof/db-dealprof-master315.jpg" alt="" data-mediaviewer-src="https://static01.nyt.com/images/2016/07/30/business/db-dealprof/db-dealprof-superJumbo.jpg" data-mediaviewer-caption="" data-mediaviewer-credit="Harry Campbell" itemprop="url" itemid="https://static01.nyt.com/images/2016/07/30/business/db-dealprof/db-dealprof-master315.jpg"></p>
<meta itemprop="height" content="315">
<meta itemprop="width" content="315">
<p><img src="https://static01.nyt.com/images/2016/07/30/business/db-dealprof/db-dealprof-master315.jpg" alt="" data-mediaviewer-src="https://static01.nyt.com/images/2016/07/30/business/db-dealprof/db-dealprof-superJumbo.jpg" data-mediaviewer-caption="" data-mediaviewer-credit="Harry Campbell" itemprop="url" itemid="https://static01.nyt.com/images/2016/07/30/business/db-dealprof/db-dealprof-master315.jpg"/></p>
<meta itemprop="height" content="315"/>
<meta itemprop="width" content="315"/>
</div>
<figcaption itemprop="caption description">
<span itemprop="copyrightHolder">
@ -31,8 +31,7 @@
<p data-para-count="177" data-total-count="325">First, lets say what the Yahoo sale is not. It is not a sale of the publicly traded company. Instead, it is a sale of the Yahoo subsidiary and some related assets to Verizon.</p>
<p data-para-count="529" data-total-count="854">The sale is being done in two steps. The <a href="https://www.sec.gov/Archives/edgar/data/1011006/000119312516656036/d178500dex22.htm" target="_blank">first step</a> will be the transfer of any assets related to Yahoo business to a singular subsidiary. This includes the stock in the business subsidiaries that make up Yahoo that are not already in the single subsidiary, as well as the odd assets like benefit plan rights. This is what is being sold to Verizon. A license of Yahoos oldest patents is being held back in the so-called Excalibur portfolio. This will stay with Yahoo, as will Yahoos stakes in Alibaba Group and Yahoo Japan.</p>
<p data-para-count="479" data-total-count="1333">It is hard to overestimate how complex an asset sale like this is. Some of the assets are self-contained, but they must be gathered up and transferred. Employees need to be shuffled around and compensation arrangements redone. Many contracts, like the now-infamous one struck with the search engine Mozilla, which <a href="http://www.recode.net/2016/7/7/12116296/marissa-mayer-deal-mozilla-yahoo-payment" target="_blank">may result in a payment of up to a $1 billion</a>, will contain change-of-control provisions that will be set off and have to be addressed. Tax issues always loom large.</p> <p><a href="#story-continues-1">Continue reading the main story</a>
</p>
</div>
</p></div>
<div id="story-continues-1">
@ -57,8 +56,7 @@
<p data-para-count="583" data-total-count="5954">Whether this is the most tax-efficient way is unclear to me as a nontax lawyer (email me if you know). Yahoo is likely to have a tax bill on the sale, possibly a substantial one. And I presume there were legal reasons for not using a <a href="http://dealbook.nytimes.com/2014/04/29/alliant-techsystems-break-up-and-the-return-of-the-morris-trust/" target="_blank">Morris Trust structure</a>, in which Yahoo would have been spun off and immediately sold to Verizon so that only Yahoos shareholders paid tax on the deal. In truth, the Yahoo assets being sold are only about 10 percent of the value of the company, so the time and logistics for such a sale when Yahoo is a melting ice cube may not have been worth it.</p>
<p data-para-count="450" data-total-count="6404">Finally, if another bidder still wants to acquire Yahoo, it has time. The agreement with Verizon allows Yahoo to terminate the deal and accept a superior offer by paying a $144 million breakup fee to Verizon. And if Yahoo shareholders change their minds and want to stick with Yahoos chief executive, <a href="http://topics.nytimes.com/top/reference/timestopics/people/m/marissa_mayer/index.html?inline=nyt-per" title="More articles about Marissa Mayer." target="_blank">Marissa Mayer</a>, and vote down the deal, there is a so-called naked no-vote termination fee of $15 million payable to Verizon to reimburse expenses.</p>
<p data-para-count="426" data-total-count="6830">All in all, this was as hairy a deal as they come. There was the procedural and logistical complications of selling a company when the chief executive wanted to stay. Then there was the fact that this was an asset sale, including all of the challenges that go with it. Throw in all of the tax issues and the fact that this is a public company, and it is likely that the lawyers involved will have nightmares for years to come.</p> <p><a href="#whats-next">Continue reading the main story</a>
</p>
</div>
</p></div>
@ -67,30 +65,17 @@
</article>
<section id="related-combined-coverage">
</section>
<section id="whats-next">
</section>
</main>
<section id="site-index">
</section>
</div></article>
</div></article>

View file

@ -8,7 +8,7 @@
</p>
<div data-testid="photoviewer-wrapper">
<figure aria-label="media" role="group" itemscope="itemscope" itemprop="associatedMedia" itemid="https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilities1/merlin_150498339_cf9085e5-9756-4169-a5a5-5b516316a3fa-articleLarge.jpg?quality=90&amp;auto=webp" itemtype="http://schema.org/ImageObject">
<p><span>Image</span><img alt="" src="https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilities1/merlin_150498339_cf9085e5-9756-4169-a5a5-5b516316a3fa-articleLarge.jpg?quality=75&amp;auto=webp&amp;disable=upscale" srcset="https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilities1/merlin_150498339_cf9085e5-9756-4169-a5a5-5b516316a3fa-articleLarge.jpg?quality=90&amp;auto=webp 600w, https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilities1/merlin_150498339_cf9085e5-9756-4169-a5a5-5b516316a3fa-jumbo.jpg?quality=90&amp;auto=webp 1024w, https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilities1/merlin_150498339_cf9085e5-9756-4169-a5a5-5b516316a3fa-superJumbo.jpg?quality=90&amp;auto=webp 2048w" sizes="((min-width: 600px) and (max-width: 1004px)) 84vw, (min-width: 1005px) 80vw, 100vw" itemprop="url" itemid="https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilities1/merlin_150498339_cf9085e5-9756-4169-a5a5-5b516316a3fa-articleLarge.jpg?quality=75&amp;auto=webp&amp;disable=upscale">
<p><span>Image</span><img alt="" src="https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilities1/merlin_150498339_cf9085e5-9756-4169-a5a5-5b516316a3fa-articleLarge.jpg?quality=75&amp;auto=webp&amp;disable=upscale" srcset="https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilities1/merlin_150498339_cf9085e5-9756-4169-a5a5-5b516316a3fa-articleLarge.jpg?quality=90&amp;auto=webp 600w, https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilities1/merlin_150498339_cf9085e5-9756-4169-a5a5-5b516316a3fa-jumbo.jpg?quality=90&amp;auto=webp 1024w, https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilities1/merlin_150498339_cf9085e5-9756-4169-a5a5-5b516316a3fa-superJumbo.jpg?quality=90&amp;auto=webp 2048w" sizes="((min-width: 600px) and (max-width: 1004px)) 84vw, (min-width: 1005px) 80vw, 100vw" itemprop="url" itemid="https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilities1/merlin_150498339_cf9085e5-9756-4169-a5a5-5b516316a3fa-articleLarge.jpg?quality=75&amp;auto=webp&amp;disable=upscale"/>
</p>
<figcaption itemprop="caption description">
<span>A Con Edison worker repairing underground cables this month in Flushing, Queens. The likely source of the problem was water and rock salt that had seeped underground.</span><span itemprop="copyrightHolder"><span>Credit</span><span><span>Credit</span><span>Chang W. Lee/The New York Times</span></span></span>
@ -17,7 +17,7 @@
</div>
<div>
<div>
<p><a href="https://www.nytimes.com/by/corey-kilgannon" target="_blank"><img alt="Corey Kilgannon" title="Corey Kilgannon" src="https://static01.nyt.com/images/2018/02/20/multimedia/author-corey-kilgannon/author-corey-kilgannon-thumbLarge.jpg"></a>
<p><a href="https://www.nytimes.com/by/corey-kilgannon" target="_blank"><img alt="Corey Kilgannon" title="Corey Kilgannon" src="https://static01.nyt.com/images/2018/02/20/multimedia/author-corey-kilgannon/author-corey-kilgannon-thumbLarge.jpg"/></a>
</p>
</div>
@ -25,9 +25,7 @@
<li>
<time datetime="2019-02-21">Feb. 21, 2019</time>
</li>
<li>
</li>
</ul>
</div>
</header>
@ -59,7 +57,7 @@
</div>
<div data-testid="photoviewer-wrapper">
<figure aria-label="media" role="group" itemprop="associatedMedia" itemscope="itemscope" itemid="https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilitiesOAK15/merlin_56025490_f9412a36-eeb9-4a10-a41e-f324eb7a3248-articleLarge.jpg?quality=90&amp;auto=webp" itemtype="http://schema.org/ImageObject">
<p><span>Image</span><img alt="" src="https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilitiesOAK15/merlin_56025490_f9412a36-eeb9-4a10-a41e-f324eb7a3248-articleLarge.jpg?quality=75&amp;auto=webp&amp;disable=upscale" srcset="https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilitiesOAK15/merlin_56025490_f9412a36-eeb9-4a10-a41e-f324eb7a3248-articleLarge.jpg?quality=90&amp;auto=webp 600w, https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilitiesOAK15/merlin_56025490_f9412a36-eeb9-4a10-a41e-f324eb7a3248-jumbo.jpg?quality=90&amp;auto=webp 1024w, https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilitiesOAK15/merlin_56025490_f9412a36-eeb9-4a10-a41e-f324eb7a3248-superJumbo.jpg?quality=90&amp;auto=webp 2000w" sizes="((min-width: 600px) and (max-width: 1004px)) 84vw, (min-width: 1005px) 80vw, 100vw" itemprop="url" itemid="https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilitiesOAK15/merlin_56025490_f9412a36-eeb9-4a10-a41e-f324eb7a3248-articleLarge.jpg?quality=75&amp;auto=webp&amp;disable=upscale">
<p><span>Image</span><img alt="" src="https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilitiesOAK15/merlin_56025490_f9412a36-eeb9-4a10-a41e-f324eb7a3248-articleLarge.jpg?quality=75&amp;auto=webp&amp;disable=upscale" srcset="https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilitiesOAK15/merlin_56025490_f9412a36-eeb9-4a10-a41e-f324eb7a3248-articleLarge.jpg?quality=90&amp;auto=webp 600w, https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilitiesOAK15/merlin_56025490_f9412a36-eeb9-4a10-a41e-f324eb7a3248-jumbo.jpg?quality=90&amp;auto=webp 1024w, https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilitiesOAK15/merlin_56025490_f9412a36-eeb9-4a10-a41e-f324eb7a3248-superJumbo.jpg?quality=90&amp;auto=webp 2000w" sizes="((min-width: 600px) and (max-width: 1004px)) 84vw, (min-width: 1005px) 80vw, 100vw" itemprop="url" itemid="https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilitiesOAK15/merlin_56025490_f9412a36-eeb9-4a10-a41e-f324eb7a3248-articleLarge.jpg?quality=75&amp;auto=webp&amp;disable=upscale"/>
</p>
<figcaption itemprop="caption description">
<span>In the late 1800s, overhead utilities were buried to lessen the exposure to winter weather.</span><span itemprop="copyrightHolder"><span>Credit</span><span>Kirsten Luce for The New York Times</span></span>
@ -99,7 +97,7 @@
<figcaption itemprop="caption description">
<span>There are typically between 400 and 600 water main breaks each year in New York City, an official said.</span><span itemprop="copyrightHolder"><span>Credit</span><span>Michael Appleton for The New York Times</span></span>
</figcaption>
<img src="https://static01.nyt.com/images/2019/02/15/nyregion/00winterutilitiesOAK11/merlin_94083158_9e622a52-ec2f-4fbd-845c-5d530e94bc82-articleLarge.jpg?quality=90&amp;auto=webp"></figure>
<img src="https://static01.nyt.com/images/2019/02/15/nyregion/00winterutilitiesOAK11/merlin_94083158_9e622a52-ec2f-4fbd-845c-5d530e94bc82-articleLarge.jpg?quality=90&amp;auto=webp"/></figure>
</div>
<div>
<h2 id="link-470a509">
@ -137,7 +135,7 @@
<figcaption itemprop="caption description">
<span>In 1978, a water main break caused severe flooding in Bushwick, Brooklyn.</span><span itemprop="copyrightHolder"><span>Credit</span><span>Fred R. Conrad/The New York Times</span></span>
</figcaption>
<img src="https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilitiesOAK13/merlin_77720485_1f5be529-e659-49c3-a0bc-a3f312835d14-articleLarge.jpg?quality=90&amp;auto=webp"></figure>
<img src="https://static01.nyt.com/images/2019/02/21/nyregion/21winterutilitiesOAK13/merlin_77720485_1f5be529-e659-49c3-a0bc-a3f312835d14-articleLarge.jpg?quality=90&amp;auto=webp"/></figure>
</div>
<div>
<h2 id="link-4c678ca">
@ -164,7 +162,7 @@
<figcaption itemprop="caption description">
<span>Matt Cruz snowboarded through Manhattans Lower East Side after a snowstorm in 2016 left the streets coated in slush and rock salt.</span><span itemprop="copyrightHolder"><span>Credit</span><span>Hiroko Masuike/The New York Times</span></span>
</figcaption>
<img src="https://static01.nyt.com/images/2017/12/07/nyregion/00winter4/00winter4-articleLarge.jpg?quality=90&amp;auto=webp"></figure>
<img src="https://static01.nyt.com/images/2017/12/07/nyregion/00winter4/00winter4-articleLarge.jpg?quality=90&amp;auto=webp"/></figure>
</div>
<div>
<h2 id="link-132c3a6b">
@ -196,7 +194,7 @@
<figcaption itemprop="caption description">
<span>A water main break in Manhattan in 2014. “When you get a freeze and a thaw, the ground around the water mains expands and contracts, and puts external pressure on the pipes,” said Tasos Georgelis of the city's Department of Environmental Protection.</span><span itemprop="copyrightHolder"><span>Credit</span><span>Ãngel Franco/The New York Times</span></span>
</figcaption>
<img src="https://static01.nyt.com/images/2019/02/15/nyregion/00winterutilitiesOAK12/merlin_77751796_7f1b7a7a-23e9-49b2-b12e-1edfed680911-articleLarge.jpg?quality=90&amp;auto=webp"></figure>
<img src="https://static01.nyt.com/images/2019/02/15/nyregion/00winterutilitiesOAK12/merlin_77751796_7f1b7a7a-23e9-49b2-b12e-1edfed680911-articleLarge.jpg?quality=90&amp;auto=webp"/></figure>
</div>
<div>
<h2 id="link-7ba21106">
@ -229,7 +227,7 @@
<figcaption itemprop="caption description">
<span>Workers learning how to fix water main breaks at a training center in Queens.</span><span itemprop="copyrightHolder"><span>Credit</span><span>Chang W. Lee/The New York Times</span></span>
</figcaption>
<img src="https://static01.nyt.com/images/2019/02/12/nyregion/00winterutilities2/merlin_150504129_e893b874-01eb-4d8f-8158-18512153e414-articleLarge.jpg?quality=90&amp;auto=webp"></figure>
<img src="https://static01.nyt.com/images/2019/02/12/nyregion/00winterutilities2/merlin_150504129_e893b874-01eb-4d8f-8158-18512153e414-articleLarge.jpg?quality=90&amp;auto=webp"/></figure>
</div>
<div>
<h2 id="link-13d0a396">
@ -264,4 +262,4 @@
</div>
</article></DIV></article>
</article></DIV></article>

View file

@ -8,7 +8,7 @@
</p>
<div data-testid="photoviewer-wrapper">
<figure aria-label="media" role="group" itemscope="itemscope" itemprop="associatedMedia" itemid="https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleLarge.jpg?quality=90&amp;auto=webp" itemtype="http://schema.org/ImageObject">
<p><span>Image</span><img alt="" src="https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleLarge.jpg?quality=75&amp;auto=webp&amp;disable=upscale" srcset="https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleLarge.jpg?quality=90&amp;auto=webp 600w, https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-jumbo.jpg?quality=90&amp;auto=webp 1024w, https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-superJumbo.jpg?quality=90&amp;auto=webp 2048w" sizes="((min-width: 600px) and (max-width: 1004px)) 84vw, (min-width: 1005px) 60vw, 100vw" itemprop="url" itemid="https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleLarge.jpg?quality=75&amp;auto=webp&amp;disable=upscale">
<p><span>Image</span><img alt="" src="https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleLarge.jpg?quality=75&amp;auto=webp&amp;disable=upscale" srcset="https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleLarge.jpg?quality=90&amp;auto=webp 600w, https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-jumbo.jpg?quality=90&amp;auto=webp 1024w, https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-superJumbo.jpg?quality=90&amp;auto=webp 2048w" sizes="((min-width: 600px) and (max-width: 1004px)) 84vw, (min-width: 1005px) 60vw, 100vw" itemprop="url" itemid="https://static01.nyt.com/images/2018/09/15/business/15DEBTS01/merlin_138209730_5f3b5746-4962-4207-a24f-aea644a8636f-articleLarge.jpg?quality=75&amp;auto=webp&amp;disable=upscale"/>
</p>
<figcaption itemprop="caption description">
<span>Interest payments on the federal debt could surpass the Defense Department budget in 2023.</span><span itemprop="copyrightHolder"><span>Credit</span><span><span>Credit</span><span>Jeon Heon-Kyun/EPA, via Shutterstock</span></span></span>
@ -21,9 +21,7 @@
<li>
<time datetime="2018-09-25">Sept. 25, 2018</time>
</li>
<li>
</li>
</ul>
</div>
</header>
@ -221,4 +219,4 @@
</div>
</article></DIV></article>
</article></DIV></article>

View file

@ -12,7 +12,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/25/espanol/juegos-olimpicos-pekin-2022.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/13/world/00xi-olympics-30-esp-1/00xi-olympics-30-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/13/world/00xi-olympics-30-esp-1/00xi-olympics-30-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/13/world/00xi-olympics-30-esp-1/00xi-olympics-30-mediumThreeByTwo440.jpg 440w" alt="Xi Jinping, el líder de China, arriesgó su prestigio personal cuando su país se postuló para organizar los Juegos de Invierno 2022; hasta ahora el país ha cumplido sus promesas."></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/25/espanol/juegos-olimpicos-pekin-2022.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/13/world/00xi-olympics-30-esp-1/00xi-olympics-30-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/13/world/00xi-olympics-30-esp-1/00xi-olympics-30-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/13/world/00xi-olympics-30-esp-1/00xi-olympics-30-mediumThreeByTwo440.jpg 440w" alt="Xi Jinping, el l&#xED;der de China, arriesg&#xF3; su prestigio personal cuando su pa&#xED;s se postul&#xF3; para organizar los Juegos de Invierno 2022; hasta ahora el pa&#xED;s ha cumplido sus promesas."/></a>
<figcaption>
<span><span>Credit</span>Kevin Frayer/Getty Images</span>
</figcaption>
@ -23,7 +23,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/25/espanol/opinion/beatles-get-back.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/19/opinion/19max/19max-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/19/opinion/19max/19max-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/19/opinion/19max/19max-mediumThreeByTwo440.jpg 440w" alt=""></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/25/espanol/opinion/beatles-get-back.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/19/opinion/19max/19max-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/19/opinion/19max/19max-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/19/opinion/19max/19max-mediumThreeByTwo440.jpg 440w" alt=""/></a>
<figcaption>
<span><span>Credit</span>Ellen Surrey</span>
</figcaption>
@ -50,7 +50,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/25/espanol/microsoft-meta-activision-blizzard.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/18/business/18OnTech-Microsoft-NL/18OnTech-Microsoft-NL-videoLarge.png" srcset="https://static01.nyt.com/images/2022/01/18/business/18OnTech-Microsoft-NL/18OnTech-Microsoft-NL-videoLarge.png 768w, https://static01.nyt.com/images/2022/01/18/business/18OnTech-Microsoft-NL/18OnTech-Microsoft-NL-mediumThreeByTwo440.png 440w" alt=""></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/25/espanol/microsoft-meta-activision-blizzard.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/18/business/18OnTech-Microsoft-NL/18OnTech-Microsoft-NL-videoLarge.png" srcset="https://static01.nyt.com/images/2022/01/18/business/18OnTech-Microsoft-NL/18OnTech-Microsoft-NL-videoLarge.png 768w, https://static01.nyt.com/images/2022/01/18/business/18OnTech-Microsoft-NL/18OnTech-Microsoft-NL-mediumThreeByTwo440.png 440w" alt=""/></a>
<figcaption>
<span><span>Credit</span>Erik Carter</span>
</figcaption>
@ -75,7 +75,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/25/espanol/bebidas-funcionales-beneficios.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/20/fashion/20SKIN-BEAUTYDRINKS1-ESP-1/20SKIN-BEAUTYDRINKS1-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/20/fashion/20SKIN-BEAUTYDRINKS1-ESP-1/20SKIN-BEAUTYDRINKS1-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/20/fashion/20SKIN-BEAUTYDRINKS1-ESP-1/20SKIN-BEAUTYDRINKS1-mediumThreeByTwo440.jpg 440w" alt=""></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/25/espanol/bebidas-funcionales-beneficios.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/20/fashion/20SKIN-BEAUTYDRINKS1-ESP-1/20SKIN-BEAUTYDRINKS1-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/20/fashion/20SKIN-BEAUTYDRINKS1-ESP-1/20SKIN-BEAUTYDRINKS1-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/20/fashion/20SKIN-BEAUTYDRINKS1-ESP-1/20SKIN-BEAUTYDRINKS1-mediumThreeByTwo440.jpg 440w" alt=""/></a>
<figcaption>
<span><span>Credit</span>Ted + Chelsea Cavanaugh para The New York Times</span>
</figcaption>
@ -105,16 +105,14 @@
<section>
<header>
<h2>
<a href="http://fakehost/es/section/opinion" target="_blank">Opinión<svg viewbox="0 0 5.6 9.5" width="5.6" height="9.5" xml:space="preserve" xmlns="http://www.w3.org/1999/xlink" x="0px" y="0px">
<path d="M5.6,4.2L1.8,0L0,1.3l3.1,3.5L0,8.3l1.8,1.2l3.8-4.1V4.2z"></path></svg></a>
</h2>
<a href="http://fakehost/es/section/opinion" target="_blank">Más en Opinión </a>
<a href="http://fakehost/es/section/opinion" target="_blank">Opinión</a>
</h2><a href="http://fakehost/es/section/opinion" target="_blank">Más en Opinión </a>
</header>
<ol>
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/24/espanol/opinion/covid-variantes-omicron.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/20/opinion/20Nkengasong/20Nkengasong-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/20/opinion/20Nkengasong/20Nkengasong-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/20/opinion/20Nkengasong/20Nkengasong-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/20/opinion/20Nkengasong/20Nkengasong-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/20/opinion/20Nkengasong/20Nkengasong-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/20/opinion/20Nkengasong/20Nkengasong-hpSmall.jpg 163w" alt=""></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/24/espanol/opinion/covid-variantes-omicron.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/20/opinion/20Nkengasong/20Nkengasong-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/20/opinion/20Nkengasong/20Nkengasong-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/20/opinion/20Nkengasong/20Nkengasong-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/20/opinion/20Nkengasong/20Nkengasong-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/20/opinion/20Nkengasong/20Nkengasong-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/20/opinion/20Nkengasong/20Nkengasong-hpSmall.jpg 163w" alt=""/></a>
<figcaption>
<span><span>Credit</span>Danielle Chenette</span>
</figcaption>
@ -125,7 +123,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/23/espanol/opinion/descansar-trabajo.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/23/opinion/sunday/20kukla/20kukla-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/23/opinion/sunday/20kukla/20kukla-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/23/opinion/sunday/20kukla/20kukla-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/23/opinion/sunday/20kukla/20kukla-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/23/opinion/sunday/20kukla/20kukla-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/23/opinion/sunday/20kukla/20kukla-hpSmall.jpg 163w" alt=""></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/23/espanol/opinion/descansar-trabajo.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/23/opinion/sunday/20kukla/20kukla-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/23/opinion/sunday/20kukla/20kukla-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/23/opinion/sunday/20kukla/20kukla-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/23/opinion/sunday/20kukla/20kukla-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/23/opinion/sunday/20kukla/20kukla-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/23/opinion/sunday/20kukla/20kukla-hpSmall.jpg 163w" alt=""/></a>
<figcaption>
<span><span>Credit</span>Cari Vander Yacht</span>
</figcaption>
@ -136,7 +134,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/20/espanol/opinion/adicciones-como-ayudar.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/16/opinion/sunday/15Fisher/15Fisher-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/16/opinion/sunday/15Fisher/15Fisher-thumbLarge-v2.jpg 150w, https://static01.nyt.com/images/2022/01/16/opinion/sunday/15Fisher/15Fisher-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/16/opinion/sunday/15Fisher/15Fisher-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/16/opinion/sunday/15Fisher/15Fisher-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/16/opinion/sunday/15Fisher/15Fisher-hpSmall.jpg 163w" alt="  "></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/20/espanol/opinion/adicciones-como-ayudar.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/16/opinion/sunday/15Fisher/15Fisher-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/16/opinion/sunday/15Fisher/15Fisher-thumbLarge-v2.jpg 150w, https://static01.nyt.com/images/2022/01/16/opinion/sunday/15Fisher/15Fisher-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/16/opinion/sunday/15Fisher/15Fisher-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/16/opinion/sunday/15Fisher/15Fisher-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/16/opinion/sunday/15Fisher/15Fisher-hpSmall.jpg 163w" alt="&#xA0;&#xA0;"/></a>
<figcaption>
<span><span>Credit</span>Bianca Bagnarelli</span>
</figcaption>
@ -149,7 +147,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/19/espanol/opinion/omicron-covid.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/19/multimedia/19Hanage/19Hanage-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/19/multimedia/19Hanage/19Hanage-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/19/multimedia/19Hanage/19Hanage-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/19/multimedia/19Hanage/19Hanage-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/19/multimedia/19Hanage/19Hanage-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/19/multimedia/19Hanage/19Hanage-hpSmall.jpg 163w" alt=""></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/19/espanol/opinion/omicron-covid.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/19/multimedia/19Hanage/19Hanage-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/19/multimedia/19Hanage/19Hanage-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/19/multimedia/19Hanage/19Hanage-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/19/multimedia/19Hanage/19Hanage-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/19/multimedia/19Hanage/19Hanage-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/19/multimedia/19Hanage/19Hanage-hpSmall.jpg 163w" alt=""/></a>
<figcaption>
<span><span>Credit</span>Kim Raff for The New York Times</span>
</figcaption>
@ -164,16 +162,14 @@
<section>
<header>
<h2>
<a href="http://fakehost/es/spotlight/especial" target="_blank">Especial<svg viewbox="0 0 5.6 9.5" width="5.6" height="9.5" xml:space="preserve" xmlns="http://www.w3.org/1999/xlink" x="0px" y="0px">
<path d="M5.6,4.2L1.8,0L0,1.3l3.1,3.5L0,8.3l1.8,1.2l3.8-4.1V4.2z"></path></svg></a>
</h2>
<a href="http://fakehost/es/spotlight/especial" target="_blank">Más en Especial </a>
<a href="http://fakehost/es/spotlight/especial" target="_blank">Especial</a>
</h2><a href="http://fakehost/es/spotlight/especial" target="_blank">Más en Especial </a>
</header>
<ol>
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/19/espanol/desafio-come-bien.html" target="_blank"><img src="https://static01.nyt.com/images/2021/12/30/well/30well-eatmore-challenge1/merlin_199522602_493a2c6c-4ff1-4e6e-a378-6e4810ba997b-videoLarge.jpg" srcset="https://static01.nyt.com/images/2021/12/30/well/30well-eatmore-challenge1/30well-eatmore-challenge1-thumbLarge.jpg 150w, https://static01.nyt.com/images/2021/12/30/well/30well-eatmore-challenge1/merlin_199522602_493a2c6c-4ff1-4e6e-a378-6e4810ba997b-videoLarge.jpg 768w, https://static01.nyt.com/images/2021/12/30/well/30well-eatmore-challenge1/merlin_199522602_493a2c6c-4ff1-4e6e-a378-6e4810ba997b-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2021/12/30/well/30well-eatmore-challenge1/merlin_199522602_493a2c6c-4ff1-4e6e-a378-6e4810ba997b-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2021/12/30/well/30well-eatmore-challenge1/merlin_199522602_493a2c6c-4ff1-4e6e-a378-6e4810ba997b-hpSmall.jpg 163w" alt=" "></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/19/espanol/desafio-come-bien.html" target="_blank"><img src="https://static01.nyt.com/images/2021/12/30/well/30well-eatmore-challenge1/merlin_199522602_493a2c6c-4ff1-4e6e-a378-6e4810ba997b-videoLarge.jpg" srcset="https://static01.nyt.com/images/2021/12/30/well/30well-eatmore-challenge1/30well-eatmore-challenge1-thumbLarge.jpg 150w, https://static01.nyt.com/images/2021/12/30/well/30well-eatmore-challenge1/merlin_199522602_493a2c6c-4ff1-4e6e-a378-6e4810ba997b-videoLarge.jpg 768w, https://static01.nyt.com/images/2021/12/30/well/30well-eatmore-challenge1/merlin_199522602_493a2c6c-4ff1-4e6e-a378-6e4810ba997b-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2021/12/30/well/30well-eatmore-challenge1/merlin_199522602_493a2c6c-4ff1-4e6e-a378-6e4810ba997b-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2021/12/30/well/30well-eatmore-challenge1/merlin_199522602_493a2c6c-4ff1-4e6e-a378-6e4810ba997b-hpSmall.jpg 163w" alt="&#xA0;"/></a>
<figcaption>
<span><span>Credit</span>Photo Illustration by Andrew B. Myers for The New York Times</span>
</figcaption>
@ -194,7 +190,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/08/espanol/desafio-come-bien.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/04/well/30well-NL-getready/30well-NL-getready-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/04/well/30well-NL-getready/30well-NL-getready-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/04/well/30well-NL-getready/30well-NL-getready-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/04/well/30well-NL-getready/30well-NL-getready-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/04/well/30well-NL-getready/30well-NL-getready-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/04/well/30well-NL-getready/merlin_199256238_147af738-0898-4260-99c1-2e371133ab11-hpSmall.jpg 163w" alt=""></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/08/espanol/desafio-come-bien.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/04/well/30well-NL-getready/30well-NL-getready-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/04/well/30well-NL-getready/30well-NL-getready-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/04/well/30well-NL-getready/30well-NL-getready-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/04/well/30well-NL-getready/30well-NL-getready-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/04/well/30well-NL-getready/30well-NL-getready-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/04/well/30well-NL-getready/merlin_199256238_147af738-0898-4260-99c1-2e371133ab11-hpSmall.jpg 163w" alt=""/></a>
<figcaption>
<span><span>Credit</span>Photo Illustration by Andrew B. Myers for The New York Times</span>
</figcaption>
@ -205,7 +201,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/10/espanol/balance-comida-antojo.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/11/well/10sciWell-EatWell-Cravings-Week-ESP-1/merlin_199522599_79543c1f-9951-4849-b1fd-395b1b97351c-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/11/well/10sciWell-EatWell-Cravings-Week-ESP-1/10well-cravings-challenge2-thumbLarge-v2.jpg 150w, https://static01.nyt.com/images/2022/01/11/well/10sciWell-EatWell-Cravings-Week-ESP-1/merlin_199522599_79543c1f-9951-4849-b1fd-395b1b97351c-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/11/well/10sciWell-EatWell-Cravings-Week-ESP-1/merlin_199522599_79543c1f-9951-4849-b1fd-395b1b97351c-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/11/well/10sciWell-EatWell-Cravings-Week-ESP-1/merlin_199522599_79543c1f-9951-4849-b1fd-395b1b97351c-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/11/well/10sciWell-EatWell-Cravings-Week-ESP-1/merlin_199522599_79543c1f-9951-4849-b1fd-395b1b97351c-hpSmall.jpg 163w" alt=""></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/10/espanol/balance-comida-antojo.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/11/well/10sciWell-EatWell-Cravings-Week-ESP-1/merlin_199522599_79543c1f-9951-4849-b1fd-395b1b97351c-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/11/well/10sciWell-EatWell-Cravings-Week-ESP-1/10well-cravings-challenge2-thumbLarge-v2.jpg 150w, https://static01.nyt.com/images/2022/01/11/well/10sciWell-EatWell-Cravings-Week-ESP-1/merlin_199522599_79543c1f-9951-4849-b1fd-395b1b97351c-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/11/well/10sciWell-EatWell-Cravings-Week-ESP-1/merlin_199522599_79543c1f-9951-4849-b1fd-395b1b97351c-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/11/well/10sciWell-EatWell-Cravings-Week-ESP-1/merlin_199522599_79543c1f-9951-4849-b1fd-395b1b97351c-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/11/well/10sciWell-EatWell-Cravings-Week-ESP-1/merlin_199522599_79543c1f-9951-4849-b1fd-395b1b97351c-hpSmall.jpg 163w" alt=""/></a>
<figcaption>
<span><span>Credit</span>Fotoilustraciones de Andrew B. Myers para The New York Times</span>
</figcaption>
@ -216,7 +212,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/17/espanol/dieta-alimentacion-intuitiva.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/18/well/17Well-EatWell-Intuitive-onsite-Week3-ESP-1/merlin_200240556_6593abcf-64b4-460e-909b-37d65dcbee10-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/18/well/17Well-EatWell-Intuitive-onsite-Week3-ESP-1/17well-eatwell-giveup-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/18/well/17Well-EatWell-Intuitive-onsite-Week3-ESP-1/merlin_200240556_6593abcf-64b4-460e-909b-37d65dcbee10-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/18/well/17Well-EatWell-Intuitive-onsite-Week3-ESP-1/merlin_200240556_6593abcf-64b4-460e-909b-37d65dcbee10-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/18/well/17Well-EatWell-Intuitive-onsite-Week3-ESP-1/merlin_200240556_6593abcf-64b4-460e-909b-37d65dcbee10-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/18/well/17Well-EatWell-Intuitive-onsite-Week3-ESP-1/merlin_200240556_6593abcf-64b4-460e-909b-37d65dcbee10-hpSmall.jpg 163w" alt=""></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/17/espanol/dieta-alimentacion-intuitiva.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/18/well/17Well-EatWell-Intuitive-onsite-Week3-ESP-1/merlin_200240556_6593abcf-64b4-460e-909b-37d65dcbee10-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/18/well/17Well-EatWell-Intuitive-onsite-Week3-ESP-1/17well-eatwell-giveup-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/18/well/17Well-EatWell-Intuitive-onsite-Week3-ESP-1/merlin_200240556_6593abcf-64b4-460e-909b-37d65dcbee10-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/18/well/17Well-EatWell-Intuitive-onsite-Week3-ESP-1/merlin_200240556_6593abcf-64b4-460e-909b-37d65dcbee10-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/18/well/17Well-EatWell-Intuitive-onsite-Week3-ESP-1/merlin_200240556_6593abcf-64b4-460e-909b-37d65dcbee10-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/18/well/17Well-EatWell-Intuitive-onsite-Week3-ESP-1/merlin_200240556_6593abcf-64b4-460e-909b-37d65dcbee10-hpSmall.jpg 163w" alt=""/></a>
<figcaption>
<span><span>Credit</span>Fotoilustración de Andrew B. Myers para The New York Times</span>
</figcaption>
@ -230,16 +226,14 @@
<section>
<header>
<h2>
<a href="http://fakehost/es/spotlight/el-brote-de-coronavirus" target="_blank">El brote de Coronavirus<svg viewbox="0 0 5.6 9.5" width="5.6" height="9.5" xml:space="preserve" xmlns="http://www.w3.org/1999/xlink" x="0px" y="0px">
<path d="M5.6,4.2L1.8,0L0,1.3l3.1,3.5L0,8.3l1.8,1.2l3.8-4.1V4.2z"></path></svg></a>
</h2>
<a href="http://fakehost/es/spotlight/el-brote-de-coronavirus" target="_blank">Más en El brote de Coronavirus </a>
<a href="http://fakehost/es/spotlight/el-brote-de-coronavirus" target="_blank">El brote de Coronavirus</a>
</h2><a href="http://fakehost/es/spotlight/el-brote-de-coronavirus" target="_blank">Más en El brote de Coronavirus </a>
</header>
<ol>
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/21/espanol/covid-vacuna-inmunidad.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/11/well/00well-covid-super-immunity/00well-covid-super-immunity-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/11/well/00well-covid-super-immunity/00well-covid-super-immunity-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/11/well/00well-covid-super-immunity/00well-covid-super-immunity-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/11/well/00well-covid-super-immunity/00well-covid-super-immunity-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/11/well/00well-covid-super-immunity/00well-covid-super-immunity-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/11/well/00well-covid-super-immunity/00well-covid-super-immunity-hpSmall.jpg 163w" alt=""></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/21/espanol/covid-vacuna-inmunidad.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/11/well/00well-covid-super-immunity/00well-covid-super-immunity-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/11/well/00well-covid-super-immunity/00well-covid-super-immunity-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/11/well/00well-covid-super-immunity/00well-covid-super-immunity-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/11/well/00well-covid-super-immunity/00well-covid-super-immunity-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/11/well/00well-covid-super-immunity/00well-covid-super-immunity-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/11/well/00well-covid-super-immunity/00well-covid-super-immunity-hpSmall.jpg 163w" alt=""/></a>
<figcaption>
<span><span>Credit</span></span>
</figcaption>
@ -250,7 +244,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/20/espanol/omicron-covid-prolongada.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/19/science/19omicron-longcovid-explainer1-esp-1/19omicron-longcovid-explainer1-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/19/science/19omicron-longcovid-explainer1-esp-1/19omicron-longcovid-explainer1-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/19/science/19omicron-longcovid-explainer1-esp-1/19omicron-longcovid-explainer1-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/19/science/19omicron-longcovid-explainer1-esp-1/19omicron-longcovid-explainer1-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/19/science/19omicron-longcovid-explainer1-esp-1/19omicron-longcovid-explainer1-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/19/science/19omicron-longcovid-explainer1-esp-1/19omicron-longcovid-explainer1-hpSmall.jpg 163w" alt="Largas filas para hacerse pruebas de coronavirus en Jonesboro, Georgia, este mes. La variante ómicron se identificó a finales de noviembre, por lo que es demasiado pronto para decir cuánto tiempo pueden persistir los síntomas."></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/20/espanol/omicron-covid-prolongada.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/19/science/19omicron-longcovid-explainer1-esp-1/19omicron-longcovid-explainer1-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/19/science/19omicron-longcovid-explainer1-esp-1/19omicron-longcovid-explainer1-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/19/science/19omicron-longcovid-explainer1-esp-1/19omicron-longcovid-explainer1-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/19/science/19omicron-longcovid-explainer1-esp-1/19omicron-longcovid-explainer1-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/19/science/19omicron-longcovid-explainer1-esp-1/19omicron-longcovid-explainer1-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/19/science/19omicron-longcovid-explainer1-esp-1/19omicron-longcovid-explainer1-hpSmall.jpg 163w" alt="Largas filas para hacerse pruebas de coronavirus en Jonesboro, Georgia, este mes. La variante &#xF3;micron se identific&#xF3; a finales de noviembre, por lo que es demasiado pronto para decir cu&#xE1;nto tiempo pueden persistir los s&#xED;ntomas."/></a>
<figcaption>
<span><span>Credit</span>Dustin Chambers para The New York Times</span>
</figcaption>
@ -271,7 +265,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/20/espanol/vacunas-arnm-covid.html" target="_blank"><img src="https://static01.nyt.com/images/2021/12/01/science/00VIRUS-mRNA-promo/00VIRUS-mRNA-promo-videoLarge-v3.jpg" srcset="https://static01.nyt.com/images/2021/12/01/science/00VIRUS-mRNA-promo/00VIRUS-mRNA-promo-thumbLarge.jpg 150w, https://static01.nyt.com/images/2021/12/01/science/00VIRUS-mRNA-promo/00VIRUS-mRNA-promo-videoLarge-v3.jpg 768w, https://static01.nyt.com/images/2021/12/01/science/00VIRUS-mRNA-promo/00VIRUS-mRNA-promo-mediumThreeByTwo225-v3.jpg 225w, https://static01.nyt.com/images/2021/12/01/science/00VIRUS-mRNA-promo/00VIRUS-mRNA-promo-mediumThreeByTwo440-v3.jpg 440w, https://static01.nyt.com/images/2021/12/01/science/00VIRUS-mRNA-promo/00VIRUS-mRNA-promo-hpSmall.jpg 163w" alt="A 3-D plaster model of a coronavirus spike protein in the office of Dr. Barney Graham of the Vaccine Research Center of the National Institutes of Health."></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/20/espanol/vacunas-arnm-covid.html" target="_blank"><img src="https://static01.nyt.com/images/2021/12/01/science/00VIRUS-mRNA-promo/00VIRUS-mRNA-promo-videoLarge-v3.jpg" srcset="https://static01.nyt.com/images/2021/12/01/science/00VIRUS-mRNA-promo/00VIRUS-mRNA-promo-thumbLarge.jpg 150w, https://static01.nyt.com/images/2021/12/01/science/00VIRUS-mRNA-promo/00VIRUS-mRNA-promo-videoLarge-v3.jpg 768w, https://static01.nyt.com/images/2021/12/01/science/00VIRUS-mRNA-promo/00VIRUS-mRNA-promo-mediumThreeByTwo225-v3.jpg 225w, https://static01.nyt.com/images/2021/12/01/science/00VIRUS-mRNA-promo/00VIRUS-mRNA-promo-mediumThreeByTwo440-v3.jpg 440w, https://static01.nyt.com/images/2021/12/01/science/00VIRUS-mRNA-promo/00VIRUS-mRNA-promo-hpSmall.jpg 163w" alt="A 3-D plaster model of a coronavirus spike protein in the office of Dr. Barney Graham of the Vaccine Research Center of the National Institutes of Health."/></a>
<figcaption>
<span><span>Credit</span>Johnathon Kelso for The New York Times</span>
</figcaption>
@ -282,7 +276,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/18/espanol/prueba-covid-saliva.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/14/science/14virus-saliva1-esp-1/14virus-saliva1-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/14/science/14virus-saliva1-esp-1/14virus-saliva1-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/14/science/14virus-saliva1-esp-1/14virus-saliva1-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/14/science/14virus-saliva1-esp-1/14virus-saliva1-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/14/science/14virus-saliva1-esp-1/14virus-saliva1-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/14/science/14virus-saliva1-esp-1/14virus-saliva1-hpSmall.jpg 163w" alt="Un centro de pruebas de COVID-19 realizadas con saliva en la Universidad de Minnesota, en Mineápolis"></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/18/espanol/prueba-covid-saliva.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/14/science/14virus-saliva1-esp-1/14virus-saliva1-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/14/science/14virus-saliva1-esp-1/14virus-saliva1-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/14/science/14virus-saliva1-esp-1/14virus-saliva1-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/14/science/14virus-saliva1-esp-1/14virus-saliva1-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/14/science/14virus-saliva1-esp-1/14virus-saliva1-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/14/science/14virus-saliva1-esp-1/14virus-saliva1-hpSmall.jpg 163w" alt="Un centro de pruebas de COVID-19 realizadas con saliva en la Universidad de Minnesota, en Mine&#xE1;polis"/></a>
<figcaption>
<span><span>Credit</span>Jenn Ackerman para The New York Times</span>
</figcaption>
@ -293,7 +287,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/17/espanol/n95-covid-mascarillas.html" target="_blank"><img src="https://static01.nyt.com/images/2022/02/13/well/13well-n95mask-guide1-esp-1/13well-n95mask-guide1-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/02/13/well/13well-n95mask-guide1-esp-1/13well-n95mask-guide1-thumbLarge-v2.jpg 150w, https://static01.nyt.com/images/2022/02/13/well/13well-n95mask-guide1-esp-1/13well-n95mask-guide1-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/02/13/well/13well-n95mask-guide1-esp-1/13well-n95mask-guide1-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/02/13/well/13well-n95mask-guide1-esp-1/13well-n95mask-guide1-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/02/13/well/13well-n95mask-guide1-esp-1/13well-n95mask-guide1-hpSmall-v2.jpg 163w" alt=""></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/17/espanol/n95-covid-mascarillas.html" target="_blank"><img src="https://static01.nyt.com/images/2022/02/13/well/13well-n95mask-guide1-esp-1/13well-n95mask-guide1-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/02/13/well/13well-n95mask-guide1-esp-1/13well-n95mask-guide1-thumbLarge-v2.jpg 150w, https://static01.nyt.com/images/2022/02/13/well/13well-n95mask-guide1-esp-1/13well-n95mask-guide1-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/02/13/well/13well-n95mask-guide1-esp-1/13well-n95mask-guide1-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/02/13/well/13well-n95mask-guide1-esp-1/13well-n95mask-guide1-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/02/13/well/13well-n95mask-guide1-esp-1/13well-n95mask-guide1-hpSmall-v2.jpg 163w" alt=""/></a>
<figcaption>
<span><span>Credit</span>Charlie Rubin para The New York Times</span>
</figcaption>
@ -306,16 +300,14 @@
<section>
<header>
<h2>
<a href="http://fakehost/es/spotlight/elecciones-2020" target="_blank">Estados Unidos<svg viewbox="0 0 5.6 9.5" width="5.6" height="9.5" xml:space="preserve" xmlns="http://www.w3.org/1999/xlink" x="0px" y="0px">
<path d="M5.6,4.2L1.8,0L0,1.3l3.1,3.5L0,8.3l1.8,1.2l3.8-4.1V4.2z"></path></svg></a>
</h2>
<a href="http://fakehost/es/spotlight/elecciones-2020" target="_blank">Más en Estados Unidos </a>
<a href="http://fakehost/es/spotlight/elecciones-2020" target="_blank">Estados Unidos</a>
</h2><a href="http://fakehost/es/spotlight/elecciones-2020" target="_blank">Más en Estados Unidos </a>
</header>
<ol>
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/23/espanol/texas-operacion-estrella-solitaria.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/14/us/00texas-guards-esp-1/00texas-guards-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/14/us/00texas-guards-esp-1/00texas-guards-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/14/us/00texas-guards-esp-1/00texas-guards-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/14/us/00texas-guards-esp-1/00texas-guards-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/14/us/00texas-guards-esp-1/00texas-guards-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/14/us/00texas-guards-esp-1/00texas-guards-hpSmall.jpg 163w" alt="Una presentación sobre la Operación Estrella Solitaria, en Weslaco, Texas, el año pasado"></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/23/espanol/texas-operacion-estrella-solitaria.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/14/us/00texas-guards-esp-1/00texas-guards-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/14/us/00texas-guards-esp-1/00texas-guards-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/14/us/00texas-guards-esp-1/00texas-guards-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/14/us/00texas-guards-esp-1/00texas-guards-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/14/us/00texas-guards-esp-1/00texas-guards-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/14/us/00texas-guards-esp-1/00texas-guards-hpSmall.jpg 163w" alt="Una presentaci&#xF3;n sobre la Operaci&#xF3;n Estrella Solitaria, en Weslaco, Texas, el a&#xF1;o pasado"/></a>
<figcaption>
<span><span>Credit</span>Christopher Lee para The New York Times</span>
</figcaption>
@ -326,7 +318,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/07/espanol/donald-trump-republicanos-capitolio.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/05/us/politics/05trump-1-esp-1/merlin_182049705_b7c15186-9167-4b6e-931d-2f98e7ba04ef-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/05/us/politics/05trump-1-esp-1/05trump-1-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/05/us/politics/05trump-1-esp-1/merlin_182049705_b7c15186-9167-4b6e-931d-2f98e7ba04ef-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/05/us/politics/05trump-1-esp-1/merlin_182049705_b7c15186-9167-4b6e-931d-2f98e7ba04ef-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/05/us/politics/05trump-1-esp-1/merlin_182049705_b7c15186-9167-4b6e-931d-2f98e7ba04ef-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/05/us/politics/05trump-1-esp-1/merlin_182049705_b7c15186-9167-4b6e-931d-2f98e7ba04ef-hpSmall.jpg 163w" alt="Una multitud se reunió en el National Mall el 6 de enero de 2021, cuando el expresidente Donald Trump cuestionó los resultados de las elecciones de 2020."></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/07/espanol/donald-trump-republicanos-capitolio.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/05/us/politics/05trump-1-esp-1/merlin_182049705_b7c15186-9167-4b6e-931d-2f98e7ba04ef-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/05/us/politics/05trump-1-esp-1/05trump-1-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/05/us/politics/05trump-1-esp-1/merlin_182049705_b7c15186-9167-4b6e-931d-2f98e7ba04ef-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/05/us/politics/05trump-1-esp-1/merlin_182049705_b7c15186-9167-4b6e-931d-2f98e7ba04ef-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/05/us/politics/05trump-1-esp-1/merlin_182049705_b7c15186-9167-4b6e-931d-2f98e7ba04ef-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/05/us/politics/05trump-1-esp-1/merlin_182049705_b7c15186-9167-4b6e-931d-2f98e7ba04ef-hpSmall.jpg 163w" alt="Una multitud se reuni&#xF3; en el National Mall el 6 de enero de 2021, cuando el expresidente Donald Trump cuestion&#xF3; los resultados de las elecciones de 2020."/></a>
<figcaption>
<span><span>Credit</span>Pete Marovich para The New York Times</span>
</figcaption>
@ -337,7 +329,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/06/espanol/6-enero-capitolio-ataque.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/05/us/politics/06dc-factcheck-ESP-1/merlin_182053380_725e614e-df1a-4fdd-8963-20af3e9ab5cf-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/05/us/politics/06dc-factcheck-ESP-1/merlin_182053380_725e614e-df1a-4fdd-8963-20af3e9ab5cf-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/05/us/politics/06dc-factcheck-ESP-1/merlin_182053380_725e614e-df1a-4fdd-8963-20af3e9ab5cf-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/05/us/politics/06dc-factcheck-ESP-1/merlin_182053380_725e614e-df1a-4fdd-8963-20af3e9ab5cf-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/05/us/politics/06dc-factcheck-ESP-1/merlin_182053380_725e614e-df1a-4fdd-8963-20af3e9ab5cf-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/05/us/politics/06dc-factcheck-ESP-1/merlin_182053380_725e614e-df1a-4fdd-8963-20af3e9ab5cf-hpSmall.jpg 163w" alt="Ninguna de las más de 729 personas acusadas en relación con los disturbios del Capitolio tiene hasta ahora ninguna conexión con los antifa, según una base de datos de NPR sobre registros de detenciones."></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/06/espanol/6-enero-capitolio-ataque.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/05/us/politics/06dc-factcheck-ESP-1/merlin_182053380_725e614e-df1a-4fdd-8963-20af3e9ab5cf-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/05/us/politics/06dc-factcheck-ESP-1/merlin_182053380_725e614e-df1a-4fdd-8963-20af3e9ab5cf-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/05/us/politics/06dc-factcheck-ESP-1/merlin_182053380_725e614e-df1a-4fdd-8963-20af3e9ab5cf-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/05/us/politics/06dc-factcheck-ESP-1/merlin_182053380_725e614e-df1a-4fdd-8963-20af3e9ab5cf-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/05/us/politics/06dc-factcheck-ESP-1/merlin_182053380_725e614e-df1a-4fdd-8963-20af3e9ab5cf-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/05/us/politics/06dc-factcheck-ESP-1/merlin_182053380_725e614e-df1a-4fdd-8963-20af3e9ab5cf-hpSmall.jpg 163w" alt="Ninguna de las m&#xE1;s de 729 personas acusadas en relaci&#xF3;n con los disturbios del Capitolio tiene hasta ahora ninguna conexi&#xF3;n con los antifa, seg&#xFA;n una base de datos de NPR sobre registros de detenciones."/></a>
<figcaption>
<span><span>Credit</span>Jason Andrew para The New York Times</span>
</figcaption>
@ -348,7 +340,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/05/espanol/asalto-capitolio-investigacion.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/03/us/politics/03dc-riot-explainer-esp-1/merlin_190720395_49af63b7-f075-41dc-a3d3-5ed460494d3c-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/03/us/politics/03dc-riot-explainer-esp-1/merlin_190720395_49af63b7-f075-41dc-a3d3-5ed460494d3c-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/03/us/politics/03dc-riot-explainer-esp-1/merlin_190720395_49af63b7-f075-41dc-a3d3-5ed460494d3c-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/03/us/politics/03dc-riot-explainer-esp-1/merlin_190720395_49af63b7-f075-41dc-a3d3-5ed460494d3c-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/03/us/politics/03dc-riot-explainer-esp-1/merlin_190720395_49af63b7-f075-41dc-a3d3-5ed460494d3c-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/03/us/politics/03dc-riot-explainer-esp-1/merlin_190720395_49af63b7-f075-41dc-a3d3-5ed460494d3c-hpSmall.jpg 163w" alt="El expresidente Donald Trump el año pasado. Liz Cheney, representante republicana por Wyoming, ha calificado su lenta respuesta al atentado del 6 de enero como una negligencia en el cumplimiento del deber."></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/05/espanol/asalto-capitolio-investigacion.html" target="_blank"><img src="https://static01.nyt.com/images/2022/01/03/us/politics/03dc-riot-explainer-esp-1/merlin_190720395_49af63b7-f075-41dc-a3d3-5ed460494d3c-videoLarge.jpg" srcset="https://static01.nyt.com/images/2022/01/03/us/politics/03dc-riot-explainer-esp-1/merlin_190720395_49af63b7-f075-41dc-a3d3-5ed460494d3c-thumbLarge.jpg 150w, https://static01.nyt.com/images/2022/01/03/us/politics/03dc-riot-explainer-esp-1/merlin_190720395_49af63b7-f075-41dc-a3d3-5ed460494d3c-videoLarge.jpg 768w, https://static01.nyt.com/images/2022/01/03/us/politics/03dc-riot-explainer-esp-1/merlin_190720395_49af63b7-f075-41dc-a3d3-5ed460494d3c-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2022/01/03/us/politics/03dc-riot-explainer-esp-1/merlin_190720395_49af63b7-f075-41dc-a3d3-5ed460494d3c-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2022/01/03/us/politics/03dc-riot-explainer-esp-1/merlin_190720395_49af63b7-f075-41dc-a3d3-5ed460494d3c-hpSmall.jpg 163w" alt="El expresidente Donald Trump el a&#xF1;o pasado. Liz Cheney, representante republicana por Wyoming, ha calificado su lenta respuesta al atentado del 6 de enero como una negligencia en el cumplimiento del deber."/></a>
<figcaption>
<span><span>Credit</span>Cooper Neill para The New York Times</span>
</figcaption>
@ -359,7 +351,7 @@
<li>
<article>
<figure aria-label="media" role="group">
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/04/espanol/elizabeth-holmes-juicio.html" target="_blank"><img src="https://static01.nyt.com/images/2021/12/28/business/00holmes-siliconvalley1-esp-1/00holmes-siliconvalley1-videoLarge.jpg" srcset="https://static01.nyt.com/images/2021/12/28/business/00holmes-siliconvalley1-esp-1/00holmes-siliconvalley1-thumbLarge.jpg 150w, https://static01.nyt.com/images/2021/12/28/business/00holmes-siliconvalley1-esp-1/00holmes-siliconvalley1-videoLarge.jpg 768w, https://static01.nyt.com/images/2021/12/28/business/00holmes-siliconvalley1-esp-1/00holmes-siliconvalley1-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2021/12/28/business/00holmes-siliconvalley1-esp-1/00holmes-siliconvalley1-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2021/12/28/business/00holmes-siliconvalley1-esp-1/merlin_199542435_06a25cb4-18c0-45d3-b264-a9d8cccf3c33-hpSmall.jpg 163w" alt="Durante una década, Holmes engañó a inversionistas inteligentes, a cientos de empleados inteligentes, a un comité de figuras ilustres y a los medios de comunicación que estaban ansiosos por ungir a una nueva estrella."></a>
<span>Photo</span><a data-rref="" href="http://fakehost/es/2022/01/04/espanol/elizabeth-holmes-juicio.html" target="_blank"><img src="https://static01.nyt.com/images/2021/12/28/business/00holmes-siliconvalley1-esp-1/00holmes-siliconvalley1-videoLarge.jpg" srcset="https://static01.nyt.com/images/2021/12/28/business/00holmes-siliconvalley1-esp-1/00holmes-siliconvalley1-thumbLarge.jpg 150w, https://static01.nyt.com/images/2021/12/28/business/00holmes-siliconvalley1-esp-1/00holmes-siliconvalley1-videoLarge.jpg 768w, https://static01.nyt.com/images/2021/12/28/business/00holmes-siliconvalley1-esp-1/00holmes-siliconvalley1-mediumThreeByTwo225.jpg 225w, https://static01.nyt.com/images/2021/12/28/business/00holmes-siliconvalley1-esp-1/00holmes-siliconvalley1-mediumThreeByTwo440.jpg 440w, https://static01.nyt.com/images/2021/12/28/business/00holmes-siliconvalley1-esp-1/merlin_199542435_06a25cb4-18c0-45d3-b264-a9d8cccf3c33-hpSmall.jpg 163w" alt="Durante una d&#xE9;cada, Holmes enga&#xF1;&#xF3; a inversionistas inteligentes, a cientos de empleados inteligentes, a un comit&#xE9; de figuras ilustres y a los medios de comunicaci&#xF3;n que estaban ansiosos por ungir a una nueva estrella."/></a>
<figcaption>
<span><span>Credit</span>Jenny Hueston</span>
</figcaption>
@ -388,19 +380,15 @@
<a href="#stream-panel" aria-controls="stream-panel" aria-selected="true" data-id="latest" role="tab">Lo más reciente</a>
</li>
<li role="presentation">
<a role="tab" href="#stream-panel" aria-controls="stream-panel" data-id="search" aria-selected="false"><svg viewbox="0 0 16 16">
<path fill="#333" d="M11.3,9.2C11.7,8.4,12,7.5,12,6.5C12,3.5,9.5,1,6.5,1S1,3.5,1,6.5S3.5,12,6.5,12c1,0,1.9-0.3,2.7-0.7l3.3,3.3c0.3,0.3,0.7,0.4,1.1,0.4s0.8-0.1,1.1-0.4c0.6-0.6,0.6-1.5,0-2.1L11.3,9.2zM6.5,10.3c-2.1,0-3.8-1.7-3.8-3.8c0-2.1,1.7-3.8,3.8-3.8c2.1,0,3.8,1.7,3.8,3.8C10.3,8.6,8.6,10.3,6.5,10.3z"></path></svg><span>Buscar</span>
<a role="tab" href="#stream-panel" aria-controls="stream-panel" data-id="search" aria-selected="false"><span>Buscar</span>
</a>
</li>
</ul>
</nav>
<section id="stream-panel">
</section>
</div>
</section>
</main>
</div></article>
</div></article>

View file

@ -1,6 +1,6 @@
<article><div id="readability-page-1">
<p>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413" target="_blank"><img title="12-IMG_3886.jpg" src="http://pic.pimg.tw/stevenhgm/1387894842-1217674167.jpg" alt="12-IMG_3886.jpg" original="http://pic.pimg.tw/stevenhgm/1387894842-1217674167.jpg" width="521" height="359"></a>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413" target="_blank"><img title="12-IMG_3886.jpg" src="http://pic.pimg.tw/stevenhgm/1387894842-1217674167.jpg" alt="12-IMG_3886.jpg" original="http://pic.pimg.tw/stevenhgm/1387894842-1217674167.jpg" width="521" height="359"/></a>
</p>
<p><span>一波波<span>接續性</span>低溫寒流報到 已將新竹尖石鄉後山一帶層層山巒披上嫣紅的彩衣</span>
</p>
@ -14,7 +14,7 @@
<p><span><span><span>營區內</span></span>除了露營、民宿、餐飲</span><span><span></span>賞楓項目<span>多了許多原木飾品更有畫龍點睛加乘效果</span></span>
</p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470396919" target="_blank"><img title="30-IMG_4228.jpg" src="http://pic.pimg.tw/stevenhgm/1387894971-1486345289.jpg" alt="30-IMG_4228.jpg" original="http://pic.pimg.tw/stevenhgm/1387894971-1486345289.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470396919" target="_blank"><img title="30-IMG_4228.jpg" src="http://pic.pimg.tw/stevenhgm/1387894971-1486345289.jpg" alt="30-IMG_4228.jpg" original="http://pic.pimg.tw/stevenhgm/1387894971-1486345289.jpg"/></a></span></p>
<p><span>廣受歡迎的美樹營地有個很大特色就是<span>楓紅時期楓香樹由綠轉黃、轉紅到楓紅層層</span> </span>
</p>
<p><span><span>一來到"美樹"馬上眼睛為之一亮 也會深深地為那</span></span><span><span>多種顏色多層次渲染之下楓紅而迷惑</span></span>
@ -29,66 +29,66 @@
</p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470396943" target="_blank"><img title="31-IMG_4231.jpg" src="http://pic.pimg.tw/stevenhgm/1387894979-1252095111.jpg" alt="31-IMG_4231.jpg" original="http://pic.pimg.tw/stevenhgm/1387894979-1252095111.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470396943" target="_blank"><img title="31-IMG_4231.jpg" src="http://pic.pimg.tw/stevenhgm/1387894979-1252095111.jpg" alt="31-IMG_4231.jpg" original="http://pic.pimg.tw/stevenhgm/1387894979-1252095111.jpg"/></a></span></p>
<p><span> 每年12月向來是攝影班外拍的絕佳場所之一 楓紅期間入園費$50元</span></p>
<p><span>園區給愛攝一族淨空場景而不是散搭帳蓬之下反</span><span>而影響拍照畫面與構圖取景</span></p>
<p><span>露營的話則須待中午過後再進場搭帳的彈性做法個人也相當支持這樣的權宜之計</span></p>
<p><span> </span>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413" target="_blank"><img title="P1610088.jpg" src="http://pic.pimg.tw/stevenhgm/1387971416-4261675924.jpg" alt="P1610088.jpg" original="http://pic.pimg.tw/stevenhgm/1387971416-4261675924.jpg"></a>
<p>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413" target="_blank"><img title="P1610088.jpg" src="http://pic.pimg.tw/stevenhgm/1387971416-4261675924.jpg" alt="P1610088.jpg" original="http://pic.pimg.tw/stevenhgm/1387971416-4261675924.jpg"/></a>
</p>
<p> <span>來到現場已是落葉飄飄堆疊滿地 不時隨著風吹雨襲而葉落垂地</span></p>
<p><span> </span>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413" target="_blank"><img title="P1610069.jpg" src="http://pic.pimg.tw/stevenhgm/1387971406-2480195851.jpg" alt="P1610069.jpg" original="http://pic.pimg.tw/stevenhgm/1387971406-2480195851.jpg"></a>
<p>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413" target="_blank"><img title="P1610069.jpg" src="http://pic.pimg.tw/stevenhgm/1387971406-2480195851.jpg" alt="P1610069.jpg" original="http://pic.pimg.tw/stevenhgm/1387971406-2480195851.jpg"/></a>
</p>
<p><span>不忍踩過剛剛掉落的樹葉 沿著前人足跡踏痕輕踩而行</span></p>
<p><span>雖然只是一廂情願的想法 終究還是不可避免地將會化為塵土</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470383005" target="_blank"><img title="02-P1610080.jpg" src="http://pic.pimg.tw/stevenhgm/1387894752-3567294980.jpg" alt="02-P1610080.jpg" original="http://pic.pimg.tw/stevenhgm/1387894752-3567294980.jpg"></a> </span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470383005" target="_blank"><img title="02-P1610080.jpg" src="http://pic.pimg.tw/stevenhgm/1387894752-3567294980.jpg" alt="02-P1610080.jpg" original="http://pic.pimg.tw/stevenhgm/1387894752-3567294980.jpg"/></a> </span></p>
<p><span> 葉落繽紛顯得幾分蕭瑟氣息 空氣中可以嗅得出來<span>依然</span>瀰漫著濕寒水氣</span>
</p>
<p><span>偶而還會飄下來一些霧氣水滴 不時張望尋找最佳楓葉主題</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470384469" target="_blank"><img title="04-P1610087.jpg" src="http://pic.pimg.tw/stevenhgm/1387894771-2897027724.jpg" alt="04-P1610087.jpg" original="http://pic.pimg.tw/stevenhgm/1387894771-2897027724.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470384469" target="_blank"><img title="04-P1610087.jpg" src="http://pic.pimg.tw/stevenhgm/1387894771-2897027724.jpg" alt="04-P1610087.jpg" original="http://pic.pimg.tw/stevenhgm/1387894771-2897027724.jpg"/></a></span></p>
<p><span> 外拍的攝影班學員一堆早已不時穿梭其間</span></p>
<p><span>各自努力地找尋自認為最好的拍攝角度</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470384925" target="_blank"><img title="05-P1610099.jpg" src="http://pic.pimg.tw/stevenhgm/1387894778-2035483089.jpg" alt="05-P1610099.jpg" original="http://pic.pimg.tw/stevenhgm/1387894778-2035483089.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470384925" target="_blank"><img title="05-P1610099.jpg" src="http://pic.pimg.tw/stevenhgm/1387894778-2035483089.jpg" alt="05-P1610099.jpg" original="http://pic.pimg.tw/stevenhgm/1387894778-2035483089.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470389413" target="_blank"><img title="P1610095.jpg" src="http://pic.pimg.tw/stevenhgm/1387897405-3236217457.jpg" alt="P1610095.jpg" original="http://pic.pimg.tw/stevenhgm/1387897405-3236217457.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470389413" target="_blank"><img title="P1610095.jpg" src="http://pic.pimg.tw/stevenhgm/1387897405-3236217457.jpg" alt="P1610095.jpg" original="http://pic.pimg.tw/stevenhgm/1387897405-3236217457.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470389803" target="_blank"><img title="13-IMG_3891.jpg" src="http://pic.pimg.tw/stevenhgm/1387894848-3695967443.jpg" alt="13-IMG_3891.jpg" original="http://pic.pimg.tw/stevenhgm/1387894848-3695967443.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470389803" target="_blank"><img title="13-IMG_3891.jpg" src="http://pic.pimg.tw/stevenhgm/1387894848-3695967443.jpg" alt="13-IMG_3891.jpg" original="http://pic.pimg.tw/stevenhgm/1387894848-3695967443.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470390760" target="_blank"><img title="15-IMG_3906.jpg" src="http://pic.pimg.tw/stevenhgm/1387894863-3269042540.jpg" alt="15-IMG_3906.jpg" original="http://pic.pimg.tw/stevenhgm/1387894863-3269042540.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470390760" target="_blank"><img title="15-IMG_3906.jpg" src="http://pic.pimg.tw/stevenhgm/1387894863-3269042540.jpg" alt="15-IMG_3906.jpg" original="http://pic.pimg.tw/stevenhgm/1387894863-3269042540.jpg"/></a></span></p>
<p><span>"水槽"上面的這幾隻彩繪版貓頭鷹也太可愛了</span></p>
<p><span>同樣的造型加上不同色彩宛如賦予不同的生命力一般 cool!</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470391000" target="_blank"><img title="16-IMG_3916.jpg" src="http://pic.pimg.tw/stevenhgm/1387894868-3997219746.jpg" alt="16-IMG_3916.jpg" original="http://pic.pimg.tw/stevenhgm/1387894868-3997219746.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470391000" target="_blank"><img title="16-IMG_3916.jpg" src="http://pic.pimg.tw/stevenhgm/1387894868-3997219746.jpg" alt="16-IMG_3916.jpg" original="http://pic.pimg.tw/stevenhgm/1387894868-3997219746.jpg"/></a></span></p>
<p><span> 雨水洗塵後的枝頭固然掉落些葉片是否也洗去塵勞憂傷</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470391519" target="_blank"><img title="17-IMG_3919.jpg" src="http://pic.pimg.tw/stevenhgm/1387894873-1524806724.jpg" alt="17-IMG_3919.jpg" original="http://pic.pimg.tw/stevenhgm/1387894873-1524806724.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470391519" target="_blank"><img title="17-IMG_3919.jpg" src="http://pic.pimg.tw/stevenhgm/1387894873-1524806724.jpg" alt="17-IMG_3919.jpg" original="http://pic.pimg.tw/stevenhgm/1387894873-1524806724.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470385711" target="_blank"><img title="06-IMG_3853.jpg" src="http://pic.pimg.tw/stevenhgm/1387894788-105924953.jpg" alt="06-IMG_3853.jpg" original="http://pic.pimg.tw/stevenhgm/1387894788-105924953.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470385711" target="_blank"><img title="06-IMG_3853.jpg" src="http://pic.pimg.tw/stevenhgm/1387894788-105924953.jpg" alt="06-IMG_3853.jpg" original="http://pic.pimg.tw/stevenhgm/1387894788-105924953.jpg"/></a></span></p>
<p><span> 喜歡拍照的不論是平面掃描、天空搜尋、</span><span>地上地毯式搜索</span></p>
<p><span>有如小說偵探一般 不放過蛛絲馬跡地用力尋尋覓覓找尋最美角度</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470386749" target="_blank"><img title="07-P1610104.jpg" src="http://pic.pimg.tw/stevenhgm/1387894798-1063855065.jpg" alt="07-P1610104.jpg" original="http://pic.pimg.tw/stevenhgm/1387894798-1063855065.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470386749" target="_blank"><img title="07-P1610104.jpg" src="http://pic.pimg.tw/stevenhgm/1387894798-1063855065.jpg" alt="07-P1610104.jpg" original="http://pic.pimg.tw/stevenhgm/1387894798-1063855065.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470387232" target="_blank"><img title="08-IMG_3862.jpg" src="http://pic.pimg.tw/stevenhgm/1387894807-309560703.jpg" alt="08-IMG_3862.jpg" original="http://pic.pimg.tw/stevenhgm/1387894807-309560703.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470387232" target="_blank"><img title="08-IMG_3862.jpg" src="http://pic.pimg.tw/stevenhgm/1387894807-309560703.jpg" alt="08-IMG_3862.jpg" original="http://pic.pimg.tw/stevenhgm/1387894807-309560703.jpg"/></a></span></p>
<p><span> 原本這周是由小朱團長早在一年前就跟"簍信"預定下來的場子</span></p>
<p><span>早上從台北出門之際還是小雨不斷細雨紛飛來到此地雖雨已停</span></p>
<p><span>但多日來的雨勢不斷已有部分區域水漬成攤並不適合落置帳篷</span></p>
@ -98,32 +98,32 @@
</p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470391732" target="_blank"><img title="18-P1610141.jpg" src="http://pic.pimg.tw/stevenhgm/1387894882-1881930036.jpg" alt="18-P1610141.jpg" original="http://pic.pimg.tw/stevenhgm/1387894882-1881930036.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470391732" target="_blank"><img title="18-P1610141.jpg" src="http://pic.pimg.tw/stevenhgm/1387894882-1881930036.jpg" alt="18-P1610141.jpg" original="http://pic.pimg.tw/stevenhgm/1387894882-1881930036.jpg"/></a></span></p>
<p><span>午後從"秀巒"回到美樹之際已經全數撤退只剩下我們三車留下來</span></p>
<p><span>唯有"離開地球表面"睡車上的才可以不受到地上泥濘而影響</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470392077" target="_blank"><img title="19-IMG_3933.jpg" src="http://pic.pimg.tw/stevenhgm/1387894887-407829597.jpg" alt="19-IMG_3933.jpg" original="http://pic.pimg.tw/stevenhgm/1387894887-407829597.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470392077" target="_blank"><img title="19-IMG_3933.jpg" src="http://pic.pimg.tw/stevenhgm/1387894887-407829597.jpg" alt="19-IMG_3933.jpg" original="http://pic.pimg.tw/stevenhgm/1387894887-407829597.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470390364" target="_blank"><img title="14-P1610134.jpg" src="http://pic.pimg.tw/stevenhgm/1387894857-470378275.jpg" alt="14-P1610134.jpg" original="http://pic.pimg.tw/stevenhgm/1387894857-470378275.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470390364" target="_blank"><img title="14-P1610134.jpg" src="http://pic.pimg.tw/stevenhgm/1387894857-470378275.jpg" alt="14-P1610134.jpg" original="http://pic.pimg.tw/stevenhgm/1387894857-470378275.jpg"/></a></span></p>
<p><span> 午後山嵐興起雲氣遊蕩<span>盤旋在對岸山頭 人潮來來去去似乎也沒有減少</span></span>
</p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470403381" target="_blank"><img title="44-P1610283.jpg" src="http://pic.pimg.tw/stevenhgm/1387895099-4119123008.jpg" alt="44-P1610283.jpg" original="http://pic.pimg.tw/stevenhgm/1387895099-4119123008.jpg"></a></span></p>
<p><span> 美樹民宿有開設餐廳 室內簡單佈置提供伙食餐飲 <br></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470403381" target="_blank"><img title="44-P1610283.jpg" src="http://pic.pimg.tw/stevenhgm/1387895099-4119123008.jpg" alt="44-P1610283.jpg" original="http://pic.pimg.tw/stevenhgm/1387895099-4119123008.jpg"/></a></span></p>
<p><span> 美樹民宿有開設餐廳 室內簡單佈置提供伙食餐飲 <br/></span></p>
<p>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413" target="_blank"><img title="P1610212.jpg" src="http://pic.pimg.tw/stevenhgm/1387971426-4277312474.jpg" alt="P1610212.jpg" original="http://pic.pimg.tw/stevenhgm/1387971426-4277312474.jpg"></a>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413" target="_blank"><img title="P1610212.jpg" src="http://pic.pimg.tw/stevenhgm/1387971426-4277312474.jpg" alt="P1610212.jpg" original="http://pic.pimg.tw/stevenhgm/1387971426-4277312474.jpg"/></a>
</p>
<p> <span>這兩間是民宿房間 跟著民宿主人"簍信"聊起來還提到日後將改變成兩層木屋</span></p>
<p><span>一樓則是咖啡飲料/賣店提供訪客來賓有個落腳席座之地 二樓才會是民宿房間</span></p>
<p><span>心中有了計畫想法才會有日後的夢想藍圖 相信將會改變得更好的民宿露營環境<br></span></p>
<p><span>心中有了計畫想法才會有日後的夢想藍圖 相信將會改變得更好的民宿露營環境<br/></span></p>
<p>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413" target="_blank"><img title="P1610219.jpg" src="http://pic.pimg.tw/stevenhgm/1387971436-2828193592.jpg" alt="P1610219.jpg" original="http://pic.pimg.tw/stevenhgm/1387971436-2828193592.jpg"></a>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413" target="_blank"><img title="P1610219.jpg" src="http://pic.pimg.tw/stevenhgm/1387971436-2828193592.jpg" alt="P1610219.jpg" original="http://pic.pimg.tw/stevenhgm/1387971436-2828193592.jpg"/></a>
</p>
<p><span> 民宿前這一大區楓香林為土質營位 大致區分前、後兩個營區</span></p>
<p><span>前面這一區約可搭上十二帳/車/廳 後面那區也大約4~5帳/車/廳</span></p>
@ -131,26 +131,26 @@
</p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470388054" target="_blank"><img title="10-P1610114.jpg" src="http://pic.pimg.tw/stevenhgm/1387894823-4061326865.jpg" alt="10-P1610114.jpg" original="http://pic.pimg.tw/stevenhgm/1387894823-4061326865.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470388054" target="_blank"><img title="10-P1610114.jpg" src="http://pic.pimg.tw/stevenhgm/1387894823-4061326865.jpg" alt="10-P1610114.jpg" original="http://pic.pimg.tw/stevenhgm/1387894823-4061326865.jpg"/></a></span></p>
<p><span> 營區水電方便 水槽也很有特色</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470393178" target="_blank"><img title="22-P1610245.jpg" src="http://pic.pimg.tw/stevenhgm/1387894911-3706194096.jpg" alt="22-P1610245.jpg" original="http://pic.pimg.tw/stevenhgm/1387894911-3706194096.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470393178" target="_blank"><img title="22-P1610245.jpg" src="http://pic.pimg.tw/stevenhgm/1387894911-3706194096.jpg" alt="22-P1610245.jpg" original="http://pic.pimg.tw/stevenhgm/1387894911-3706194096.jpg"/></a></span></p>
<p><span> 這次選擇左側地勢高些以防午夜下雨泥濘</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470392404" target="_blank"><img title="20-P1610238.jpg" src="http://pic.pimg.tw/stevenhgm/1387894894-1173705525.jpg" alt="20-P1610238.jpg" original="http://pic.pimg.tw/stevenhgm/1387894894-1173705525.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470392404" target="_blank"><img title="20-P1610238.jpg" src="http://pic.pimg.tw/stevenhgm/1387894894-1173705525.jpg" alt="20-P1610238.jpg" original="http://pic.pimg.tw/stevenhgm/1387894894-1173705525.jpg"/></a></span></p>
<p><span> "野馬"特地帶來了冬至應景食材ㄜ<span>---湯圓</span></span>
</p>
<p><span>這家還是最近被評比第一名氣的湯圓專賣店 </span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470393130" target="_blank"><img title="21-P1610241.jpg" src="http://pic.pimg.tw/stevenhgm/1387894901-1058040075.jpg" alt="21-P1610241.jpg" original="http://pic.pimg.tw/stevenhgm/1387894901-1058040075.jpg"></a></span></p>
<p><span> 向來對於湯圓是敬謝不敏 沒想到是出乎意料之外的好吃 <span>沒話說!</span><br></span>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470393130" target="_blank"><img title="21-P1610241.jpg" src="http://pic.pimg.tw/stevenhgm/1387894901-1058040075.jpg" alt="21-P1610241.jpg" original="http://pic.pimg.tw/stevenhgm/1387894901-1058040075.jpg"/></a></span></p>
<p><span> 向來對於湯圓是敬謝不敏 沒想到是出乎意料之外的好吃 <span>沒話說!</span><br/></span>
</p>
<p><span> <a href="http://stevenhgm.pixnet.net/album/photo/470394156" target="_blank"><img title="24-IMG_4113.jpg" src="http://pic.pimg.tw/stevenhgm/1387894925-1582979930.jpg" alt="24-IMG_4113.jpg" original="http://pic.pimg.tw/stevenhgm/1387894925-1582979930.jpg"></a></span></p>
<p><span> <a href="http://stevenhgm.pixnet.net/album/photo/470394156" target="_blank"><img title="24-IMG_4113.jpg" src="http://pic.pimg.tw/stevenhgm/1387894925-1582979930.jpg" alt="24-IMG_4113.jpg" original="http://pic.pimg.tw/stevenhgm/1387894925-1582979930.jpg"/></a></span></p>
<p><span> 喜歡原住民朋友的坦率、真誠 要將民宿營地經營的有聲有色並非容易之事</span></p>
<p><span><span>午茶時間與"簍信"閒聊分享著他的觀點理念之時很支持對於環境應有生態保護</span> </span>
</p>
@ -159,46 +159,46 @@
</p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470397399" target="_blank"><img title="32-IMG_4248.jpg" src="http://pic.pimg.tw/stevenhgm/1387894989-1689510758.jpg" alt="32-IMG_4248.jpg" original="http://pic.pimg.tw/stevenhgm/1387894989-1689510758.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470397399" target="_blank"><img title="32-IMG_4248.jpg" src="http://pic.pimg.tw/stevenhgm/1387894989-1689510758.jpg" alt="32-IMG_4248.jpg" original="http://pic.pimg.tw/stevenhgm/1387894989-1689510758.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470394732" target="_blank"><img title="25-IMG_4152.jpg" src="http://pic.pimg.tw/stevenhgm/1387894933-2886337976.jpg" alt="25-IMG_4152.jpg" original="http://pic.pimg.tw/stevenhgm/1387894933-2886337976.jpg"></a> </span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470394732" target="_blank"><img title="25-IMG_4152.jpg" src="http://pic.pimg.tw/stevenhgm/1387894933-2886337976.jpg" alt="25-IMG_4152.jpg" original="http://pic.pimg.tw/stevenhgm/1387894933-2886337976.jpg"/></a> </span></p>
<p><span> 入夜前雨絲終於漸漸緩和下來 雖然氣溫很低卻沒感受到寒冷的跡象</span></p>
<p><span>是山谷中少了寒氣還是美樹營區裡的人熱情洋溢暖化了不少寒意</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470404359" target="_blank"><img title="IMG_4158.jpg" src="http://pic.pimg.tw/stevenhgm/1387895113-4041265313.jpg" alt="IMG_4158.jpg" original="http://pic.pimg.tw/stevenhgm/1387895113-4041265313.jpg"></a></span></p>
<p><span> 聖誕前夕裝點些聖誕飾品 感受一下節慶的氛圍<br></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470404359" target="_blank"><img title="IMG_4158.jpg" src="http://pic.pimg.tw/stevenhgm/1387895113-4041265313.jpg" alt="IMG_4158.jpg" original="http://pic.pimg.tw/stevenhgm/1387895113-4041265313.jpg"/></a></span></p>
<p><span> 聖誕前夕裝點些聖誕飾品 感受一下節慶的氛圍<br/></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470394948" target="_blank"><img title="26-P1610261.jpg" src="http://pic.pimg.tw/stevenhgm/1387894940-3359449338.jpg" alt="26-P1610261.jpg" original="http://pic.pimg.tw/stevenhgm/1387894940-3359449338.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470394948" target="_blank"><img title="26-P1610261.jpg" src="http://pic.pimg.tw/stevenhgm/1387894940-3359449338.jpg" alt="26-P1610261.jpg" original="http://pic.pimg.tw/stevenhgm/1387894940-3359449338.jpg"/></a></span></p>
<p><span>晚餐準備了砂鍋魚頭</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470403921" target="_blank"><img title="46-1021221美樹露營.jpg" src="http://pic.pimg.tw/stevenhgm/1387895106-1387217970.jpg" alt="46-1021221美樹露營.jpg" original="http://pic.pimg.tw/stevenhgm/1387895106-1387217970.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470403921" target="_blank"><img title="46-1021221&#x7F8E;&#x6A39;&#x9732;&#x71DF;.jpg" src="http://pic.pimg.tw/stevenhgm/1387895106-1387217970.jpg" alt="46-1021221&#x7F8E;&#x6A39;&#x9732;&#x71DF;.jpg" original="http://pic.pimg.tw/stevenhgm/1387895106-1387217970.jpg"/></a></span></p>
<p><span>"蒯嫂"還特地準備著羊肩排、鹹豬肉、柳葉魚...哇!這哩澎湃哩...</span></p>
<p><span> "永老爺"早已備妥了好酒為遠自台南來的蒯兄嫂敬一杯囉</span></p>
<p><span>感謝蒯嫂精心準備的好料理 食指大動好菜色感恩ㄟ!</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470395164" target="_blank"><img title="27-IMG_4173.jpg" src="http://pic.pimg.tw/stevenhgm/1387894947-2636431527.jpg" alt="27-IMG_4173.jpg" original="http://pic.pimg.tw/stevenhgm/1387894947-2636431527.jpg"></a></span></p>
<p><span> 吃得快精光之際...才想到忘了拍合照...(哇哩咧 ^&amp;*()<br></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470395164" target="_blank"><img title="27-IMG_4173.jpg" src="http://pic.pimg.tw/stevenhgm/1387894947-2636431527.jpg" alt="27-IMG_4173.jpg" original="http://pic.pimg.tw/stevenhgm/1387894947-2636431527.jpg"/></a></span></p>
<p><span> 吃得快精光之際...才想到忘了拍合照...(哇哩咧 ^&amp;*()<br/></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470395614" target="_blank"><img title="28-IMG_4178.jpg" src="http://pic.pimg.tw/stevenhgm/1387894956-618198074.jpg" alt="28-IMG_4178.jpg" original="http://pic.pimg.tw/stevenhgm/1387894956-618198074.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470395614" target="_blank"><img title="28-IMG_4178.jpg" src="http://pic.pimg.tw/stevenhgm/1387894956-618198074.jpg" alt="28-IMG_4178.jpg" original="http://pic.pimg.tw/stevenhgm/1387894956-618198074.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470396325" target="_blank"><img title="29-IMG_4188.jpg" src="http://pic.pimg.tw/stevenhgm/1387894961-2201609427.jpg" alt="29-IMG_4188.jpg" original="http://pic.pimg.tw/stevenhgm/1387894961-2201609427.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470396325" target="_blank"><img title="29-IMG_4188.jpg" src="http://pic.pimg.tw/stevenhgm/1387894961-2201609427.jpg" alt="29-IMG_4188.jpg" original="http://pic.pimg.tw/stevenhgm/1387894961-2201609427.jpg"/></a></span></p>
<p><span> 隔日睡到很晚才起床 不用拍日出晨光的營地對我來說都是個幸福的睡眠</span></p>
<p><span>哪怕是葉落飄零落滿地還是睡夢周公召見而去 起床的事~差點都忘記了</span></p>
<p>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413" target="_blank"><img title="IMG_4205.jpg" src="http://pic.pimg.tw/stevenhgm/1387971396-2999285851.jpg" alt="IMG_4205.jpg" original="http://pic.pimg.tw/stevenhgm/1387971396-2999285851.jpg"></a>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413" target="_blank"><img title="IMG_4205.jpg" src="http://pic.pimg.tw/stevenhgm/1387971396-2999285851.jpg" alt="IMG_4205.jpg" original="http://pic.pimg.tw/stevenhgm/1387971396-2999285851.jpg"/></a>
</p>
<p> <span> 昨天細雨紛飛依然打落了不少落葉中間這株整個都快變成枯枝了</span></p>
<p><span>昨天依稀凋零稀疏的楓葉殘留今兒個完全不復存在(上周是最美的代名詞)</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470397765" target="_blank"><img title="33-IMG_4255.jpg" src="http://pic.pimg.tw/stevenhgm/1387894999-1588465034.jpg" alt="33-IMG_4255.jpg" original="http://pic.pimg.tw/stevenhgm/1387894999-1588465034.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470397765" target="_blank"><img title="33-IMG_4255.jpg" src="http://pic.pimg.tw/stevenhgm/1387894999-1588465034.jpg" alt="33-IMG_4255.jpg" original="http://pic.pimg.tw/stevenhgm/1387894999-1588465034.jpg"/></a></span></p>
<p><span><span>上回來得太早沒能見到楓葉泛紅 這次晚了一周已陸續落葉也</span>無從比對楓葉差異性 </span>
</p>
<p><span><span> 另一種角度看不論青楓、金黃葉紅的楓香、葉落飄零秋滿霜、落葉枯枝的蕭瑟</span></span>
@ -207,44 +207,44 @@
</p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470398749" target="_blank"><img title="34-P1610269.jpg" src="http://pic.pimg.tw/stevenhgm/1387895007-4184988815.jpg" alt="34-P1610269.jpg" original="http://pic.pimg.tw/stevenhgm/1387895007-4184988815.jpg"></a></span></p>
<p><span> 早起的"蒯嫂"已經備好熱騰騰中式稀飯、包子、蔬果 頓時~有幸福的感覺<br></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470398749" target="_blank"><img title="34-P1610269.jpg" src="http://pic.pimg.tw/stevenhgm/1387895007-4184988815.jpg" alt="34-P1610269.jpg" original="http://pic.pimg.tw/stevenhgm/1387895007-4184988815.jpg"/></a></span></p>
<p><span> 早起的"蒯嫂"已經備好熱騰騰中式稀飯、包子、蔬果 頓時~有幸福的感覺<br/></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470399232" target="_blank"><img title="35-IMG_4303.jpg" src="http://pic.pimg.tw/stevenhgm/1387895016-2193615729.jpg" alt="35-IMG_4303.jpg" original="http://pic.pimg.tw/stevenhgm/1387895016-2193615729.jpg"></a> </span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470399232" target="_blank"><img title="35-IMG_4303.jpg" src="http://pic.pimg.tw/stevenhgm/1387895016-2193615729.jpg" alt="35-IMG_4303.jpg" original="http://pic.pimg.tw/stevenhgm/1387895016-2193615729.jpg"/></a> </span></p>
<p><span> 星期天早上趁著攝影團還沒入場先來人物場景特寫</span></p>
<p><span>野馬家兩張新"座椅"就當作是試坐囉!拍謝哩</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470400471" target="_blank"><img title="38-IMG_4330.jpg" src="http://pic.pimg.tw/stevenhgm/1387895047-92554161.jpg" alt="38-IMG_4330.jpg" original="http://pic.pimg.tw/stevenhgm/1387895047-92554161.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470400471" target="_blank"><img title="38-IMG_4330.jpg" src="http://pic.pimg.tw/stevenhgm/1387895047-92554161.jpg" alt="38-IMG_4330.jpg" original="http://pic.pimg.tw/stevenhgm/1387895047-92554161.jpg"/></a></span></p>
<p>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413" target="_blank"><img title="P1610279.jpg" src="http://pic.pimg.tw/stevenhgm/1387971446-966387512.jpg" alt="P1610279.jpg" original="http://pic.pimg.tw/stevenhgm/1387971446-966387512.jpg"></a>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413" target="_blank"><img title="P1610279.jpg" src="http://pic.pimg.tw/stevenhgm/1387971446-966387512.jpg" alt="P1610279.jpg" original="http://pic.pimg.tw/stevenhgm/1387971446-966387512.jpg"/></a>
</p>
<p><span> 難得有此無人美景在楓樹下的聖誕氛圍也一定要來一張才行</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470399946" target="_blank"><img title="37-IMG_4323.jpg" src="http://pic.pimg.tw/stevenhgm/1387895036-848978834.jpg" alt="37-IMG_4323.jpg" original="http://pic.pimg.tw/stevenhgm/1387895036-848978834.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470399946" target="_blank"><img title="37-IMG_4323.jpg" src="http://pic.pimg.tw/stevenhgm/1387895036-848978834.jpg" alt="37-IMG_4323.jpg" original="http://pic.pimg.tw/stevenhgm/1387895036-848978834.jpg"/></a></span></p>
<p><span> 三家合照Hero也一定要入鏡的</span></p>
<p><span> <a href="http://stevenhgm.pixnet.net/album/photo/470401161" target="_blank"><img title="40-IMG_4342.jpg" src="http://pic.pimg.tw/stevenhgm/1387895067-717977929.jpg" alt="40-IMG_4342.jpg" original="http://pic.pimg.tw/stevenhgm/1387895067-717977929.jpg"></a></span></p>
<p><span> <a href="http://stevenhgm.pixnet.net/album/photo/470401161" target="_blank"><img title="40-IMG_4342.jpg" src="http://pic.pimg.tw/stevenhgm/1387895067-717977929.jpg" alt="40-IMG_4342.jpg" original="http://pic.pimg.tw/stevenhgm/1387895067-717977929.jpg"/></a></span></p>
<p><span> 接著攝影團入場帶隊老師請求借個時間也來讓學員練習楓樹下的聖誕飾品</span></p>
<p><span>此時剛好也遇到早在FB社團相互回應卻頭一次謀面的Mr."大雄"真是幸會了</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470402037" target="_blank"><img title="42-IMG_4382.jpg" src="http://pic.pimg.tw/stevenhgm/1387895083-1227791497.jpg" alt="42-IMG_4382.jpg" original="http://pic.pimg.tw/stevenhgm/1387895083-1227791497.jpg"></a> </span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470402037" target="_blank"><img title="42-IMG_4382.jpg" src="http://pic.pimg.tw/stevenhgm/1387895083-1227791497.jpg" alt="42-IMG_4382.jpg" original="http://pic.pimg.tw/stevenhgm/1387895083-1227791497.jpg"/></a> </span></p>
<p><span> 接近中午時分陽光漸露 藍天帷幕再次嶄露頭角 ~ 久違了!</span></p>
<p><span>期盼下的天空終於放晴 沒有缺席的藍天還是準時赴約如期出席</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470402682" target="_blank"><img title="41-IMG_4366.jpg" src="http://pic.pimg.tw/stevenhgm/1387895075-2647157523.jpg" alt="41-IMG_4366.jpg" original="http://pic.pimg.tw/stevenhgm/1387895075-2647157523.jpg"></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470402682" target="_blank"><img title="41-IMG_4366.jpg" src="http://pic.pimg.tw/stevenhgm/1387895075-2647157523.jpg" alt="41-IMG_4366.jpg" original="http://pic.pimg.tw/stevenhgm/1387895075-2647157523.jpg"/></a></span></p>
<p><span> 這兩天肉肉(Hero)天雨濕滑無法自由奔跑都快悶壞了</span></p>
<p><span>天晴後"蒯嫂"帶著散步遊園也好解解悶</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470402898" target="_blank"><img title="43-IMG_4383.jpg" src="http://pic.pimg.tw/stevenhgm/1387895093-631461272.jpg" alt="43-IMG_4383.jpg" original="http://pic.pimg.tw/stevenhgm/1387895093-631461272.jpg"></a> </span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470402898" target="_blank"><img title="43-IMG_4383.jpg" src="http://pic.pimg.tw/stevenhgm/1387895093-631461272.jpg" alt="43-IMG_4383.jpg" original="http://pic.pimg.tw/stevenhgm/1387895093-631461272.jpg"/></a> </span></p>
<p><span>收拾好裝備準備離開營地 亮麗的</span><span>天空鮮明對比下的楓樹林又讓人覺得有點捨不得離開</span></p>
<p><span><span>道別了"美樹營地"準備前往而行</span>"石磊國小"一個很生疏的小學座落在這深山部落裡</span>
</p>
@ -255,7 +255,7 @@
</span>
</a> </span><span lang="EN-US"><span>資訊</span></span>
</p>
<p><span lang="EN-US"><span><span>聯絡電話:</span><span lang="EN-US">03-584-7231</span><span>  </span><span lang="EN"> </span><span>行動</span><span lang="EN">:</span><span lang="EN-US"> 0937-141993</span><span lang="EN-US"><br></span><span>林錦武<span lang="EN-US"> (泰雅族名: 摟信)</span></span><span lang="EN"><br></span><span>營地地址:<span>新竹縣尖石鄉玉峰村<span lang="EN-US">6鄰20號</span></span>
<p><span lang="EN-US"><span><span>聯絡電話:</span><span lang="EN-US">03-584-7231</span><span>行動</span><span lang="EN">:</span><span lang="EN-US"> 0937-141993</span><span lang="EN-US"><br/></span><span>林錦武<span lang="EN-US"> (泰雅族名: 摟信)</span></span><span lang="EN"><br/></span><span>營地地址:<span>新竹縣尖石鄉玉峰村<span lang="EN-US">6鄰20號</span></span>
</span>
</span>
</span>
@ -263,7 +263,7 @@
<p><span lang="EN-US"><span>每帳$600 兩間衛浴使用燒材鍋爐/ 兩間全天瓦斯 </span></span><span lang="EN-US"><span>廁所蹲式X 3 </span></span>
</p>
<p><span lang="EN-US"><span>楓紅期間須過中午才可搭帳 </span></span><span lang="EN-US">水電便利</span></p>
<p><strong><span lang="EN-US">GPS: N24 39 16.4 <span> </span>E121 18 19.5</span></strong></p>
<p><strong><span lang="EN-US">GPS: N24 39 16.4 E121 18 19.5</span></strong></p>
<p><span><span>如果您喜歡</span>"<span>史蒂文的家"圖文分享 邀請您到 </span></span><span><a href="https://www.facebook.com/stevenhgm1188" target="_blank"><span>FB </span><span lang="EN-US"><span lang="EN-US">粉絲團</span></span>
@ -277,4 +277,4 @@
</div></article>
</div></article>

View file

@ -9,12 +9,10 @@
</div>
<div id="Cnt-Main-Article-QQ" bosszone="content">
<div>
<p><span>转播到腾讯微博</span></p>
<p><img alt="DeepMind新电脑已可利用记忆自学 人工智能迈上新台阶" src="http://img1.gtimg.com/tech/pics/hv1/168/240/2140/139214868.jpg"></p>
</div>
<p><span>转播到腾讯微博</span></p><p><img alt="DeepMind&#x65B0;&#x7535;&#x8111;&#x5DF2;&#x53EF;&#x5229;&#x7528;&#x8BB0;&#x5FC6;&#x81EA;&#x5B66; &#x4EBA;&#x5DE5;&#x667A;&#x80FD;&#x8FC8;&#x4E0A;&#x65B0;&#x53F0;&#x9636;" src="http://img1.gtimg.com/tech/pics/hv1/168/240/2140/139214868.jpg"/></p></div>
<p>TNW中文站 10月14日报道</p>
<p>
<span onmouseover='ShowInfo(this,"GOOG.OQ","200","-1",event);'><a href="http://stockhtm.finance.qq.com/astock/ggcx/GOOG.OQ.htm" target="_blank">谷歌</a></span>(<a href="http://t.qq.com/googlechina#pref=qqcom.keyword" rel="googlechina" reltitle="谷歌" target="_blank">微博</a>)
<span onmouseover="ShowInfo(this,&quot;GOOG.OQ&quot;,&quot;200&quot;,&quot;-1&quot;,event);"><a href="http://stockhtm.finance.qq.com/astock/ggcx/GOOG.OQ.htm" target="_blank">谷歌</a></span>(<a href="http://t.qq.com/googlechina#pref=qqcom.keyword" rel="googlechina" reltitle="&#x8C37;&#x6B4C;" target="_blank">微博</a>)
在2014年收购的人工智能公司DeepMind开发出一款能够用自己的记忆学习新知识并利用这些知识来回答问题的计算机。</p>
<p>这款产品具有极其重要的意义,因为这意味着未来的人工智能技术可能不需要人类来教它就能回答人类提出的问题。</p>
<p>DeepMind表示这款名为DNC可微神经计算机的AI模型可以接受家谱和伦敦地铁网络地图这样的信息还可以回答与那些数据结构中的不同项目之间的关系有关的复杂问题。</p>
@ -28,11 +26,9 @@
</p>
<div id="rv-player">
<p><span>转播到腾讯微博</span></p>
<p><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJAQMAAAAB5D5xAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAADUExURQAAAKd6PdoAAAABdFJOUwBA5thmAAAAC0lEQVQI12NgwAkAABsAAVJE5KkAAAAASUVORK5CYIIvKiAgfHhHdjAwfDUwZDc5YmEzMGM3MDcxY2I5OTIyMTk4MzYyZGRlZmNlICov"></p>
</div>
<p><span>转播到腾讯微博</span></p><p><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJAQMAAAAB5D5xAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAADUExURQAAAKd6PdoAAAABdFJOUwBA5thmAAAAC0lEQVQI12NgwAkAABsAAVJE5KkAAAAASUVORK5CYIIvKiAgfHhHdjAwfDUwZDc5YmEzMGM3MDcxY2I5OTIyMTk4MzYyZGRlZmNlICov"/></p></div>
<iframe src="http://v.qq.com/video/playview.html?vid=x033633yrm8" height="0" width="0"></iframe>
@ -59,4 +55,4 @@
</div>
</div></article>
</div></article>

View file

@ -1,5 +1,4 @@
<article><DIV id="readability-page-1">
<div data-reactid="253">
<article><DIV id="readability-page-1"><div data-reactid="253">
<p>
A little over half a century ago, chaos started spilling out of a famous experiment. It came not from a petri dish, a beaker or an astronomical observatory, but from the vacuum tubes and diodes of a Royal McBee LGP-30. This “desk” computer — it was the size of a desk — weighed some 800 pounds and sounded like a passing propeller plane. It was so loud that it even got its own office on the fifth floor in Building 24, a drab structure near the center of the Massachusetts Institute of Technology. Instructions for the computer came from down the hall, from the office of a meteorologist named Edward Norton Lorenz.
</p>
@ -35,8 +34,7 @@
<p>
For Hamilton, these were formative years. She recalls being out at a party at three or four a.m., realizing that the LGP-30 wasnt set to produce results by the next morning, and rushing over with a few friends to start it up. Another time, frustrated by all the things that had to be done to make another run after fixing an error, she devised a way to bypass the computers clunky debugging process. To Lorenzs delight, Hamilton would take the paper tape that fed the machine, roll it out the length of the hallway, and edit the binary code with a sharp pencil. “Id poke holes for ones, and Id cover up with Scotch tape the others,” she said. “He just got a kick out of it.”
</p>
</div>
<div data-reactid="401">
</div><div data-reactid="401">
<p>
There were desks in the computer room, but because of the noise, Lorenz, his secretary, his programmer and his graduate students all shared the other office. The plan was to use the desk computer, then a total novelty, to test competing strategies of weather prediction in a way you couldnt do with pencil and paper.
</p>
@ -55,8 +53,7 @@
<p>
This meant that in chaotic systems the smallest fluctuations get amplified. Weather predictions fail once they reach some point in the future because we can never measure the initial state of the atmosphere precisely enough. Or, as Lorenz would later present the idea, even a seagull flapping its wings might eventually make a big difference to the weather. (In 1972, the seagull was deposed when a conference organizer, unable to check back about what Lorenz wanted to call an upcoming talk, wrote his own title that switched the metaphor to a butterfly.)
</p>
</div>
<div data-reactid="417">
</div><div data-reactid="417">
<p>
Many accounts, including the one in Gleicks book, date the discovery of this butterfly effect to 1961, with the paper following in 1963. But in November 1960, Lorenz described it during the Q&amp;A session following <a href="http://eaps4.mit.edu/research/Lorenz/The_Statistical_Prediction_of_Solutions_1962.pdf" target="_blank">a talk he gave</a> at a conference on numerical weather prediction in Tokyo. After his talk, a question came from a member of the audience: “Did you change the initial condition just slightly and see how much different results were?”
</p>
@ -141,5 +138,4 @@
<p>
<span><i>This article was reprinted on </i><a href="https://www.wired.com/story/these-hidden-women-helped-invent-chaos-theory/" target="_blank"><i>Wired.com</i></a><i>.</i></span>
</p>
</div>
</DIV></article>
</div></DIV></article>

View file

@ -4,4 +4,4 @@
<p>Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat.</p>
</div></article>
</div></article>

View file

@ -1,5 +1,4 @@
<article><DIV id="readability-page-1">
<div>
<article><DIV id="readability-page-1"><div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.</p>
@ -12,8 +11,7 @@
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
<div>
</div><div>
<p>Tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat.</p>
@ -22,5 +20,4 @@
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</DIV></article>
</div></DIV></article>

View file

@ -1,5 +1,4 @@
<article><DIV id="readability-page-1">
<div>
<article><DIV id="readability-page-1"><div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.</p>
<p>Ut enim ad minim veniam,
@ -9,8 +8,7 @@
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
<div>
</div><div>
<p>Tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat.</p>
@ -20,5 +18,4 @@
Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</DIV></article>
</div></DIV></article>

View file

@ -1,5 +1,5 @@
<article><DIV id="readability-page-1">
<br id="br1">
<br id="br1"/>
<p id="first">Regarding item# 11111, under sufficiently extreme conditions, quarks may
become deconfined and exist as free particles. In the course of asymptotic
freedom, the strong interaction becomes weaker at higher temperatures.
@ -24,5 +24,5 @@
of matter is called quark-gluon plasma.[81] The exact conditions needed
to give rise to this state are unknown and have been the subject of a great
deal of speculation and experimentation.</p>
<br id="br2">
</DIV></article>
<br id="br2"/>
</DIV></article>

View file

@ -15,4 +15,4 @@
cillum dolore eu fugiat nulla pariatur. <span face="Arial" size="2">Excepteur sint occaecat</span> cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</article></DIV></article>
</article></DIV></article>

View file

@ -1,69 +1,60 @@
<article><DIV id="readability-page-1">
<p>Horror stories about the increasingly unpopular taxi service Uber have
<article><DIV id="readability-page-1"><p>Horror stories about the increasingly unpopular taxi service Uber have
been commonplace in recent months, but there is still much to be learned
from its handling of the recent hostage drama in downtown Sydney, Australia.
Were told that we reveal our true character in moments of crisis, and
apparently thats as true for companies as it is for individuals.</p>
<p>A number of experts have challenged the idea that the horrific explosion
apparently thats as true for companies as it is for individuals.</p><p>A number of experts have challenged the idea that the horrific explosion
of violence in a Sydney café was “terrorism,” since the attacker was mentally
unbalanced and acted alone. But, terror or not, the ordeal was certainly
terrifying. Amid the chaos and uncertainty, the city believed itself to
be under a coordinated and deadly attack.</p>
<p>Uber had an interesting, if predictable, response to the panic and mayhem:
It raised prices. A lot.</p>
<p>In case you missed the story, the facts are these: Someone named Man Haron
be under a coordinated and deadly attack.</p><p>Uber had an interesting, if predictable, response to the panic and mayhem:
It raised prices. A lot.</p><p>In case you missed the story, the facts are these: Someone named Man Haron
Monis, who was considered mentally unstable and had been investigated for
murdering his ex-wife, seized hostages in a café that was located in Sydneys
Central Business District or “CBD.” In the process he put up an Islamic
flag “igniting,” as <a href="http://www.reuters.com/article/2014/12/15/us-australia-security-idUSKBN0JS0WX20141215" target="_blank">Reuters</a> reported,
“fears of a jihadist attack in the heart of the countrys biggest city.”</p>
<p>In the midst of the fear, Uber stepped in and tweeted this announcement: 
“fears of a jihadist attack in the heart of the countrys biggest city.”</p><p>In the midst of the fear, Uber stepped in and tweeted this announcement: 
<span>“We are all concerned with events in CBD. Fares have increased to encourage
more drivers to come online &amp; pick up passengers in the area.”</span>
</p>
<p>As <a href="http://mashable.com/2014/12/14/uber-sydney-surge-pricing/" target="_blank">Mashable </a>reports,
</p><p>As <a href="http://mashable.com/2014/12/14/uber-sydney-surge-pricing/" target="_blank">Mashable </a>reports,
the company announced that it would charge a minimum of $100 Australian
to take passengers from the area immediately surrounding the ongoing crisis,
and prices increased by as much as four times the standard amount. A firestorm
of criticism quickly erupted <a href="https://twitter.com/Uber_Sydney" target="_blank">@Uber_Sydney</a> stop
being assholes,” one Twitter response began and Uber soon found itself
offering free rides out of the troubled area instead.</p>
<p>That opener suggests that Uber, as part of a community under siege, is
preparing to respond in a civic manner.<em></em>
</p>
<p><em>“… Fares have increased to encourage more drivers to come online &amp; pick up passengers in the area.”</em>
</p>
<div data-toggle-group="story-13850779">
offering free rides out of the troubled area instead.</p><p>That opener suggests that Uber, as part of a community under siege, is
preparing to respond in a civic manner.
</p><p><em>“… Fares have increased to encourage more drivers to come online &amp; pick up passengers in the area.”</em>
</p><div data-toggle-group="story-13850779">
<p>But, despite the expression of shared concern, there is no sense of <em>civitas</em> to
be found in the statement that follows. There is only a transaction, executed
at what the corporation believes to be market value. Lesson #1 about Uber
is, therefore, that in its view there is no heroism, only self-interest.
This is Ayn Rands brutal, irrational and primitive philosophy in its purest
form: altruism is evil, and self-interest is the only true heroism.<em></em>
form: altruism is evil, and self-interest is the only true heroism.
</p>
<p>There was once a time when we might have read of “hero cabdrivers” or
“hero bus drivers” placing themselves in harms way to rescue their fellow
citizens. For its part, Uber might have suggested that it would use its
network of drivers and its scheduling software to recruit volunteer drivers
for a rescue mission.<em></em>
for a rescue mission.
</p>
<p>Instead, we are told that Ubers pricing surge <em>was</em> its expression
of concern. Ubers way to address a human crisis is apparently by letting
the market govern human behavior, as if there were (in libertarian economist
Tyler Cowens phrase) “markets in everything” including the lives of
a citys beleaguered citizens (and its Uber drivers). <em></em>
a citys beleaguered citizens (and its Uber drivers).
</p>
<p>Where would this kind of market-driven practice leave poor or middle-income
citizens in a time of crisis? If they cant afford the “surged” price,
apparently it would leave them squarely in the line of fire. And come to
think of it, why would Uber drivers value their lives so cheaply, unless
theyre underpaid? <em></em>
theyre underpaid?
</p>
<p>One of the lessons of Sydney is this: Ubers philosophy, whether consciously
expressed or not, is that life belongs to the highest bidder and therefore,
by implication, the highest bidders life has the greatest value. Society,
on the other hand, may choose to believe that every life has equal value
or that lifesaving services should be available at affordable prices. <em></em>
or that lifesaving services should be available at affordable prices.
</p>
<p>If nothing else, the Sydney experience should prove once and for all that
there is no such thing as “the sharing economy.” Uber is a taxi company,
@ -71,7 +62,7 @@
sharing” service, where someone who happens to be going in the same direction
is willing to take along an extra passenger and split gas costs. A ride-sharing
service wouldnt find itself “increasing fares to encourage more drivers”
to come into Sydneys terrorized Central Business District. <em></em>
to come into Sydneys terrorized Central Business District.
</p>
<p>A “sharing economy,” by definition, is lateral in structure. It is a peer-to-peer
economy. But Uber, as its name suggests, is hierarchical in structure.
@ -79,20 +70,20 @@
from it while guiding their movements and determining their level of earnings.
And its pricing mechanisms impose unpredictable costs on its customers,
extracting greater amounts whenever the data suggests customers can be
compelled to pay them.<em></em>
compelled to pay them.
</p>
<p>This is a top-down economy, not a “shared” one.<em></em>
<p>This is a top-down economy, not a “shared” one.
</p>
<p>A number of Ubers fans and supporters defended the company on the grounds
that its “surge prices,” including those seen during the Sydney crisis,
are determined by an algorithm. But an algorithm can be an ideological
statement, and is always a cultural artifact. As human creations, algorithms
reflect their creators. <em></em>
reflect their creators.
</p>
<p>Ubers tweet during the Sydney crisis made it sound as if human intervention,
rather than algorithmic processes, caused prices to soar that day. But
it doesnt really matter if that surge was manually or algorithmically
driven. Either way the prices were Ubers doing and its moral choice.<em></em>
driven. Either way the prices were Ubers doing and its moral choice.
</p>
<p>Uber has been strenuously defending its surge pricing in the wake of accusations
(apparently <a href="http://gothamist.com/2012/11/04/uber.php" target="_blank">justified</a>)
@ -101,11 +92,11 @@
three times the highest rate on two non-emergency days). But if Uber has
its way, it will soon enjoy a monopolistic stranglehold on car service
rates in most major markets. And it has demonstrated its willingness to
ignore rules and regulations. That means<em> </em>predictable and affordable
taxi fares could become a thing of the past. <em></em>
ignore rules and regulations. That meanspredictable and affordable
taxi fares could become a thing of the past.
</p>
<p>In practice, surge pricing could become a new, privatized form of taxation
on middle-class taxi customers.<em></em>
on middle-class taxi customers.
</p>
<p>Even without surge pricing, Uber and its supporters are hiding its full
costs. When middle-class workers are underpaid or deprived of benefits
@ -113,7 +104,7 @@
the entire middle-class economy suffers. Overall wages and benefits are
suppressed for the majority, while the wealthy few are made even richer.
The invisible costs of ventures like Uber are extracted over time, far
surpassing whatever short-term savings they may occasionally offer.<em></em>
surpassing whatever short-term savings they may occasionally offer.
</p>
<p>Like Walmart, Uber underpays its employees many of its drivers <em>are</em> employees,
in everything but name and then drains the social safety net to make
@ -124,13 +115,13 @@
Ubers often woefully insufficient wages, mean that the rest of us are
paying its tab instead. And the lack of income security among Ubers drivers
creates another social cost for Americans in lost tax revenue, and possibly
in increased use of social services. <em></em>
in increased use of social services.
</p>
<p>The companys war on regulation will also carry a social price. Uber and
its supporters dont seem to understand that<em> </em>regulations exist
its supporters dont seem to understand thatregulations exist
for a reason. Its true that nobody likes excessive bureaucracy, but not
all regulations are excessive or onerous. And when they are, its a flaw
in execution rather than principle. <em></em>
in execution rather than principle.
</p>
<p>Regulations were created because they serve a social purpose, ensuring
the free and fair exchange of services and resources among all segments
@ -138,19 +129,19 @@
that the public has a vested interest in ensuring they will be readily
available at reasonably affordable prices. Thats not unreasonable for
taxi services, especially given the fact that they profit from publicly
maintained roads and bridges.<em></em>
maintained roads and bridges.
</p>
<p>Uber has presented itself as a modernized, efficient alternative to government
oversight. But its an evasion of regulation, not its replacement. As
<a href="http://fusion.net/story/33680/the-inside-story-of-how-the-uber-portland-negotiations-broke-down/" target="_blank">Alexis Madrigal</a>reports, Uber has deliberately ignored city regulators
and used customer demand to force its model of inadequate self-governance
(my conclusion, not his) onto one city after another.<em></em>
(my conclusion, not his) onto one city after another.
</p>
<p>Uber presented itself as a refreshing alternative to the over-bureaucratized
world of urban transportation. But thats a false choice. We can streamline
sclerotic city regulators, upgrade taxi fleets and even provide users with
fancy apps that make it easier to call a cab. The companys binary presentation
us, or City Hall frames the debate in artificial terms.<em></em>
us, or City Hall frames the debate in artificial terms.
</p>
<p>Uber claims that its driver rating system is a more efficient way to monitor
drivers, but thats an entirely unproven assumption. While taxi drivers
@ -158,31 +149,31 @@
Uber drivers for everything from dirty cars and <a href="http://consumerist.com/2014/07/30/uber-passenger-complains-of-spider-bite-in-filthy-car/" target="_blank">spider bites</a> to
<a href="http://www.forbes.com/sites/ellenhuet/2014/09/30/uber-driver-hammer-attack-liability/" target="_blank">assault with a hammer</a>, <a href="http://www.businessinsider.com/uber-nikki-williams-2014-12" target="_blank">fondling</a> and
<a href="http://www.businessinsider.com/an-uber-driver-allegedly-raped-a-female-passenger-in-boston-2014-12" target="_blank">rape</a> suggest that Ubers system may not work as well as old-fashioned
regulation. Its certainly not noticeably superior.<em></em>
regulation. Its certainly not noticeably superior.
</p>
<p>In fact, <a href="http://www.huffingtonpost.com/2014/12/09/uber-california-lawsuit_n_6298206.html" target="_blank">prosecutors in San Francisco and Los Angeles</a> say
Uber has been lying to its customers about the level and quality of its
background checks. The company now promises it will do a better job at
screening drivers. But it <a href="http://consumerist.com/2014/12/18/uber-reportedly-revamping-security-wont-say-exactly-what-its-doing/" target="_blank">wont tell us</a> what
measures its taking to improve its safety record, and its <a href="http://consumerist.com/2014/12/18/uber-reportedly-revamping-security-wont-say-exactly-what-its-doing/" target="_blank">fighting the kind of driver scrutiny</a> that
taxicab companies have been required to enforce for many decades. <em></em>
taxicab companies have been required to enforce for many decades.
</p>
<p>Many reports suggest that beleaguered drivers dont feel much better about
the company than victimized passengers do. They tell <a href="http://qz.com/299655/why-your-uber-driver-hates-uber/" target="_blank">horror stories</a> about
the companys hiring and management practices. Uber <a href="http://www.salon.com/2014/09/03/uber_unrest_drivers_in_los_angeles_protest_the_slashing_of_rates/" target="_blank">unilaterally slashes drivers rates</a>,
while claiming they dont need to unionize. (The <a href="http://www.fastcompany.com/3037371/the-teamsters-of-the-21st-century-how-uber-lyft-and-facebook-drivers-are-organizing" target="_blank">Teamsters</a> disagree.) <em></em>
while claiming they dont need to unionize. (The <a href="http://www.fastcompany.com/3037371/the-teamsters-of-the-21st-century-how-uber-lyft-and-facebook-drivers-are-organizing" target="_blank">Teamsters</a> disagree.)
</p>
<p>The company also pushes<a href="http://thinkprogress.org/economy/2014/11/06/3589715/uber-lending-investigation/" target="_blank"> sketchy, substandard loans</a> onto
its drivers but hey, what could go wrong?<em></em>
its drivers but hey, what could go wrong?
</p>
<p>Uber has many libertarian defenders. And yet, it <a href="http://pando.com/2014/10/29/uber-prs-latest-trick-impersonating-its-drivers-and-trying-to-scam-journalists/" target="_blank">deceives the press</a> and
<a href="http://www.slate.com/blogs/the_slatest/2014/11/17/uber_exec_suggests_using_personal_info_against_journalists.html" target="_blank">threatens to spy on journalists</a>, <a href="http://money.cnn.com/2014/08/04/technology/uber-lyft/" target="_blank">lies to its own employees</a>,
keeps its practices a secret and routinely invades the privacy of civilians
sometimes merely for entertainment. (It has a tool, with the Orwellian
name the “<a href="http://www.forbes.com/sites/kashmirhill/2014/10/03/god-view-uber-allegedly-stalked-users-for-party-goers-viewing-pleasure/" target="_blank">God View</a>,”
that it can use for monitoring customers personal movements.) <em></em>
that it can use for monitoring customers personal movements.)
</p>
<p>Arent those the kinds of things libertarians say they hate about <em>government</em>?<em></em>
<p>Arent those the kinds of things libertarians say they hate about <em>government</em>?
</p>
<p>This isnt a “gotcha” exercise. It matters. Uber is the poster child for
the pro-privatization, anti-regulatory ideology that ascribes magical powers
@ -191,26 +182,25 @@
Plouffe. Uber is built around a relatively simple app (which relies on
government-created technology), but its not really a tech company. Above
all else Uber is an ideological campaign, a neoliberal project whose real
products are deregulation and the dismantling of the social contract.<em></em>
products are deregulation and the dismantling of the social contract.
</p>
<p>Or maybe, as that tweeter in Sydney suggested, theyre just assholes.<em></em>
<p>Or maybe, as that tweeter in Sydney suggested, theyre just assholes.
</p>
<p>Either way, its important that Ubers worldview and business practices
not be allowed to “disrupt” our economy or our social fabric. People who
work hard deserve to make a decent living. Society at large deserves access
to safe and affordable transportation. And government, as the collective
expression of a democratic society, has a role to play in protecting its
citizens. <em></em>
citizens.
</p>
<p>And then theres the matter of our collective psyche. In her book “A Paradise
Built in Hell: The Extraordinary Communities that Arise in Disaster,” Rebecca
Solnit wrote of the purpose, meaning and deep satisfaction people find
when they pull together to help one another in the face of adversity. 
But in the world Uber seeks to create, those surges of the spirit would
be replaced by surge pricing.<em></em>
be replaced by surge pricing.
</p>
<p>You dont need a “God view” to see what happens next. When heroism is
reduced to a transaction, the soul of a society is sold cheap. <em></em>
reduced to a transaction, the soul of a society is sold cheap.
</p>
</div>
</DIV></article>
</div></DIV></article>

View file

@ -72,7 +72,7 @@
</p>
<div>
<figure id="image-11519494">
<img src="https://static.seattletimes.com/wp-content/uploads/2019/04/120109-1020x680.jpg" data-old-src="https://www.seattletimes.com/wp-content/themes/st_refresh/img/lazy-loading-14x9.png">
<img src="https://static.seattletimes.com/wp-content/uploads/2019/04/120109-1020x680.jpg" data-old-src="https://www.seattletimes.com/wp-content/themes/st_refresh/img/lazy-loading-14x9.png"/>
<figcaption>
<span>Amazon-owned Whole Foods touted a price cut on halibut as part of an announcement recently about lower prices on hundreds of items. (Ellen M. Banner / The Seattle Times)</span>
</figcaption>
@ -176,4 +176,4 @@
</p>
</div></article>
</div></article>

View file

@ -9,10 +9,10 @@
<p>Raspberry Pi in educations - Image: Raspberry Pi Foundation</p>
<p>In celebration of their 4th year anniversary, the foundation has released <b>Raspberry Pi 3</b> with the same price tag of<b> </b>$35 USD.  The 3rd revision features a <b>1.2GHz 64-bit quad-core</b> ARM CPU with integrated Bluetooth 4.1 and 802.11n wireless LAN chipsets.  The ARM Cortex-A53 CPU along with other architectural enhancements making it the fastest Raspberry Pi to-date.  The 3rd revision is reportedly about 50-60% times faster than its predecessor Raspberry Pi 2 and about 10 times faster then the original Raspberry PI.</p>
<p>In celebration of their 4th year anniversary, the foundation has released <b>Raspberry Pi 3</b> with the same price tag of$35 USD.  The 3rd revision features a <b>1.2GHz 64-bit quad-core</b> ARM CPU with integrated Bluetooth 4.1 and 802.11n wireless LAN chipsets.  The ARM Cortex-A53 CPU along with other architectural enhancements making it the fastest Raspberry Pi to-date.  The 3rd revision is reportedly about 50-60% times faster than its predecessor Raspberry Pi 2 and about 10 times faster then the original Raspberry PI.</p>
<p>Raspberry Pi - Various Usage</p>
<p>Raspberry Pi 3 is now available via many online resellers.  At this time, you should use a recent <b>32-bit </b>NOOBS or Raspbian image from their <a href="https://www.raspberrypi.org/downloads/" rel="nofollow" target="_blank">downloads</a> page with a promise of a switch to a 64-bit version only if further investigation proves that there is indeed some value in moving to 64-bit mode.</p>
</div></article>
</div></article>

View file

@ -31,4 +31,4 @@
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</article></DIV></article>
</article></DIV></article>

View file

@ -18,4 +18,4 @@
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</article></DIV></article>
</article></DIV></article>

View file

@ -11,12 +11,7 @@ quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 50 50" height="50" width="50">
<g>
<clippath id="hex-mask-large"><polygon points="15,35 10,35 10,0 10,0 45,0 45,35 45,35 25,35 15,43"></polygon></clippath>
<clippath id="hex-mask-small"><polygon points="5,1 5,16 3,23 10,20 24,20 24,1"></polygon></clippath>
</g>
</svg>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
@ -35,4 +30,4 @@ quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</DIV></article>
</DIV></article>

View file

@ -1,7 +1,7 @@
<article><DIV id="readability-page-1">
<p>
<span size="+3"><b>linux usability
<span size="4"><br>...or, why do I bother.</span></b></span><br> © 2002, 2003
<span size="4"><br/>...or, why do I bother.</span></b></span><br/> © 2002, 2003
<a href="mailto:/dev/null@jwz.org?subject=Please%20delete%20this%20message%20without%20reading%20it." target="_blank">Jamie Zawinski</a> </p>
@ -33,7 +33,7 @@
<li> "While you have some valid complaints, I'm going to focus on this one inconsequential error you made in your characterization of one of the many roadblocks you encountered. You suck!"
</li>
<li> "It's your fault for using Red Hat! You should be using Debian/<wbr></wbr>Mandrake/<wbr></wbr>Gentoo instead!"
<li> "It's your fault for using Red Hat! You should be using Debian/Mandrake/Gentoo instead!"
</li>
<li> "Red Hat 7.2 is totally obsolete! It's almost 14 months old! What were you expecting!" </li>
@ -78,7 +78,7 @@ RPMs</a>, and it sucks about the same as mplayer, and in about the same ways, th
<p> Oh, and even though I have libdvdcss installed (as evidenced by the fact that Ogle actually works) Xine won't play the same disc that Ogle will play. It seems to be claiming that the CSS stuff isn't installed, which it clearly is. </p>
<p> An idiocy that all of these programs have in common is that, in addition to opening a window for the movie, and a window for the control panel, they <i>also</i> spray a constant spatter of curses crud on the terminal they were started from. I imagine at some point, there was some user who said, ``this program is pretty nice, but you know what it's missing? It's missing a lot of pointless chatter about what plugins and fonts have been loaded!'' </p>
<hr> <b>And here's the Random Commentary section:</b>
<hr/> <b>And here's the Random Commentary section:</b>
<blockquote> <b><a href="http://www.lazycat.org/" target="_blank">Makali</a> wrote:</b>
<ul><i>
@ -116,7 +116,7 @@ RPMs</a>, and it sucks about the same as mplayer, and in about the same ways, th
<nobr>simple --</nobr> results in someone suggesting that you either A) patch your kernel or B) change distros. It's inevitable and inescapable, like Hitler. </p>
</blockquote>
<hr>
<hr/>
<p> <a href="http://fakehost/test/" target="_blank"><img alt="[ up ]" src="http://fakehost/test/compass1.gif" onmouseover='this.src="../compass2.gif"' onmouseout='this.src="../compass1.gif"'></a> </p>
</DIV></article>
<p> <a href="http://fakehost/test/" target="_blank"><img alt="[ up ]" src="http://fakehost/test/compass1.gif" onmouseover="this.src=&quot;../compass2.gif&quot;" onmouseout="this.src=&quot;../compass1.gif&quot;"/></a> </p>
</DIV></article>

View file

@ -1,27 +1,20 @@
<article><DIV id="readability-page-1">
<div>
<article><DIV id="readability-page-1"><div>
<p><span>Z</span>imbabwe President <a href="http://www.telegraph.co.uk/news/2017/11/17/zimbabwes-ruling-party-drafting-motion-fire-robert-mugabe-sunday/" target="_blank">Robert Mugabe</a>, his wife Grace and two key figures from her G40 political faction are under house arrest at Mugabe's "Blue House" compound in Harare and are insisting the 93 year-old finishes his presidential term, a source said.</p>
<p>The G40 figures are cabinet ministers Jonathan Moyo and Saviour Kasukuwere, who fled to the compound after their homes were attacked by troops in Tuesday night's coup, the source, who said he had spoken to people inside the compound, told Reuters.</p>
<p>Mr Mugabe is resisting mediation by a Catholic priest to allow the former guerrilla a graceful exit after the military takeover.</p>
<p>The priest, Fidelis Mukonori, is acting as a middle-man between Mr Mugabe and the generals, <a href="http://www.telegraph.co.uk/news/2017/11/15/zimbabwe-crisis-have-spent-long-careful-really-change/" target="_blank">who seized power in a targeted operation against "criminals" in his entourage</a>, a senior political source told Reuters.</p>
<p>The source could not provide details of the talks, which appear to be aimed at a smooth and bloodless transition after the departure of Mr Mugabe, who has led Zimbabwe since independence in 1980.</p>
<p>Mr Mugabe, still seen by many Africans as a liberation hero, is reviled in the West as a despot whose disastrous handling of the economy and willingness to resort to violence to maintain power destroyed one of Africa's most promising states.</p>
</div>
<div>
</div><div>
<p><span>Z</span>imbabwean intelligence reports seen by Reuters suggest that former security chief Emmerson Mnangagwa, who was ousted as vice-president this month, has been mapping out a post-Mugabe vision with the military and opposition for more than a year.</p>
</div>
<div>
</div><div>
<p><span>F</span>uelling speculation that Mnangagwa's plan might be rolling into action, opposition leader Morgan Tsvangirai, who has been receiving cancer treatment in Britain and South Africa, returned to Harare late on Wednesday, his spokesman said.</p>
<p>South Africa said Mr Mugabe had told President Jacob Zuma by telephone on Wednesday that he was confined to his home but was otherwise fine and the military said it was keeping him and his family, including wife Grace, safe.</p>
</div>
<div>
</div><div>
<p><span>D</span>espite the lingering admiration for Mr Mugabe, there is little public affection for 52-year-old Grace, a former government typist who started having an affair with Mr Mugabe in the early 1990s as his first wife, Sally, was dying of kidney disease.</p>
<p>Dubbed "DisGrace" or "Gucci Grace" on account of her reputed love of shopping, she enjoyed a meteoric rise through the ranks of Mugabe's ruling Zanu-PF in the last two years, culminating in Mnangagwa's removal a week ago - a move seen as clearing the way for her to succeed her husband.</p>
</div>
<div>
</div><div>
<p><span>I</span>n contrast to the high political drama unfolding behind closed doors, the streets of the capital remained calm, with people going about their daily business, albeit under the watch of soldiers on armoured vehicles at strategic locations.</p>
</div>
<div>
</div><div>
<p><span>W</span>hatever the final outcome, the events could signal a once-in-a-generation change for the former British colony, a regional breadbasket reduced to destitution by economic policies Mr Mugabe's critics have long blamed on him.</p>
</div>
</DIV></article>
</div></DIV></article>

View file

@ -18,4 +18,4 @@
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</article></DIV></article>
</article></DIV></article>

View file

@ -13,7 +13,7 @@
<p><span>EXCLUSIVE</span>
</p>
<p>
<img alt="0225-lupita-nyongo-getty-01" src="http://ll-media.tmz.com/2015/02/26/0225-lupita-nyongo-getty-4.jpg"><strong>Lupita Nyong</strong>'<strong>o</strong>'s now-famous Oscar dress
<img alt="0225-lupita-nyongo-getty-01" src="http://ll-media.tmz.com/2015/02/26/0225-lupita-nyongo-getty-4.jpg"/><strong>Lupita Nyong</strong>'<strong>o</strong>'s now-famous Oscar dress
-- adorned in pearls -- was stolen right out of her hotel room ... TMZ
has learned.</p>
<p>Law enforcement sources tell TMZ ... the dress was taken out of Lupita's
@ -24,14 +24,14 @@
<p>We're told there is security footage that cops are looking at that could
catch the culprit right in the act. </p>
<p>
<img alt="update_graphic_red_bar" src="http://ll-media.tmz.com/2013/11/20/update-graphic-red-bar.jpg"><strong>12:00 PM PT</strong> -- Sheriff's deputies were at The London Thursday
<img alt="update_graphic_red_bar" src="http://ll-media.tmz.com/2013/11/20/update-graphic-red-bar.jpg"/><strong>12:00 PM PT</strong> -- Sheriff's deputies were at The London Thursday
morning.  We know they were in the manager's office and we're told
they have looked at security footage to determine if they can ID the culprit.</p>
<p>
<img alt="0226-SUB-london-hotel-swipe-tmz-02" src="http://ll-media.tmz.com/2015/02/26/0226-sub-london-hotel-swipe-tmz-11.jpg">
<img alt="0226-SUB-london-hotel-swipe-tmz-02" src="http://ll-media.tmz.com/2015/02/26/0226-sub-london-hotel-swipe-tmz-11.jpg"/>
</p>
</div>
</div></article>
</div></article>

View file

@ -1,5 +1,5 @@
<article><DIV id="readability-page-1"><article data-progress-indicator="">
<hr>
<hr/>
<p>
Many developers think that having a critical bug in their code is the worst thing that can happen. Well, there is something much worse than that: Having a critical bug in your code and <strong>not knowing about it!</strong>
</p>
@ -10,9 +10,9 @@
I'm not a statistician and not a data scientist, I'm just a developer. Before I introduce dependencies into my system I make sure I really can't do without them. So, <strong>using some high school level statistics and a fair knowledge of SQL, I implemented a simple anomaly detection system <em>that works</em>.</strong>
</p>
<figure>
<img alt='Can you spot the anomaly?&lt;br&gt;&lt;small&gt;Photo by &lt;a href="https://unsplash.com/photos/KmKZV8pso-s"&gt;Ricardo Gomez Angel&lt;/a&gt;&lt;/small&gt;' src="https://hakibenita.com/images/00-sql-anomaly-detection.png">
<img alt="Can you spot the anomaly?&lt;br&gt;&lt;small&gt;Photo by &lt;a href=&quot;https://unsplash.com/photos/KmKZV8pso-s&quot;&gt;Ricardo Gomez Angel&lt;/a&gt;&lt;/small&gt;" src="https://hakibenita.com/images/00-sql-anomaly-detection.png"/>
<figcaption>
Can you spot the anomaly?<br>
Can you spot the anomaly?<br/>
<small>Photo by <a href="https://unsplash.com/photos/KmKZV8pso-s" target="_blank">Ricardo Gomez Angel</a></small>
</figcaption>
</figure>
@ -87,9 +87,9 @@
</ul>
</div>
</details>
<hr>
<hr/>
<hr>
<hr/>
<h2 id="detecting-anomalies">
<a href="#detecting-anomalies">Detecting Anomalies</a>
</h2>
@ -104,7 +104,7 @@
The number that stands out in this series is 12.
</p>
<figure>
<img alt="Scatter plot" src="https://hakibenita.com/images/00-sql-anomaly-detection-scatter-plot.png">
<img alt="Scatter plot" src="https://hakibenita.com/images/00-sql-anomaly-detection-scatter-plot.png"/>
<figcaption>
Scatter plot
</figcaption>
@ -337,7 +337,7 @@
<p>
The quality of our results are directly related to the parameters we set for the query. Later we'll see how using backtesting can help us identify ideal values.
</p>
<hr>
<hr/>
<h2 id="analyzing-a-server-log">
<a href="#analyzing-a-server-log">Analyzing a Server Log</a>
</h2>
@ -464,7 +464,7 @@
To get a sense of the data, let's draw a stacked bar chart by status:
</p>
<figure>
<img alt="stacked bar chart by status, over time" src="https://hakibenita.com/images/00-sql-anomaly-detection-chart-by-status-over-time.png">
<img alt="stacked bar chart by status, over time" src="https://hakibenita.com/images/00-sql-anomaly-detection-chart-by-status-over-time.png"/>
<figcaption>
stacked bar chart by status, over time
</figcaption>
@ -593,7 +593,7 @@
It does look like in the last couple of minutes we are getting more errors than expected.
</p>
<figure>
<img alt="Status 400 in the past hour" src="https://hakibenita.com/images/00-sql-anomaly-detection-400.png">
<img alt="Status 400 in the past hour" src="https://hakibenita.com/images/00-sql-anomaly-detection-400.png"/>
<figcaption>
Status 400 in the past hour
</figcaption>
@ -601,7 +601,7 @@
<p>
What our naked eye missed in the chart and in the raw data, was found by the query, and was classified as an anomaly. We are off to a great start!
</p>
<hr>
<hr/>
<h2 id="backtesting">
<a href="#backtesting">Backtesting</a>
</h2>
@ -984,7 +984,7 @@
</li>
</ul>
<figure>
<img alt="Anomaly in status code 400" src="https://hakibenita.com/images/00-sql-anomaly-detection-400.png">
<img alt="Anomaly in status code 400" src="https://hakibenita.com/images/00-sql-anomaly-detection-400.png"/>
<figcaption>
Anomaly in status code 400
</figcaption>
@ -994,7 +994,7 @@
</li>
</ul>
<figure>
<img alt="Anomaly in status code 500" src="https://hakibenita.com/images/00-sql-anomaly-detection-500.png">
<img alt="Anomaly in status code 500" src="https://hakibenita.com/images/00-sql-anomaly-detection-500.png"/>
<figcaption>
Anomaly in status code 500
</figcaption>
@ -1004,7 +1004,7 @@
</li>
</ul>
<figure>
<img alt="A hidden anomaly in status code 404" src="https://hakibenita.com/images/00-sql-anomaly-detection-404.png">
<img alt="A hidden anomaly in status code 404" src="https://hakibenita.com/images/00-sql-anomaly-detection-404.png"/>
<figcaption>
A hidden anomaly in status code 404
</figcaption>
@ -1033,7 +1033,7 @@
Now that we have a working query to backtest, we can experiment with different values.
</p>
<figure>
<img alt="Experimenting with parameter values" src="https://hakibenita.com/images/00-sql-anomaly-detection-parameters.png">
<img alt="Experimenting with parameter values" src="https://hakibenita.com/images/00-sql-anomaly-detection-parameters.png"/>
<figcaption>
Experimenting with parameter values
</figcaption>
@ -1042,7 +1042,7 @@
This is a chart showing the alerts our system identified in the past 12 hours:
</p>
<figure>
<img alt='Backtesting with default parameters. &lt;a href="https://popsql.com/queries/-MECQV6GiKr04WdCWM0K/simple-anomaly-detection-with-sql?access_token=2d2c0729f9a1cfa7b6a2dbb5b0adb45c"&gt;View in editor&lt;/a&gt;' src="https://hakibenita.com/images/00-sql-anomaly-detection-backtest-10-3-60.png">
<img alt="Backtesting with default parameters. &lt;a href=&quot;https://popsql.com/queries/-MECQV6GiKr04WdCWM0K/simple-anomaly-detection-with-sql?access_token=2d2c0729f9a1cfa7b6a2dbb5b0adb45c&quot;&gt;View in editor&lt;/a&gt;" src="https://hakibenita.com/images/00-sql-anomaly-detection-backtest-10-3-60.png"/>
<figcaption>
Backtesting with default parameters. <a href="https://popsql.com/queries/-MECQV6GiKr04WdCWM0K/simple-anomaly-detection-with-sql?access_token=2d2c0729f9a1cfa7b6a2dbb5b0adb45c" target="_blank">View in editor</a>
</figcaption>
@ -1054,7 +1054,7 @@
If we decrease the value of the z-score threshold from 3 to 1, we should get more alerts. With a lower threshold, more values are likely to be considered an anomaly:
</p>
<figure>
<img alt="Backtesting with lower z-score threshold" src="https://hakibenita.com/images/00-sql-anomaly-detection-backtest-10-1-60.png">
<img alt="Backtesting with lower z-score threshold" src="https://hakibenita.com/images/00-sql-anomaly-detection-backtest-10-1-60.png"/>
<figcaption>
Backtesting with lower z-score threshold
</figcaption>
@ -1063,7 +1063,7 @@
If we increase the entries threshold from 10 to 30, we should get less alerts:
</p>
<figure>
<img alt="Backtesting with higher entries threshold" src="https://hakibenita.com/images/00-sql-anomaly-detection-backtest-30-3-60.png">
<img alt="Backtesting with higher entries threshold" src="https://hakibenita.com/images/00-sql-anomaly-detection-backtest-30-3-60.png"/>
<figcaption>
Backtesting with higher entries threshold
</figcaption>
@ -1072,7 +1072,7 @@
If we increase the backtest period from 60 minutes to 360 minutes, we get more alerts:
</p>
<figure>
<img alt="Backtesting with higher entries threshold" src="https://hakibenita.com/images/00-sql-anomaly-detection-backtest-30-3-360.png">
<img alt="Backtesting with higher entries threshold" src="https://hakibenita.com/images/00-sql-anomaly-detection-backtest-30-3-360.png"/>
<figcaption>
Backtesting with higher entries threshold
</figcaption>
@ -1080,7 +1080,7 @@
<p>
A good alerting system is a system that produces true alerts, at a reasonable time. Using the backtesting query you can experiment with different values that produces quality alerts you can act on.
</p>
<hr>
<hr/>
<h2 id="improving-accuracy">
<a href="#improving-accuracy">Improving Accuracy</a>
</h2>
@ -1200,15 +1200,15 @@
<li>To reduce the amount of false positives, you can normalize the number of responses to the proportion of the total responses. This way, for example, if you're using a flaky remote service that fails once after every certain amount of requests, using the proportion may not trigger an alert when the increase in errors correlates with an increase in overall traffic.
</li>
</ul>
<hr>
<hr/>
<h2 id="conclusion">
<a href="#conclusion">Conclusion</a>
</h2>
<p>
The method presented above is a very simple method to detect anomalies and produce actionable alerts that can potentially save you a lot of grief. There are many tools out there that provide similar functionally, but they require either tight integration or $$$. The main appeal of this approach is that you can get started with tools you probably already have, some SQL and a scheduled task!
</p>
<hr>
<hr/>
<p>
<strong>UPDATE:</strong> many readers asked me how I created the charts in this article... well, I used <a href="https://popsql.com/" rel="noopener" target="_blank">PopSQL</a>. Its a new modern SQL editor focused on collaborative editing. If you're in the market for one, go check it out...
</p>
</article></DIV></article>
</article></DIV></article>

View file

@ -23,7 +23,7 @@
Content depth should be the urgent priority for your content marketing strategy, and clearly defined in your <a href="http://fakehost/blog/content-briefs" target="_blank">content briefs</a>. Start by dominating your own core topics, before venturing across the pond and write about linked subject matters. Otherwise, you are the opposite of an authority as the definition states that an authority is <em>“a person with extensive or specialized knowledge about a subject; an expert”.</em> Lastly, do not mistake article depth vs. article length: a blog posts extreme wordcount has nothing to do with its content depth.
</p>
<h2 id="assess-how-deep-is-your-content">
<a href="#assess-how-deep-is-your-content" aria-label="assess how deep is your content permalink"></a>Assess How Deep Is Your Content
Assess How Deep Is Your Content
</h2>
<p>
The first task on your list, right now, is to shortlist your core topics. What are you trying to be an expert on? Then, go through each one of your pieces of content and understand how well each blog post is covering its focus topic(s). Not how many times specific keywords appear, or how well the article is outlined and structured.
@ -38,7 +38,7 @@
Remember that <strong>skyscraper content</strong> and <strong>10x content</strong> are not necessarily the answer. These content writing strategies state that in order to beat another piece of content, you need to write 10x more. Either in quantity with a 10x word count or in quality by putting times more information within your own piece of content. Such articles often become unreadable and discourage visitors from absorbing all the knowledge. The best alternative is the create <a href="https://topicseed.com/blog/how-broad-should-topics-be-for-pillar-pages" target="_blank" rel="nofollow noopener noreferrer">pillar pages</a> centered around core topics, and several articles dealing with each specific section in depth. This is <strong>deep content powered by a <a href="https://topicseed.com/blog/internal-linking-strategies-for-topic-clustering" target="_blank" rel="nofollow noopener noreferrer">smart internal linking strategy</a></strong> and search engines love that in this day and age where attention spans are short! <em>With that being said, avoid writing 600-word articles!</em>
</p>
<h2 id="rewrite-with-content-depth-in-mind">
<a href="#rewrite-with-content-depth-in-mind" aria-label="rewrite with content depth in mind permalink"></a>Rewrite With Content Depth In Mind
Rewrite With Content Depth In Mind
</h2>
<p>
Once you know which articles are lacking depth of knowledge and information, it is time to rethink each one. For each article, make a list of what essential pieces of information or data are missing. Then decide where to fit them, and decide whether the article would benefit from a full rewrite or not. As a rule of thumb, if you need to change a third of your article, you may need to rewrite it entirely. Of course, this does not mean erasing all work done prior, but it means starting afresh! Trying to <strong>fit deep content into an existing blog</strong> post gives you constraints so doing it from scratch can actually be easier to fight thin content.
@ -54,7 +54,7 @@
With the massive rise of voice searches, <a href="http://fakehost/blog/featured-snippets-using-questions" target="_blank">users tend to use full questions for their search queries</a>. What used to be <code>top bottled water brands</code> is now <code>OK google, what is the best bottled-water brand in Texas</code>? The point being, <a href="https://topicseed.com/blog/keyword-search-volume-overrated" target="_blank" rel="nofollow noopener noreferrer"><strong>keywords are losing traction</strong></a> to leave space for a more natural language understanding of a blog posts textual content, and meaning.
</p>
<h2 id="yes-content-depth-and-breadth-overlap">
<a href="#yes-content-depth-and-breadth-overlap" aria-label="yes content depth and breadth overlap permalink"></a>Yes, Content Depth and Breadth Overlap
Yes, Content Depth and Breadth Overlap
</h2>
<p>
<em>“A topic can be defined as the company it keeps.”</em> A very accurate saying loved by ontologists within the fields of computational linguistics, and information science. In simpler terms, a topic and all the terminology it is encompassing will inevitably overlap with related topics. Which, in turn, will form <a href="https://topicseed.com/blog/topic-clusters-relationships" target="_blank" rel="nofollow noopener noreferrer"><strong>topic clusters</strong></a>.
@ -69,7 +69,7 @@
Therefore, content depth and content breadth are not to be opposed. Content marketers should use both strategies in order to reach ultimate <strong>topical authority</strong> over their choice of subject matters.
</p>
<h2 id="depth-of-content--quality--frequency">
<a href="#depth-of-content--quality--frequency" aria-label="depth of content quality frequency permalink"></a>Depth of Content = Quality + Frequency
Depth of Content = Quality + Frequency
</h2>
<p>
Up until recently, long-form blog posts generally were <strong>evergreen articles</strong> that generated a constant stream of organic traffic for a website. This was a lead magnet generation strategy which worked well: hire a writer, include the right keywords, reach over a 5,000-word word count, and hit publish. Then, wait.
@ -90,4 +90,4 @@
<p>
Tools and platforms such as topicseed are here to <a href="https://topicseed.com/blog/how-to-find-new-blog-post-ideas" target="_blank" rel="nofollow noopener noreferrer">help you find new article ideas</a> pertaining to your core topics within a few clicks and a few minutes. The number of web pages, Wikipedia articles, and pieces of content, our machine-learning algorithms can analyze in seconds would take you months to digest. Our <em>topicgraph</em> finds closely related concepts in order for your domain to <strong>reach topical authority through content depth and content breadth</strong>.
</p>
</div></article>
</div></article>

View file

@ -1,4 +1,4 @@
<article><div id="readability-page-1">
<h3><a href="http://mcupdate.tumblr.com/post/96439224994/minecraft-18-the-bountiful-update" target="_blank">Minecraft 1.8 - The Bountiful Update</a></h3>
<p>+ Added Granite, Andesite, and Diorite stone blocks, with smooth versions<br>+ Added Slime Block<br>+ Added Iron Trapdoor<br>+ Added Prismarine and Sea Lantern blocks<br>+ Added the Ocean Monument<br>+ Added Red Sandstone<br>+ Added Banners<br>+ Added Armor Stands<br>+ Added Coarse Dirt (dirt where grass wont grow)<br>+ Added Guardian mobs, with item drops<br>+ Added Endermite mob<br>+ Added Rabbits, with item drops<br>+ Added Mutton and Cooked Mutton<br>+ Villagers will harvest crops and plant new ones<br>+ Mossy Cobblestone and Mossy Stone Bricks are now craftable<br>+ Chiseled Stone Bricks are now craftable<br>+ Doors and fences now come in all wood type variants<br>+ Sponge block has regained its water-absorbing ability and becomes wet<br>+ Added a spectator game mode (game mode 3)<br>+ Added one new achievement<br>+ Added “Customized” world type<br>+ Added hidden “Debug Mode” world type<br>+ Worlds can now have a world barrier<br>+ Added @e target selector for Command Blocks<br>+ Added /blockdata command<br>+ Added /clone command<br>+ Added /execute command<br>+ Added /fill command<br>+ Added /particle command<br>+ Added /testforblocks command<br>+ Added /title command<br>+ Added /trigger command<br>+ Added /worldborder command<br>+ Added /stats command<br>+ Containers can be locked in custom maps by using the “Lock” data tag<br>+ Added logAdminCommands, showDeathMessages, reducedDebugInfo, sendCommandFeedback, and randomTickSpeed game rules<br>+ Added three new statistics<br>+ Player skins can now have double layers across the whole model, and left/right arms/legs can be edited independently<br>+ Added a new player model with smaller arms, and a new player skin called Alex?<br>+ Added options for configuring what pieces of the skin that are visible<br>+ Blocks can now have custom visual variations in the resource packs<br>+ Minecraft Realms now has an activity chart, so you can see who has been online<br>+ Minecraft Realms now lets you upload your maps<br>* Difficulty setting is saved per world, and can be locked if wanted<br>* Enchanting has been redone, now costs lapis lazuli in addition to enchantment levels<br>* Villager trading has been rebalanced<br>* Anvil repairing has been rebalanced<br>* Considerable faster client-side performance<br>* Max render distance has been increased to 32 chunks (512 blocks)<br>* Adventure mode now prevents you from destroying blocks, unless your items have the CanDestroy data tag<br>* Resource packs can now also define the shape of blocks and items, and not just their textures<br>* Scoreboards have been given a lot of new features<br>* Tweaked the F3 debug screen<br>* Block ID numbers (such as 1 for stone), are being replaced by ID names (such as minecraft:stone)<br>* Server list has been improved<br>* A few minor changes to village and temple generation<br>* Mob heads for players now show both skin layers<br>* Buttons can now be placed on the ceiling<br>* Lots and lots of other changes<br>* LOTS AND LOTS of other changes<br>- Removed Herobrine<br><br></p>
</div></article>
<p>+ Added Granite, Andesite, and Diorite stone blocks, with smooth versions<br/>+ Added Slime Block<br/>+ Added Iron Trapdoor<br/>+ Added Prismarine and Sea Lantern blocks<br/>+ Added the Ocean Monument<br/>+ Added Red Sandstone<br/>+ Added Banners<br/>+ Added Armor Stands<br/>+ Added Coarse Dirt (dirt where grass wont grow)<br/>+ Added Guardian mobs, with item drops<br/>+ Added Endermite mob<br/>+ Added Rabbits, with item drops<br/>+ Added Mutton and Cooked Mutton<br/>+ Villagers will harvest crops and plant new ones<br/>+ Mossy Cobblestone and Mossy Stone Bricks are now craftable<br/>+ Chiseled Stone Bricks are now craftable<br/>+ Doors and fences now come in all wood type variants<br/>+ Sponge block has regained its water-absorbing ability and becomes wet<br/>+ Added a spectator game mode (game mode 3)<br/>+ Added one new achievement<br/>+ Added “Customized” world type<br/>+ Added hidden “Debug Mode” world type<br/>+ Worlds can now have a world barrier<br/>+ Added @e target selector for Command Blocks<br/>+ Added /blockdata command<br/>+ Added /clone command<br/>+ Added /execute command<br/>+ Added /fill command<br/>+ Added /particle command<br/>+ Added /testforblocks command<br/>+ Added /title command<br/>+ Added /trigger command<br/>+ Added /worldborder command<br/>+ Added /stats command<br/>+ Containers can be locked in custom maps by using the “Lock” data tag<br/>+ Added logAdminCommands, showDeathMessages, reducedDebugInfo, sendCommandFeedback, and randomTickSpeed game rules<br/>+ Added three new statistics<br/>+ Player skins can now have double layers across the whole model, and left/right arms/legs can be edited independently<br/>+ Added a new player model with smaller arms, and a new player skin called Alex?<br/>+ Added options for configuring what pieces of the skin that are visible<br/>+ Blocks can now have custom visual variations in the resource packs<br/>+ Minecraft Realms now has an activity chart, so you can see who has been online<br/>+ Minecraft Realms now lets you upload your maps<br/>* Difficulty setting is saved per world, and can be locked if wanted<br/>* Enchanting has been redone, now costs lapis lazuli in addition to enchantment levels<br/>* Villager trading has been rebalanced<br/>* Anvil repairing has been rebalanced<br/>* Considerable faster client-side performance<br/>* Max render distance has been increased to 32 chunks (512 blocks)<br/>* Adventure mode now prevents you from destroying blocks, unless your items have the CanDestroy data tag<br/>* Resource packs can now also define the shape of blocks and items, and not just their textures<br/>* Scoreboards have been given a lot of new features<br/>* Tweaked the F3 debug screen<br/>* Block ID numbers (such as 1 for stone), are being replaced by ID names (such as minecraft:stone)<br/>* Server list has been improved<br/>* A few minor changes to village and temple generation<br/>* Mob heads for players now show both skin layers<br/>* Buttons can now be placed on the ceiling<br/>* Lots and lots of other changes<br/>* LOTS AND LOTS of other changes<br/>- Removed Herobrine<br/><br/></p>
</div></article>

View file

@ -8,7 +8,7 @@
<p>
First, let's see what you can do with this new feature! Similar to <a href="https://hacks.mozilla.org/2018/01/shrinking-webassembly-and-javascript-code-sizes-in-emscripten/" target="_blank">this post</a> let's start with a "hello world" type program that exports a single function that adds two numbers:
</p>
<pre><code><span>// add.c</span><br><span><span>#</span><span>include</span> <span>&lt;emscripten.h&gt;</span></span><br><br>EMSCRIPTEN_KEEPALIVE<br><span>int</span> <span>add</span><span>(</span><span>int</span> x<span>,</span> <span>int</span> y<span>)</span> <span>{</span><br> <span>return</span> x <span>+</span> y<span>;</span><br><span>}</span></code></pre>
<pre><code><span>// add.c</span><br/><span><span>#</span><span>include</span> <span>&lt;emscripten.h&gt;</span></span><br/><br/>EMSCRIPTEN_KEEPALIVE<br/><span>int</span> <span>add</span><span>(</span><span>int</span> x<span>,</span> <span>int</span> y<span>)</span> <span>{</span><br/> <span>return</span> x <span>+</span> y<span>;</span><br/><span>}</span></code></pre>
<p>
We'd normally build this with something like <code>emcc -O3 add.c -o add.js</code> which would emit <code>add.js</code> and <code>add.wasm</code>. Instead, let's ask <code>emcc</code> to only emit Wasm:
</p>
@ -20,11 +20,11 @@
<p>
Disassembling it, it's very minimal - just 87 bytes! It contains the obvious <code>add</code> function
</p>
<pre><code><span>(</span><span>func</span> $add <span>(</span><span>param</span> $0 i32<span>)</span> <span>(</span><span>param</span> $1 i32<span>)</span> <span>(</span><span>result</span> i32<span>)</span><br> <span>(</span><span>i32</span>.add<br> <span>(</span><span>local</span>.get $0<span>)</span><br> <span>(</span><span>local</span>.get $1<span>)</span><br> <span>)</span><br><span>)</span></code></pre>
<pre><code><span>(</span><span>func</span> $add <span>(</span><span>param</span> $0 i32<span>)</span> <span>(</span><span>param</span> $1 i32<span>)</span> <span>(</span><span>result</span> i32<span>)</span><br/> <span>(</span><span>i32</span>.add<br/> <span>(</span><span>local</span>.get $0<span>)</span><br/> <span>(</span><span>local</span>.get $1<span>)</span><br/> <span>)</span><br/><span>)</span></code></pre>
<p>
and one more function, <code>_start</code>,
</p>
<pre><code><span>(</span><span>func</span> $_start<br> <span>(</span><span>nop</span><span>)</span><br><span>)</span></code></pre>
<pre><code><span>(</span><span>func</span> $_start<br/> <span>(</span><span>nop</span><span>)</span><br/><span>)</span></code></pre>
<p>
<code>_start</code> is part of the <a href="https://github.com/WebAssembly/WASI" target="_blank">WASI</a> spec, and Emscripten's standalone mode emits it so that we can run in WASI runtimes. (Normally <code>_start</code> would do global initialization, but here we just don't need any so it's empty.)
</p>
@ -34,7 +34,7 @@
<p>
One nice thing about a standalone Wasm file like this is that you can write custom JavaScript to load and run it, which can be very minimal depending on your use case. For example, we can do this in Node.js:
</p>
<pre><code><span>// load-add.js</span><br><span>const</span> binary <span>=</span> <span>require</span><span>(</span><span>'fs'</span><span>)</span><span>.</span><span>readFileSync</span><span>(</span><span>'add.wasm'</span><span>)</span><span>;</span><br><br>WebAssembly<span>.</span><span>instantiate</span><span>(</span>binary<span>)</span><span>.</span><span>then</span><span>(</span><span>(</span><span><span>{</span> instance <span>}</span></span><span>)</span> <span>=&gt;</span> <span>{</span><br> console<span>.</span><span>log</span><span>(</span>instance<span>.</span>exports<span>.</span><span>add</span><span>(</span><span>40</span><span>,</span> <span>2</span><span>)</span><span>)</span><span>;</span><br><span>}</span><span>)</span><span>;</span></code></pre>
<pre><code><span>// load-add.js</span><br/><span>const</span> binary <span>=</span> <span>require</span><span>(</span><span>'fs'</span><span>)</span><span>.</span><span>readFileSync</span><span>(</span><span>'add.wasm'</span><span>)</span><span>;</span><br/><br/>WebAssembly<span>.</span><span>instantiate</span><span>(</span>binary<span>)</span><span>.</span><span>then</span><span>(</span><span>(</span><span><span>{</span> instance <span>}</span></span><span>)</span> <span>=&gt;</span> <span>{</span><br/> console<span>.</span><span>log</span><span>(</span>instance<span>.</span>exports<span>.</span><span>add</span><span>(</span><span>40</span><span>,</span> <span>2</span><span>)</span><span>)</span><span>;</span><br/><span>}</span><span>)</span><span>;</span></code></pre>
<p>
Just 4 lines! Running that prints <code>42</code> as expected. Note that while this example is very simplistic, there are cases where you simply don't need much JavaScript, and may be able to do better than Emscripten's default JavaScript runtime (which supports a bunch of environments and options). A real-world example of that is in <a href="https://github.com/zeux/meshoptimizer/blob/bdc3006532dd29b03d83dc819e5fa7683815b88e/js/meshopt_decoder.js" target="_blank">zeux's meshoptimizer</a> - just 57 lines, including memory management, growth, etc.!
</p>
@ -44,11 +44,11 @@
<p>
Another nice thing about standalone Wasm files is that you can run them in Wasm runtimes like <a href="https://wasmer.io/" target="_blank">wasmer</a>, <a href="https://github.com/bytecodealliance/wasmtime" target="_blank">wasmtime</a>, or <a href="https://github.com/WAVM/WAVM" target="_blank">WAVM</a>. For example, consider this hello world:
</p>
<pre><code><span>// hello.cpp</span><br><span><span>#</span><span>include</span> <span>&lt;stdio.h&gt;</span></span><br><br><span>int</span> <span>main</span><span>(</span><span>)</span> <span>{</span><br> <span>printf</span><span>(</span><span>"hello, world!\n"</span><span>)</span><span>;</span><br> <span>return</span> <span>0</span><span>;</span><br><span>}</span></code></pre>
<pre><code><span>// hello.cpp</span><br/><span><span>#</span><span>include</span> <span>&lt;stdio.h&gt;</span></span><br/><br/><span>int</span> <span>main</span><span>(</span><span>)</span> <span>{</span><br/> <span>printf</span><span>(</span><span>"hello, world!\n"</span><span>)</span><span>;</span><br/> <span>return</span> <span>0</span><span>;</span><br/><span>}</span></code></pre>
<p>
We can build and run that in any of those runtimes:
</p>
<pre><code>$ emcc hello.cpp -O3 -o hello.wasm<br>$ wasmer run hello.wasm<br>hello, world<span>!</span><br>$ wasmtime hello.wasm<br>hello, world<span>!</span><br>$ wavm run hello.wasm<br>hello, world<span>!</span></code></pre>
<pre><code>$ emcc hello.cpp -O3 -o hello.wasm<br/>$ wasmer run hello.wasm<br/>hello, world<span>!</span><br/>$ wasmtime hello.wasm<br/>hello, world<span>!</span><br/>$ wavm run hello.wasm<br/>hello, world<span>!</span></code></pre>
<p>
Emscripten uses WASI APIs as much as possible, so programs like this end up using 100% WASI and can run in WASI-supporting runtimes (see notes later on what programs require more than WASI).
</p>
@ -175,4 +175,4 @@
<p>
You may also find APIs that <strong>do</strong> have a non-JS replacement that we havent converted yet, as work is still ongoing. Please <a href="https://github.com/emscripten-core/emscripten/issues" target="_blank">file bugs</a>, and as always help is welcome!
</p>
</div></article>
</div></article>

View file

@ -11,9 +11,7 @@
<h3 id="jDDW9T">
21) <a href="https://www.vox.com/culture/2017/12/12/16765308/last-jedi-star-wars-review-rey-carrie-fisher-poe-finn-kylo-ren" target="_blank"><em>Star Wars: The Last Jedi</em></a>
</h3>
<div id="x5htN5">
<iframe src="https://www.youtube.com/embed/Q0CbN8sfihY?rel=0&amp;" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="WdtoaT">
I am as shocked as anyone that a <em>Star Wars</em> movie found its way onto my list — but I was bowled over by <em>The Last Jedi</em>, which may be one of the series best. In the hands of writer-director <a href="https://www.vox.com/culture/2017/12/13/16761916/rian-johnson-star-wars-last-jedi-looper-brick-brothers-bloom-fly-breaking-bad" target="_blank">Rian Johnson</a> (who will also oversee <a href="https://www.theverge.com/2017/11/9/16630902/star-wars-new-trilogy-rian-johnson-disney-lucasfilm" target="_blank">a new <em>Star Wars</em> trilogy</a>), <em>The Last Jedi</em> is beautiful to look at and keeps its eye on the relationships between characters and how they communicate with one another, in addition to the bigger galactic story. The same characters are back, but they seem infused with new life, and the galaxy with a new kind of hope. The movies best details are in the strong bonds that develop between characters, and I left the film with the realization that for the first time in my life, I loved a <em>Star Wars</em> movie. Now I understand the magic.
</p>
@ -23,9 +21,7 @@
<h3 id="3XHosO">
20) <a href="https://www.vox.com/2017/10/6/16434046/faces-places-review-agnes-varda-jr" target="_blank"><em>Faces Places</em></a>
</h3>
<div id="FZOPyv">
<iframe src="https://www.youtube.com/embed/KKbjnLpxv70?rel=0&amp;" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="zP5jCd">
The unusual documentary <a href="https://www.vox.com/2017/10/6/16434046/faces-places-review-agnes-varda-jr" target="_blank"><em>Faces Places</em></a> (in French, <em>Visages Villages</em>) turns on the friendship between the accomplished street artist JR and legendary film director Agnès Varda, whose work was central to the development of the French New Wave movement. The pair (whose difference in age is 55 years) met after years of admiring each others work and decided to create a documentary portrait of France — by making a number of actual portraits. The film chronicles a leg of the "Inside Outside Project," a roving art initiative in which JR makes enormous portraits of people he meets and pastes them onto buildings and walls. In the film, Varda joins him, and as they talk to people around the country, they grow in their understanding of themselves and of each other. The development of their friendship, which is both affectionate and mutually sharpening, forms <em>Faces Places</em> emotional center.
</p>
@ -36,9 +32,7 @@
<h3 id="R0KXNO">
19) <a href="https://www.vox.com/summer-movies/2017/8/8/16107088/ingrid-goes-west-review-aubrey-plaza-elizabeth-olsen" target="_blank"><em>Ingrid Goes West</em></a>
</h3>
<div id="94aRXv">
<iframe src="https://www.youtube.com/embed/xP4vD1tWbPU?rel=0&amp;" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="d2ZAUw">
<a href="https://www.vox.com/summer-movies/2017/8/8/16107088/ingrid-goes-west-review-aubrey-plaza-elizabeth-olsen" target="_blank"><em>Ingrid Goes West</em></a> is a twisted and <a href="https://www.vox.com/culture/2017/8/9/16107140/matt-spicer-interview-ingrid-goes-west-dark-comedy-aubrey-plaza-sundance?utm_campaign=vox&amp;utm_content=chorus&amp;utm_medium=social&amp;utm_source=twitter" target="_blank">dark comedy</a> — part addiction narrative, part stalker story — and yet its set in a world thats almost pathologically cheery: the glossy, sunny, nourishing, superfood- and superlative-loving universe of Instagram celebrity. But despite <em>Ingrid Goes West</em>s spot-on take on that world, the best thing about the film is that it refuses to traffic in lazy buzzwords and easy skewering, particularly at the expense of young women. Instead, the movie conveys that behind every Instagram image and meltdown is a real person, with real insecurities, real feelings, and real problems. And it recognizes that living a life performed in public can be its own kind of self-deluding prison.
</p>
@ -48,9 +42,7 @@
<h3 id="qfZ4Iv">
18) <a href="https://www.vox.com/summer-movies/2017/7/14/15955888/review-lady-macbeth-florence-pugh" target="_blank"><em>Lady Macbeth</em></a>
</h3>
<div id="0ZWzkX">
<iframe src="https://www.youtube.com/embed/2Z0N8ULhuUA?rel=0&amp;" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="Ii1QS5">
<a href="https://www.vox.com/summer-movies/2017/7/14/15955888/review-lady-macbeth-florence-pugh" target="_blank"><em>Lady Macbeth</em></a> is no placid costume drama. Adapted from an 1865 Russian novella by Nikolai Leskov, the movie follows Katherine (the astounding Florence Pugh), a woman in the Lady Macbeth line characterized by a potent cocktail of very few scruples and a lot of determination. She's a chilling avatar for the ways that class and privilege — both obvious and hidden — insulate some people from the consequences of their actions while damning others. <em>Lady Macbeth</em> is also a dazzling directorial debut from William Oldroyd, a thrilling combination of sex, murder, intrigue, and power plays. Its visually stunning, each frame composed so carefully and deliberately that the wildness and danger roiling just below the surface feels even more frightening. Each scene ratchets up the tension to an explosive, chilling end.
</p>
@ -60,9 +52,7 @@
<h3 id="JhEBod">
17) <em>BPM (Beats Per Minute)</em>
</h3>
<div id="t3derk">
<iframe src="https://www.youtube.com/embed/2fhO2A4SL24?rel=0&amp;" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="DEyp0A">
<em>BPM (Beats Per Minute)</em> is a remarkably tender and stirring story of the Paris chapter of ACT UP, an AIDS activism group, and the young people who found themselves caught in the crosshairs of the AIDS crisis in the early 1990s. The film follows both the group's actions and the individual members shifting relationships to one another — enemies becoming friends, friends becoming lovers, lovers becoming caretakers — as well as their struggles with the disease wracking their community. As an account of the period, its riveting; as an exploration of life and love set at the urgent intersection of the political and the personal, its devastating.
</p>
@ -72,9 +62,7 @@
<h3 id="jocryI">
16) <a href="https://www.vox.com/summer-movies/2017/6/21/15837678/big-sick-review-kumail-nanjiani-emily-gordon-zoe-kazan-islam" target="_blank"><em>The Big Sick</em></a>
</h3>
<div id="ZRFycn">
<iframe src="https://www.youtube.com/embed/PJmpSMRQhhs?rel=0&amp;" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="DqZc5Q">
Few 2017 movies could top the charm and tenderness of <a href="https://www.vox.com/summer-movies/2017/6/21/15837678/big-sick-review-kumail-nanjiani-emily-gordon-zoe-kazan-islam" target="_blank"><em>The Big Sick</em></a>, which hits all the right romantic comedy notes with one unusual distinction: It feels like real life. Thats probably because <em>The Big Sick</em> is written by <a href="https://www.vox.com/2017/11/22/16687092/the-big-sick-kumail-nanjiani-emily-gordon-real-story" target="_blank">real-life married couple</a> Emily V. Gordon and <em>Silicon Valley</em>'s Kumail Nanjiani, and based on their real-life romance. <em>The Big Sick</em> — which stars Nanjiani as a version of himself, alongside Zoe Kazan as Emily — is funny and sweet while not backing away from matters that romantic comedies dont usually touch on, like serious illness, struggles in long-term marriages, and religion. As it tells the couples story, which takes a serious turn when Emily falls ill with a mysterious infection and her parents (played by Holly Hunter and Ray Romano) come to town, it becomes a funny and wise story about real love.
</p>
@ -84,9 +72,7 @@
<h3 id="dFyVjw">
15) <a href="https://www.vox.com/culture/2017/9/10/16277234/mother-review-aronofsky-lawrence-bardem-tiff" target="_blank"><em>Mother!</em></a>
</h3>
<div id="kUMpyj">
<iframe src="https://www.youtube.com/embed/XpICoc65uh0?rel=0&amp;amp;start=17" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="LA1s4n">
Theres so much pulsing beneath <a href="https://www.vox.com/culture/2017/9/10/16277234/mother-review-aronofsky-lawrence-bardem-tiff" target="_blank">the surface of <em>Mother!</em></a> that its hard to grab on to just one theme as what it “means.” Its full-on apocalyptic fiction, and like all stories of apocalypse, its intended to draw back the veil on reality and show us whats really beneath. And this movie gets wild: If its gleeful cracking apart of traditional theologies doesnt get you (theres a lot of Catholic folk imagery here, complete with an Ash Wednesday-like mud smearing on the foreheads of the faithful), its bonkers scenes of chaos probably will. <em>Mother!</em> is a movie designed to provoke fury, ecstasy, madness, catharsis, and more than a little awe. Watching it, and then participating in the flurry of arguments and discussions unpacking it, was among my best moviegoing experiences of 2017.
</p>
@ -96,9 +82,7 @@
<h3 id="PL5PTS">
14) <a href="https://www.vox.com/culture/2017/7/7/15925272/ghost-story-review-rooney-mara-casey-affleck" target="_blank"><em>A Ghost Story</em></a>
</h3>
<div id="76I1cH">
<iframe src="https://www.youtube.com/embed/0Vb0F_CN83E?rel=0&amp;" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="JWA6Pb">
Director <a href="https://www.vox.com/summer-movies/2017/7/13/15960236/david-lowery-ghost-story-interview" target="_blank">David Lowery</a> filmed <a href="https://www.vox.com/culture/2017/7/7/15925272/ghost-story-review-rooney-mara-casey-affleck" target="_blank"><em>A Ghost Story</em></a> in secret, then premiered it at the Sundance Film Festival to critical acclaim. The movie starts out being about a grieving widow (Rooney Mara) trying to live through the pain of losing her beloved husband, but it soon shifts focus to the ghost of her husband (Casey Affleck, covered in a sheet), evolving into a compelling rumination on the nature of time, memory, history, and the universe. Bathed in warm humor and wistful longing, it's a film that stays with you long after its over, a lingering reminder of the inextricable link between love and place.
</p>
@ -108,9 +92,7 @@
<h3 id="rRIM9r">
13) <a href="https://www.vox.com/2017/10/24/16523642/square-review-ruben-ostlund-claes-bang-elisabeth-moss" target="_blank"><em>The Square</em></a>
</h3>
<div id="z1g0Cs">
<iframe src="https://www.youtube.com/embed/EUzRjRv0Ib0?rel=0" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="NavzzU">
Winner of the Palme dOr at the 2017 Cannes Film Festival, <a href="https://www.vox.com/2017/10/24/16523642/square-review-ruben-ostlund-claes-bang-elisabeth-moss" target="_blank"><em>The Square</em></a> is a hilariously needling comedy about the contemporary art world, as well as the kind of idealistic liberalism that is tough to maintain in the face of real problems. The outstanding Claes Bang stars as Christian, a curator whose cluelessness leads him into some outlandishly rough spots, with Elisabeth Moss in a too-short but brilliant part as an American journalist who wont let him get away with his shenanigans. Its a heady film with a lot of ideas ricocheting around — and a <em>lot</em> of uncomfortable satire — but if you (like me) are the sort of viewer who loves that stuff, its sly jabs at the veneer of civilization that keeps the social contract intact are intoxicating.
</p>
@ -120,9 +102,7 @@
<h3 id="Px2hT6">
12) <a href="https://www.vox.com/culture/2017/7/17/15984026/dunkirk-review-nolan-rylance-hardy-styles-spoilers" target="_blank"><em>Dunkirk</em></a>
</h3>
<div id="TDSYe7">
<iframe src="https://www.youtube.com/embed/F-eMt3SrfFU?rel=0&amp;amp;start=24" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="MLatLf">
<a href="https://www.vox.com/culture/2017/7/17/15984026/dunkirk-review-nolan-rylance-hardy-styles-spoilers" target="_blank"><em>Dunkirk</em></a>, a true cinematic achievement from acclaimed director Christopher Nolan, backs off conventional notions of narrative and chronology as much as possible, while leaning headfirst into everything else that makes a movie a visceral work of art aimed at the senses: the images, the sounds, the scale, the swelling vibrations of it all. You cant smell the sea spray, but your brain may trick you into thinking you can. Nolans camera pushes the edges of the screen as far as it can as <em>Dunkirk</em> engulfs the audience in something that feels like a lot more than a war movie. Its a symphony for the brave and broken, and it resolves in a major key — but one with an undercurrent of sorrow, and of sober warning. Courage in the face of danger is not just for characters in movies.
</p>
@ -132,9 +112,7 @@
<h3 id="CPlXz5">
11) <em>Rat Film</em>
</h3>
<div id="s6q4gj">
<iframe src="https://www.youtube.com/embed/f-kpMAKc0l4?rel=0&amp;" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="GFFO6D">
<em>Rat Film</em> is about rats, yes — and rat poison experts and rat hunters and people who keep rats as pets. But its also about the history of eugenics, dubious science, <a href="https://en.wikipedia.org/wiki/Redlining" target="_blank">“redlining,”</a> and segregated housing in Baltimore. All these pieces come together to form one big essay, where the meaning of each vignette only becomes clearer in light of the whole. Its a fast-paced, no-holds-barred exploration of a damning history, and it accrues meaning as the images, sounds, and text pile up.
</p>
@ -144,9 +122,7 @@
<h3 id="Qgio0l">
10) <a href="https://www.vox.com/culture/2017/4/13/15243556/quiet-passion-review-emily-dickinson-passover-easter" target="_blank"><em>A Quiet Passion</em></a>
</h3>
<div id="Ya6IEK">
<iframe src="https://www.youtube.com/embed/T3SyPbUTEeU?rel=0&amp;" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="EO0XbC">
<a href="https://www.vox.com/culture/2017/4/13/15243556/quiet-passion-review-emily-dickinson-passover-easter" target="_blank"><em>A Quiet Passion</em></a> is technically a biographical film about Emily Dickinson, but it transcends its genre to become something more like poetry. Its a perplexing and challenging film, crafted without the traditional guardrails that guide most biographical movies — dates, times, major accomplishments, and so on. Time slips away in the film almost imperceptibly, and the narrative arc doesnt yield easily to the viewer. Cynthia Nixon plays Emily Dickinson, whose poetry and life is a perfect match for the signature style of director Terence Davies: rich in detail, deeply enigmatic, and weighed down with a kind of sparkling, joy-tinged sorrow. <em>A Quiet Passion</em> is a portrait, both visual and narrative, of the kind of saint most modern people can understand: one who is certain of her uncertainty, and yearning to walk the path on which her passion and longing meet.
</p>
@ -156,9 +132,7 @@
<h3 id="7dz2o3">
9) <em>Columbus</em>
</h3>
<div id="ZfQfEI">
<iframe src="https://www.youtube.com/embed/r3dcnV6Z9Zs?rel=0&amp;" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="pM0BdD">
<em>Columbus</em> is a stunner of a debut from video essayist turned director Kogonada. Haley Lu Richardson stars as Casey, a young woman living in Columbus, Indiana, who cares for her mother, works at a library, and harbors a passion for architecture. (Columbus is a mecca for modernist architecture scholars and enthusiasts.) When a visiting architecture scholar falls into a coma in Columbus, his estranged son Jin (John Cho) arrives to wait for him and strikes up a friendship with Casey, who starts to show him her favorite buildings. The two begin to unlock something in each other thats hard to define but life-changing for both. <em>Columbus</em> is beautiful and subtle, letting us feel how the places we build and the people we let near us move and mold us.
</p>
@ -168,9 +142,7 @@
<h3 id="wkyPUl">
8) <a href="https://www.vox.com/culture/2017/5/31/15706424/florida-project-review-cannes-sean-baker" target="_blank"><em>The Florida Project</em></a>
</h3>
<div id="RLHf4Z">
<iframe src="https://www.youtube.com/embed/WwQ-NH1rRT4?rel=0&amp;" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="J6kOkz">
Sean Bakers <a href="https://www.vox.com/culture/2017/5/31/15706424/florida-project-review-cannes-sean-baker" target="_blank"><em>The Florida Project</em></a> unfolds at first like a series of sketches about the characters who live in a purple-painted, $35-a-night motel called the Magic Castle down the street from Disney World. The film is held together by the hysterical antics of a kid named Moonee and her pack of young friends, as well as long-suffering hotel manager Bobby (a splendid, warm Willem Dafoe), who tries to put up with it all while keeping some kind of order. But as <em>The Florida Project</em> goes on, a narrative starts to form, one that chronicles with heartbreaking attention the sort of dilemmas that face poor parents and their children in America, and the broken systems that try to cope with impossible situations.
</p>
@ -180,9 +152,7 @@
<h3 id="rLGNAf">
7) <a href="https://www.vox.com/2017/11/21/16552862/call-me-by-your-name-review-timothee-chalamet-armie-hammer" target="_blank"><em>Call Me</em> <em>b</em><em>y Your Name</em></a>
</h3>
<div id="xGksjG">
<iframe src="https://www.youtube.com/embed/Z9AYPxH5NTM?rel=0&amp;" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="KyeOGQ">
Luca Guadagninos gorgeous film <a href="https://www.vox.com/2017/11/21/16552862/call-me-by-your-name-review-timothee-chalamet-armie-hammer" target="_blank"><em>Call Me</em> <em>b</em><em>y Your Name</em></a> adapts André Acimans <a href="https://go.redirectingat.com/?id=66960X1516588&amp;xs=1&amp;url=https%3A%2F%2Fwww.amazon.com%2FCall-Me-Your-Name-Novel%2Fdp%2F031242678X" rel="nofollow noopener" target="_blank">2007 novel</a> about a precocious 17-year-old named Elio (Timothée Chalamet), who falls in lust and love with his fathers 24-year-old graduate student Oliver (Armie Hammer). Its remarkable for how it turns literature into pure cinema, all emotion and image and heady sensation. Set in 1983 in Northern Italy, <em>Call Me</em> <em>b</em><em>y Your Name</em> is less about coming out than coming of age, but it also captures a particular sort of love thats equal parts passion and torment, a kind of irrational heart fire that opens a gate into something longer-lasting. The film is a lush, heady experience for the body, but its also an arousal for the soul.
</p>
@ -192,9 +162,7 @@
<h3 id="h6Biwc">
6) <em>Personal Shopper</em>
</h3>
<div id="NSQg2p">
<iframe src="https://www.youtube.com/embed/xC8AjoqpBAY?rel=0&amp;amp;start=15" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="pofJH9">
In her second collaboration with French director <a href="http://www.imdb.com/name/nm0000801/?ref_=fn_al_nm_1" target="_blank">Olivier Assayas</a>, Kristen Stewart plays a personal shopper to a wealthy socialite, with a sideline as an amateur ghost hunter whos searching for her dead twin brother. <em>Personal Shopper</em> is deeper than it seems at first blush, a meditation on grief and an exploration of “between” places — on the fringes of wealth, and in the space between life and death. Some souls are linked in a way that cant be shaken, and whether or not theres an afterlife doesnt change the fact that we see and sense them everywhere. (<em>Personal Shopper</em> also has one of the most tense extended scenes involving text messaging ever seen onscreen.)
</p>
@ -204,9 +172,7 @@
<h3 id="0RkMKy">
5) <em>Princess Cyd</em>
</h3>
<div id="7Tj1H6">
<iframe src="https://www.youtube.com/embed/sr64EJfnJwE?rel=0&amp;" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="2tSIHW">
Stephen Cone is a master of small, carefully realized filmmaking; his earlier films such as <em>The Wise Kids</em> and <em>Henry Gambles Birthday Party</em> combine an unusual level of empathy for his characters with an unusual combination of interests: love, desire, sexual awakenings, and religion. <em>Princess Cyd</em> is his most accomplished film yet, about a young woman named Cyd (<a href="http://www.imdb.com/name/nm6570557/?ref_=tt_cl_t2" target="_blank">Jessie Pinnick</a>) who finds herself attracted to Katie (<a href="http://www.imdb.com/name/nm5154548/?ref_=tt_cl_t3" target="_blank">Malic White</a>), a barista, while visiting her Aunt Miranda (<a href="http://www.imdb.com/name/nm2050642/?ref_=tt_cl_t1" target="_blank">Rebecca Spence</a>, playing a character modeled on the author Marilynne Robinson) in Chicago. As she works through her own sexual awakening with Katie, Cyd unwinds some of the ways Mirandas life has gotten too safe. They provoke each other while forming a bond and being prodded toward a bigger understanding of the world. It is a graceful and honest film, and it feels like a modest miracle.
</p>
@ -216,9 +182,7 @@
<h3 id="ADtiAV">
4) <a href="https://www.vox.com/culture/2017/2/24/14698632/get-out-review-jordan-peele" target="_blank"><em>Get Out</em></a>
</h3>
<div id="swjmhh">
<iframe src="https://www.youtube.com/embed/sRfnevzM9kQ?rel=0&amp;" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="h1ighb">
Racism is sinister, frightening, and deadly. But <a href="https://www.vox.com/culture/2017/2/24/14698632/get-out-review-jordan-peele" target="_blank"><em>Get Out</em></a> (a stunning directorial debut from <em>Key &amp; Peele</em>'s Jordan Peele) isnt about the blatantly, obviously scary kind of racism — burning crosses and lynchings and snarling hate. Instead, its interested in showing how the parts of racism that try to be aggressively unscary are just as horrifying, and its interested in making us feel that horror in a visceral, bodily way. In the tradition of the best classic social thrillers, <em>Get Out</em> takes a topic that is often approached cerebrally — casual racism — and turns it into something you feel in your tummy. And it does it with a wicked sense of humor.
</p>
@ -228,9 +192,7 @@
<h3 id="TQbjNr">
3) <em>The Work</em>
</h3>
<div id="GYqgVe">
<iframe src="https://www.youtube.com/embed/h8OVXG2GhpQ?rel=0&amp;" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="3Uotb3">
<em>The Work</em> is an outstanding, astonishing accomplishment and a viewing experience that will leave you shaken (but in a good way). At Folsom Prison in California, incarcerated men regularly participate in group therapy, and each year other men from the “outside” apply to participate in an intense four-day period of group therapy alongside Folsoms inmates. <em>The Work</em> spends almost all of its time inside the room where that therapy happens, observing the strong, visceral, and sometimes violent emotions the men feel as they expose the hurt and raw nerves that have shaped how they encounter the world. Watching is not always easy, but by letting us peek in, the film invites viewers to become part of the experience — as if we, too, are being asked to let go.
</p>
@ -240,9 +202,7 @@
<h3 id="kUrRP6">
2) <em>Ex Libris</em>
</h3>
<div id="Lb1IzW">
<iframe src="https://www.youtube.com/embed/YzKrlOFZBD8?rel=0&amp;" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="rGpjUU">
Frederick Wiseman is one of the towering giants of nonfiction film, a keen observer of American institutions — ranging from prisons to dance companies to welfare offices — for the past half-century. <em>Ex Libris</em> is his mesmerizing look at the New York Public Library and the many functions it fills, which go far beyond housing books. Wiseman works in the observational mode, which means his films contain no captions, dates, or talking-head interviews: We just see what his camera captured, which in this case includes community meetings, benefit dinners, after-school programs, readings with authors and scholars (including Richard Dawkins and Ta-Nehisi Coates), and NYPL patrons going about their business in the librarys branches all over the city. The result is almost hypnotic and, perhaps surprisingly, deeply moving. It makes a case for having faith in the public institutions where ordinary people work — away from the limelight, without trying to score political points — in order to make our communities truly better.
</p>
@ -252,9 +212,7 @@
<h3 id="QJNuyl">
1) <a href="https://www.vox.com/2017/11/2/16552860/lady-bird-review-saoirse-ronan-greta-gerwig" target="_blank"><em>Lady Bird</em></a>
</h3>
<div id="mgxqrA">
<iframe src="https://www.youtube.com/embed/cNi_HC839Wo?rel=0&amp;" allowfullscreen="allowfullscreen" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p id="z8uM1l">
<em>Lady Bird</em> topped my list almost instantly, and only rose in my estimation on repeated viewings. For many who saw it (including me), it felt like a movie made not just for but <em>about</em> me. <em>Lady Bird</em> is a masterful, exquisite coming-of-age comedy starring the great Saoirse Ronan as Christine — or “Lady Bird,” as shes re-christened herself — and its as funny, smart, and filled with yearning as its heroine. Writer-director Greta Gerwig made the film as an act of love, not just toward her hometown of Sacramento but also toward girlhood, and toward the feeling of always being on the outside of wherever real life is happening. <em>Lady Bird</em> is the rare movie that manages to be affectionate, entertaining, hilarious, witty, and confident. And one line from it struck me as the guiding principle of many of the years best films: “Dont you think they are the same thing? Love, and attention?”
</p>
@ -264,4 +222,4 @@
<p id="EVymKt">
<strong>Honorable mentions:</strong> <em>Marjorie Prime</em>, <em>Phantom Thread</em>, <a href="https://www.vox.com/culture/2017/4/28/15437008/casting-jonbenet-kitty-green-interview-netflix" target="_blank"><em>Casting JonBenet</em></a>, <a href="https://www.vox.com/2017/12/6/16682926/the-post-review-spieberg-streep-hanks-pentagon-nixon" target="_blank"><em>The Post</em></a>, <a href="https://www.vox.com/culture/2017/9/12/16288080/shape-of-water-del-toro-review-tiff" target="_blank"><em>The Shape of Water</em></a>, <a href="https://www.vox.com/summer-movies/2017/8/17/16150634/logan-lucky-review-soderbergh-tatum-driver-craig" target="_blank"><em>Logan Lucky</em></a>, <a href="https://www.vox.com/culture/2017/9/14/16301552/i-tonya-harding-kerrigan-review-tiff" target="_blank"><em>I, Tonya</em></a>, <a href="https://www.vox.com/culture/2017/4/13/15243584/lost-city-of-z-review-james-gray-charlie-hunnam-robert-pattinson" target="_blank"><em>The Lost City of Z</em></a>, <em>Graduation</em>, <em>Spettacolo</em>, <em>Loveless</em>, <em>Restless Creature: Wendy Whelan</em>, <em>In Transit</em>, <a href="https://www.vox.com/culture/2017/6/29/15844952/reagan-show-review" target="_blank"><em>The Reagan Show</em></a>
</p>
</div></article>
</div></article>

View file

@ -8,9 +8,7 @@
<p>
<strong><em>Vape Wave</em> (documentaire, 1h28, Planète+)</strong>
</p>
<p>
<iframe width="100%" src="https://www.youtube.com/embed/lGL7RgHn5f0" frameborder="0" allowfullscreen="allowfullscreen" data-aspect-ratio="0.5625" data-responsive="1" height="100%"></iframe>
</p>
<p>
Pendant quelques jours, le doute a plané : lEtat comptait-il vraiment légiférer contre la cigarette dans les films français, que ce soit via une interdiction pure et simple ou via un système de «punition» (coupe des aides CNC, par exemple) pour les longs-métrages qui sentent le mégot ? Si <a href="https://www.liberation.fr/direct/element/agnes-buzyn-assure-quelle-na-jamais-envisage-linterdiction-de-la-cigarette-au-cinema_73855/" target="_blank">le rétropédalage de la ministre Buzyn</a> nen est pas vraiment un (elle navait jamais clairement menacé le septième art), la polémique a le mérite de pointer la (sur)représentation clopesque sur écran. Et si, comme cest le cas dans la vie quotidienne, on voyait progressivement les cigarettes électroniques remplacer les tiges nicotinées authentiques ? Que ceux qui mettraient en doute le potentiel cinématographique des vapoteuses se ruent sur <a href="http://www.vapewave.net/" target="_blank"><em>Vape Wave</em></a>, documentaire militant signé Jan Kounen, ex-fumeur reconverti à la vape dont les images magnifient les volutes de vapeur recrachée.
</p>
@ -23,9 +21,7 @@
<p>
<strong><em>Dans la tête dAlan Moore</em> (websérie documentaire, 8x5min, Arte Creative)</strong>
</p>
<p>
<iframe width="100%" src="https://www.youtube.com/embed/s_rw5fPHz2g" frameborder="0" allowfullscreen="allowfullscreen" data-aspect-ratio="0.5625" data-responsive="1" height="100%"></iframe>
</p>
<p>
Le week-end dernier, <em>Libération</em> publiait <a href="http://next.liberation.fr/livres/2017/11/17/alan-moore-dernier-barde-avant-la-fin-du-monde_1610854" target="_blank">un portrait de der consacré à lauteur britannique Alan Moore</a>, connu pour ses BD cultes (<em>V pour Vendetta, Watchmen, From Hell</em>), à loccasion de la sortie de son deuxième roman, le pavé <em>Jérusalem</em>. En attendant limminente sortie dune version longue de son entretien avec <em>Libé</em>, on pourra se replonger dans les épisodes dune websérie documentaire dArte Creative en 8 épisodes consacré au maître. Brexit, magie, Anonymous font partie des sujets discutés avec le maître au fil de ce programme sobrement intitulé <a href="https://www.arte.tv/fr/videos/RC-014342/dans-la-tete-d-alan-moore/" target="_blank"><em>Dans la tête dAlan Moore</em></a>. <strong>(A.H.)</strong>
</p>
@ -35,9 +31,7 @@
<p>
<strong><em>The Death and Life of Marsha P. Johnson</em> (docu, 1h45, Netflix)</strong>
</p>
<p>
<iframe width="100%" src="https://www.youtube.com/embed/pADsuuPd79E" frameborder="0" allowfullscreen="allowfullscreen" data-aspect-ratio="0.5625" data-responsive="1" height="100%"></iframe>
</p>
<p>
Marsha, la <em>«Rosa Parks du mouvement LGBTQ»</em>. Marsha <em>«la prostituée, lactrice et la sainte, modèle dAndy Warhol»</em> ou encore Marsha lélaborée, la radicale, <em>«avec ses plumes et ce maquillage quelle ne mettait jamais bien»</em>. «Queen Marsha» a été retrouvée morte dans lHudson en juillet 1992, alors quon la voyait encore parader dans les rues de Greenwich Village quelques jours auparavant. Un choc glaçant. Là où son corps a été repêché puis ingratement déposé, les sans-abri ont constitué le lendemain un mémorial de bouteilles et de plantes qui délimitent les contours de labsente.
</p>
@ -50,9 +44,7 @@
<p>
<strong><em>Alphonse President</em> (série, 10x26, OCS Max)</strong>
</p>
<p>
<iframe width="100%" frameborder="0" src="https://www.dailymotion.com/embed/video/x67iqc9" allowfullscreen="allowfullscreen" data-aspect-ratio="0.5625" data-responsive="1"></iframe>
</p>
<p>
Un temps baptisée <em>French Touch</em>, la série <em>Alphonse Président</em> est le dernier né des programmes originaux made in OCS. On savait les budgets de la chaîne bien moins généreux que ceux de Canal+ (voire que ceux de France 3 Limousin), et cette série le prouve à nouveau régulièrement, notamment lors dune scène de conférence de presse alternant plans larges dune authentique conf' à lElysée période François Hollande et plans serrés dacteurs filmés dans un château des Pays de la Loire où a eu lieu le tournage. Le principal atout (et quel atout) de cette série écrite et réalisée par Nicolas Castro (<em>Des lendemains qui chantent</em>, 2014) réside dans son interprète principal, Michel Vuillermoz.
</p>
@ -65,9 +57,7 @@
<p>
<strong><em>Jim &amp; Andy</em> (documentaire, 1h33, Netflix) </strong>
</p>
<p>
<iframe width="100%" src="https://www.youtube.com/embed/kB15UFO5ebA" frameborder="0" allowfullscreen="allowfullscreen" data-aspect-ratio="0.5625" data-responsive="1" height="100%"></iframe>
</p>
<p>
A la sortie de <em>Man on the Moon</em> (2000), le magnifique film de Milos Forman consacré à Andy Kaufman  comique et génie de la performance absurde mort en 1984 , le cinéaste et les acteurs insistaient dans chaque interview sur lin­croyable comportement de Jim Carrey pendant le tournage : il aurait été comme possédé par Kaufman, se prenant pour lui 24 heures sur 24. Certains affirmaient même ne jamais avoir eu limpression que lacteur était présent, tant son modèle avait littéralement pris sa place. Nous en avons aujourdhui la preuve en images car tout cela avait été filmé par Bob Zmuda et Lynne Margulies, lancien complice et la veuve de Kaufman.
</p>
@ -80,14 +70,12 @@
<p>
<strong><em>Braguino</em> (documentaire, 50min, Arte)</strong>
</p>
<p>
<iframe width="100%" src="https://www.youtube.com/embed/OIS-P-0-cRk" frameborder="0" allowfullscreen="allowfullscreen" data-aspect-ratio="0.5625" data-responsive="1" height="100%"></iframe>
</p>
<p>
La querelle peut se trouver derrière toutes les portes, y compris celle de lexil. On a beau croire avoir tourné le dos à tout, à cette inclination humaine à nourrir sa propre haine, lallergie peut regermer fissa sur une peau qui frissonne à lapproche de ce voisin que lon ne comprend pas. Issu dune lignée de vieux-croyants orthodoxes russes, Sacha Braguine a pris sa famille sous le bras, loin de toute autre présence humaine en taïga sibérienne. Un autre groupe, les Kiline, a décidé den faire de même et de sinstaller de lautre côté de la rivière. Qui est arrivé en premier ? Qui menace lautre ? Lhistoire de limpossible communauté peut commencer.
</p>
<p>
La lecture d<em>Ermites dans la taïga</em> (1992) de Vassili Peskov, authentique récit sur la famille Lykov opérant une migration similaire en 1938, a poussé lartiste <a href="http://next.liberation.fr/images/2017/09/29/clement-cogitore-j-essaye-de-raconter-les-terreurs-profondes-de-l-etre-humain_1599854" target="_blank">Clément Cogitore</a> à rencontrer les Braguine, puis à se faire témoin de la bisbille de voisinage en 2016. Il en est revenu avec un nouveau film dune cinquantaine de minutes : <em>Braguino,</em> soutenu par le prix Le Bal de la jeune création avec lADAGP.<em> </em>Le documentaire y frôle son déguisement fictionnel, tant ce qui sy déroule convoque une dramaturgie comme invoquée par on ne sait quel rituel vaudou […] <a href="http://next.liberation.fr/cinema/2017/10/30/braguino-prises-de-bec-dans-la-taiga_1606859" target="_blank">Lire la suite de la critique de Jérémy Piette sur Liberation.fr</a>, le film diffusé cette semaine sur Arte est visible en intégralité ci-dessus.
La lecture d<em>Ermites dans la taïga</em> (1992) de Vassili Peskov, authentique récit sur la famille Lykov opérant une migration similaire en 1938, a poussé lartiste <a href="http://next.liberation.fr/images/2017/09/29/clement-cogitore-j-essaye-de-raconter-les-terreurs-profondes-de-l-etre-humain_1599854" target="_blank">Clément Cogitore</a> à rencontrer les Braguine, puis à se faire témoin de la bisbille de voisinage en 2016. Il en est revenu avec un nouveau film dune cinquantaine de minutes : <em>Braguino,</em> soutenu par le prix Le Bal de la jeune création avec lADAGP.Le documentaire y frôle son déguisement fictionnel, tant ce qui sy déroule convoque une dramaturgie comme invoquée par on ne sait quel rituel vaudou […] <a href="http://next.liberation.fr/cinema/2017/10/30/braguino-prises-de-bec-dans-la-taiga_1606859" target="_blank">Lire la suite de la critique de Jérémy Piette sur Liberation.fr</a>, le film diffusé cette semaine sur Arte est visible en intégralité ci-dessus.
</p>
<h3>
Pour un thriller tiré de faits réels
@ -95,15 +83,11 @@
<p>
<strong><em>6 Days</em> (film, 1h34, Netflix)</strong>
</p>
<p>
<iframe width="100%" src="https://www.youtube.com/embed/7HthiTi_IcI" frameborder="0" allowfullscreen="allowfullscreen" data-aspect-ratio="0.5625" data-responsive="1" height="100%"></iframe>
</p>
<p>
Fin avril 1980, lambassade dIran à Londres a été le théâtre dune prise dotages largement médiatisée : une trentaine de personnes ont ainsi été retenues pendant six jours par des soldats iraniens dissidents exigeant la libération de 91 prisonniers. Avec Margaret Thatcher au 10 Downing Street à lépoque, pas question pour lAngleterre davoir lair mou du genou sur la réponse à apporter à cette crise scrutée par les caméras du monde entier. Le SAS (Special Air Service) est sur le coup : lopération Nimrod se met en place pour prendre dassaut lambassade.
</p>
<p>
Inspiré par cet épisode, <em>6 Days</em> de Toa Fraser (<em>The Dead Lands</em>, 2014) est un thriller carré pouvant compter sur l'autorité naturelle de Mark Strong (<em>Kingsman</em>) ici recyclé en flic londonien et sur la néo-badass attitude de Jamie Bell, bien loin du freluquet danseur de <em>Billy Elliot</em> puisqu'on le retrouve ici en soldat chargé dorganiser lopération de secours. Attention, la bande-annonce ci-dessus dévoile à peu près lintégralité des scènes daction du film. <strong>(A.H.)</strong>
</p>
<p><span><span><a href="https://www.liberation.fr/auteur/5631-alexandre-hervaud" target="_blank">Alexandre Hervaud</a></span> , <span><a href="https://www.liberation.fr/auteur/17350-jeremy-piette" target="_blank">Jérémy Piette</a></span></span>
</p>
</div></article>
</p><p><span><span><a href="https://www.liberation.fr/auteur/5631-alexandre-hervaud" target="_blank">Alexandre Hervaud</a></span> , <span><a href="https://www.liberation.fr/auteur/17350-jeremy-piette" target="_blank">Jérémy Piette</a></span></span>
</p></div></article>

View file

@ -87,8 +87,7 @@
extremists.</p>
<div>
<p><span>Map: Flow of foreign fighters to Syria</span>
</p>
</div>
</p></div>
<p>After the collapse of the authoritarian system in 2011, hard-line Muslims
known as Salafists attacked bars and art galleries. Then, in 2012, hundreds
of Islamists <a href="http://www.washingtonpost.com/world/middle_east/in-tunisia-embassy-attack-tests-fledgling-democracy/2012/09/20/19f3986a-0273-11e2-8102-ebee9c66e190_story.html" target="_blank">assaulted the U.S. Embassy </a>in
@ -114,8 +113,8 @@
<p>In January, Libyan militants loyal to the Islamic State <a href="http://www.washingtonpost.com/world/middle_east/video-shows-purported-beheading-of-egyptian-christians-in-libya/2015/02/15/b8d0f092-b548-11e4-bc30-a4e75503948a_story.html" target="_blank">beheaded 21 Christians</a>
20 of them Egyptian Copts — along the countrys coast. They later seized
the Libyan city of Sirte.</p>
<p><img data-hi-res-src="https://img.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2015/03/18/Foreign/Graphics/tunisia600.jpg?uuid=1_yuLs2LEeSHME9HNBbnWQ" data-low-res-src="https://img.washingtonpost.com/rf/image_480w/2010-2019/WashingtonPost/2015/03/18/Foreign/Graphics/tunisia600.jpg?uuid=1_yuLs2LEeSHME9HNBbnWQ" src="https://img.washingtonpost.com/rf/image_480w/2010-2019/WashingtonPost/2015/03/18/Foreign/Graphics/tunisia600.jpg?uuid=1_yuLs2LEeSHME9HNBbnWQ">
<br>
<p><img data-hi-res-src="https://img.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2015/03/18/Foreign/Graphics/tunisia600.jpg?uuid=1_yuLs2LEeSHME9HNBbnWQ" data-low-res-src="https://img.washingtonpost.com/rf/image_480w/2010-2019/WashingtonPost/2015/03/18/Foreign/Graphics/tunisia600.jpg?uuid=1_yuLs2LEeSHME9HNBbnWQ" src="https://img.washingtonpost.com/rf/image_480w/2010-2019/WashingtonPost/2015/03/18/Foreign/Graphics/tunisia600.jpg?uuid=1_yuLs2LEeSHME9HNBbnWQ"/>
<br/>
</p>
<p>Officials are worried about the number of Tunisian militants who may have
joined the jihadists in Libya — with the goal of returning home to fight
@ -145,4 +144,4 @@
<p channel="wp.com"> <a href="http://www.washingtonpost.com/blogs/worldviews/wp/2015/03/18/tunisias-bardo-museum-attacked-by-terrorists-is-home-to-amazing-roman-treasures/" target="_blank">Tunisias Bardo museum is home to amazing Roman treasures</a>
</p>
</article></DIV></article>
</article></DIV></article>

View file

@ -1,8 +1,6 @@
<article><DIV id="readability-page-1">
<p><img src="https://img.washingtonpost.com/rf/image_400w/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1140.jpg?uuid=zLIZQs2KEeSip5UXo6cFBg" data-hi-res-src="https://img.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1140.jpg?uuid=zLIZQs2KEeSip5UXo6cFBg" data-low-res-src="https://img.washingtonpost.com/rf/image_400w/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1140.jpg?uuid=zLIZQs2KEeSip5UXo6cFBg">
<br> <span>Israeli Prime Minister Benjamin Netanyahu reacts as he visits the Western Wall in Jerusalem on March 18 following his party's victory in Israel's general election. (Thomas Coex/AFP/Getty Images)</span>
</p>
<article>
<article><DIV id="readability-page-1"><p><img src="https://img.washingtonpost.com/rf/image_400w/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1140.jpg?uuid=zLIZQs2KEeSip5UXo6cFBg" data-hi-res-src="https://img.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1140.jpg?uuid=zLIZQs2KEeSip5UXo6cFBg" data-low-res-src="https://img.washingtonpost.com/rf/image_400w/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1140.jpg?uuid=zLIZQs2KEeSip5UXo6cFBg"/>
<br/> <span>Israeli Prime Minister Benjamin Netanyahu reacts as he visits the Western Wall in Jerusalem on March 18 following his party's victory in Israel's general election. (Thomas Coex/AFP/Getty Images)</span>
</p><article>
<p>President Obama told the U.N. General Assembly 18 months ago that he would
seek “real breakthroughs on these two issues — Irans nuclear program and
­Israeli-Palestinian peace.”</p>
@ -98,10 +96,7 @@
<p>“That could be an issue forced onto the agenda about the same time as
a potential nuclear deal.”</p>
</article><div>
<p><a href="http://www.washingtonpost.com/people/steven-mufson" target="_blank"><img src="http://img.washingtonpost.com/wp-apps/imrs.php?src=http://www.washingtonpost.com/blogs/wonkblog/files/2014/07/mufson_steve.jpg&amp;h=180&amp;w=180"></a></p>
<p>Steven Mufson covers the White House. Since joining The Post, he has covered
</article><div><p><a href="http://www.washingtonpost.com/people/steven-mufson" target="_blank"><img src="http://img.washingtonpost.com/wp-apps/imrs.php?src=http://www.washingtonpost.com/blogs/wonkblog/files/2014/07/mufson_steve.jpg&amp;h=180&amp;w=180"/></a></p><p>Steven Mufson covers the White House. Since joining The Post, he has covered
economics, China, foreign policy and energy.</p>
</div>
</DIV></article>
</div></DIV></article>

View file

@ -69,4 +69,4 @@
to peanuts and other tree nuts can be especially severe. Nuts are
the main
reason people get a life-threatening problem called <a href="http://www.webmd.com/allergies/guide/anaphylaxis" target="_blank">anaphylaxis</a>.</p>
</div></article>
</div></article>

View file

@ -21,4 +21,4 @@
<p>"What the public should know is that the more antibiotics youve taken, the higher your superbug risk," says Eric Biondi, MD, who runs a program to decrease unnecessary antibiotic use. "The more encounters you have with the hospital setting, the higher your superbug risk."</p>
<p>"Superbugs should be a concern to everyone," Coombes says. "Antibiotics are the foundation on which all modern medicine rests. Cancer <a href="http://www.webmd.com/cancer/chemotherapy-what-to-expect" target="_blank">chemotherapy</a>, <a href="http://www.webmd.com/a-to-z-guides/organ-donation-facts" target="_blank">organ transplants</a>, surgeries, and <a href="http://www.webmd.com/baby/guide/delivery-methods" target="_blank">childbirth</a> all rely on antibiotics to prevent infections. If you can't treat those, then we lose the medical advances we have made in the last 50 years."</p>
<p>Here are some of the growing superbug threats identified in the 2015 White House report.</p>
</div></article>
</div></article>

View file

@ -2,26 +2,26 @@
<p>Although Lucasfilm is already planning a birthday bash for the Star Wars Saga at <a href="http://starwars.wikia.com/wiki/Celebration_Orlando" data-is="trackable" riot-tag="trackable" target="_blank">Celebration Orlando</a> this April, fans might get another present for the sagas 40th anniversary. According to fan site <a href="http://makingstarwars.net/2017/02/rumor-unaltered-original-star-wars-trilogy-re-released-year/" data-is="trackable" riot-tag="trackable" target="_blank">MakingStarWars.net</a>, rumors abound that Lucasfilm might re-release the unaltered cuts of the sagas original trilogy.</p>
<p>If the rumors are true, this is big news for Star Wars fans. Aside from limited VHS releases, the unaltered cuts of the original trilogy films havent been available since they premiered in theaters in the 1970s and 80s. If Lucasfilm indeed re-releases the films original cuts, then this will be the first time in decades that fans can see the films in their original forms. Heres what makes the unaltered cuts of the original trilogy so special.</p>
<h2>The Star Wars Special Editions Caused Controversy
<a href="https://vignette.wikia.nocookie.net/e80dae8a-b955-43f6-8ada-f023385e622b" data-is="trackable" riot-tag="trackable" target="_blank"><img src="https://vignette.wikia.nocookie.net/e80dae8a-b955-43f6-8ada-f023385e622b/scale-to-width-down/627" alt="star wars han solo" srcset="https://vignette.wikia.nocookie.net/e80dae8a-b955-43f6-8ada-f023385e622b/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/e80dae8a-b955-43f6-8ada-f023385e622b/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/e80dae8a-b955-43f6-8ada-f023385e622b/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/e80dae8a-b955-43f6-8ada-f023385e622b/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 627px"></a>
<a href="https://vignette.wikia.nocookie.net/e80dae8a-b955-43f6-8ada-f023385e622b" data-is="trackable" riot-tag="trackable" target="_blank"><img src="https://vignette.wikia.nocookie.net/e80dae8a-b955-43f6-8ada-f023385e622b/scale-to-width-down/627" alt="star wars han solo" srcset="https://vignette.wikia.nocookie.net/e80dae8a-b955-43f6-8ada-f023385e622b/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/e80dae8a-b955-43f6-8ada-f023385e622b/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/e80dae8a-b955-43f6-8ada-f023385e622b/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/e80dae8a-b955-43f6-8ada-f023385e622b/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 627px"/></a>
</h2>
<p>Thanks to the commercial success of Star Wars, <a href="http://starwars.wikia.com/wiki/George_Lucas" data-is="trackable" riot-tag="trackable" target="_blank">George Lucas</a> has revisited and further edited his films for re-releases. The most notable — and controversial — release were the <a href="http://starwars.wikia.com/wiki/The_Star_Wars_Trilogy_Special_Edition" data-is="trackable" riot-tag="trackable" target="_blank">Special Editions</a> of the original trilogy. In 1997, to celebrate the sagas 20th anniversary, Lucasfilm spent a total of $15 million to remaster <a href="http://starwars.wikia.com/wiki/Star_Wars:_Episode_IV_A_New_Hope" data-is="trackable" riot-tag="trackable" target="_blank"><em>A New Hope</em></a>, <a href="http://starwars.wikia.com/wiki/Star_Wars:_Episode_V_The_Empire_Strikes_Back" data-is="trackable" riot-tag="trackable" target="_blank"><em>The Empire Strikes Back</em></a>, and <a href="http://starwars.wikia.com/wiki/Star_Wars:_Episode_VI_Return_of_the_Jedi" data-is="trackable" riot-tag="trackable" target="_blank"><em>Return of the Jedi</em></a>. The Special Editions had stints in theaters before moving to home media.</p>
<p>Although most of the Special Editions changes were cosmetic, others significantly affected the plot of the films. The most notable example is the “<a href="http://starwars.wikia.com/wiki/Han_shot_first" data-is="trackable" riot-tag="trackable" target="_blank">Han shot first</a>” scene in <em>A New Hope</em>. As a result, the Special Editions generated significant controversy among Star Wars fans. Many fans remain skeptical about George Lucass decision to finish each original trilogy film “the way it was meant to be.”</p>
<p>
<a href="https://vignette.wikia.nocookie.net/375e0e5a-170d-4560-8f20-240c9f0624e9" data-is="trackable" riot-tag="trackable" target="_blank"><img src="https://vignette.wikia.nocookie.net/375e0e5a-170d-4560-8f20-240c9f0624e9/scale-to-width-down/627" alt="star wars" srcset="https://vignette.wikia.nocookie.net/375e0e5a-170d-4560-8f20-240c9f0624e9/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/375e0e5a-170d-4560-8f20-240c9f0624e9/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/375e0e5a-170d-4560-8f20-240c9f0624e9/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/375e0e5a-170d-4560-8f20-240c9f0624e9/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 627px"></a>
<a href="https://vignette.wikia.nocookie.net/375e0e5a-170d-4560-8f20-240c9f0624e9" data-is="trackable" riot-tag="trackable" target="_blank"><img src="https://vignette.wikia.nocookie.net/375e0e5a-170d-4560-8f20-240c9f0624e9/scale-to-width-down/627" alt="star wars" srcset="https://vignette.wikia.nocookie.net/375e0e5a-170d-4560-8f20-240c9f0624e9/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/375e0e5a-170d-4560-8f20-240c9f0624e9/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/375e0e5a-170d-4560-8f20-240c9f0624e9/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/375e0e5a-170d-4560-8f20-240c9f0624e9/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 627px"/></a>
</p>
<p>While the Special Editions represent the most significant edits to the original trilogy, the saga has undergone other changes. Following up on the sagas first Blu-ray release in 2011, Industrial Light &amp; Magic (ILM) began remastering the entire saga in 3D, starting with the prequel trilogy. <a href="http://starwars.wikia.com/wiki/Star_Wars:_Episode_I_The_Phantom_Menace" data-is="trackable" riot-tag="trackable" target="_blank"><em>The Phantom Menace</em></a> saw a theatrical 3D re-release in 2012, but Disneys 2012 acquisition of Lucasfilm indefinitely postponed further 3D releases.</p>
<p>In 2015, <a href="http://starwars.wikia.com/wiki/Star_Wars:_Episode_II_Attack_of_the_Clones" data-is="trackable" riot-tag="trackable" target="_blank"><em>Attack of the Clones</em></a> and <a href="http://starwars.wikia.com/wiki/Star_Wars:_Episode_III_Revenge_of_the_Sith" data-is="trackable" riot-tag="trackable" target="_blank"><em>Revenge of the Sith</em></a> received limited 3D showings at <a href="http://starwars.wikia.com/wiki/Celebration_Anaheim" data-is="trackable" riot-tag="trackable" target="_blank">Celebration Anaheim</a>. Other than that, it seems as though Disney has decided to refocus Lucasfilms efforts to new films. Of course, thats why the saga has produced new content beginning with <a href="http://starwars.wikia.com/wiki/Star_Wars:_Episode_VII_The_Force_Awakens" data-is="trackable" riot-tag="trackable" target="_blank"><em>The Force Awakens</em></a>. However, it looks like Lucasfilm isnt likely to generate 3D versions of the original trilogy anytime soon.</p>
<h2>Why the Original Film Cuts Matter</h2>
<p>
<a href="https://vignette.wikia.nocookie.net/1fb5ee36-d9ae-4125-96d9-f52eb403f1c9" data-is="trackable" riot-tag="trackable" target="_blank"><img src="https://vignette.wikia.nocookie.net/1fb5ee36-d9ae-4125-96d9-f52eb403f1c9/scale-to-width-down/627" alt="" srcset="https://vignette.wikia.nocookie.net/1fb5ee36-d9ae-4125-96d9-f52eb403f1c9/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/1fb5ee36-d9ae-4125-96d9-f52eb403f1c9/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/1fb5ee36-d9ae-4125-96d9-f52eb403f1c9/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/1fb5ee36-d9ae-4125-96d9-f52eb403f1c9/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 627px"></a>
<a href="https://vignette.wikia.nocookie.net/1fb5ee36-d9ae-4125-96d9-f52eb403f1c9" data-is="trackable" riot-tag="trackable" target="_blank"><img src="https://vignette.wikia.nocookie.net/1fb5ee36-d9ae-4125-96d9-f52eb403f1c9/scale-to-width-down/627" alt="" srcset="https://vignette.wikia.nocookie.net/1fb5ee36-d9ae-4125-96d9-f52eb403f1c9/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/1fb5ee36-d9ae-4125-96d9-f52eb403f1c9/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/1fb5ee36-d9ae-4125-96d9-f52eb403f1c9/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/1fb5ee36-d9ae-4125-96d9-f52eb403f1c9/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 627px"/></a>
</p>
<p>Admittedly, the differences between the original trilogys unaltered cuts and the Special Editions appeal to more hardcore fans. Casual fans are less likely to care about whether <a href="http://starwars.wikia.com/wiki/Greedo" data-is="trackable" riot-tag="trackable" target="_blank">Greedo</a> or <a href="http://starwars.wikia.com/wiki/Han_Solo" data-is="trackable" riot-tag="trackable" target="_blank">Han Solo</a> shot first. Still, given Star Wars indelible impact on pop culture, theres certainly a market for the original trilogys unaltered cuts. They might not be for every Star Wars fan, but many of us care about them.</p>
<p>ILM supervisor <a href="http://starwars.wikia.com/wiki/John_Knoll" data-is="trackable" riot-tag="trackable" target="_blank">John Knoll</a>, who first pitched the <a href="http://fandom.wikia.com/videos/john-knoll-important-rogue-one" data-is="trackable" riot-tag="trackable" target="_blank">story idea</a> for <a href="http://starwars.wikia.com/wiki/Rogue_One:_A_Star_Wars_Story" data-is="trackable" riot-tag="trackable" target="_blank"><em>Rogue One</em></a>, said <a href="http://lwlies.com/interviews/gareth-edwards-rogue-one-a-star-wars-story/" data-is="trackable" riot-tag="trackable" target="_blank">last year</a> that ILM finished a brand new 4K restoration print of <em>A New Hope</em>. For that reason, it seems likely that Lucasfilm will finally give diehard fans the original film cuts that theyve clamored for. Theres no word yet whether the unaltered cuts will be released in theaters or on home media. At the very least, however, fans will likely get them after all this time. After all, the Special Editions marked the sagas 20th anniversary. Star Wars turns 40 years old this year, so theres no telling whats in store.</p>
<hr>
<hr/>
<p>
<em>
Would you like to be part of the Fandom team? <a href="http://fandom.wikia.com/fan-contributor" data-is="trackable" riot-tag="trackable" target="_blank">Join our Fan Contributor Program</a> and share your voice on <a href="http://fandom.wikia.com/" data-is="trackable" riot-tag="trackable" target="_blank">Fandom.com</a>! </em>
</p>
</div></article>
</div></article>

File diff suppressed because one or more lines are too long

View file

@ -5,27 +5,27 @@
In mathematics, a <b>Hermitian matrix</b> (or <b>self-adjoint matrix</b>) is a <a href="http://fakehost/wiki/Complex_number" title="Complex number" target="_blank">complex</a> <a href="http://fakehost/wiki/Square_matrix" title="Square matrix" target="_blank">square matrix</a> that is equal to its own <a href="http://fakehost/wiki/Conjugate_transpose" title="Conjugate transpose" target="_blank">conjugate transpose</a>—that is, the element in the <span>i</span>-th row and <span>j</span>-th column is equal to the <a href="http://fakehost/wiki/Complex_conjugate" title="Complex conjugate" target="_blank">complex conjugate</a> of the element in the <span>j</span>-th row and <span>i</span>-th column, for all indices <span>i</span> and <span>j</span>:
</p>
<p>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/28a0aaa74b2267a48312e19321211cd9e3a39228" aria-hidden="true" alt="{\displaystyle A{\text{ Hermitian}}\quad \iff \quad a_{ij}={\overline {a_{ji}}}}"></span>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/28a0aaa74b2267a48312e19321211cd9e3a39228" aria-hidden="true" alt="{\displaystyle A{\text{ Hermitian}}\quad \iff \quad a_{ij}={\overline {a_{ji}}}}"/></span>
</p>
<p>
or in matrix form:
</p>
<dl>
<dd>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/6ca00b61ff0e264e6c1e5adc9a00c0d2751feecf" aria-hidden="true" alt="{\displaystyle A{\text{ Hermitian}}\quad \iff \quad A={\overline {A^{\mathsf {T}}}}}"></span>.
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/6ca00b61ff0e264e6c1e5adc9a00c0d2751feecf" aria-hidden="true" alt="{\displaystyle A{\text{ Hermitian}}\quad \iff \quad A={\overline {A^{\mathsf {T}}}}}"/></span>.
</dd>
</dl>
<p>
Hermitian matrices can be understood as the complex extension of real <a href="http://fakehost/wiki/Symmetric_matrix" title="Symmetric matrix" target="_blank">symmetric matrices</a>.
</p>
<p>
If the <a href="http://fakehost/wiki/Conjugate_transpose" title="Conjugate transpose" target="_blank">conjugate transpose</a> of a matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"></span> is denoted by <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/d9415702ab196cc26f5df37af2d90e07318e93df" aria-hidden="true" alt="{\displaystyle A^{\mathsf {H}}}"></span>, then the Hermitian property can be written concisely as
If the <a href="http://fakehost/wiki/Conjugate_transpose" title="Conjugate transpose" target="_blank">conjugate transpose</a> of a matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"/></span> is denoted by <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/d9415702ab196cc26f5df37af2d90e07318e93df" aria-hidden="true" alt="{\displaystyle A^{\mathsf {H}}}"/></span>, then the Hermitian property can be written concisely as
</p>
<p>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/291d260bf69b764e75818669ab27870d58771e1f" aria-hidden="true" alt="{\displaystyle A{\text{ Hermitian}}\quad \iff \quad A=A^{\mathsf {H}}}"></span>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/291d260bf69b764e75818669ab27870d58771e1f" aria-hidden="true" alt="{\displaystyle A{\text{ Hermitian}}\quad \iff \quad A=A^{\mathsf {H}}}"/></span>
</p>
<p>
Hermitian matrices are named after <a href="http://fakehost/wiki/Charles_Hermite" title="Charles Hermite" target="_blank">Charles Hermite</a>, who demonstrated in 1855 that matrices of this form share a property with real symmetric matrices of always having real <a href="http://fakehost/wiki/Eigenvalues_and_eigenvectors" title="Eigenvalues and eigenvectors" target="_blank">eigenvalues</a>. Other, equivalent notations in common use are <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/8aa270391d183478251283d2c4b2c72ac4563352" aria-hidden="true" alt="{\displaystyle A^{\mathsf {H}}=A^{\dagger }=A^{\ast }}"></span>, although note that in <a href="http://fakehost/wiki/Quantum_mechanics" title="Quantum mechanics" target="_blank">quantum mechanics</a>, <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/5541bfa07743be995242c892c344395e672d6fa2" aria-hidden="true" alt="A^{\ast }"></span> typically means the <a href="http://fakehost/wiki/Complex_conjugate" title="Complex conjugate" target="_blank">complex conjugate</a> only, and not the <a href="http://fakehost/wiki/Conjugate_transpose" title="Conjugate transpose" target="_blank">conjugate transpose</a>.
Hermitian matrices are named after <a href="http://fakehost/wiki/Charles_Hermite" title="Charles Hermite" target="_blank">Charles Hermite</a>, who demonstrated in 1855 that matrices of this form share a property with real symmetric matrices of always having real <a href="http://fakehost/wiki/Eigenvalues_and_eigenvectors" title="Eigenvalues and eigenvectors" target="_blank">eigenvalues</a>. Other, equivalent notations in common use are <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/8aa270391d183478251283d2c4b2c72ac4563352" aria-hidden="true" alt="{\displaystyle A^{\mathsf {H}}=A^{\dagger }=A^{\ast }}"/></span>, although note that in <a href="http://fakehost/wiki/Quantum_mechanics" title="Quantum mechanics" target="_blank">quantum mechanics</a>, <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/5541bfa07743be995242c892c344395e672d6fa2" aria-hidden="true" alt="A^{\ast }"/></span> typically means the <a href="http://fakehost/wiki/Complex_conjugate" title="Complex conjugate" target="_blank">complex conjugate</a> only, and not the <a href="http://fakehost/wiki/Conjugate_transpose" title="Conjugate transpose" target="_blank">conjugate transpose</a>.
</p>
<h2>
@ -38,28 +38,26 @@
<span id="Equality_with_the_adjoint">Equality with the adjoint</span><span><span>[</span><a href="http://fakehost/w/index.php?title=Hermitian_matrix&amp;action=edit&amp;section=2" title="Edit section: Equality with the adjoint" target="_blank">edit</a><span>]</span></span>
</h3>
<p>
A square matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"></span> is Hermitian if and only if it is equal to its <a href="http://fakehost/wiki/Hermitian_adjoint" title="Hermitian adjoint" target="_blank">adjoint</a>, that is, it satisfies
A square matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"/></span> is Hermitian if and only if it is equal to its <a href="http://fakehost/wiki/Hermitian_adjoint" title="Hermitian adjoint" target="_blank">adjoint</a>, that is, it satisfies
</p>
<p><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/459de45e76bace9d04a80d2e8efc2abbbc246047" aria-hidden="true" alt="{\displaystyle \langle w,Av\rangle =\langle Aw,v\rangle ,}">
</p>
<p>for any pair of vectors <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/6425c6e94fa47976601cb44d7564b5d04dcfbfef" aria-hidden="true" alt="v,w"></span>, where <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/9a50080b735975d8001c9552ac2134b49ad534c0" aria-hidden="true" alt="{\displaystyle \langle \cdot ,\cdot \rangle }"></span> denotes <a href="http://fakehost/wiki/Dot_product" title="Dot product" target="_blank">the inner product</a> operation.
</p>
<p>
<p><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/459de45e76bace9d04a80d2e8efc2abbbc246047" aria-hidden="true" alt="{\displaystyle \langle w,Av\rangle =\langle Aw,v\rangle ,}"/>
</p><p>for any pair of vectors <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/6425c6e94fa47976601cb44d7564b5d04dcfbfef" aria-hidden="true" alt="v,w"/></span>, where <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/9a50080b735975d8001c9552ac2134b49ad534c0" aria-hidden="true" alt="{\displaystyle \langle \cdot ,\cdot \rangle }"/></span> denotes <a href="http://fakehost/wiki/Dot_product" title="Dot product" target="_blank">the inner product</a> operation.
</p><p>
This is also the way that the more general concept of <a href="http://fakehost/wiki/Self-adjoint_operator" title="Self-adjoint operator" target="_blank">self-adjoint operator</a> is defined.
</p>
<h3>
<span id="Reality_of_quadratic_forms">Reality of quadratic forms</span><span><span>[</span><a href="http://fakehost/w/index.php?title=Hermitian_matrix&amp;action=edit&amp;section=3" title="Edit section: Reality of quadratic forms" target="_blank">edit</a><span>]</span></span>
</h3>
<p>
A square matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"></span> is Hermitian if and only if it is such that
A square matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"/></span> is Hermitian if and only if it is such that
</p>
<p><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/997ea0350c18735926412de88420ac9ca989f50c" aria-hidden="true" alt="{\displaystyle \langle v,Av\rangle \in \mathbb {R} ,\quad v\in V.}">
<p><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/997ea0350c18735926412de88420ac9ca989f50c" aria-hidden="true" alt="{\displaystyle \langle v,Av\rangle \in \mathbb {R} ,\quad v\in V.}"/>
</p>
<h3>
<span id="Spectral_properties">Spectral properties</span><span><span>[</span><a href="http://fakehost/w/index.php?title=Hermitian_matrix&amp;action=edit&amp;section=4" title="Edit section: Spectral properties" target="_blank">edit</a><span>]</span></span>
</h3>
<p>
A square matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"></span> is Hermitian if and only if it is unitarily <a href="http://fakehost/wiki/Diagonalizable_matrix" title="Diagonalizable matrix" target="_blank">diagonalizable</a> with real <a href="http://fakehost/wiki/Eigenvalues_and_eigenvectors" title="Eigenvalues and eigenvectors" target="_blank">eigenvalues</a>.
A square matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"/></span> is Hermitian if and only if it is unitarily <a href="http://fakehost/wiki/Diagonalizable_matrix" title="Diagonalizable matrix" target="_blank">diagonalizable</a> with real <a href="http://fakehost/wiki/Eigenvalues_and_eigenvectors" title="Eigenvalues and eigenvectors" target="_blank">eigenvalues</a>.
</p>
<h2>
<span id="Applications">Applications</span><span><span>[</span><a href="http://fakehost/w/index.php?title=Hermitian_matrix&amp;action=edit&amp;section=5" title="Edit section: Applications" target="_blank">edit</a><span>]</span></span>
@ -71,14 +69,14 @@
<span id="Examples">Examples</span><span><span>[</span><a href="http://fakehost/w/index.php?title=Hermitian_matrix&amp;action=edit&amp;section=6" title="Edit section: Examples" target="_blank">edit</a><span>]</span></span>
</h2>
<p>
In this section, the conjugate transpose of matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"></span> is denoted as <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/d9415702ab196cc26f5df37af2d90e07318e93df" aria-hidden="true" alt="{\displaystyle A^{\mathsf {H}}}"></span>, the transpose of matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"></span> is denoted as <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/54bf0331204e30cba9ec7f695dfea97e6745a7c2" aria-hidden="true" alt="{\displaystyle A^{\mathsf {T}}}"></span> and conjugate of matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"></span> is denoted as <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/92efef0e89bdc77f6a848764195ef5b9d9bfcc6a" aria-hidden="true" alt="{\displaystyle {\overline {A}}}"></span>.
In this section, the conjugate transpose of matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"/></span> is denoted as <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/d9415702ab196cc26f5df37af2d90e07318e93df" aria-hidden="true" alt="{\displaystyle A^{\mathsf {H}}}"/></span>, the transpose of matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"/></span> is denoted as <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/54bf0331204e30cba9ec7f695dfea97e6745a7c2" aria-hidden="true" alt="{\displaystyle A^{\mathsf {T}}}"/></span> and conjugate of matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"/></span> is denoted as <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/92efef0e89bdc77f6a848764195ef5b9d9bfcc6a" aria-hidden="true" alt="{\displaystyle {\overline {A}}}"/></span>.
</p>
<p>
See the following example:
</p>
<dl>
<dd>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/00ccf11c16396b6ddd4f2254f7132cd8bb2c57ee" aria-hidden="true" alt="{\displaystyle {\begin{bmatrix}2&amp;2+i&amp;4\\2-i&amp;3&amp;i\\4&amp;-i&amp;1\\\end{bmatrix}}}"></span>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/00ccf11c16396b6ddd4f2254f7132cd8bb2c57ee" aria-hidden="true" alt="{\displaystyle {\begin{bmatrix}2&amp;2+i&amp;4\\2-i&amp;3&amp;i\\4&amp;-i&amp;1\\\end{bmatrix}}}"/></span>
</dd>
</dl>
<p>
@ -88,7 +86,7 @@
Well-known families of <a href="http://fakehost/wiki/Pauli_matrices" title="Pauli matrices" target="_blank">Pauli matrices</a>, <a href="http://fakehost/wiki/Gell-Mann_matrices" title="Gell-Mann matrices" target="_blank">Gell-Mann matrices</a> and their generalizations are Hermitian. In <a href="http://fakehost/wiki/Theoretical_physics" title="Theoretical physics" target="_blank">theoretical physics</a> such Hermitian matrices are often multiplied by <a href="http://fakehost/wiki/Imaginary_number" title="Imaginary number" target="_blank">imaginary</a> coefficients,<sup id="cite_ref-1"><a href="#cite_note-1">[1]</a></sup><sup id="cite_ref-2"><a href="#cite_note-2">[2]</a></sup> which results in <i>skew-Hermitian</i> matrices (see <a href="#facts">below</a>).
</p>
<p>
Here, we offer another useful Hermitian matrix using an abstract example. If a square matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"></span> equals the <a href="http://fakehost/wiki/Matrix_multiplication" title="Matrix multiplication" target="_blank">multiplication of a matrix</a> and its conjugate transpose, that is, <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/3f0efab2d7c3a4b4b7caf14cc0705dadd13195a9" aria-hidden="true" alt="{\displaystyle A=BB^{\mathsf {H}}}"></span>, then <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"></span> is a Hermitian <a href="http://fakehost/wiki/Positive_semi-definite_matrix" title="Positive semi-definite matrix" target="_blank">positive semi-definite matrix</a>. Furthermore, if <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/47136aad860d145f75f3eed3022df827cee94d7a" aria-hidden="true" alt="B"></span> is row full-rank, then <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"></span> is positive definite.
Here, we offer another useful Hermitian matrix using an abstract example. If a square matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"/></span> equals the <a href="http://fakehost/wiki/Matrix_multiplication" title="Matrix multiplication" target="_blank">multiplication of a matrix</a> and its conjugate transpose, that is, <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/3f0efab2d7c3a4b4b7caf14cc0705dadd13195a9" aria-hidden="true" alt="{\displaystyle A=BB^{\mathsf {H}}}"/></span>, then <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"/></span> is a Hermitian <a href="http://fakehost/wiki/Positive_semi-definite_matrix" title="Positive semi-definite matrix" target="_blank">positive semi-definite matrix</a>. Furthermore, if <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/47136aad860d145f75f3eed3022df827cee94d7a" aria-hidden="true" alt="B"/></span> is row full-rank, then <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/7daff47fa58cdfd29dc333def748ff5fa4c923e3" aria-hidden="true" alt="A"/></span> is positive definite.
</p>
<h2>
<span id="Properties">Properties</span><span><span>[</span><a href="http://fakehost/w/index.php?title=Hermitian_matrix&amp;action=edit&amp;section=7" title="Edit section: Properties" target="_blank">edit</a><span>]</span></span>
@ -97,7 +95,7 @@
<tbody>
<tr>
<td>
<p><a href="http://fakehost/wiki/File:Wiki_letter_w_cropped.svg" target="_blank"><img alt="[icon]" src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Wiki_letter_w_cropped.svg/44px-Wiki_letter_w_cropped.svg.png" decoding="async" width="44" height="31" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Wiki_letter_w_cropped.svg/66px-Wiki_letter_w_cropped.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Wiki_letter_w_cropped.svg/88px-Wiki_letter_w_cropped.svg.png 2x" data-file-width="44" data-file-height="31"></a>
<p><a href="http://fakehost/wiki/File:Wiki_letter_w_cropped.svg" target="_blank"><img alt="[icon]" src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Wiki_letter_w_cropped.svg/44px-Wiki_letter_w_cropped.svg.png" decoding="async" width="44" height="31" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Wiki_letter_w_cropped.svg/66px-Wiki_letter_w_cropped.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Wiki_letter_w_cropped.svg/88px-Wiki_letter_w_cropped.svg.png 2x" data-file-width="44" data-file-height="31"/></a>
</p>
</td>
<td>
@ -117,7 +115,7 @@
<i>Proof:</i> By definition of the Hermitian matrix
<dl>
<dd>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/4fa8265c5f6d4fc3b7cda6a06558c7d4d9aec855" aria-hidden="true" alt="{\displaystyle H_{ij}={\overline {H}}_{ji}}"></span>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/4fa8265c5f6d4fc3b7cda6a06558c7d4d9aec855" aria-hidden="true" alt="{\displaystyle H_{ij}={\overline {H}}_{ji}}"/></span>
</dd>
</dl>
</dd>
@ -134,7 +132,7 @@
</ul>
<dl>
<dd>
<i>Proof:</i> <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/4fa8265c5f6d4fc3b7cda6a06558c7d4d9aec855" aria-hidden="true" alt="{\displaystyle H_{ij}={\overline {H}}_{ji}}"></span> by definition. Thus <span>H<sub><i>ij</i></sub> = H<sub><i>ji</i></sub></span> (matrix symmetry) if and only if <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/0f1862750b96d01100244370b3fca45f01923ce5" aria-hidden="true" alt="{\displaystyle H_{ij}={\overline {H}}_{ij}}"></span> (<span>H<sub><i>ij</i></sub></span> is real).
<i>Proof:</i> <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/4fa8265c5f6d4fc3b7cda6a06558c7d4d9aec855" aria-hidden="true" alt="{\displaystyle H_{ij}={\overline {H}}_{ji}}"/></span> by definition. Thus <span>H<sub><i>ij</i></sub> = H<sub><i>ji</i></sub></span> (matrix symmetry) if and only if <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/0f1862750b96d01100244370b3fca45f01923ce5" aria-hidden="true" alt="{\displaystyle H_{ij}={\overline {H}}_{ij}}"/></span> (<span>H<sub><i>ij</i></sub></span> is real).
</dd>
</dl>
<ul>
@ -156,7 +154,7 @@
</ul>
<dl>
<dd>
<i>Proof:</i> <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/251bf4ebbe3b0d119e0a7d19f8fd134c4f072971" aria-hidden="true" alt="{\displaystyle (A+B)_{ij}=A_{ij}+B_{ij}={\overline {A}}_{ji}+{\overline {B}}_{ji}={\overline {(A+B)}}_{ji},}"></span> as claimed.
<i>Proof:</i> <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/251bf4ebbe3b0d119e0a7d19f8fd134c4f072971" aria-hidden="true" alt="{\displaystyle (A+B)_{ij}=A_{ij}+B_{ij}={\overline {A}}_{ji}+{\overline {B}}_{ji}={\overline {(A+B)}}_{ji},}"/></span> as claimed.
</dd>
</dl>
<ul>
@ -165,7 +163,7 @@
</ul>
<dl>
<dd>
<i>Proof:</i> If <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/021893240ff7fa3148b6649b0ba4d88cd207b5f0" aria-hidden="true" alt="{\displaystyle A^{-1}A=I}"></span>, then <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/a28a8250ab35ad60228bb0376eb4b7024f027815" aria-hidden="true" alt="{\displaystyle I=I^{H}=(A^{-1}A)^{H}=A^{H}(A^{-1})^{H}=A(A^{-1})^{H}}"></span>, so <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/a0179c3a7aebe194ccd9a19ba02b972500f88a7a" aria-hidden="true" alt="{\displaystyle A^{-1}=(A^{-1})^{H}}"></span> as claimed.
<i>Proof:</i> If <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/021893240ff7fa3148b6649b0ba4d88cd207b5f0" aria-hidden="true" alt="{\displaystyle A^{-1}A=I}"/></span>, then <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/a28a8250ab35ad60228bb0376eb4b7024f027815" aria-hidden="true" alt="{\displaystyle I=I^{H}=(A^{-1}A)^{H}=A^{H}(A^{-1})^{H}=A(A^{-1})^{H}}"/></span>, so <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/a0179c3a7aebe194ccd9a19ba02b972500f88a7a" aria-hidden="true" alt="{\displaystyle A^{-1}=(A^{-1})^{H}}"/></span> as claimed.
</dd>
</dl>
<ul>
@ -174,7 +172,7 @@
</ul>
<dl>
<dd>
<i>Proof:</i> Note that <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/b6cf8185ca7a0687bf959bb65b16db6cf1714ca2" aria-hidden="true" alt="{\displaystyle (AB)^{\mathsf {H}}={\overline {(AB)^{\mathsf {T}}}}={\overline {B^{\mathsf {T}}A^{\mathsf {T}}}}={\overline {B^{\mathsf {T}}}}{\overline {A^{\mathsf {T}}}}=B^{\mathsf {H}}A^{\mathsf {H}}=BA.}"></span> Thus <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/d303a1ebcac8547489b170be5d0dd7d8e04e548e" aria-hidden="true" alt="{\displaystyle (AB)^{\mathsf {H}}=AB}"></span> <a href="http://fakehost/wiki/If_and_only_if" title="If and only if" target="_blank">if and only if</a> <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/992c8ea49fdd26b491180036c5a4d879fec77442" aria-hidden="true" alt="AB=BA"></span>.
<i>Proof:</i> Note that <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/b6cf8185ca7a0687bf959bb65b16db6cf1714ca2" aria-hidden="true" alt="{\displaystyle (AB)^{\mathsf {H}}={\overline {(AB)^{\mathsf {T}}}}={\overline {B^{\mathsf {T}}A^{\mathsf {T}}}}={\overline {B^{\mathsf {T}}}}{\overline {A^{\mathsf {T}}}}=B^{\mathsf {H}}A^{\mathsf {H}}=BA.}"/></span> Thus <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/d303a1ebcac8547489b170be5d0dd7d8e04e548e" aria-hidden="true" alt="{\displaystyle (AB)^{\mathsf {H}}=AB}"/></span> <a href="http://fakehost/wiki/If_and_only_if" title="If and only if" target="_blank">if and only if</a> <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/992c8ea49fdd26b491180036c5a4d879fec77442" aria-hidden="true" alt="AB=BA"/></span>.
</dd>
<dd>
Thus <span><i>A</i><sup><i>n</i></sup></span> is Hermitian if <span>A</span> is Hermitian and <span>n</span> is an integer.
@ -189,7 +187,7 @@
<dd>
<dl>
<dd>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/46eedb181c0bdae46e8c1526161b03d0ea97b4b4" aria-hidden="true" alt="{\displaystyle E_{jj}{\text{ for }}1\leq j\leq n\quad (n{\text{ matrices}})}"></span>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/46eedb181c0bdae46e8c1526161b03d0ea97b4b4" aria-hidden="true" alt="{\displaystyle E_{jj}{\text{ for }}1\leq j\leq n\quad (n{\text{ matrices}})}"/></span>
</dd>
</dl>
</dd>
@ -203,7 +201,7 @@
<dd>
<dl>
<dd>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/ddeac51c423f6dbefc5f63e483d9aee96e6fa342" aria-hidden="true" alt="{\displaystyle {\frac {1}{\sqrt {2}}}\left(E_{jk}+E_{kj}\right){\text{ for }}1\leq j&lt;k\leq n\quad \left({\frac {n^{2}-n}{2}}{\text{ matrices}}\right)}"></span>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/ddeac51c423f6dbefc5f63e483d9aee96e6fa342" aria-hidden="true" alt="{\displaystyle {\frac {1}{\sqrt {2}}}\left(E_{jk}+E_{kj}\right){\text{ for }}1\leq j&lt;k\leq n\quad \left({\frac {n^{2}-n}{2}}{\text{ matrices}}\right)}"/></span>
</dd>
</dl>
</dd>
@ -217,14 +215,14 @@
<dd>
<dl>
<dd>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/db65cce3a8fa33e5b7b96badd756c8573aa866c0" aria-hidden="true" alt="{\displaystyle {\frac {i}{\sqrt {2}}}\left(E_{jk}-E_{kj}\right){\text{ for }}1\leq j&lt;k\leq n\quad \left({\frac {n^{2}-n}{2}}{\text{ matrices}}\right)}"></span>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/db65cce3a8fa33e5b7b96badd756c8573aa866c0" aria-hidden="true" alt="{\displaystyle {\frac {i}{\sqrt {2}}}\left(E_{jk}-E_{kj}\right){\text{ for }}1\leq j&lt;k\leq n\quad \left({\frac {n^{2}-n}{2}}{\text{ matrices}}\right)}"/></span>
</dd>
</dl>
</dd>
</dl>
<dl>
<dd>
where <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/add78d8608ad86e54951b8c8bd6c8d8416533d20" aria-hidden="true" alt="i"></span> denotes the complex number <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/4ea1ea9ac61e6e1e84ac39130f78143c18865719" aria-hidden="true" alt="{\sqrt {-1}}"></span>, called the <i><a href="http://fakehost/wiki/Imaginary_unit" title="Imaginary unit" target="_blank">imaginary unit</a></i>.
where <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/add78d8608ad86e54951b8c8bd6c8d8416533d20" aria-hidden="true" alt="i"/></span> denotes the complex number <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/4ea1ea9ac61e6e1e84ac39130f78143c18865719" aria-hidden="true" alt="{\sqrt {-1}}"/></span>, called the <i><a href="http://fakehost/wiki/Imaginary_unit" title="Imaginary unit" target="_blank">imaginary unit</a></i>.
</dd>
</dl>
@ -232,12 +230,12 @@
<dd>
<dl>
<dd>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/3b7d749931e5f709bcbc0a446638d3b6b8ed0c6c" aria-hidden="true" alt="{\displaystyle A=\sum _{j}\lambda _{j}u_{j}u_{j}^{\mathsf {H}},}"></span>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/3b7d749931e5f709bcbc0a446638d3b6b8ed0c6c" aria-hidden="true" alt="{\displaystyle A=\sum _{j}\lambda _{j}u_{j}u_{j}^{\mathsf {H}},}"/></span>
</dd>
</dl>
</dd>
<dd>
where <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/fa91daf9145f27bb95746fd2a37537342d587b77" aria-hidden="true" alt="\lambda _{j}"></span> are the eigenvalues on the diagonal of the diagonal matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/1934e7eadd31fbf6f7d6bcf9c0e9bec934ce8976" aria-hidden="true" alt="\; \Lambda "></span>.
where <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/fa91daf9145f27bb95746fd2a37537342d587b77" aria-hidden="true" alt="\lambda _{j}"/></span> are the eigenvalues on the diagonal of the diagonal matrix <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/1934e7eadd31fbf6f7d6bcf9c0e9bec934ce8976" aria-hidden="true" alt="\; \Lambda "/></span>.
</dd>
</dl>
<ul>
@ -246,10 +244,10 @@
</ul>
<dl>
<dd>
<i>Proof:</i> <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/a1240df64c3010e0be6eae865fdfcfe6f77bf5eb" aria-hidden="true" alt="{\displaystyle \det(A)=\det \left(A^{\mathsf {T}}\right)\quad \Rightarrow \quad \det \left(A^{\mathsf {H}}\right)={\overline {\det(A)}}}"></span>
<i>Proof:</i> <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/a1240df64c3010e0be6eae865fdfcfe6f77bf5eb" aria-hidden="true" alt="{\displaystyle \det(A)=\det \left(A^{\mathsf {T}}\right)\quad \Rightarrow \quad \det \left(A^{\mathsf {H}}\right)={\overline {\det(A)}}}"/></span>
</dd>
<dd>
Therefore if <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/43cc392bdcfbb134dd66d9b469847f6370e29d9d" aria-hidden="true" alt="{\displaystyle A=A^{\mathsf {H}}\quad \Rightarrow \quad \det(A)={\overline {\det(A)}}}"></span>.
Therefore if <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/43cc392bdcfbb134dd66d9b469847f6370e29d9d" aria-hidden="true" alt="{\displaystyle A=A^{\mathsf {H}}\quad \Rightarrow \quad \det(A)={\overline {\det(A)}}}"/></span>.
</dd>
<dd>
(Alternatively, the determinant is the product of the matrix's eigenvalues, and as mentioned before, the eigenvalues of a Hermitian matrix are real.)
@ -259,14 +257,14 @@
<span id="Decomposition_into_Hermitian_and_skew-Hermitian">Decomposition into Hermitian and skew-Hermitian</span><span><span>[</span><a href="http://fakehost/w/index.php?title=Hermitian_matrix&amp;action=edit&amp;section=8" title="Edit section: Decomposition into Hermitian and skew-Hermitian" target="_blank">edit</a><span>]</span></span>
</h2>
<p>
<span id="facts"></span>Additional facts related to Hermitian matrices include:
Additional facts related to Hermitian matrices include:
</p>
<ul>
<li>The sum of a square matrix and its conjugate transpose <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/3ef97bb04ce4ab682bcc84cf1059f8da235b483e" aria-hidden="true" alt="{\displaystyle \left(A+A^{\mathsf {H}}\right)}"></span> is Hermitian.
<li>The sum of a square matrix and its conjugate transpose <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/3ef97bb04ce4ab682bcc84cf1059f8da235b483e" aria-hidden="true" alt="{\displaystyle \left(A+A^{\mathsf {H}}\right)}"/></span> is Hermitian.
</li>
</ul>
<ul>
<li>The difference of a square matrix and its conjugate transpose <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/f4ac665be4943ce769e33109e9f64abcf1e98050" aria-hidden="true" alt="{\displaystyle \left(A-A^{\mathsf {H}}\right)}"></span> is <a href="http://fakehost/wiki/Skew-Hermitian_matrix" title="Skew-Hermitian matrix" target="_blank">skew-Hermitian</a> (also called antihermitian). This implies that the <a href="http://fakehost/wiki/Commutator" title="Commutator" target="_blank">commutator</a> of two Hermitian matrices is skew-Hermitian.
<li>The difference of a square matrix and its conjugate transpose <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/f4ac665be4943ce769e33109e9f64abcf1e98050" aria-hidden="true" alt="{\displaystyle \left(A-A^{\mathsf {H}}\right)}"/></span> is <a href="http://fakehost/wiki/Skew-Hermitian_matrix" title="Skew-Hermitian matrix" target="_blank">skew-Hermitian</a> (also called antihermitian). This implies that the <a href="http://fakehost/wiki/Commutator" title="Commutator" target="_blank">commutator</a> of two Hermitian matrices is skew-Hermitian.
</li>
</ul>
<ul>
@ -277,7 +275,7 @@
<dd>
<dl>
<dd>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/0919d2e50fe1008af261f8301f243c002c328dbf" aria-hidden="true" alt="{\displaystyle C=A+B\quad {\mbox{with}}\quad A={\frac {1}{2}}\left(C+C^{\mathsf {H}}\right)\quad {\mbox{and}}\quad B={\frac {1}{2}}\left(C-C^{\mathsf {H}}\right)}"></span>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/0919d2e50fe1008af261f8301f243c002c328dbf" aria-hidden="true" alt="{\displaystyle C=A+B\quad {\mbox{with}}\quad A={\frac {1}{2}}\left(C+C^{\mathsf {H}}\right)\quad {\mbox{and}}\quad B={\frac {1}{2}}\left(C-C^{\mathsf {H}}\right)}"/></span>
</dd>
</dl>
</dd>
@ -287,24 +285,24 @@
</h2>
<p>
In mathematics, for a given complex Hermitian matrix <i>M</i> and nonzero vector <i>x</i>, the Rayleigh quotient<sup id="cite_ref-4"><a href="#cite_note-4">[4]</a></sup> <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/f8ed067bb4bc06662d6bdf6210d450779a529ce5" aria-hidden="true" alt="R(M, x)"></span>, is defined as:<sup id="cite_ref-HornJohnson_3-1"><a href="#cite_note-HornJohnson-3">[3]</a></sup><sup>:<span>p. 234</span></sup><sup id="cite_ref-5"><a href="#cite_note-5">[5]</a></sup>
In mathematics, for a given complex Hermitian matrix <i>M</i> and nonzero vector <i>x</i>, the Rayleigh quotient<sup id="cite_ref-4"><a href="#cite_note-4">[4]</a></sup> <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/f8ed067bb4bc06662d6bdf6210d450779a529ce5" aria-hidden="true" alt="R(M, x)"/></span>, is defined as:<sup id="cite_ref-HornJohnson_3-1"><a href="#cite_note-HornJohnson-3">[3]</a></sup><sup>:<span>p. 234</span></sup><sup id="cite_ref-5"><a href="#cite_note-5">[5]</a></sup>
</p>
<dl>
<dd>
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/6ad9b0047f8437f7b012041d7b2fcd190a5a9ec2" aria-hidden="true" alt="{\displaystyle R(M,x):={\frac {x^{\mathsf {H}}Mx}{x^{\mathsf {H}}x}}}"></span>.
<span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/6ad9b0047f8437f7b012041d7b2fcd190a5a9ec2" aria-hidden="true" alt="{\displaystyle R(M,x):={\frac {x^{\mathsf {H}}Mx}{x^{\mathsf {H}}x}}}"/></span>.
</dd>
</dl>
<p>
For real matrices and vectors, the condition of being Hermitian reduces to that of being symmetric, and the conjugate transpose <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/b431248ab2f121914608bbd1c2376715cecda9c8" aria-hidden="true" alt="{\displaystyle x^{\mathsf {H}}}"></span> to the usual transpose <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/d4ee4832d06e8560510d81237d0650c897d476e9" aria-hidden="true" alt="{\displaystyle x^{\mathsf {T}}}"></span>. Note that <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/b1d54d3c850d35f99329591e3b57cef98d17237f" aria-hidden="true" alt="{\displaystyle R(M,cx)=R(M,x)}"></span> for any non-zero real scalar <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/86a67b81c2de995bd608d5b2df50cd8cd7d92455" aria-hidden="true" alt="c"></span>. Also, recall that a Hermitian (or real symmetric) matrix has real eigenvalues.
For real matrices and vectors, the condition of being Hermitian reduces to that of being symmetric, and the conjugate transpose <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/b431248ab2f121914608bbd1c2376715cecda9c8" aria-hidden="true" alt="{\displaystyle x^{\mathsf {H}}}"/></span> to the usual transpose <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/d4ee4832d06e8560510d81237d0650c897d476e9" aria-hidden="true" alt="{\displaystyle x^{\mathsf {T}}}"/></span>. Note that <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/b1d54d3c850d35f99329591e3b57cef98d17237f" aria-hidden="true" alt="{\displaystyle R(M,cx)=R(M,x)}"/></span> for any non-zero real scalar <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/86a67b81c2de995bd608d5b2df50cd8cd7d92455" aria-hidden="true" alt="c"/></span>. Also, recall that a Hermitian (or real symmetric) matrix has real eigenvalues.
</p>
<p>
It can be shown<sup>[<i><a href="http://fakehost/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed" target="_blank"><span title="This claim needs references to reliable sources. (September 2019)">citation needed</span></a></i>]</sup> that, for a given matrix, the Rayleigh quotient reaches its minimum value <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/82c24522483ceaf1d54224b69af4244b60c3ac08" aria-hidden="true" alt="\lambda_\min"></span> (the smallest eigenvalue of M) when <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/87f9e315fd7e2ba406057a97300593c4802b53e4" aria-hidden="true" alt="x"></span> is <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/486623019ef451e0582b874018e0249a46e0f996" aria-hidden="true" alt="v_\min"></span> (the corresponding eigenvector). Similarly, <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/18fbf88c578fc9f75d4610ebd18ab55f4f2842ce" aria-hidden="true" alt="R(M, x) \leq \lambda_\max"></span> and <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/200db82bfdbc81cd227cb3470aa826d6f11a7653" aria-hidden="true" alt="R(M, v_\max) = \lambda_\max"></span>.
It can be shown<sup>[<i><a href="http://fakehost/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed" target="_blank"><span title="This claim needs references to reliable sources. (September 2019)">citation needed</span></a></i>]</sup> that, for a given matrix, the Rayleigh quotient reaches its minimum value <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/82c24522483ceaf1d54224b69af4244b60c3ac08" aria-hidden="true" alt="\lambda_\min"/></span> (the smallest eigenvalue of M) when <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/87f9e315fd7e2ba406057a97300593c4802b53e4" aria-hidden="true" alt="x"/></span> is <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/486623019ef451e0582b874018e0249a46e0f996" aria-hidden="true" alt="v_\min"/></span> (the corresponding eigenvector). Similarly, <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/18fbf88c578fc9f75d4610ebd18ab55f4f2842ce" aria-hidden="true" alt="R(M, x) \leq \lambda_\max"/></span> and <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/200db82bfdbc81cd227cb3470aa826d6f11a7653" aria-hidden="true" alt="R(M, v_\max) = \lambda_\max"/></span>.
</p>
<p>
The Rayleigh quotient is used in the min-max theorem to get exact values of all eigenvalues. It is also used in eigenvalue algorithms to obtain an eigenvalue approximation from an eigenvector approximation. Specifically, this is the basis for Rayleigh quotient iteration.
</p>
<p>
The range of the Rayleigh quotient (for matrix that is not necessarily Hermitian) is called a numerical range (or spectrum in functional analysis). When the matrix is Hermitian, the numerical range is equal to the spectral norm. Still in functional analysis, <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/957584ae6a35f9edf293cb486d7436fb5b75e803" aria-hidden="true" alt="\lambda_\max"></span> is known as the spectral radius. In the context of C*-algebras or algebraic quantum mechanics, the function that to <span><i>M</i></span> associates the Rayleigh quotient <span><i>R</i>(<i>M</i>, <i>x</i>)</span> for a fixed <span><i>x</i></span> and <span><i>M</i></span> varying through the algebra would be referred to as "vector state" of the algebra.
The range of the Rayleigh quotient (for matrix that is not necessarily Hermitian) is called a numerical range (or spectrum in functional analysis). When the matrix is Hermitian, the numerical range is equal to the spectral norm. Still in functional analysis, <span><img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/957584ae6a35f9edf293cb486d7436fb5b75e803" aria-hidden="true" alt="\lambda_\max"/></span> is known as the spectral radius. In the context of C*-algebras or algebraic quantum mechanics, the function that to <span><i>M</i></span> associates the Rayleigh quotient <span><i>R</i>(<i>M</i>, <i>x</i>)</span> for a fixed <span><i>x</i></span> and <span><i>M</i></span> varying through the algebra would be referred to as "vector state" of the algebra.
</p>
<h2>
<span id="See_also">See also</span><span><span>[</span><a href="http://fakehost/w/index.php?title=Hermitian_matrix&amp;action=edit&amp;section=10" title="Edit section: See also" target="_blank">edit</a><span>]</span></span>
@ -370,4 +368,4 @@
</ul>
</div></article>
</div></article>

Some files were not shown because too many files have changed in this diff Show more