diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..61fff9a --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.jekyll-cache +_site +Gemfile +Gemfile.lock \ No newline at end of file diff --git a/404.html b/404.html new file mode 100644 index 0000000..086a5c9 --- /dev/null +++ b/404.html @@ -0,0 +1,25 @@ +--- +permalink: /404.html +layout: default +--- + + + +
+

404

+ +

Page not found :(

+

The requested page could not be found.

+
diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..3768eb8 --- /dev/null +++ b/_config.yml @@ -0,0 +1,55 @@ +# Welcome to Jekyll! +# +# This config file is meant for settings that affect your whole blog, values +# which you are expected to set up once and rarely edit after that. If you find +# yourself editing this file very often, consider using Jekyll's data files +# feature for the data you need to update frequently. +# +# For technical reasons, this file is *NOT* reloaded automatically when you use +# 'bundle exec jekyll serve'. If you change this file, please restart the server process. +# +# If you need help with YAML syntax, here are some quick references for you: +# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml +# https://learnxinyminutes.com/docs/yaml/ +# +# Site settings +# These are used to personalize your new site. If you look in the HTML files, +# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. +# You can create any custom variable you would like, and they will be accessible +# in the templates via {{ site.myvariable }}. + +title: 1MB Club +description: >- # this means to ignore newlines until "baseurl:" + An exclusive membership for web pages weighing less than 1 megabyte. +baseurl: "" # the subpath of your site, e.g. /blog +url: "" # the base hostname & protocol for your site, e.g. http://example.com + +# Collections +collections: + site_listings: + sort_by: size + output: true + +# Build settings +plugins: + - jekyll-feed + +# Exclude from processing. +# The following items will not be processed, by default. +# Any item listed under the `exclude:` key here will be automatically added to +# the internal "default list". +# +# Excluded items can be processed by explicitly listing the directories or +# their entries' file path in the `include:` list. +# +# exclude: +# - .sass-cache/ +# - .jekyll-cache/ +# - gemfiles/ +# - Gemfile +# - Gemfile.lock +# - node_modules/ +# - vendor/bundle/ +# - vendor/cache/ +# - vendor/gems/ +# - vendor/ruby/ diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..5b63d4f --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,4 @@ + diff --git a/_includes/head.html b/_includes/head.html new file mode 100755 index 0000000..a41b37e --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,10 @@ + + + + + {{ site.title }} + + + + + diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100755 index 0000000..7287055 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,10 @@ + + + + {% include head.html %} + + + {{ content }} + {% include footer.html %} + + diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100755 index 0000000..f101e7f --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,6 @@ +--- +layout: default +--- + +{{ content }} + diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100755 index 0000000..84f03f7 --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,5 @@ +--- +layout: default +--- + +{{ content }} \ No newline at end of file diff --git a/_posts/2020-11-21-welcome-to-jekyll.markdown b/_posts/2020-11-21-welcome-to-jekyll.markdown new file mode 100644 index 0000000..897274b --- /dev/null +++ b/_posts/2020-11-21-welcome-to-jekyll.markdown @@ -0,0 +1,29 @@ +--- +layout: post +title: "Welcome to Jekyll!" +date: 2020-11-21 08:48:36 -0500 +categories: jekyll update +--- +You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated. + +Jekyll requires blog post files to be named according to the following format: + +`YEAR-MONTH-DAY-title.MARKUP` + +Where `YEAR` is a four-digit number, `MONTH` and `DAY` are both two-digit numbers, and `MARKUP` is the file extension representing the format used in the file. After that, include the necessary front matter. Take a look at the source for this post to get an idea about how it works. + +Jekyll also offers powerful support for code snippets: + +{% highlight ruby %} +def print_hi(name) + puts "Hi, #{name}" +end +print_hi('Tom') +#=> prints 'Hi, Tom' to STDOUT. +{% endhighlight %} + +Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk]. + +[jekyll-docs]: https://jekyllrb.com/docs/home +[jekyll-gh]: https://github.com/jekyll/jekyll +[jekyll-talk]: https://talk.jekyllrb.com/ diff --git a/_site_listings/1.klose.berlin.md b/_site_listings/1.klose.berlin.md new file mode 100644 index 0000000..7622ff5 --- /dev/null +++ b/_site_listings/1.klose.berlin.md @@ -0,0 +1,4 @@ +--- +pageurl: 1.klose.berlin +size: 133.2 +--- diff --git a/_site_listings/alexanderobenauer.com.md b/_site_listings/alexanderobenauer.com.md new file mode 100644 index 0000000..797d8af --- /dev/null +++ b/_site_listings/alexanderobenauer.com.md @@ -0,0 +1,4 @@ +--- +pageurl: alexanderobenauer.com +size: 183.2 +--- diff --git a/_site_listings/alicegg.tech.md b/_site_listings/alicegg.tech.md new file mode 100644 index 0000000..5bd2069 --- /dev/null +++ b/_site_listings/alicegg.tech.md @@ -0,0 +1,4 @@ +--- +pageurl: alicegg.tech +size: 955.0 +--- diff --git a/_site_listings/benovermyer.com.md b/_site_listings/benovermyer.com.md new file mode 100644 index 0000000..8667879 --- /dev/null +++ b/_site_listings/benovermyer.com.md @@ -0,0 +1,4 @@ +--- +pageurl: benovermyer.com +size: 133.3 +--- diff --git a/_site_listings/beta.shodan.io.md b/_site_listings/beta.shodan.io.md new file mode 100644 index 0000000..82288b0 --- /dev/null +++ b/_site_listings/beta.shodan.io.md @@ -0,0 +1,4 @@ +--- +pageurl: beta.shodan.io +size: 833.7 +--- diff --git a/_site_listings/codelayer.de.md b/_site_listings/codelayer.de.md new file mode 100644 index 0000000..22fdab0 --- /dev/null +++ b/_site_listings/codelayer.de.md @@ -0,0 +1,4 @@ +--- +pageurl: codelayer.de +size: 199.1 +--- diff --git a/_site_listings/craigslist.org.md b/_site_listings/craigslist.org.md new file mode 100644 index 0000000..c22b67a --- /dev/null +++ b/_site_listings/craigslist.org.md @@ -0,0 +1,4 @@ +--- +pageurl: craigslist.org +size: 734.4 +--- diff --git a/_site_listings/cyberia.host.md b/_site_listings/cyberia.host.md new file mode 100644 index 0000000..ce06d6c --- /dev/null +++ b/_site_listings/cyberia.host.md @@ -0,0 +1,4 @@ +--- +pageurl: cyberia.host +size: 2.0 +--- \ No newline at end of file diff --git a/_site_listings/danielsada.tech.md b/_site_listings/danielsada.tech.md new file mode 100644 index 0000000..12f6921 --- /dev/null +++ b/_site_listings/danielsada.tech.md @@ -0,0 +1,4 @@ +--- +pageurl: danielsada.tech +size: 200.9 +--- diff --git a/_site_listings/danluu.com.md b/_site_listings/danluu.com.md new file mode 100644 index 0000000..422dd72 --- /dev/null +++ b/_site_listings/danluu.com.md @@ -0,0 +1,4 @@ +--- +pageurl: danluu.com +size: 9.1 +--- diff --git a/_site_listings/dotfilehub.com.md b/_site_listings/dotfilehub.com.md new file mode 100644 index 0000000..df4a1e0 --- /dev/null +++ b/_site_listings/dotfilehub.com.md @@ -0,0 +1,4 @@ +--- +pageurl: dotfilehub.com +size: 7.4 +--- diff --git a/_site_listings/dotnom.com.md b/_site_listings/dotnom.com.md new file mode 100644 index 0000000..4ddbef9 --- /dev/null +++ b/_site_listings/dotnom.com.md @@ -0,0 +1,4 @@ +--- +pageurl: dotnom.com +size: 325.1 +--- diff --git a/_site_listings/example.com.md b/_site_listings/example.com.md new file mode 100644 index 0000000..e2a4398 --- /dev/null +++ b/_site_listings/example.com.md @@ -0,0 +1,4 @@ +--- +pageurl: example.com +size: 2.5 +--- \ No newline at end of file diff --git a/_site_listings/frontaid.io.md b/_site_listings/frontaid.io.md new file mode 100644 index 0000000..c7f2943 --- /dev/null +++ b/_site_listings/frontaid.io.md @@ -0,0 +1,4 @@ +--- +pageurl: frontaid.io +size: 167.0 +--- diff --git a/_site_listings/generate.sh b/_site_listings/generate.sh new file mode 100644 index 0000000..b16921f --- /dev/null +++ b/_site_listings/generate.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +#define parameters which are passed in. +SIZE=$1 +URL=$2 + +#define the template. +cat << EOF > $URL.md +--- +pageurl: $URL +size: $SIZE +--- +EOF diff --git a/_site_listings/gif.energy.md b/_site_listings/gif.energy.md new file mode 100644 index 0000000..3576fc1 --- /dev/null +++ b/_site_listings/gif.energy.md @@ -0,0 +1,4 @@ +--- +pageurl: gif.energy +size: 574.1 +--- diff --git a/_site_listings/gregstoll.com.md b/_site_listings/gregstoll.com.md new file mode 100644 index 0000000..c00f034 --- /dev/null +++ b/_site_listings/gregstoll.com.md @@ -0,0 +1,4 @@ +--- +pageurl: gregstoll.com +size: 402.7 +--- diff --git a/_site_listings/gtf.io.md b/_site_listings/gtf.io.md new file mode 100644 index 0000000..1473ea0 --- /dev/null +++ b/_site_listings/gtf.io.md @@ -0,0 +1,4 @@ +--- +pageurl: gtf.io +size: 9.5 +--- diff --git a/_site_listings/iain.in.md b/_site_listings/iain.in.md new file mode 100644 index 0000000..0629441 --- /dev/null +++ b/_site_listings/iain.in.md @@ -0,0 +1,4 @@ +--- +pageurl: iain.in +size: 285.5 +--- diff --git a/_site_listings/ianmobbs.com.md b/_site_listings/ianmobbs.com.md new file mode 100644 index 0000000..83ff8c1 --- /dev/null +++ b/_site_listings/ianmobbs.com.md @@ -0,0 +1,4 @@ +--- +pageurl: ianmobbs.com +size: 64.9 +--- diff --git a/_site_listings/ihaque.org.md b/_site_listings/ihaque.org.md new file mode 100644 index 0000000..3773f0f --- /dev/null +++ b/_site_listings/ihaque.org.md @@ -0,0 +1,4 @@ +--- +pageurl: ihaque.org +size: 202.4 +--- diff --git a/_site_listings/john-doe.neocities.org.md b/_site_listings/john-doe.neocities.org.md new file mode 100644 index 0000000..c944de0 --- /dev/null +++ b/_site_listings/john-doe.neocities.org.md @@ -0,0 +1,4 @@ +--- +pageurl: john-doe.neocities.org +size: 41.6 +--- diff --git a/_site_listings/jvanelian.dev.md b/_site_listings/jvanelian.dev.md new file mode 100644 index 0000000..a5deac0 --- /dev/null +++ b/_site_listings/jvanelian.dev.md @@ -0,0 +1,4 @@ +--- +pageurl: jvanelian.dev +size: 23.4 +--- diff --git a/_site_listings/jvelo.at.md b/_site_listings/jvelo.at.md new file mode 100644 index 0000000..49b3de8 --- /dev/null +++ b/_site_listings/jvelo.at.md @@ -0,0 +1,4 @@ +--- +pageurl: jvelo.at +size: 325.2 +--- diff --git a/_site_listings/krisshamloo.com.md b/_site_listings/krisshamloo.com.md new file mode 100644 index 0000000..1684066 --- /dev/null +++ b/_site_listings/krisshamloo.com.md @@ -0,0 +1,4 @@ +--- +pageurl: krisshamloo.com +size: 356.2 +--- diff --git a/_site_listings/legiblenews.com.md b/_site_listings/legiblenews.com.md new file mode 100644 index 0000000..0ee83b7 --- /dev/null +++ b/_site_listings/legiblenews.com.md @@ -0,0 +1,4 @@ +--- +pageurl: legiblenews.com +size: 25.3 +--- diff --git a/_site_listings/lite.cnn.com.md b/_site_listings/lite.cnn.com.md new file mode 100644 index 0000000..7043696 --- /dev/null +++ b/_site_listings/lite.cnn.com.md @@ -0,0 +1,4 @@ +--- +pageurl: lite.cnn.com +size: 34.4 +--- diff --git a/_site_listings/lobste.rs.md b/_site_listings/lobste.rs.md new file mode 100644 index 0000000..57cb4bc --- /dev/null +++ b/_site_listings/lobste.rs.md @@ -0,0 +1,4 @@ +--- +pageurl: lobste.rs +size: 157.5 +--- diff --git a/_site_listings/lukeramsden.com.md b/_site_listings/lukeramsden.com.md new file mode 100644 index 0000000..bd63410 --- /dev/null +++ b/_site_listings/lukeramsden.com.md @@ -0,0 +1,4 @@ +--- +pageurl: lukeramsden.com +size: 21.5 +--- diff --git a/_site_listings/manpages.bsd.lv.md b/_site_listings/manpages.bsd.lv.md new file mode 100644 index 0000000..e87858c --- /dev/null +++ b/_site_listings/manpages.bsd.lv.md @@ -0,0 +1,4 @@ +--- +pageurl: manpages.bsd.lv +size: 7.9 +--- diff --git a/_site_listings/mataroa.blog.md b/_site_listings/mataroa.blog.md new file mode 100644 index 0000000..328ca0c --- /dev/null +++ b/_site_listings/mataroa.blog.md @@ -0,0 +1,4 @@ +--- +pageurl: mataroa.blog +size: 21.9 +--- diff --git a/_site_listings/matthewstrom.com.md b/_site_listings/matthewstrom.com.md new file mode 100644 index 0000000..f32b8e9 --- /dev/null +++ b/_site_listings/matthewstrom.com.md @@ -0,0 +1,4 @@ +--- +pageurl: matthewstrom.com +size: 199.1 +--- diff --git a/_site_listings/minid.net.md b/_site_listings/minid.net.md new file mode 100644 index 0000000..08538ae --- /dev/null +++ b/_site_listings/minid.net.md @@ -0,0 +1,4 @@ +--- +pageurl: minid.net +size: 10.2 +--- diff --git a/_site_listings/news.ycombinator.com.md b/_site_listings/news.ycombinator.com.md new file mode 100644 index 0000000..9c81935 --- /dev/null +++ b/_site_listings/news.ycombinator.com.md @@ -0,0 +1,4 @@ +--- +pageurl: news.ycombinator.com +size: 54.5 +--- diff --git a/_site_listings/nicetranslator.com.md b/_site_listings/nicetranslator.com.md new file mode 100644 index 0000000..9c687ad --- /dev/null +++ b/_site_listings/nicetranslator.com.md @@ -0,0 +1,4 @@ +--- +pageurl: nicetranslator.com +size: 303.7 +--- diff --git a/_site_listings/playerone.kevincox.ca.md b/_site_listings/playerone.kevincox.ca.md new file mode 100644 index 0000000..06dfc70 --- /dev/null +++ b/_site_listings/playerone.kevincox.ca.md @@ -0,0 +1,4 @@ +--- +pageurl: playerone.kevincox.ca +size: 6.8 +--- diff --git a/_site_listings/postsheet.com.md b/_site_listings/postsheet.com.md new file mode 100644 index 0000000..a8a2c39 --- /dev/null +++ b/_site_listings/postsheet.com.md @@ -0,0 +1,4 @@ +--- +pageurl: postsheet.com +size: 410.7 +--- diff --git a/_site_listings/restofworld.org.md b/_site_listings/restofworld.org.md new file mode 100644 index 0000000..37ad365 --- /dev/null +++ b/_site_listings/restofworld.org.md @@ -0,0 +1,4 @@ +--- +pageurl: restofworld.org +size: 735.8 +--- diff --git a/_site_listings/rowlingindex.org.md b/_site_listings/rowlingindex.org.md new file mode 100644 index 0000000..781c00e --- /dev/null +++ b/_site_listings/rowlingindex.org.md @@ -0,0 +1,4 @@ +--- +pageurl: rowlingindex.org +size: 432.0 +--- diff --git a/_site_listings/sjmulder.nl.md b/_site_listings/sjmulder.nl.md new file mode 100644 index 0000000..55c44d5 --- /dev/null +++ b/_site_listings/sjmulder.nl.md @@ -0,0 +1,4 @@ +--- +pageurl: sjmulder.nl +size: 2.5 +--- \ No newline at end of file diff --git a/_site_listings/sourcehut.org.md b/_site_listings/sourcehut.org.md new file mode 100644 index 0000000..55112d1 --- /dev/null +++ b/_site_listings/sourcehut.org.md @@ -0,0 +1,4 @@ +--- +pageurl: sourcehut.org +size: 116.3 +--- diff --git a/_site_listings/swlkr.com.md b/_site_listings/swlkr.com.md new file mode 100644 index 0000000..532de40 --- /dev/null +++ b/_site_listings/swlkr.com.md @@ -0,0 +1,4 @@ +--- +pageurl: swlkr.com +size: 356.1 +--- diff --git a/_site_listings/text.npr.org.md b/_site_listings/text.npr.org.md new file mode 100644 index 0000000..e15b50a --- /dev/null +++ b/_site_listings/text.npr.org.md @@ -0,0 +1,4 @@ +--- +pageurl: text.npr.org +size: 5.6 +--- diff --git a/_site_listings/tuhs.org.md b/_site_listings/tuhs.org.md new file mode 100644 index 0000000..fc8e1b6 --- /dev/null +++ b/_site_listings/tuhs.org.md @@ -0,0 +1,4 @@ +--- +pageurl: tuhs.org +size: 145.1 +--- diff --git a/_site_listings/uberspace.de.md b/_site_listings/uberspace.de.md new file mode 100644 index 0000000..5aad797 --- /dev/null +++ b/_site_listings/uberspace.de.md @@ -0,0 +1,4 @@ +--- +pageurl: uberspace.de +size: 585.8 +--- diff --git a/_site_listings/uglyduck.ca.md b/_site_listings/uglyduck.ca.md new file mode 100644 index 0000000..b9a3886 --- /dev/null +++ b/_site_listings/uglyduck.ca.md @@ -0,0 +1,4 @@ +--- +pageurl: uglyduck.ca +size: 24.5 +--- diff --git a/_site_listings/webperf.xyz.md b/_site_listings/webperf.xyz.md new file mode 100644 index 0000000..3faab45 --- /dev/null +++ b/_site_listings/webperf.xyz.md @@ -0,0 +1,4 @@ +--- +pageurl: webperf.xyz +size: 94.5 +--- diff --git a/_site_listings/xubuntu.org.md b/_site_listings/xubuntu.org.md new file mode 100644 index 0000000..c77a735 --- /dev/null +++ b/_site_listings/xubuntu.org.md @@ -0,0 +1,4 @@ +--- +pageurl: xubuntu.org +size: 225.3 +--- diff --git a/_site_listings/zerodha.com.md b/_site_listings/zerodha.com.md new file mode 100644 index 0000000..38a9522 --- /dev/null +++ b/_site_listings/zerodha.com.md @@ -0,0 +1,4 @@ +--- +pageurl: zerodha.com +size: 330.2 +--- diff --git a/favicon.png b/favicon.png new file mode 100644 index 0000000..fb5a285 Binary files /dev/null and b/favicon.png differ diff --git a/generate.sh b/generate.sh new file mode 100644 index 0000000..a421a38 --- /dev/null +++ b/generate.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +#define parameters which are passed in. +SIZE=$1 +URL=$2 + +#define the template. +cat << EOF +--- +pageurl: $URL +size: $SIZE +--- +EOF diff --git a/index.html b/index.html new file mode 100644 index 0000000..42ff4cd --- /dev/null +++ b/index.html @@ -0,0 +1,31 @@ +--- +layout: default +title: Articles & Essays +summary: Personal articles, demos and occasional ramblings +--- + +
+

1MB Club

+

The internet has become a bloated mess. Massive javascript libraries. Countless client-side queries. Overly complex frontend frameworks.

+

These things are a cancerous growth on the web.

+

But we can make a difference - no matter how small it may seem. 1MB Club 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:

+
    +
  1. Total resources downloaded client-side must not exceed 1 megabyte
  2. +
+
+

Update

+

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!

+
+
+ +
+ +
diff --git a/style.css b/style.css new file mode 100644 index 0000000..d23e68a --- /dev/null +++ b/style.css @@ -0,0 +1,81 @@ +* { + box-sizing: border-box; +} + +body { + font: 18px/1.5 "Helvetica", "Arial", sans-serif; + margin: 0 0 4rem 0; + padding: 0 10px; +} + +h1,h2,h3,h4,h5,h6 { + line-height: 1.2; +} + +header,main,footer { + margin: 0 auto; + max-width: 800px; + width: 100%; +} + +a,a:visited { + color: currentColor; +} +a:hover,a:focus { + color: blue; +} + +ul { + list-style: none; + margin: 3rem 0 0 0; + padding: 0; +} +ul li { + background: rgba(0,0,0,0.05); + line-height: 1; + margin: 0 0 0.5rem 0; + padding: 15px 10px 12px; + position: relative; +} +ul li span.before, +ul li span.after { + left: 0; + position: absolute; + top: 0; +} +ul li span.before { + background: rgba(0,0,0,0.1); + height: 100%; + width: calc(var(--data-size)/1024 * 100%); + z-index: 0; +} +ul li span.after { + left: auto; + opacity: 0.6; + right: 10px; + top: auto; +} +ul li a { + font-weight: bold; + position: relative; + z-index: 2; +} + +blockquote { + background: blanchedalmond; + border-left: 10px solid burlywood; + margin: 3rem 0 2rem; + padding: 20px; +} +blockquote p { + margin: 0; +} + +footer { + border-top: 1px solid lightgrey; + margin: 3rem auto 0; + padding: 0.5rem 0 0; +} +footer p { + font-size: 85%; +}