mirror of
https://github.com/danbulant/1mb-club
synced 2026-06-20 15:01:03 +00:00
96 lines
3.9 KiB
HTML
96 lines
3.9 KiB
HTML
---
|
|
layout: default
|
|
title: Articles & Essays
|
|
summary: Personal articles, demos and occasional ramblings
|
|
---
|
|
|
|
<header>
|
|
<h1>1MB Club</h1>
|
|
<p>The internet has become a <em>bloated mess</em>. Massive javascript libraries. Countless client-side queries. Overly complex frontend frameworks.</p>
|
|
<p>These things are a <strong>cancerous growth</strong> on the web.</p>
|
|
<p>But we can make a difference - no matter how small it may seem. <em>1MB Club</em> is a growing collection of performance-focused web pages found across the internet. The one and only rule for a web page to qualify as a member:</p>
|
|
<ol>
|
|
<li>Total resources downloaded client-side must not exceed 1 megabyte</li>
|
|
</ol>
|
|
<blockquote>
|
|
<p><strong>Update</strong></p>
|
|
<p>Due to the huge number of submissions on initial launch, requesting new sites to be added is temporarily paused. Once the backlog has been worked through, submissions will open up again. Thanks!</p>
|
|
</blockquote>
|
|
<span>Jump to: </span>
|
|
<a href="#50"><50KB</a><span> · </span>
|
|
<a href="#100"><100KB</a><span> · </span>
|
|
<a href="#250"><250KB</a><span> · </span>
|
|
<a href="#512"><512KB</a><span> · </span>
|
|
<a href="#700"><700KB</a><span> · </span>
|
|
<a href="#1000"><em>Just Under</em> 1MB</a>
|
|
</header>
|
|
|
|
<main>
|
|
<ul>
|
|
{% assign site_items = site.site_listings | sort: 'size' %}
|
|
<h3 id="50"><50KB</h3>
|
|
{% for item in site_items %}
|
|
{% if item.size <= 50 %}
|
|
<li>
|
|
<span class="before" style="--data-size:{{ item.size }};"></span>
|
|
<span class="after">{{ item.size }} KB</span>
|
|
<a href="https://{{ item.pageurl }}">{{ item.pageurl }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<h3 id="100"><100KB</h3>
|
|
{% for item in site_items %}
|
|
{% if item.size >= 50 and item.size <=100 %}
|
|
<li>
|
|
<span class="before" style="--data-size:{{ item.size }};"></span>
|
|
<span class="after">{{ item.size }} KB</span>
|
|
<a href="https://{{ item.pageurl }}">{{ item.pageurl }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<h3 id="250"><250KB</h3>
|
|
{% for item in site_items %}
|
|
{% if item.size >= 100 and item.size <=250 %}
|
|
<li>
|
|
<span class="before" style="--data-size:{{ item.size }};"></span>
|
|
<span class="after">{{ item.size }} KB</span>
|
|
<a href="https://{{ item.pageurl }}">{{ item.pageurl }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<h3 id="512"><512KB</h3>
|
|
{% for item in site_items %}
|
|
{% if item.size >= 250 and item.size <=512 %}
|
|
<li>
|
|
<span class="before" style="--data-size:{{ item.size }};"></span>
|
|
<span class="after">{{ item.size }} KB</span>
|
|
<a href="https://{{ item.pageurl }}">{{ item.pageurl }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<h3 id="700"><700KB</h3>
|
|
{% for item in site_items %}
|
|
{% if item.size >= 512 and item.size <=700 %}
|
|
<li>
|
|
<span class="before" style="--data-size:{{ item.size }};"></span>
|
|
<span class="after">{{ item.size }} KB</span>
|
|
<a href="https://{{ item.pageurl }}">{{ item.pageurl }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<h3 id="1000"><em>Just Under</em> 1MB</h3>
|
|
{% for item in site_items %}
|
|
{% if item.size >= 700 and item.size <=1000 %}
|
|
<li>
|
|
<span class="before" style="--data-size:{{ item.size }};"></span>
|
|
<span class="after">{{ item.size }} KB</span>
|
|
<a href="https://{{ item.pageurl }}">{{ item.pageurl }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</main>
|