├── vercel.json ├── .gitignore ├── assets ├── images │ ├── favicon.png │ ├── nytimes-report.pdf │ ├── blue-team.svg │ ├── green-team.svg │ └── orange-team.svg ├── js │ └── randomSite.js └── css │ └── style.css ├── netlify.toml ├── _data ├── navigation.yml └── sites.yml ├── _includes ├── navigation.html ├── teams.html ├── faq-03.html ├── faq-06.html ├── faq-08.html ├── faq-05.html ├── faq-01.html ├── faq-04.html ├── faq-07.html └── faq-02.html ├── scripts ├── check_alphabetical_sorting.sh ├── invalid_site_rechecker.sh ├── site_size_rechecker.py └── docs_site_size_rechecker.md ├── _redirects ├── _plugins ├── precision_filter.rb └── rss_feed.rb ├── .editorconfig ├── Gemfile ├── .github ├── workflows │ └── ci.yml ├── dependabot.yml └── PULL_REQUEST_TEMPLATE.md ├── _config.yml ├── faq.md ├── LICENSE ├── _layouts └── default.html ├── README.md ├── Gemfile.lock └── index.md /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "github": { 3 | "silent": true 4 | } 5 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ### Jekyll ### 2 | _site 3 | .jekyll-metadata 4 | *-cache/ 5 | .DS_Store 6 | 7 | python-gtmetrix -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piraces/512kb.club/main/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/nytimes-report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piraces/512kb.club/main/assets/images/nytimes-report.pdf -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | # Google FLoC opt out 2 | [[headers]] 3 | for = "/*" 4 | [headers.values] 5 | Permissions-Policy = "interest-cohort=()" 6 | -------------------------------------------------------------------------------- /_data/navigation.yml: -------------------------------------------------------------------------------- 1 | - name: Home 2 | link: / 3 | 4 | - name: FAQ 5 | link: /faq 6 | 7 | - name: RSS 8 | link: /feed.xml 9 | 10 | - name: GitHub 11 | link: https://github.com/kevquirk/512kb.club 12 | -------------------------------------------------------------------------------- /_includes/navigation.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /scripts/check_alphabetical_sorting.sh: -------------------------------------------------------------------------------- 1 | # Returns a non-zero exit code if the data sites are not alphabetically sorted. 2 | 3 | grep 'domain:' _data/sites.yml | grep -v '512kb.club' | tr '[:upper:]' '[:lower:]' | sort -c 4 | -------------------------------------------------------------------------------- /scripts/invalid_site_rechecker.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | for f in $(awk -F " " '/url:/ {print $2}' ../_data/sites.yml) 3 | do 4 | echo "Response code: "$(curl -o /dev/null -sw "%{response_code}" $f)" "$f| grep -v '200\|301\|302' 5 | done 6 | -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- 1 | https://512kb.club/images/green-team.svg https://512kb.club/assets/images/green-team.svg 2 | https://512kb.club/images/orange-team.svg https://512kb.club/assets/images/orange-team.svg 3 | https://512kb.club/images/blue-team.svg https://512kb.club/assets/images/blue-team.svg 4 | -------------------------------------------------------------------------------- /_plugins/precision_filter.rb: -------------------------------------------------------------------------------- 1 | # Source https://stackoverflow.com/a/60243022 2 | 3 | module Jekyll 4 | module PrecisionFilter 5 | def precision(input, value=0) 6 | ("%.#{value}f" % input) 7 | end 8 | end 9 | end 10 | 11 | Liquid::Template.register_filter(Jekyll::PrecisionFilter) 12 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | indent_style = space 8 | indent_size = 4 9 | end_of_line = lf 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | 13 | [*.gemspec] 14 | indent_size = 2 15 | 16 | [*.yml] 17 | indent_size = 2 18 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source "https://rubygems.org" 4 | 5 | git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } 6 | 7 | # gem "rails" 8 | gem "jekyll" 9 | gem 'tzinfo-data' 10 | 11 | # Plugins 12 | group :jekyll_plugins do 13 | gem 'jekyll-sitemap' 14 | gem 'jekyll-seo-tag' 15 | end 16 | 17 | gem "webrick", "~> 1.8" 18 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | on: [push, pull_request] 2 | 3 | name: Continuous integration 4 | 5 | jobs: 6 | ci: 7 | name: Check if domains are sorted alphabetically 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: actions/checkout@v3 11 | - name: Check domain sorting 12 | run: | 13 | sh scripts/check_alphabetical_sorting.sh 14 | -------------------------------------------------------------------------------- /_includes/teams.html: -------------------------------------------------------------------------------- 1 |
  • 2 | 3 | {% comment %} "precision" is a custom filter can be found in "_plugins/precision_filter.rb" {% endcomment %} 4 | {{ item.size | precision: 2 }} KB 5 | {{ item.domain }} 6 |
  • 7 | -------------------------------------------------------------------------------- /_includes/faq-03.html: -------------------------------------------------------------------------------- 1 |
    2 | I've made changes to my site and it's a different size now. What do i do? 3 |

    We regularly check all the sites that are added to the The 512KB Club (yes, its a big job. If you want help, contact me). But if you have made changes and the size of your site needs updating please log a new GitHub Pull Request.

    4 |
    5 | -------------------------------------------------------------------------------- /_includes/faq-06.html: -------------------------------------------------------------------------------- 1 |
    2 | I see a problem / how do I get in touch? 3 |

    See a problem on this site? Maybe there's a site listed that's not longer live, or no longer qualifies for the 4 | club. Or, maybe you just want to get in touch for some reason.

    5 | 6 |

    If so, create an issue on GitHub or 7 | use the contact page on my main website.

    8 |
    9 | -------------------------------------------------------------------------------- /assets/js/randomSite.js: -------------------------------------------------------------------------------- 1 | /** 2 | * This looks for elements with the 'site' class which in this case are all of the 3 | * anchor links for the sites. This could certainly be made more robust with 4 | * some sanity checks, but should work in this context. 5 | */ 6 | function randomSite() { 7 | const sites = document.getElementsByClassName('site') 8 | 9 | if (sites.length > 0) { 10 | const choiceIndex = Math.floor(Math.random() * sites.length) 11 | window.open(sites[choiceIndex].attributes.href.value, '_blank').focus() 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | plugins: 2 | - jekyll-sitemap 3 | - jekyll-seo-tag 4 | 5 | # SEO Stuff 6 | author: Kev Quirk 7 | title: 512KB Club 8 | tagline: A showcase of lightweight websites. 9 | description: The 512KB Club is an exclusive list of web pages weighing less than 512 kilobytes. 10 | lang: en 11 | locale: en_GB 12 | url: "https://512kb.club" 13 | baseurl: "" 14 | permalink: :title 15 | timezone: Etc/GMT 16 | 17 | # Syntax Highlighting 18 | highlighter: rouge 19 | 20 | # Netlify redirects 21 | include: 22 | - _redirects 23 | 24 | exclude: 25 | - scripts/ 26 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | 2 | # To get started with Dependabot version updates, you'll need to specify which 3 | # package ecosystems to update and where the package manifests are located. 4 | # Please see the documentation for all configuration options: 5 | # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 6 | 7 | version: 2 8 | updates: 9 | - package-ecosystem: "bundler" # See documentation for possible values 10 | directory: "/" # Location of package manifests 11 | schedule: 12 | interval: "weekly" 13 | -------------------------------------------------------------------------------- /_includes/faq-08.html: -------------------------------------------------------------------------------- 1 |
    2 | Illegal or inappropriate content 3 | 4 |

    This can be anything we deem inappropriate for the 512KB Club. Things like pornographic sites, or sites that contain NSFW material will not be added. Basically, if you wouldn't show it to your grandma or your kids, you're probably not going to get accepted.

    5 | 6 |

    We reserve the right to refuse any site we deem to be inappropriate, even if it doesn't obviously align to any of the rules stated above.

    7 | 8 |
    9 | -------------------------------------------------------------------------------- /_includes/faq-05.html: -------------------------------------------------------------------------------- 1 |
    2 | What's the point of all this? 3 |

    That's a great question!

    4 | 5 |

    I decided to start this project for a couple of reasons:

    6 | 7 |
      8 |
    1. Most, if not all, of the sites listed are personal sites. Many of which are blogs. The 512KB Club is a 9 | great way of discovering other blog owners who are also interested in minimalist/efficient web design. Think 10 | of it like a modern day webring.
    2. 11 |
    3. It's a bit of fun, so why not?
    4. 12 |
    13 |
    14 | -------------------------------------------------------------------------------- /faq.md: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: /faq/ 3 | layout: default 4 | title: FAQ 5 | --- 6 | 7 | # Frequently Asked Questions 8 | 9 | This page is intended to answer any questions you may have about joining or maintaining the 512KB Club. If you still have unanswered questions after reading this page, please [submit an issue in GitHub](https://github.com/kevquirk/512kb.club/issues) and we will endeavour to answer your question. 10 | 11 | {% include faq-01.html %} 12 | 13 | {% include faq-02.html %} 14 | 15 | {% include faq-03.html %} 16 | 17 | {% include faq-04.html %} 18 | 19 | {% include faq-05.html %} 20 | 21 | {% include faq-06.html %} 22 | 23 | {% include faq-07.html %} 24 | 25 | {% include faq-08.html %} 26 | -------------------------------------------------------------------------------- /_includes/faq-01.html: -------------------------------------------------------------------------------- 1 |
    2 | How do I join The 512KB Club? 3 |

    If you're interested in getting your site added to The 512KB Club, all you need to do is follow these 4 | instructions:

    5 | 6 |
      7 |
    1. Do a GTMetrix scan on your website.
    2. 8 |
    3. Once complete, click on the Waterfall tab to make sure the uncompressed size of your site is 9 | less than 512KB.
    4. 10 |
    5. If your site satisfies this requirement, create a pull request (instructions 12 | here) to add your site.
    6. 13 |
    7. I will then review you PR and merge it into main. Once merged, your site will be added to the list.
    8. 14 |
    15 | 16 |

    Note: I reserve the right to not add sites based on whether I think they're suitable to 17 | be added or not.

    18 |
    19 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020-2023 Kev Quirk 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 6 | 7 | This PR is: 8 | 9 | - [ ] Adding a new domain 10 | - [ ] Updating existing domain **size** 11 | - [ ] Changing domain name 12 | - [ ] Removing existing domain from list 13 | - [ ] Website code changes (512kb.club site) 14 | - [ ] Other not listed 15 | 16 | 19 | 20 | - [ ] I used the uncompressed size of the site 21 | - [ ] I have included a link to the GTMetrix report 22 | - [ ] The domain is in the correct alphabetical order 23 | - [ ] This site is not an ultra lightweight site 24 | - [ ] The following information is filled identical to the data file 25 | 26 | ***I confirm that I have read the [FAQ section](https://512kb.club/faq), particularly the two red items around minimal pages and inappropriate content and I attest that this site is neither of these things.*** 27 | 28 | - [ ] Check to confirm 29 | 30 | ``` 31 | - domain: 32 | url: 33 | size: 34 | last_checked: 35 | ``` 36 | 37 | GTMetrix Report: 38 | -------------------------------------------------------------------------------- /_includes/faq-04.html: -------------------------------------------------------------------------------- 1 |
    2 | My site doesn't qualify, what can I do? 3 |

    Many sites won't qualify for the 512KB Club, but there are some quick things you could try to reduce the size of 4 | your site:

    5 | 6 |

    1. Replace custom fonts with a local font stack by replacing your font-family declarations in 7 | your CSS to one of the following:

    8 |
    # Sans-serif font stack
     9 | font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif;
    10 | 
    11 | # Serif font stack
    12 | font-family: Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
    13 | 14 |

    2. Optimise any images you have on your page. Short 15 | Pixel is a great service for this.

    16 | 17 |

    3. If all else fails and your site is pretty close the 512KB, but not quite there, why not apply for 18 | Bradley Taunt's 1MB Club instead?

    19 |
    20 | -------------------------------------------------------------------------------- /_includes/faq-07.html: -------------------------------------------------------------------------------- 1 |
    2 | Ultra minimal / link pages won't be added 3 | 4 |

    The whole point of the 512KB Club is to showcase what can be done with 512KB of space. Anyone can come along and make a <10KB site containing 3 lines of CSS and a handful of links to other pages.

    5 | 6 |

    That's NOT a good showcase of what can be done with 512KB.

    7 | 8 |

    What we're looking for are sites with interesting design concepts that prove 512KB is a load of space that you can do so much with.

    9 | 10 |

    If we decide that your site qualifies as "ultra-minimal" or is simply just a page containing a paragraph of text and some links, it probably won't be added.

    11 | 12 |

    We reserve the right to add sites that may qualify as "ultra-minimal" or "link pages" if they offer a particularly interesting design, or display the information in a unique way.

    13 | 14 |

    We're aware there are a number of these sites that have already been added to the 512KB Club, and we're slowly working our way through and removing them. If you notice a site in the list that you think qualifies, please do submit an issue on GitHub to let us know.

    15 | 16 |
    17 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {% seo %} 9 | 10 | 11 | {% if page.hasRandomBtn == true %} 12 | 13 | {% endif %} 14 | 15 | 16 | 17 | 18 | 19 |
    20 | {% include navigation.html %} 21 |

    The 512KB Club

    22 |
    23 | 24 |
    25 | 26 | {{ content }} 27 | 28 |
    29 | 30 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /_includes/faq-02.html: -------------------------------------------------------------------------------- 1 |
    2 | Can I add something to my site to show I'm in the 512KB club? 3 |

    If your site qualifies for The 512KB Club, I will add it to one of the following 3 teams:

    4 | 5 |
      6 |
    1. The green team is for 7 | sites with a total uncompressed size of less than 100KB.
    2. 8 |
    3. The orange team is 9 | for sites with a total uncompressed size of less than 250KB.
    4. 10 |
    5. The blue team is for 11 | sites with a total uncompressed size of less than 512KB.
    6. 12 |
    13 | 14 |

    Once you're a proud member of one of the teams, you are free to use one of the banners below on your own website. 15 | You can either save the SVG or use the code snippet below (remembering to change the name to whichever team 16 | you're in).

    17 | 18 |

    green team banner

    19 | 20 |

    orange team banner

    21 | 22 |

    blue team banner

    23 | 24 |
    <a href="https://512kb.club"><img src="https://512kb.club/assets/images/green-team.svg"
    25 |                alt="a proud member of the green team of 512KB club" /></a>
    26 | 27 |

    Alternatively, you can add the banner to your site in pure HTML/CSS using this CodePen as a guide.

    29 | 30 |
    31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 512KB Club 2 | 3 | The internet has become a **bloated mess**. Massive JavaScript libraries, countless client-side queries and overly complex frontend frameworks are par for the course these days. 4 | 5 | When online newspapers like [The Guardian](https://www.theguardian.com/uk) are **over 4MB in size**, you know there's a problem. Why does an online newspaper need to be over 4MB in size? It's crazy. 6 | 7 | But we can make a difference - all it takes is some optimisation. Do you really need that extra piece of JavaScript? Does your WordPress site need a theme that adds lots of functionality you're never going to use? Are those huge custom fonts really needed? Are your images optimised for the web? 8 | 9 | **The 512KB Club** is a collection of performance-focused web pages from across the Internet. To qualify your website must satisfy **both** of the following requirements: 10 | 11 | 1. It must be an actual site that contains a reasonable amount of information, not just a couple of links on a page ([more info here](https://512kb.club/#lightweight-notice)). 12 | 2. Your total UNCOMPRESSED web resources must not exceed 512KB. 13 | 14 | ## How to create a PR to add your site to the 512KB Club 15 | 16 | 1. Fork this repository. 17 | 2. Get the **UNCOMPRESSED** size of your website's homepage. 18 | 1. Do a GTMetrix scan on your website. 19 | 2. Once complete, click on the **Waterfall** tab to make sure the **uncompressed** size of your site is less than 512KB. 20 | 3. Navigate to [`_data/sites.yml`](./_data/sites.yml) and add your site (template below). 21 | 4. **When creating the PR, please include a link to the GT Metrix results in the PR comment.** 22 | 23 | ### Site template 24 | 25 | #### Sample 26 | ``` 27 | - domain: example.com 28 | url: http://example.com/ (Make sure you keep the trailing slash) 29 | size: 2.5 30 | last_checked: 2021-05-26 (YYYY-MM-DD) 31 | ``` 32 | #### Blank 33 | ``` 34 | - domain: 35 | url: 36 | size: 37 | last_checked: 38 | ``` 39 | 40 | **NOTE:** Site need to be added to the list in **alphabetical order**, so please make sure your site is in the correct place within the list, or your PR will be rejected. 41 | 42 | ## Automation of site size check 43 | 44 | You can find [instructions](scripts/docs_site_size_rechecker.md) on how to get the GTmetrix size using a script in the [scripts](scripts/) folder 45 | -------------------------------------------------------------------------------- /_plugins/rss_feed.rb: -------------------------------------------------------------------------------- 1 | require 'yaml' 2 | require 'rexml/document' 3 | require 'date' 4 | include REXML 5 | 6 | module RSSGenerator 7 | class Generator < Jekyll::Generator 8 | def generate(site) 9 | # Read the YAML file 10 | websites = YAML.load_file(File.join(site.source, '_data', 'sites.yml')) 11 | 12 | # Sort websites by "last_checked" in descending order 13 | websites.sort_by! { |website| website['last_checked'] }.reverse! 14 | 15 | # Get the 10 latest entries 16 | latest_websites = websites.take(10) 17 | 18 | # Create the RSS feed XML 19 | rss = Element.new('rss') 20 | rss.add_attribute('version', '2.0') 21 | 22 | channel = Element.new('channel') 23 | rss.add_element(channel) 24 | 25 | title = Element.new('title') 26 | title.text = '512KB Club' 27 | channel.add_element(title) 28 | 29 | link = Element.new('link') 30 | link.text = 'https://512kb.club' 31 | channel.add_element(link) 32 | 33 | description = Element.new('description') 34 | description.text = 'Updates for the 512KB Club.' 35 | channel.add_element(description) 36 | 37 | latest_websites.each do |website| 38 | item = Element.new('item') 39 | channel.add_element(item) 40 | 41 | title = Element.new('title') 42 | title.text = "512KB Club: #{website['domain']} was added or updated" 43 | item.add_element(title) 44 | 45 | link = Element.new('link') 46 | link.text = website['url'] 47 | item.add_element(link) 48 | 49 | pub_date = Element.new('pubDate') 50 | pub_date.text = website['last_checked'].strftime('%a, %d %b %Y %H:%M:%S %z') 51 | item.add_element(pub_date) 52 | 53 | description = Element.new('description') 54 | description.text = "#{website['domain']} was added to the 512KB Club, or the entry was updated. Size: #{website['size']}" 55 | item.add_element(description) 56 | end 57 | 58 | FileUtils.mkdir_p(site.dest) unless File.exist?(site.dest) 59 | formatter = REXML::Formatters::Pretty.new 60 | formatter.compact = true 61 | 62 | # Write the RSS feed XML to a file 63 | rss_file_path = File.join(site.dest, 'feed.xml') 64 | File.open(rss_file_path, 'w') do |file| 65 | formatter.write(rss.root, file) 66 | end 67 | 68 | Jekyll::StaticFile.new(site, site.dest, '/', 'feed.xml') 69 | site.keep_files << "feed.xml" 70 | end 71 | end 72 | end 73 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | addressable (2.8.1) 5 | public_suffix (>= 2.0.2, < 6.0) 6 | colorator (1.1.0) 7 | concurrent-ruby (1.2.2) 8 | em-websocket (0.5.3) 9 | eventmachine (>= 0.12.9) 10 | http_parser.rb (~> 0) 11 | eventmachine (1.2.7) 12 | eventmachine (1.2.7-x64-mingw32) 13 | ffi (1.15.5) 14 | ffi (1.15.5-x64-mingw32) 15 | forwardable-extended (2.6.0) 16 | google-protobuf (3.21.12) 17 | google-protobuf (3.21.12-x64-mingw32) 18 | http_parser.rb (0.8.0) 19 | i18n (1.12.0) 20 | concurrent-ruby (~> 1.0) 21 | jekyll (4.3.2) 22 | addressable (~> 2.4) 23 | colorator (~> 1.0) 24 | em-websocket (~> 0.5) 25 | i18n (~> 1.0) 26 | jekyll-sass-converter (>= 2.0, < 4.0) 27 | jekyll-watch (~> 2.0) 28 | kramdown (~> 2.3, >= 2.3.1) 29 | kramdown-parser-gfm (~> 1.0) 30 | liquid (~> 4.0) 31 | mercenary (>= 0.3.6, < 0.5) 32 | pathutil (~> 0.9) 33 | rouge (>= 3.0, < 5.0) 34 | safe_yaml (~> 1.0) 35 | terminal-table (>= 1.8, < 4.0) 36 | webrick (~> 1.7) 37 | jekyll-sass-converter (3.0.0) 38 | sass-embedded (~> 1.54) 39 | jekyll-seo-tag (2.8.0) 40 | jekyll (>= 3.8, < 5.0) 41 | jekyll-sitemap (1.4.0) 42 | jekyll (>= 3.7, < 5.0) 43 | jekyll-watch (2.2.1) 44 | listen (~> 3.0) 45 | kramdown (2.4.0) 46 | rexml 47 | kramdown-parser-gfm (1.1.0) 48 | kramdown (~> 2.0) 49 | liquid (4.0.4) 50 | listen (3.8.0) 51 | rb-fsevent (~> 0.10, >= 0.10.3) 52 | rb-inotify (~> 0.9, >= 0.9.10) 53 | mercenary (0.4.0) 54 | pathutil (0.16.2) 55 | forwardable-extended (~> 2.6) 56 | public_suffix (5.0.1) 57 | rake (13.0.6) 58 | rb-fsevent (0.11.2) 59 | rb-inotify (0.10.1) 60 | ffi (~> 1.0) 61 | rexml (3.2.5) 62 | rouge (4.0.1) 63 | safe_yaml (1.0.5) 64 | sass-embedded (1.57.1) 65 | google-protobuf (~> 3.21) 66 | rake (>= 10.0.0) 67 | sass-embedded (1.57.1-x64-mingw32) 68 | google-protobuf (~> 3.21) 69 | terminal-table (3.0.2) 70 | unicode-display_width (>= 1.1.1, < 3) 71 | tzinfo (2.0.6) 72 | concurrent-ruby (~> 1.0) 73 | tzinfo-data (1.2023.3) 74 | tzinfo (>= 1.0.0) 75 | unicode-display_width (2.4.2) 76 | webrick (1.8.1) 77 | 78 | PLATFORMS 79 | ruby 80 | x64-mingw32 81 | 82 | DEPENDENCIES 83 | jekyll 84 | jekyll-seo-tag 85 | jekyll-sitemap 86 | tzinfo-data 87 | webrick (~> 1.8) 88 | 89 | BUNDLED WITH 90 | 2.2.22 91 | -------------------------------------------------------------------------------- /assets/images/blue-team.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/green-team.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: / 3 | layout: default 4 | hasRandomBtn: true 5 | --- 6 | The internet has become a bloated mess. Huge JavaScript libraries, countless client-side queries and overly complex frontend frameworks are par for the course these days. 7 | 8 | When popular website like [The New York Times](https://www.nytimes.com/) are **[multiple MB in size](/assets/images/nytimes-report.pdf)** (nearly 50% of which is JavaScript!), you know there's a problem. Why does any site need to be that huge? It's crazy. 9 | 10 | But we can make a difference - all it takes is some optimisation. Do you really need that extra piece of JavaScript? Does your WordPress site need a theme that adds lots of functionality you're never going to use? Are those huge custom fonts really needed? Are your images optimised for the web? 11 | 12 | **The 512KB Club** is a collection of performance-focused web pages from across the Internet. To qualify your website must satisfy **both** of the following requirements: 13 | 14 | 1. It must be an actual site that contains a reasonable amount of information, not just a couple of links on a page ([more info here](/faq/#lightweight-notice)). 15 | 2. Your total UNCOMPRESSED web resources must not exceed 512KB. 16 | 17 |
    18 |

    19 | Help support the 512KB Club

    20 | It takes a lot of work to run the 512KB Club. We rely on the kind work of a couple of great volunteers. If you want to support the 512KB Club, please do think about buying us a coffee. 21 |

    22 |
    23 |
    24 |
    25 | View FAQ for more details 26 |
    27 | 28 |
    29 |
    30 | 31 |
    32 |
    33 | Visit a Random Site 34 |
    35 | 36 | {:.jump} 37 | * **Jump to:** 38 | * [Green Team (<100KB)](#100) 39 | * [Orange Team (<250KB)](#250) 40 | * [Blue Team (<512KB)](#512) 41 | 42 |

    The Green Team (<100KB) ^ Top ^

    43 | 51 | 52 |

    The Orange Team (<250KB) ^ Top ^

    53 | 61 | 62 |

    The Blue Team (<512KB) ^ Top ^

    63 | 71 | -------------------------------------------------------------------------------- /assets/images/orange-team.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/site_size_rechecker.py: -------------------------------------------------------------------------------- 1 | # Script to update sites.yml file for 512kb.club 2 | # 3 | # It updates requested number of entries in that file, 4 | # starting with those having _earliest_ 'last_checked' date 5 | # (those having non-date 'last_checked' field, like "N/A", are checked first). 6 | import datetime 7 | import os 8 | import sys 9 | 10 | # create a file myauth.py with details of your gtmetrix account, like this: 11 | # email='email@example.com' 12 | # api_key='96bcab1060d838723701010387159086' 13 | import myauth 14 | # https://github.com/aisayko/python-gtmetrix 15 | from gtmetrix import * 16 | # https://pypi.org/project/ruamel.yaml/ 17 | from ruamel.yaml import YAML 18 | 19 | def summarizeHar(har): 20 | """Given a har file (parsed json object), returns total size of all responses, in bytes.""" 21 | return sum((entry["response"]["content"]["size"] for entry in har["log"]["entries"])) 22 | 23 | def countPageBytes(url): 24 | """Submits URL to gtmetrix, waits for analysis to complete, and returns dict of: 25 | {'kb': size in kilobytes rounded according to gtmetrix standard, 26 | 'url': link to gtmetrix report (human-readable webpage) 27 | }""" 28 | # TODO: error checking in the following 4 lines 29 | my_test = gt.start_test(url) 30 | result = my_test.fetch_results(0) 31 | har = my_test._request(my_test.har) 32 | size = summarizeHar(har)/1024 33 | if size<100: 34 | size = round(size,1) 35 | else: 36 | size = round(size) 37 | return {'kb': size, 'url':result['results']['report_url']} 38 | 39 | def sizeToTeam(size): 40 | """Given a size in kilobytes, returns the 512kb.club team (green/orange/blue), 41 | or "N/A" if size is too big for 512kb.club""" 42 | if size<100: 43 | return "green" 44 | elif size<250: 45 | return "orange" 46 | elif size<=512: 47 | return "blue" 48 | else: 49 | return "N/A" 50 | 51 | def main(): 52 | if len(sys.argv) != 3: 53 | print("Usage: %s /path/to/sites.yml number_of_oldest_sites_to_check" % sys.argv[0]) 54 | exit(1) 55 | 56 | # load yaml 57 | filename = sys.argv[1] 58 | if not os.path.isfile(filename): 59 | print("Invalid filename: %s" % filename) 60 | exit(2) 61 | yaml=YAML() 62 | yaml.default_flow_style = False 63 | sites = yaml.load(open(filename,'r')) 64 | 65 | global gt 66 | # workaround to allow "+" symbol in email 67 | # see also https://github.com/aisayko/python-gtmetrix/pull/18 68 | gt = GTmetrixInterface('a@b.cd','123') 69 | gt.auth=(myauth.email, myauth.api_key) 70 | 71 | # number of sites left to check 72 | left = int(sys.argv[2]) 73 | 74 | print("Site | old size (team) | new size (team) | delta (%) | GTMetrix | note") 75 | print("---- | --------------- | --------------- | --------- | -------- | ----") 76 | 77 | while left > 0: 78 | # find minimum (earliest) last_checked date 79 | # first, try entries where 'last_checked' is not a valid date (it can be "N/A") 80 | min_date = next((x['last_checked'] for x in sites if not isinstance(x['last_checked'],datetime.date)), None) 81 | if not min_date: 82 | # otherwise, find earliest of the found dates 83 | min_date = min((x['last_checked'] for x in sites if isinstance(x['last_checked'],datetime.date))) 84 | # TODO: abort if min_date is too close to present? 85 | # find first site with matching date 86 | site = next((x for x in sites if x['last_checked'] == min_date)) 87 | # print first half of the row (with old data) 88 | oldsize = float(site['size']) 89 | oldteam = sizeToTeam(oldsize) 90 | print("[%s](%s) | %.1fkb (%s) | " % (site['domain'], site['url'], oldsize, oldteam), end='', flush=True) 91 | # get new data 92 | result = countPageBytes(site['url']) 93 | # analyze the result 94 | newsize = result['kb'] 95 | newteam = sizeToTeam(newsize) 96 | delta = newsize-oldsize 97 | size_diff = round((newsize-oldsize)/oldsize*100) 98 | note = '' 99 | if abs(size_diff)>10: 100 | note = "big size change!" 101 | if oldteam != newteam: 102 | note = "team changed!!" 103 | if newsize>512: 104 | note = "too big for 512kb.club!!!" 105 | # print the second half of the row 106 | print(f"%.1fkb (%s) | %+.1fkb (%+d) | [report](%s#waterfall) | %s" % (newsize, newteam, delta, size_diff, result['url'], note)) 107 | # save the result 108 | site['size'] = newsize 109 | site['last_checked'] = datetime.date.today() 110 | yaml.dump(sites,open(filename,'w')) 111 | left -= 1 112 | 113 | if __name__ == '__main__': 114 | main() 115 | -------------------------------------------------------------------------------- /scripts/docs_site_size_rechecker.md: -------------------------------------------------------------------------------- 1 | # Site Size Rechecker Script Documentation 2 | 3 | ## Purpose 4 | The main purpose of `site_size_rechecker.py` script is to automate the checking of older sites that are listed in the 512kb.club and ensuring that the size is updated. 5 | 6 | ## How it works 7 | 1. Read `sites.yml` file 8 | 1. Analyze `last_checked` key pair 9 | 1. Sort key pair in ascending order _earliest first_ 10 | 1. Non-date values are listed before dated values such as **"N/A"** 11 | 12 | ## Requirements 13 | 14 | * [GTmetrix.com](https://GTmetrix.com/) account 15 | * Python3 with pip 16 | * ruamel.yaml 17 | 18 | ## Installation 19 | 20 | 1. Create an account with [GTmetrix.com](https://gtmetrix.com/) 21 | 1. Go to [account settings](https://gtmetrix.com/dashboard/account) and generate an API Key 22 | 1. Install **ruamel.yaml** Python library (available via [pip](https://pypi.org/project/ruamel.yaml/) or a [package manager](https://archlinux.org/packages/community/any/python-ruamel-yaml/)). 23 | 1. Install [python-gtmetrix](https://github.com/aisayko/python-gtmetrix). 24 | 1. It is [recommened](https://github.com/aisayko/python-gtmetrix/issues/13#issuecomment-781785672) to just Git clone the repo as they only require [requests](http://python-requests.org/) which have [pip](https://pypi.org/project/requests/) and an [OS package](https://archlinux.org/packages/extra/any/python-requests/). 25 | 1. Create authintication file named `myauth.py` with the following format: 26 | ```py 27 | email='email@example.com' 28 | api_key='96bcab1060d838723701010387159086' 29 | ``` 30 | 1. email: is the one used in creating a GTmetrix account 31 | 1. api_key: is what was generated in step 1.1 32 | 1. Copy the `site_size_rechecker.py` and `myauth.py` into the `python-gtmetrix` cloned in step 3 33 | 34 | _Note:_ Under the new plan you will first receive 100 credits from GTmetrix for testing. after which you will get a refill of 10 credits every day at `8:45 PM +0000`. This script uses 0.7 credits for each site check. which is about 14 site reports per day per person 35 | ## Usage 36 | 37 | while in the `python-gtmetrix` folder run: 38 | 39 | ```sh 40 | python script2.py ../512kb.club/_data/sites.yml XY 41 | ``` 42 | _Note:_ XY stands for the number of sites to be checked 43 | 44 | ### Successful Output 45 | 46 | Successful output will generate a table in markdown file which _**Must**_ be put in the PR such as [#450](https://github.com/kevquirk/512kb.club/pull/450) 47 | ```md 48 | Site | old size (team) | new size (team) | delta (%) | GTmetrix | note 49 | ---- | --------------- | --------------- | --------- | -------- | ---- 50 | [docs.j7k6.org](https://docs.j7k6.org/) | 73.0kb (green) | 72.9kb (green) | -0.1kb (-0%) | [report](https://GTmetrix.com/reports/docs.j7k6.org/PkIra4ns/#waterfall) | 51 | ``` 52 | _Note:_ In the middle of each line it takes about 30 seconds in wait-time to output the rest of the line. This is due to the time it takes to finish the GTmetrix scan 53 | 54 | This can be beneficial to know if a site has a problem that can be used to check the site or remove it from the checking. 55 | 56 | 57 | If everything goes right, you should get a table-like output which you can just paste into Github PR: 58 | 59 | Note that it "hangs" for about 30 seconds in the middle of each line except the first two, 60 | as it first prints site name and old size, 61 | then waits for GTmetrix scan to finish, 62 | and after that prints new size and rest of the line. 63 | 64 | This is done so if the script encounters an issue when running GTmetrix scan, 65 | you know which site it happened with, 66 | and can either check it manually or exclude the site from checking. 67 | 68 | ## Fine-tuning 69 | 70 | ### Wait-time 71 | 72 | To decrease waiting time, 73 | edit the [python-gtmetrix/gtmetrix/interface.py](https://github.com/aisayko/python-gtmetrix/blob/master/gtmetrix/interface.py#L85) file and change the number `30` in line 85 to a smaller number - for example, change this line from 74 | ```py 75 | time.sleep(30) 76 | ``` 77 | to 78 | ```py 79 | time.sleep(3) 80 | ``` 81 | This will decrease the delay between each check when the script is waiting for the GTmetrix scan to finish. 82 | 83 | The [recommended poll interval](https://GTmetrix.com/api/docs/0.1/#api-test-state) is 1 second. 84 | I suggest setting it to 3 seconds. 85 | By default in interface.py file is set to 30 seconds. 86 | 87 | ### Excluding site from checks 88 | 89 | To exclude a site from checks you can either remove the site or change the `last_checked` Key-Pair to today's date or a date in the future to make it last in the list. 90 | 91 | ## Troubleshooting 92 | 93 | In case you encounter an issue with this script open a [New Issue](https://github.com/kevquirk/512kb.club/issues) and tagging @Lex-2008 94 | 95 | Please provide as much information as possible such as: 96 | * All Output 97 | * Current state of `sites.yml` if it's from the `master` branch, or has been modified 98 | 99 | To debug why the script "hangs" when checking some site, edit the [ python-gtmetrix/gtmetrix/interface.py](https://github.com/aisayko/python-GTmetrix/blob/master/GTmetrix/interface.py#L86) file 100 | and a new 87th line which would looke like this: 101 | 102 | Orginal file 103 | ```py 104 | response_data = self._request(self.poll_state_url) 105 | self.state = response_data['state'] 106 | ``` 107 | Edited file 108 | ```py 109 | response_data = self._request(self.poll_state_url) 110 | print(response_data) 111 | self.state = response_data['state'] 112 | ``` 113 | This will break the nicely formatted table output, but you will see the raw response from GTmetrix API. 114 | ```sh 115 | {'resources': {}, 'error': 'An error occurred fetching the page: HTTPS error: hostname verification failed', 'results': {}, 'state': 'error'} 116 | ``` 117 | 118 | ## Future plans 119 | 120 | Currently, this script doesn't check any errors returned by GTmetrix.com API. That's the next item on my list. Moreover, I will get rid of python-GTmetrix dependency, since it adds more troubles than benefits. 121 | -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- 1 | /* Global colour variables */ 2 | :root { 3 | --sans-font: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif; 4 | --mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace; 5 | 6 | --bg: #FAFAFA; 7 | --header-bg: #212121; 8 | --text: #212121; 9 | --header-text: #FAFAFA; 10 | --link: #0D47A1; 11 | --code: #D81B60; 12 | --pre: #D0D0D0; 13 | --pre-bg: #1A1A1A; 14 | --accent: #e6e6e6; 15 | --gh-hover: #D3D3D3; 16 | --before-blue: #64B5F6; 17 | --after-blue: #BBDEFB; 18 | --before-orange: #FBC02D; 19 | --after-orange: #FFF176; 20 | --before-green: #4CAF50; 21 | --after-green: #C8E6C9; 22 | --notice-red-bg: #FFE4E1; 23 | --notice-red-border: #951818; 24 | } 25 | 26 | /* Define colours for auto dark mode */ 27 | @media (prefers-color-scheme: dark) { 28 | :root { 29 | --bg: #212121; 30 | --header-bg: #111; 31 | --text: #EEE; 32 | --link: #64B5F6; 33 | --accent: #333; 34 | --gh-hover: #222; 35 | --code: #F06292; 36 | --notice-red-bg: #951818; 37 | --notice-red-border: #EFD3CF; 38 | } 39 | 40 | ul li { 41 | opacity: .8; 42 | } 43 | } 44 | 45 | * { 46 | box-sizing: border-box; 47 | } 48 | 49 | html { 50 | scroll-behavior: smooth; 51 | } 52 | 53 | body { 54 | font-family: var(--sans-font); 55 | font-size: 1.1rem; 56 | margin: 0 0 4rem 0; 57 | padding: 0 .5rem; 58 | background: var(--bg); 59 | color: var(--text); 60 | } 61 | 62 | header, 63 | main, 64 | footer { 65 | margin: 0 auto; 66 | max-width: 50rem; 67 | width: 100%; 68 | } 69 | 70 | /* Format navigation */ 71 | nav { 72 | font-size: 1rem; 73 | line-height: 2; 74 | padding: 1rem 0; 75 | margin-left: 1rem; 76 | } 77 | 78 | nav a { 79 | border: 1px solid var(--text); 80 | border-radius: 5px; 81 | color: var(--text) !important; 82 | display: inline-block; 83 | padding: .1rem 1rem; 84 | margin-right: 1rem; 85 | text-decoration: none; 86 | transition: .4s; 87 | } 88 | 89 | nav a:hover, 90 | nav a.current { 91 | color: var(--text) !important; 92 | background: var(--accent); 93 | } 94 | 95 | nav a.current:hover { 96 | text-decoration: none; 97 | } 98 | 99 | header { 100 | padding-bottom: 2rem; 101 | border-bottom: 2px solid var(--text); 102 | } 103 | 104 | header h1 { 105 | margin: 0; 106 | font-size: 3rem; 107 | padding: 1rem 0 1rem 0; 108 | text-align: center; 109 | } 110 | 111 | main { 112 | margin-top: 3rem; 113 | } 114 | 115 | .small { 116 | font-size: .9rem; 117 | } 118 | 119 | .medium { 120 | font-weight: bold; 121 | font-size: 1.4rem; 122 | } 123 | 124 | .centre { 125 | text-align: center; 126 | } 127 | 128 | h1, 129 | h2, 130 | h3, 131 | h4, 132 | h5, 133 | h6 { 134 | line-height: 1.2; 135 | } 136 | 137 | h2 { 138 | margin: 4rem 0 -1.5rem 0; 139 | } 140 | 141 | .jump li { 142 | display: inline-block; 143 | padding-right: 1rem; 144 | } 145 | 146 | a, 147 | a:visited { 148 | color: var(--link) 149 | } 150 | 151 | a:hover, 152 | a:focus { 153 | text-decoration: none; 154 | } 155 | 156 | a.site, 157 | a.site:visited { 158 | color: currentColor; 159 | text-decoration: none; 160 | } 161 | 162 | a.site:hover, 163 | a.site:focus { 164 | text-decoration: underline; 165 | } 166 | 167 | .button { 168 | background: var(--link); 169 | color: var(--bg) !important; 170 | margin: 1.5rem 0; 171 | padding: 1rem 1.25rem; 172 | border-radius: 5px; 173 | text-decoration: none; 174 | } 175 | 176 | .button:hover { 177 | background: var(--text); 178 | } 179 | 180 | pre { 181 | font-family: var(--mono-font); 182 | background: var(--pre-bg) !important; 183 | border-radius: 5px; 184 | margin-bottom: 1.6em; 185 | max-width: 100%; 186 | white-space: pre-wrap; 187 | padding: 1.6em; 188 | max-height: 650px; 189 | } 190 | 191 | pre code { 192 | font-size: 1.1rem; 193 | font-family: var(--mono-font); 194 | color: #ccc; 195 | } 196 | 197 | code { 198 | font-family: var(--mono-font); 199 | color: var(--code); 200 | } 201 | 202 | ul { 203 | list-style: none; 204 | margin: 3rem 0 0 0; 205 | padding: 0; 206 | } 207 | 208 | /* BLUE COLOURS */ 209 | ul.blue li { 210 | background: var(--after-blue); 211 | color: #212121; 212 | line-height: 1; 213 | margin: 0 0 0.5rem 0; 214 | padding: 15px 10px 12px; 215 | position: relative; 216 | border-radius: 4px; 217 | } 218 | 219 | ul.blue li span.before { 220 | background: var(--before-blue); 221 | height: 100%; 222 | width: calc(var(--data-size)/512 * 100%); 223 | border-radius: 4px; 224 | z-index: 0; 225 | } 226 | 227 | /* ORANGE COLOURS */ 228 | ul.orange li { 229 | background: var(--after-orange); 230 | color: #212121; 231 | line-height: 1; 232 | margin: 0 0 0.5rem 0; 233 | padding: 15px 10px 12px; 234 | position: relative; 235 | border-radius: 4px; 236 | } 237 | 238 | ul.orange li span.before { 239 | background: var(--before-orange); 240 | height: 100%; 241 | width: calc(var(--data-size)/512 * 100%); 242 | border-radius: 4px; 243 | z-index: 0; 244 | } 245 | 246 | /* GREEN COLOURS */ 247 | ul.green li { 248 | background: var(--after-green); 249 | color: #212121; 250 | line-height: 1; 251 | margin: 0 0 0.5rem 0; 252 | padding: 15px 10px 12px; 253 | position: relative; 254 | border-radius: 4px; 255 | } 256 | 257 | ul.green li span.before { 258 | background: var(--before-green); 259 | height: 100%; 260 | width: calc(var(--data-size)/512 * 100%); 261 | border-radius: 4px; 262 | z-index: 0; 263 | } 264 | 265 | ul li span.before, 266 | ul li span.after { 267 | left: 0; 268 | position: absolute; 269 | top: 0; 270 | } 271 | 272 | ul li span.after { 273 | left: auto; 274 | opacity: 0.8; 275 | right: 10px; 276 | top: auto; 277 | } 278 | 279 | ul li a { 280 | font-weight: bold; 281 | position: relative; 282 | z-index: 2; 283 | } 284 | 285 | footer { 286 | border-top: 1px solid var(--text); 287 | margin: 3rem auto 0; 288 | padding: 0.5rem 0 0; 289 | text-align: center; 290 | font-size: .9rem; 291 | } 292 | 293 | @media(max-width:500px) { 294 | body { 295 | margin: 0 0 4rem 0; 296 | padding: 0 10px; 297 | } 298 | } 299 | 300 | /* Format the accordion */ 301 | details { 302 | padding: .6rem 1rem; 303 | background: var(--accent); 304 | border: 1px solid; 305 | border-radius: 5px; 306 | margin-bottom: 1rem; 307 | } 308 | 309 | details.red-notice { 310 | background: var(--notice-red-bg); 311 | border-color: var(--notice-red-border); 312 | } 313 | 314 | .red-notice h2 { 315 | margin: 0; 316 | } 317 | 318 | summary { 319 | cursor: pointer; 320 | font-weight: bold; 321 | } 322 | 323 | details[open] { 324 | padding-bottom: .75rem; 325 | } 326 | 327 | details[open] summary { 328 | margin-bottom: .5rem; 329 | } 330 | 331 | details[open]>*:last-child { 332 | margin-bottom: 0; 333 | } 334 | 335 | img { 336 | max-width: 100%; 337 | display: block; 338 | margin: 0 auto; 339 | } 340 | 341 | .divrandom { 342 | margin: 2rem 0 4rem 0; 343 | } 344 | 345 | .random { 346 | background: var(--before-green); 347 | } 348 | 349 | .notice { 350 | border: 2px solid; 351 | padding: 1rem 1.5rem; 352 | background-color: var(--accent); 353 | margin: 3rem 0; 354 | text-align: center; 355 | } 356 | -------------------------------------------------------------------------------- /_data/sites.yml: -------------------------------------------------------------------------------- 1 | - domain: 0chris.com 2 | url: https://www.0chris.com/ 3 | size: 4.3 4 | last_checked: 2022-03-20 5 | 6 | - domain: 0xedward.io 7 | url: https://0xedward.io/ 8 | size: 6.2 9 | last_checked: 2022-05-13 10 | 11 | - domain: 0xff.nu 12 | url: https://0xff.nu/ 13 | size: 7.2 14 | last_checked: 2022-03-20 15 | 16 | - domain: 100daystooffload.com 17 | url: https://100daystooffload.com/ 18 | size: 25.6 19 | last_checked: 2022-03-20 20 | 21 | - domain: 10maurycy10.github.io 22 | url: https://10maurycy10.github.io/ 23 | size: 20.2 24 | last_checked: 2023-02-17 25 | 26 | - domain: 1984.ninja 27 | url: https://1984.ninja/ 28 | size: 20.3 29 | last_checked: 2023-01-23 30 | 31 | - domain: 250kb.club 32 | url: https://250kb.club/ 33 | size: 59.6 34 | last_checked: 2022-05-06 35 | 36 | - domain: 46692.dev 37 | url: https://46692.dev/ 38 | size: 8.9 39 | last_checked: 2022-07-18 40 | 41 | - domain: 47nil.com 42 | url: https://47nil.com/ 43 | size: 155 44 | last_checked: 2022-03-25 45 | 46 | - domain: 512kb.club 47 | url: https://512kb.club/ 48 | size: 91.5 49 | last_checked: 2022-03-06 50 | 51 | - domain: 5am.is 52 | url: https://5am.is 53 | size: 30.0 54 | last_checked: 2022-11-26 55 | 56 | - domain: 60z.github.io 57 | url: https://60z.github.io/ 58 | size: 16.2 59 | last_checked: 2022-03-20 60 | 61 | - domain: 64b.it 62 | url: https://64b.it/ 63 | size: 204 64 | last_checked: 2022-03-22 65 | 66 | - domain: aaron.place 67 | url: https://aaron.place/ 68 | size: 21.9 69 | last_checked: 2022-03-20 70 | 71 | - domain: aaronjeskie.com 72 | url: https://aaronjeskie.com/ 73 | size: 35.4 74 | last_checked: 2022-04-08 75 | 76 | - domain: abdus.net 77 | url: https://www.abdus.net/ 78 | size: 164 79 | last_checked: 2022-03-20 80 | 81 | - domain: aboutdavid.me 82 | url: https://aboutdavid.me/ 83 | size: 7.33 84 | last_checked: 2022-04-21 85 | 86 | - domain: abridge.netlify.app 87 | url: https://abridge.netlify.app/ 88 | size: 56 89 | last_checked: 2022-08-17 90 | 91 | - domain: adam.sr 92 | url: https://adam.sr/ 93 | size: 109 94 | last_checked: 2022-11-22 95 | 96 | - domain: adithya.zip 97 | url: https://adithya.zip/ 98 | size: 19.4 99 | last_checked: 2023-07-28 100 | 101 | - domain: adityatelange.in 102 | url: https://adityatelange.in/ 103 | size: 267 104 | last_checked: 2022-06-11 105 | 106 | - domain: adrian.geek.nz 107 | url: https://adrian.geek.nz/ 108 | size: 161 109 | last_checked: 2022-05-15 110 | 111 | - domain: aggy.cloud 112 | url: https://aggy.cloud/ 113 | size: 189 114 | last_checked: 2022-05-15 115 | 116 | - domain: ahmubashshir.github.io 117 | url: https://ahmubashshir.github.io/ 118 | size: 113 119 | last_checked: 2023-04-28 120 | 121 | - domain: alessandrocuzzocrea.com 122 | url: https://alessandrocuzzocrea.com 123 | size: 13.4 124 | last_checked: 2023-02-28 125 | 126 | - domain: alexey.shpakovsky.ru 127 | url: http://alexey.shpakovsky.ru/ 128 | size: 91.2 129 | last_checked: 2022-05-15 130 | 131 | - domain: alexmolas.com 132 | url: https://www.alexmolas.com 133 | size: 230 134 | last_checked: 2023-07-18 135 | 136 | - domain: alfie.wtf 137 | url: http://www.alfie.wtf 138 | size: 20.4 139 | last_checked: 2022-01-29 140 | 141 | - domain: allaboutberlin.com 142 | url: https://allaboutberlin.com/ 143 | size: 203 144 | last_checked: 2022-03-20 145 | 146 | - domain: allan.reyes.sh 147 | url: https://allan.reyes.sh/ 148 | size: 198 149 | last_checked: 2022-09-12 150 | 151 | - domain: allien.work 152 | url: https://allien.work/ 153 | size: 166 154 | last_checked: 2022-05-15 155 | 156 | - domain: alperor.us 157 | url: https://alperor.us/ 158 | size: 98 159 | last_checked: 2023-02-04 160 | 161 | - domain: ampersandia.net 162 | url: https://ampersandia.net 163 | size: 48.8 164 | last_checked: 2022-03-30 165 | 166 | - domain: andrewsfasteners.uk 167 | url: https://www.andrewsfasteners.uk/ 168 | size: 195 169 | last_checked: 2022-01-25 170 | 171 | - domain: anibalsolon.com 172 | url: https://anibalsolon.com/ 173 | size: 452 174 | last_checked: 2022-03-20 175 | 176 | - domain: anna.wieckiewicz.org 177 | url: https://anna.wieckiewicz.org/ 178 | size: 33.8 179 | last_checked: 2022-02-19 180 | 181 | - domain: annaaurora.eu 182 | url: https://annaaurora.eu/ 183 | size: 29.4 184 | last_checked: 2022-07-20 185 | 186 | - domain: anonimno.codeberg.page 187 | url: https://anonimno.codeberg.page/ 188 | size: 126 189 | last_checked: 2022-05-15 190 | 191 | - domain: anthonydeguzman.com 192 | url: https://anthonydeguzman.com/ 193 | size: 362 194 | last_checked: 2022-05-16 195 | 196 | - domain: apex.ac 197 | url: https://apex.ac/ 198 | size: 13.5 199 | last_checked: 2022-07-18 200 | 201 | - domain: appbeat.io 202 | url: https://appbeat.io/ 203 | size: 201 204 | last_checked: 2022-03-20 205 | 206 | - domain: arcadewise.me 207 | url: https://arcadewise.me/ 208 | size: 258 209 | last_checked: 2022-05-20 210 | 211 | - domain: arghyadeep.in 212 | url: https://arghyadeep.in/ 213 | size: 451 214 | last_checked: 2022-03-20 215 | 216 | - domain: arizonabankruptcylawyer.org 217 | url: https://www.arizonabankruptcylawyer.org/ 218 | size: 478 219 | last_checked: 2022-08-04 220 | 221 | - domain: arkives.in 222 | url: https://arkives.in/ 223 | size: 61.9 224 | last_checked: 2023-04-30 225 | 226 | - domain: aroace.space 227 | url: https://aroace.space/ 228 | size: 186 229 | last_checked: 2022-05-05 230 | 231 | - domain: artemislena.eu 232 | url: https://artemislena.eu/ 233 | size: 40.0 234 | last_checked: 2022-05-15 235 | 236 | - domain: aryan.app 237 | url: https://aryan.app/ 238 | size: 348 239 | last_checked: 2022-03-20 240 | 241 | - domain: atthis.link 242 | url: https://atthis.link/ 243 | size: 9.4 244 | last_checked: 2022-04-26 245 | 246 | - domain: auroraoutlook.com 247 | url: https://auroraoutlook.com/ 248 | size: 86.3 249 | last_checked: 2023-04-03 250 | 251 | - domain: autotutor.com.au 252 | url: https://autotutor.com.au 253 | size: 261 254 | last_checked: 2022-04-26 255 | 256 | - domain: autumns.page 257 | url: https://autumns.page/ 258 | size: 213 259 | last_checked: 2022-05-06 260 | 261 | - domain: az.on.lt 262 | url: https://az.on.lt/ 263 | size: 25.3 264 | last_checked: 2022-03-25 265 | 266 | - domain: b0ba.dev 267 | url: https://b0ba.dev/ 268 | size: 181 269 | last_checked: 2022-04-12 270 | 271 | - domain: bala-frontdev.github.io 272 | url: https://bala-frontdev.github.io/ 273 | size: 14.9 274 | last_checked: 2022-03-25 275 | 276 | - domain: baltuta.eu 277 | url: https://baltuta.eu/ 278 | size: 80.1 279 | last_checked: 2022-03-25 280 | 281 | - domain: barryvanveen.nl 282 | url: https://barryvanveen.nl/ 283 | size: 29.0 284 | last_checked: 2022-05-11 285 | 286 | - domain: bastian.rieck.me 287 | url: https://bastian.rieck.me/ 288 | size: 502 289 | last_checked: 2022-01-30 290 | 291 | - domain: bbbhltz.codeberg.page 292 | url: https://bbbhltz.codeberg.page 293 | size: 70.8 294 | last_checked: 2023-08-30 295 | 296 | - domain: bduck.xyz 297 | url: https://bduck.xyz/ 298 | size: 249 299 | last_checked: 2022-05-15 300 | 301 | - domain: bebyx.co.ua 302 | url: https://bebyx.co.ua/ 303 | size: 8.5 304 | last_checked: 2022-04-26 305 | 306 | - domain: beh.uk 307 | url: https://www.beh.uk/ 308 | size: 101 309 | last_checked: 2022-05-15 310 | 311 | - domain: benrosenberg.info 312 | url: http://benrosenberg.info/ 313 | size: 6.8 314 | last_checked: 2022-04-26 315 | 316 | - domain: bestmotherfucking.website 317 | url: https://bestmotherfucking.website/ 318 | size: 5.4 319 | last_checked: 2022-04-26 320 | 321 | - domain: beuke.org 322 | url: https://beuke.org/ 323 | size: 57.3 324 | last_checked: 2022-12-18 325 | 326 | - domain: bezoscalculator.com 327 | url: https://bezoscalculator.com/ 328 | size: 46.1 329 | last_checked: 2022-04-26 330 | 331 | - domain: bfontaine.net 332 | url: https://bfontaine.net/blog/ 333 | size: 25.5 334 | last_checked: 2022-05-06 335 | 336 | - domain: binyam.in 337 | url: https://binyam.in/ 338 | size: 80.4 339 | last_checked: 2022-05-15 340 | 341 | - domain: bitcoincashstandards.org 342 | url: https://bitcoincashstandards.org 343 | size: 35.9 344 | last_checked: 2022-11-01 345 | 346 | - domain: bjhess.com 347 | url: http://bjhess.com/ 348 | size: 10.0 349 | last_checked: 2022-05-15 350 | 351 | - domain: bjornf.dev 352 | url: https://bjornf.dev/ 353 | size: 72.1 354 | last_checked: 2022-09-18 355 | 356 | - domain: blakehawkins.com 357 | url: https://blakehawkins.com/blog 358 | size: 123 359 | last_checked: 2022-08-31 360 | 361 | - domain: bleach.dev 362 | url: https://bleach.dev/ 363 | size: 179 364 | last_checked: 2023-09-02 365 | 366 | - domain: block.sunappu.net 367 | url: https://block.sunappu.net/ 368 | size: 193 369 | last_checked: 2022-04-16 370 | 371 | - domain: blog.benoitj.ca 372 | url: https://blog.benoitj.ca/ 373 | size: 8.7 374 | last_checked: 2022-04-26 375 | 376 | - domain: blog.bfloeser.de 377 | url: https://blog.bfloeser.de 378 | size: 33.4 379 | last_checked: 2022-03-08 380 | 381 | - domain: blog.bshah.in 382 | url: https://blog.bshah.in/ 383 | size: 31.1 384 | last_checked: 2022-05-13 385 | 386 | - domain: blog.cosipa.omg.lol 387 | url: https://blog.cosipa.omg.lol 388 | size: 30.4 389 | last_checked: 2023-08-02 390 | 391 | - domain: blog.craftyguy.net 392 | url: https://blog.craftyguy.net/ 393 | size: 17.1 394 | last_checked: 2022-04-18 395 | 396 | - domain: blog.danieljanus.pl 397 | url: https://blog.danieljanus.pl/ 398 | size: 197 399 | last_checked: 2022-01-29 400 | 401 | - domain: blog.darylsun.page 402 | url: https://blog.darylsun.page/ 403 | size: 120 404 | last_checked: 2023-08-18 405 | 406 | - domain: blog.dejavu.moe 407 | url: https://blog.dejavu.moe/ 408 | size: 107 409 | last_checked: 2023-05-27 410 | 411 | - domain: blog.dgold.eu 412 | url: https://blog.dgold.eu/ 413 | size: 12.6 414 | last_checked: 2022-05-15 415 | 416 | - domain: blog.ethandewey.com 417 | url: https://blog.ethandewey.com 418 | size: 199 419 | last_checked: 2022-10-21 420 | 421 | - domain: blog.khaleelgibran.com 422 | url: https://blog.khaleelgibran.com/ 423 | size: 213 424 | last_checked: 2022-04-26 425 | 426 | - domain: blog.libove.org 427 | url: https://blog.libove.org 428 | size: 103 429 | last_checked: 2022-08-31 430 | 431 | - domain: blog.omgmog.net 432 | url: https://blog.omgmog.net/ 433 | size: 85.1 434 | last_checked: 2022-05-14 435 | 436 | - domain: blog.ononoki.org 437 | url: https://blog.ononoki.org/ 438 | size: 90.6 439 | last_checked: 2022-06-03 440 | 441 | - domain: blog.plusmid.dev 442 | url: https://blog.plusmid.dev 443 | size: 50.4 444 | last_checked: 2023-07-30 445 | 446 | - domain: blog.setale.me 447 | url: https://blog.setale.me/ 448 | size: 294 449 | last_checked: 2022-10-17 450 | 451 | - domain: blog.shr4pnel.com 452 | url: https://blog.shr4pnel.com 453 | size: 77.5 454 | last_checked: 2023-08-01 455 | 456 | - domain: blog.trieoflogs.com 457 | url: https://blog.trieoflogs.com 458 | size: 78.3 459 | last_checked: 2022-05-01 460 | 461 | - domain: blog.xaloc.space 462 | url: https://blog.xaloc.space/ 463 | size: 42.7 464 | last_checked: 2022-05-15 465 | 466 | - domain: blush-beaver-tam.cyclic.app 467 | url: https://blush-beaver-tam.cyclic.app 468 | size: 365 469 | last_checked: 2022-09-12 470 | 471 | - domain: bmoat.com 472 | url: https://bmoat.com/ 473 | size: 90.1 474 | last_checked: 2023-04-22 475 | 476 | - domain: boehs.org 477 | url: http://boehs.org/ 478 | size: 86.0 479 | last_checked: 2022-05-15 480 | 481 | - domain: bonetflix.com 482 | url: https://bonetflix.com/ 483 | size: 71.9 484 | last_checked: 2023-04-27 485 | 486 | - domain: bortox.it 487 | url: https://bortox.it/en 488 | size: 172 489 | last_checked: 2022-08-20 490 | 491 | - domain: brainbaking.com 492 | url: https://brainbaking.com/ 493 | size: 163 494 | last_checked: 2022-05-15 495 | 496 | - domain: brajeshwar.com 497 | url: https://brajeshwar.com 498 | size: 181 499 | last_checked: 2022-05-15 500 | 501 | - domain: brandont.dev 502 | url: https://brandont.dev/ 503 | size: 38.8 504 | last_checked: 2023-05-31 505 | 506 | - domain: brianjdevries.com 507 | url: https://brianjdevries.com 508 | size: 33.7 509 | last_checked: 2022-03-14 510 | 511 | - domain: brycewray.com 512 | url: https://www.brycewray.com/ 513 | size: 103.0 514 | last_checked: 2022-06-27 515 | 516 | - domain: bubble.email 517 | url: https://bubble.email 518 | size: 421.0 519 | last_checked: 2022-07-20 520 | 521 | - domain: buchh.org 522 | url: https://buchh.org/ 523 | size: 4.7 524 | last_checked: 2022-05-15 525 | 526 | - domain: buhocms.org 527 | url: https://buhocms.org/ 528 | size: 206 529 | last_checked: 2023-03-14 530 | 531 | - domain: burak.mulayim.app 532 | url: https://burak.mulayim.app/ 533 | size: 88 534 | last_checked: 2023-02-26 535 | 536 | - domain: c.har.li 537 | url: https://c.har.li/e/ 538 | size: 148 539 | last_checked: 2023-03-05 540 | 541 | - domain: c1.fi 542 | url: https://c1.fi/about?lang=en 543 | size: 79.0 544 | last_checked: 2023-01-19 545 | 546 | - domain: cahaba-ts.com 547 | url: https://cahaba-ts.com/ 548 | size: 167 549 | last_checked: 2022-05-13 550 | 551 | - domain: caliandro.de 552 | url: https://caliandro.de/ 553 | size: 163 554 | last_checked: 2022-05-15 555 | 556 | - domain: calotte.ca 557 | url: https://calotte.ca/ 558 | size: 180 559 | last_checked: 2023-02-15 560 | 561 | - domain: canistop.net 562 | url: https://canistop.net/ 563 | size: 189 564 | last_checked: 2022-05-15 565 | 566 | - domain: canwe.dev 567 | url: https://canwe.dev/ 568 | size: 64.8 569 | last_checked: 2022-10-23 570 | 571 | - domain: caraudioinc.com 572 | url: http://caraudioinc.com/ 573 | size: 338 574 | last_checked: 2022-02-11 575 | 576 | - domain: castorisdead.xyz 577 | url: https://castorisdead.xyz 578 | size: 48.1 579 | last_checked: 2023-01-24 580 | 581 | - domain: catdrout.xyz 582 | url: https://catdrout.xyz/ 583 | size: 140 584 | last_checked: 2022-09-12 585 | 586 | - domain: cbaca.blog 587 | url: https://cbaca.blog/ 588 | size: 46.7 589 | last_checked: 2022-11-16 590 | 591 | - domain: cbrueggenolte.de 592 | url: https://cbrueggenolte.de/ 593 | size: 174 594 | last_checked: 2022-01-26 595 | 596 | - domain: ccsleep.net 597 | url: http://ccsleep.net/ 598 | size: 5.0 599 | last_checked: 2022-03-19 600 | 601 | - domain: celeste.exposed 602 | url: https://celeste.exposed/ 603 | size: 293 604 | last_checked: 2022-03-16 605 | 606 | - domain: centiskor.ch 607 | url: https://centiskor.ch/ 608 | size: 66.4 609 | last_checked: 2023-08-29 610 | 611 | - domain: cheng.bearblog.dev 612 | url: https://cheng.bearblog.dev/ 613 | size: 5.71 614 | last_checked: 2023-03-11 615 | 616 | - domain: cheziceman.fr 617 | url: https://cheziceman.fr/ 618 | size: 25.6 619 | last_checked: 2023-08-01 620 | 621 | - domain: chibilinks.com 622 | url: https://chibilinks.com/ 623 | size: 17.1 624 | last_checked: 2022-09-28 625 | 626 | - domain: chimbosonic.com 627 | url: https://chimbosonic.com/ 628 | size: 43.7 629 | last_checked: 2023-04-21 630 | 631 | - domain: chino.is-a.dev 632 | url: https://chino.is-a.dev/ 633 | size: 254 634 | last_checked: 2023-08-01 635 | 636 | - domain: chriskoehnke.com 637 | url: https://chriskoehnke.com 638 | size: 98 639 | last_checked: 2023-08-03 640 | 641 | - domain: christianoliff.com 642 | url: https://christianoliff.com/ 643 | size: 420 644 | last_checked: 2022-11-01 645 | 646 | - domain: chriswiegman.com 647 | url: https://chriswiegman.com/ 648 | size: 72.8 649 | last_checked: 2022-02-20 650 | 651 | - domain: cipirit.netlify.app 652 | url: https://cipirit.netlify.app 653 | size: 246 654 | last_checked: 2023-05-21 655 | 656 | - domain: citizen428.net 657 | url: https://citizen428.net/ 658 | size: 22.9 659 | last_checked: 2022-04-26 660 | 661 | - domain: cleberg.net 662 | url: https://cleberg.net/ 663 | size: 5.9 664 | last_checked: 2023-05-22 665 | 666 | - domain: cli.club 667 | url: https://cli.club/ 668 | size: 25.5 669 | last_checked: 2022-07-13 670 | 671 | - domain: closedgl2.github.io 672 | url: https://closedgl2.github.io/ 673 | size: 8.2 674 | last_checked: 2022-01-21 675 | 676 | - domain: clubhouse.boxpiper.com 677 | url: https://clubhouse.boxpiper.com/ 678 | size: 120 679 | last_checked: 2022-05-15 680 | 681 | - domain: cmdln.org 682 | url: https://cmdln.org 683 | size: 434 684 | last_checked: 2022-05-15 685 | 686 | - domain: code.strigo.cc 687 | url: https://code.strigo.cc/ 688 | size: 128 689 | last_checked: 2023-06-12 690 | 691 | - domain: codetheweb.blog 692 | url: https://codetheweb.blog/ 693 | size: 472 694 | last_checked: 2022-05-15 695 | 696 | - domain: codevoid.de 697 | url: https://codevoid.de/ 698 | size: 10.8 699 | last_checked: 2022-04-26 700 | 701 | - domain: codingbobby.xyz 702 | url: https://codingbobby.xyz/ 703 | size: 164 704 | last_checked: 2022-05-06 705 | 706 | - domain: codingotaku.com 707 | url: https://codingotaku.com/ 708 | size: 22.6 709 | last_checked: 2022-05-06 710 | 711 | - domain: colincogle.name 712 | url: https://colincogle.name/ 713 | size: 29.9 714 | last_checked: 2023-07-07 715 | 716 | - domain: conorknowles.com 717 | url: https://conorknowles.com/ 718 | size: 5.08 719 | last_checked: 2022-01-20 720 | 721 | - domain: consoom.soy 722 | url: https://consoom.soy/ 723 | size: 5.3 724 | last_checked: 2022-04-26 725 | 726 | - domain: control.org 727 | url: https://control.org/ 728 | size: 154 729 | last_checked: 2022-05-15 730 | 731 | - domain: conway.scot 732 | url: https://conway.scot/ 733 | size: 84.9 734 | last_checked: 2023-02-10 735 | 736 | - domain: coopermatt.com 737 | url: https://coopermatt.com/ 738 | size: 360 739 | last_checked: 2022-04-26 740 | 741 | - domain: cri.dev 742 | url: https://cri.dev/ 743 | size: 30.2 744 | last_checked: 2022-04-26 745 | 746 | - domain: crooked.ink 747 | url: https://crooked.ink 748 | size: 428 749 | last_checked: 2022-05-20 750 | 751 | - domain: ctrl-c.club 752 | url: https://ctrl-c.club/ 753 | size: 115 754 | last_checked: 2022-05-15 755 | 756 | - domain: cujo.casa 757 | url: https://cujo.casa/ 758 | size: 28.4 759 | last_checked: 2023-06-16 760 | 761 | - domain: culp.dev 762 | url: https://culp.dev/ 763 | size: 48.1 764 | last_checked: 2022-05-15 765 | 766 | - domain: curiositry.com 767 | url: https://www.curiositry.com/ 768 | size: 189 769 | last_checked: 2022-05-15 770 | 771 | - domain: cweagans.net 772 | url: https://www.cweagans.net/ 773 | size: 245 774 | last_checked: 2023-01-20 775 | 776 | - domain: cyber-diocletian.github.io 777 | url: https://cyber-diocletian.github.io/ 778 | size: 47.3 779 | last_checked: 2022-05-15 780 | 781 | - domain: cyberarm.dev 782 | url: https://cyberarm.dev/ 783 | size: 11.4 784 | last_checked: 2022-04-26 785 | 786 | - domain: cyberfarmer.xyz 787 | url: https://cyberfarmer.xyz/ 788 | size: 15.0 789 | last_checked: 2022-05-15 790 | 791 | - domain: cycloneblaze.net 792 | url: https://cycloneblaze.net/ 793 | size: 45.0 794 | last_checked: 2022-05-15 795 | 796 | - domain: d-s.sh 797 | url: http://d-s.sh/ 798 | size: 115 799 | last_checked: 2023-03-24 800 | 801 | - domain: daltoncraven.com 802 | url: https://daltoncraven.com/ 803 | size: 317 804 | last_checked: 2022-05-15 805 | 806 | - domain: danaross.dev 807 | url: https://danaross.dev/ 808 | size: 336 809 | last_checked: 2022-02-01 810 | 811 | - domain: daniel-siepmann.de 812 | url: https://daniel-siepmann.de/ 813 | size: 61.3 814 | last_checked: 2022-05-15 815 | 816 | - domain: danielc.dev 817 | url: https://danielc.dev/ 818 | size: 211 819 | last_checked: 2023-10-05 820 | 821 | - domain: danielcuttridge.com 822 | url: https://danielcuttridge.com/ 823 | size: 18.8 824 | last_checked: 2022-04-26 825 | 826 | - domain: danisancas.com 827 | url: https://danisancas.com/ 828 | size: 65.4 829 | last_checked: 2023-02-22 830 | 831 | - domain: danq.me 832 | url: https://danq.me/ 833 | size: 481 834 | last_checked: 2023-08-02 835 | 836 | - domain: dariusz.wieckiewicz.org 837 | url: https://dariusz.wieckiewicz.org/ 838 | size: 392 839 | last_checked: 2022-01-25 840 | 841 | - domain: darktheme.club 842 | url: https://darktheme.club/ 843 | size: 20.5 844 | last_checked: 2022-07-16 845 | 846 | - domain: dataswamp.org 847 | url: https://dataswamp.org/~solene/ 848 | size: 69.5 849 | last_checked: 2022-05-06 850 | 851 | - domain: david.ae 852 | url: https://david.ae/ 853 | size: 364 854 | last_checked: 2022-07-18 855 | 856 | - domain: davidovski.xyz 857 | url: http://davidovski.xyz/ 858 | size: 202 859 | last_checked: 2022-05-15 860 | 861 | - domain: davidrutland.com 862 | url: https://davidrutland.com/ 863 | size: 365 864 | last_checked: 2022-05-15 865 | 866 | - domain: decentnet.github.io 867 | url: https://decentnet.github.io/ 868 | size: 31.2 869 | last_checked: 2022-05-06 870 | 871 | - domain: detektywi.it 872 | url: https://detektywi.it 873 | size: 447 874 | last_checked: 2022-03-12 875 | 876 | - domain: devcara.com 877 | url: https://devcara.com 878 | size: 4.62 879 | last_checked: 2022-06-02 880 | 881 | - domain: devilinside.me 882 | url: https://devilinside.me 883 | size: 326 884 | last_checked: 2022-11-21 885 | 886 | - domain: divriots.com 887 | url: https://divriots.com/ 888 | size: 296 889 | last_checked: 2022-09-13 890 | 891 | - domain: docs.j7k6.org 892 | url: https://docs.j7k6.org/ 893 | size: 75.5 894 | last_checked: 2022-05-15 895 | 896 | - domain: donohoe.dev 897 | url: https://donohoe.dev/ 898 | size: 14.9 899 | last_checked: 2022-05-05 900 | 901 | - domain: dotfilehub.com 902 | url: https://dotfilehub.com/ 903 | size: 7.8 904 | last_checked: 2022-05-05 905 | 906 | - domain: dpsg-toelz.de 907 | url: https://www.dpsg-toelz.de/ 908 | size: 150 909 | last_checked: 2023-08-17 910 | 911 | - domain: drkhsh.at 912 | url: https://drkhsh.at/ 913 | size: 61.0 914 | last_checked: 2023-05-17 915 | 916 | - domain: drwho.virtadpt.net 917 | url: https://drwho.virtadpt.net/ 918 | size: 66.2 919 | last_checked: 2022-04-26 920 | 921 | - domain: duechiacchiere.it 922 | url: https://duechiacchiere.it/ 923 | size: 181 924 | last_checked: 2022-10-11 925 | 926 | - domain: duplitech.fr 927 | url: https://www.duplitech.fr/ 928 | size: 359 929 | last_checked: 2022-04-01 930 | 931 | - domain: dusanmitrovic.xyz 932 | url: https://dusanmitrovic.xyz/ 933 | size: 13.1 934 | last_checked: 2022-05-15 935 | 936 | - domain: dusansimic.me 937 | url: https://dusansimic.me/ 938 | size: 207 939 | last_checked: 2022-04-26 940 | 941 | - domain: dustri.org 942 | url: https://dustri.org/b/ 943 | size: 123 944 | last_checked: 2023-03-01 945 | 946 | - domain: dvergamål.no 947 | url: https://dvergamål.no/ 948 | size: 41.6 949 | last_checked: 2022-05-06 950 | 951 | - domain: ebass.uk 952 | url: https://ebass.uk/ 953 | size: 501 954 | last_checked: 2022-04-26 955 | 956 | - domain: ecliptik.com 957 | url: https://www.ecliptik.com/ 958 | size: 120 959 | last_checked: 2022-03-08 960 | 961 | - domain: ecotone.selftitled.de 962 | url: https://ecotone.selftitled.de/ 963 | size: 451 964 | last_checked: 2023-05-26 965 | 966 | - domain: eddiex.se 967 | url: https://eddiex.se/ 968 | size: 34.6 969 | last_checked: 2022-05-06 970 | 971 | - domain: editions-du-26-octobre.com 972 | url: https://editions-du-26-octobre.com/ 973 | size: 189 974 | last_checked: 2022-05-15 975 | 976 | - domain: edizyurdakul.com 977 | url: https://edizyurdakul.com/ 978 | size: 442 979 | last_checked: 2022-04-24 980 | 981 | - domain: edleeman.co.uk 982 | url: https://edleeman.co.uk/ 983 | size: 238 984 | last_checked: 2022-05-15 985 | 986 | - domain: eg-zine.cf 987 | url: https://eg-zine.cf/ 988 | size: 13.1 989 | last_checked: 2023-05-02 990 | 991 | - domain: eilles.xyz 992 | url: https://eilles.xyz/ 993 | size: 6.86 994 | last_checked: 2023-09-14 995 | 996 | - domain: eink.link 997 | url: https://eink.link/ 998 | size: 7.5 999 | last_checked: 2022-05-05 1000 | 1001 | - domain: eklausmeier.goip.de 1002 | url: https://eklausmeier.goip.de/ 1003 | size: 27.9 1004 | last_checked: 2023-05-17 1005 | 1006 | - domain: ekuttan.me 1007 | url: http://ekuttan.me/ 1008 | size: 192 1009 | last_checked: 2022-08-24 1010 | 1011 | - domain: eliakr.github.io 1012 | url: https://eliakr.github.io/moriacalc/thetiki.html 1013 | size: 96.8 1014 | last_checked: 2023-02-12 1015 | 1016 | - domain: elinvention.ovh 1017 | url: https://elinvention.ovh/ 1018 | size: 396 1019 | last_checked: 2022-05-06 1020 | 1021 | - domain: elisttm.space 1022 | url: https://elisttm.space/ 1023 | size: 66.8 1024 | last_checked: 2022-05-19 1025 | 1026 | - domain: elrido.dssr.ch 1027 | url: https://elrido.dssr.ch/ 1028 | size: 137.5 1029 | last_checked: 2022-02-05 1030 | 1031 | - domain: emanoel.pro.br 1032 | url: https://emanoel.pro.br 1033 | size: 129 1034 | last_checked: 2022-11-08 1035 | 1036 | - domain: emanuelpina.pt 1037 | url: https://emanuelpina.pt/ 1038 | size: 95.8 1039 | last_checked: 2022-06-05 1040 | 1041 | - domain: emman.dev 1042 | url: https://emman.dev 1043 | size: 481 1044 | last_checked: 2022-10-05 1045 | 1046 | - domain: enesergun.net 1047 | url: https://enesergun.net 1048 | size: 83.9 1049 | last_checked: 2022-11-21 1050 | 1051 | - domain: eportfoliot.redu.fi/eportfoliot/juusokekonen/ 1052 | url: https://eportfoliot.redu.fi/eportfoliot/juusokekonen/ 1053 | size: 317 1054 | last_checked: 2022-08-29 1055 | 1056 | - domain: ericgardner.info 1057 | url: https://ericgardner.info/ 1058 | size: 73.7 1059 | last_checked: 2022-05-15 1060 | 1061 | - domain: erickouassi.com 1062 | url: https://erickouassi.com/ 1063 | size: 50.7 1064 | last_checked: 2022-09-17 1065 | 1066 | - domain: ericz.me 1067 | url: https://ericz.me/ 1068 | size: 61.2 1069 | last_checked: 2023-10-03 1070 | 1071 | - domain: erikjohannes.no 1072 | url: https://erikjohannes.no/ 1073 | size: 6.5 1074 | last_checked: 2022-05-05 1075 | 1076 | - domain: esta.la 1077 | url: https://esta.la/ 1078 | size: 471 1079 | last_checked: 2023-03-23 1080 | 1081 | - domain: ethan.link 1082 | url: https://ethan.link/ 1083 | size: 20.8 1084 | last_checked: 2022-05-15 1085 | 1086 | - domain: ethanyoo.com 1087 | url: https://www.ethanyoo.com/ 1088 | size: 33.0 1089 | last_checked: 2022-05-05 1090 | 1091 | - domain: evantravers.com 1092 | url: http://evantravers.com/ 1093 | size: 474 1094 | last_checked: 2022-04-26 1095 | 1096 | - domain: excus.eu 1097 | url: https://excus.eu/ 1098 | size: 93.7 1099 | last_checked: 2022-09-24 1100 | 1101 | - domain: extension.ninja 1102 | url: https://www.extension.ninja/ 1103 | size: 78 1104 | last_checked: 2022-03-06 1105 | 1106 | - domain: ezra.website 1107 | url: https://ezra.website/ 1108 | size: 159 1109 | last_checked: 2022-05-15 1110 | 1111 | - domain: fahim.pages.dev 1112 | url: https://fahim.pages.dev/ 1113 | size: 378 1114 | last_checked: 2022-03-06 1115 | 1116 | - domain: fanael.github.io 1117 | url: https://fanael.github.io/ 1118 | size: 32.8 1119 | last_checked: 2022-05-06 1120 | 1121 | - domain: federicoleva.eu 1122 | url: https://federicoleva.eu/ 1123 | size: 273 1124 | last_checked: 2022-05-29 1125 | 1126 | - domain: fedi.dev 1127 | url: https://fedi.dev/ 1128 | size: 237 1129 | last_checked: 2022-05-15 1130 | 1131 | - domain: fem.lol 1132 | url: https://fem.lol/ 1133 | size: 302 1134 | last_checked: 2023-09-22 1135 | 1136 | - domain: ferib.dev 1137 | url: https://ferib.dev/ 1138 | size: 197 1139 | last_checked: 2022-03-24 1140 | 1141 | - domain: ff99cc.art 1142 | url: https://ff99cc.art/ 1143 | size: 55.8 1144 | last_checked: 2023-02-02 1145 | 1146 | - domain: figcat.com 1147 | url: https://figcat.com/ 1148 | size: 96 1149 | last_checked: 2023-01-05 1150 | 1151 | - domain: filbertsalim.codeberg.page 1152 | url: https://filbertsalim.codeberg.page/ 1153 | size: 6.8 1154 | last_checked: 2022-05-15 1155 | 1156 | - domain: flatpackapps.com 1157 | url: https://flatpackapps.com/ 1158 | size: 29.9 1159 | last_checked: 2022-04-26 1160 | 1161 | - domain: fmartingr.com 1162 | url: https://fmartingr.com 1163 | size: 143 1164 | last_checked: 2022-03-13 1165 | 1166 | - domain: forgetful.dev 1167 | url: https://forgetful.dev/ 1168 | size: 406 1169 | last_checked: 2023-08-24 1170 | 1171 | - domain: format-express.dev 1172 | url: https://format-express.dev/ 1173 | size: 180 1174 | last_checked: 2022-05-15 1175 | 1176 | - domain: fossdd.codeberg.page 1177 | url: https://fossdd.codeberg.page/ 1178 | size: 7.4 1179 | last_checked: 2022-05-05 1180 | 1181 | - domain: fossphones.com 1182 | url: https://fossphones.com/ 1183 | size: 4.8 1184 | last_checked: 2022-04-26 1185 | 1186 | - domain: freebee.fun 1187 | url: https://freebee.fun/play/ 1188 | size: 36.0 1189 | last_checked: 2022-05-06 1190 | 1191 | - domain: freyx.co 1192 | url: http://freyx.co/ 1193 | size: 421 1194 | last_checked: 2022-05-15 1195 | 1196 | - domain: fullbl.it 1197 | url: https://fullbl.it 1198 | size: 12.1 1199 | last_checked: 2022-11-02 1200 | 1201 | - domain: funnylookinhat.com 1202 | url: https://funnylookinhat.com/ 1203 | size: 7.1 1204 | last_checked: 2022-05-05 1205 | 1206 | - domain: funs.life 1207 | url: https://funs.life/ 1208 | size: 37.6 1209 | last_checked: 2022-08-01 1210 | 1211 | - domain: fz1.space 1212 | url: https://fz1.space/ 1213 | size: 3.78 1214 | last_checked: 2022-10-11 1215 | 1216 | - domain: gabnotes.org 1217 | url: https://gabnotes.org/ 1218 | size: 95.5 1219 | last_checked: 2023-03-24 1220 | 1221 | - domain: gadonias.com 1222 | url: https://gadonias.com/ 1223 | size: 220 1224 | last_checked: 2022-05-15 1225 | 1226 | - domain: gaikanomer9.com 1227 | url: https://gaikanomer9.com/ 1228 | size: 5.4 1229 | last_checked: 2022-05-15 1230 | 1231 | - domain: ged296123.gitlab.io/yunbere 1232 | url: https://ged296123.gitlab.io/yunbere 1233 | size: 32.8 1234 | last_checked: 2022-04-26 1235 | 1236 | - domain: getanamewithapun.pages.dev 1237 | url: https://getanamewithapun.pages.dev 1238 | size: 21.5 1239 | last_checked: 2022-05-15 1240 | 1241 | - domain: getwheat.com 1242 | url: https://getwheat.ca/ 1243 | size: 373 1244 | last_checked: 2022-02-18 1245 | 1246 | - domain: gitmoji.kaki87.net 1247 | url: https://gitmoji.kaki87.net/ 1248 | size: 153 1249 | last_checked: 2023-01-21 1250 | 1251 | - domain: godsip.club 1252 | url: https://godsip.club/ 1253 | size: 232 1254 | last_checked: 2022-05-21 1255 | 1256 | - domain: goel.io 1257 | url: http://goel.io/ 1258 | size: 58.2 1259 | last_checked: 2022-05-15 1260 | 1261 | - domain: goestathomas.de 1262 | url: http://goestathomas.de/ 1263 | size: 56.8 1264 | last_checked: 2022-03-19 1265 | 1266 | - domain: golang.cafe 1267 | url: https://golang.cafe/ 1268 | size: 167 1269 | last_checked: 2022-01-30 1270 | 1271 | - domain: groganburners.ie 1272 | url: https://www.groganburners.ie/ 1273 | size: 472 1274 | last_checked: 2023-03-01 1275 | 1276 | - domain: groundzeno.net 1277 | url: https://groundzeno.net/ 1278 | size: 9.1 1279 | last_checked: 2022-05-14 1280 | 1281 | - domain: gryffyn.io 1282 | url: https://gryffyn.io 1283 | size: 57.2 1284 | last_checked: 2022-07-16 1285 | 1286 | - domain: gsthnz.com 1287 | url: https://gsthnz.com/ 1288 | size: 4.2 1289 | last_checked: 2022-05-06 1290 | 1291 | - domain: gtrr.artemislena.eu 1292 | url: https://gtrr.artemislena.eu/ 1293 | size: 4.7 1294 | last_checked: 2022-05-15 1295 | 1296 | - domain: gud.one 1297 | url: https://gud.one/ 1298 | size: 155 1299 | last_checked: 2022-05-15 1300 | 1301 | - domain: gunnar.se 1302 | url: https://gunnar.se/ 1303 | size: 48.1 1304 | last_checked: 2022-12-15 1305 | 1306 | - domain: guts.plus 1307 | url: https://guts.plus/ 1308 | size: 73.8 1309 | last_checked: 2022-05-15 1310 | 1311 | - domain: gwaymark.co.uk 1312 | url: https://www.gwaymark.co.uk 1313 | size: 11.2 1314 | last_checked: 2022-04-26 1315 | 1316 | - domain: habedieeh.re 1317 | url: https://www.habedieeh.re/ 1318 | size: 26.6 1319 | last_checked: 2022-10-08 1320 | 1321 | - domain: hashtagueule.fr 1322 | url: https://hashtagueule.fr 1323 | size: 59.5 1324 | last_checked: 2022-05-06 1325 | 1326 | - domain: havenweb.org 1327 | url: https://havenweb.org/ 1328 | size: 60.1 1329 | last_checked: 2022-02-24 1330 | 1331 | - domain: healthchecks.io 1332 | url: https://healthchecks.io/ 1333 | size: 435 1334 | last_checked: 2023-02-18 1335 | 1336 | - domain: hendrikharlichs.de 1337 | url: https://hendrikharlichs.de/ 1338 | size: 203 1339 | last_checked: 2023-09-26 1340 | 1341 | - domain: her.esy.fun 1342 | url: https://her.esy.fun/ 1343 | size: 24.3 1344 | last_checked: 2022-09-17 1345 | 1346 | - domain: her.st 1347 | url: https://her.st/ 1348 | size: 128 1349 | last_checked: 2022-08-29 1350 | 1351 | - domain: herman.bearblog.dev 1352 | url: https://herman.bearblog.dev/ 1353 | size: 6.5 1354 | last_checked: 2022-09-12 1355 | 1356 | - domain: hjr265.me 1357 | url: https://hjr265.me/ 1358 | size: 111 1359 | last_checked: 2022-11-24 1360 | 1361 | - domain: hobospider132.github.io 1362 | url: https://hobospider132.github.io/ 1363 | size: 35.4 1364 | last_checked: 2023-03-15 1365 | 1366 | - domain: holory.fr 1367 | url: https://holory.fr/ 1368 | size: 446 1369 | last_checked: 2022-04-05 1370 | 1371 | - domain: httpguides.com 1372 | url: https://httpguides.com 1373 | size: 10.4 1374 | last_checked: 2023-08-30 1375 | 1376 | - domain: hugo-mechiche.com 1377 | url: https://hugo-mechiche.com/ 1378 | size: 55.2 1379 | last_checked: 2022-05-15 1380 | 1381 | - domain: hugo.soucy.cc 1382 | url: https://hugo.soucy.cc/ 1383 | size: 44.7 1384 | last_checked: 2023-03-15 1385 | 1386 | - domain: hugocisneros.com 1387 | url: https://hugocisneros.com/ 1388 | size: 75.9 1389 | last_checked: 2022-01-29 1390 | 1391 | - domain: huma.id 1392 | url: https://huma.id/ 1393 | size: 9.43 1394 | last_checked: 2022-05-31 1395 | 1396 | - domain: hund.tty1.se 1397 | url: https://hund.tty1.se/ 1398 | size: 17.8 1399 | last_checked: 2022-03-11 1400 | 1401 | - domain: hybras.dev 1402 | url: https://hybras.dev/ 1403 | size: 302 1404 | last_checked: 2023-07-28 1405 | 1406 | - domain: hytracer.ink 1407 | url: https://hytracer.ink 1408 | size: 185 1409 | last_checked: 2023-07-10 1410 | 1411 | - domain: i21k.de 1412 | url: https://i21k.de/ 1413 | size: 7.0 1414 | last_checked: 2022-05-06 1415 | 1416 | - domain: ianmuchina.com 1417 | url: https://ianmuchina.com/ 1418 | size: 44.9 1419 | last_checked: 2022-05-06 1420 | 1421 | - domain: ibra.github.io 1422 | url: https://ibra.github.io/ 1423 | size: 194.0 1424 | last_checked: 2022-04-21 1425 | 1426 | - domain: ig.emnace.org 1427 | url: https://ig.emnace.org/ 1428 | size: 3.5 1429 | last_checked: 2023-07-07 1430 | 1431 | - domain: ig.kaki87.net 1432 | url: https://ig.kaki87.net/ 1433 | size: 353 1434 | last_checked: 2023-01-21 1435 | 1436 | - domain: ihsaan.au 1437 | url: http://ihsaan.au/ 1438 | size: 394.0 1439 | last_checked: 2021-11-06 1440 | 1441 | - domain: imsky.co 1442 | url: https://imsky.co/ 1443 | size: 63.7 1444 | last_checked: 2022-08-08 1445 | 1446 | - domain: indiachat.netlify.app 1447 | url: https://indiachat.netlify.app/ 1448 | size: 213.0 1449 | last_checked: 2022-04-08 1450 | 1451 | - domain: ineedmore.coffee 1452 | url: https://ineedmore.coffee/ 1453 | size: 8.2 1454 | last_checked: 2023-04-29 1455 | 1456 | - domain: itsnothing.net 1457 | url: https://itsnothing.net/ 1458 | size: 485 1459 | last_checked: 2023-08-16 1460 | 1461 | - domain: ivyfanchiang.ca 1462 | url: https://ivyfanchiang.ca/ 1463 | size: 191 1464 | last_checked: 2023-07-11 1465 | 1466 | - domain: jackiechalarca.org 1467 | url: https://jackiechalarca.org/ 1468 | size: 18.2 1469 | last_checked: 2023-09-27 1470 | 1471 | - domain: jacksonchen666.com 1472 | url: https://jacksonchen666.com/ 1473 | size: 11.0 1474 | last_checked: 2023-03-10 1475 | 1476 | - domain: jae.fi 1477 | url: https://jae.fi/ 1478 | size: 32.2 1479 | last_checked: 2022-08-24 1480 | 1481 | - domain: jakobbouchard.dev 1482 | url: https://jakobbouchard.dev/ 1483 | size: 263 1484 | last_checked: 2023-09-26 1485 | 1486 | - domain: jakobmaier.at 1487 | url: https://www.jakobmaier.at 1488 | size: 5.13 1489 | last_checked: 2022-01-29 1490 | 1491 | - domain: jamesgreenblue.com 1492 | url: https://jamesgreenblue.com/ 1493 | size: 102 1494 | last_checked: 2023-06-01 1495 | 1496 | - domain: jamesmead.org 1497 | url: http://jamesmead.org/ 1498 | size: 30.9 1499 | last_checked: 2023-05-19 1500 | 1501 | - domain: jamesst.one 1502 | url: https://jamesst.one 1503 | size: 4.36 1504 | last_checked: 2022-09-11 1505 | 1506 | - domain: jan.alphadev.net 1507 | url: https://jan.alphadev.net/ 1508 | size: 76.7 1509 | last_checked: 2023-08-02 1510 | 1511 | - domain: jasonthai.me 1512 | url: https://jasonthai.me/ 1513 | size: 8.28 1514 | last_checked: 2022-07-03 1515 | 1516 | - domain: jaxson.neocities.org 1517 | url: https://jaxson.neocities.org/ 1518 | size: 7.67 1519 | last_checked: 2022-08-06 1520 | 1521 | - domain: jcelerier.name 1522 | url: https://jcelerier.name/ 1523 | size: 72.5 1524 | last_checked: 2022-01-29 1525 | 1526 | - domain: jds.work 1527 | url: https://jds.work/ 1528 | size: 47.0 1529 | last_checked: 2022-05-06 1530 | 1531 | - domain: jeffhuang.com 1532 | url: https://jeffhuang.com/ 1533 | size: 240 1534 | last_checked: 2022-05-15 1535 | 1536 | - domain: jeremysarber.com 1537 | url: https://jeremysarber.com/ 1538 | size: 10.1 1539 | last_checked: 2022-04-26 1540 | 1541 | - domain: jf17.ru 1542 | url: https://jf17.ru/ 1543 | size: 7.3 1544 | last_checked: 2022-05-06 1545 | 1546 | - domain: jlo64.github.io 1547 | url: https://jlo64.github.io/ 1548 | size: 75 1549 | last_checked: 2023-05-05 1550 | 1551 | - domain: jloh.co 1552 | url: https://jloh.co/ 1553 | size: 108 1554 | last_checked: 2022-05-15 1555 | 1556 | - domain: jmtd.net 1557 | url: https://jmtd.net/ 1558 | size: 239 1559 | last_checked: 2022-03-12 1560 | 1561 | - domain: joanybuclon.com 1562 | url: https://joanybuclon.com/ 1563 | size: 433 1564 | last_checked: 2023-03-30 1565 | 1566 | - domain: joelchrono12.xyz 1567 | url: https://joelchrono12.xyz/ 1568 | size: 41.6 1569 | last_checked: 2022-06-16 1570 | 1571 | - domain: johanv.xyz 1572 | url: https://johanv.xyz/ 1573 | size: 416 1574 | last_checked: 2022-05-06 1575 | 1576 | - domain: john-doe.neocities.org 1577 | url: https://john-doe.neocities.org/ 1578 | size: 24.0 1579 | last_checked: 2022-05-06 1580 | 1581 | - domain: jonhnnyweslley.net 1582 | url: https://jonhnnyweslley.net/ 1583 | size: 272 1584 | last_checked: 2022-03-12 1585 | 1586 | - domain: joodaloop.com 1587 | url: https://joodaloop.com/ 1588 | size: 143 1589 | last_checked: 2022-12-22 1590 | - domain: jorp.xyz 1591 | url: https://jorp.xyz/ 1592 | size: 281 1593 | last_checked: 2022-04-26 1594 | 1595 | - domain: joshkasuboski.com 1596 | url: https://joshkasuboski.com/ 1597 | size: 163 1598 | last_checked: 2022-04-26 1599 | 1600 | - domain: joshualiu.org 1601 | url: https://www.joshualiu.org/ 1602 | size: 110 1603 | last_checked: 2023-07-12 1604 | 1605 | - domain: josias.dev 1606 | url: https://josias.dev/ 1607 | size: 38.8 1608 | last_checked: 2022-03-12 1609 | 1610 | - domain: jothiprasath.com 1611 | url: https://jothiprasath.com 1612 | size: 376 1613 | last_checked: 2022-07-09 1614 | 1615 | - domain: jouissance.net 1616 | url: https://www.jouissance.net 1617 | size: 25.5 1618 | last_checked: 2023-01-11 1619 | 1620 | - domain: journal.gudulin.com 1621 | url: https://journal.gudulin.com/ 1622 | size: 11.4 1623 | last_checked: 2022-05-06 1624 | 1625 | - domain: jpdb.io 1626 | url: https://jpdb.io/ 1627 | size: 348 1628 | last_checked: 2022-04-26 1629 | 1630 | - domain: jscd.pw 1631 | url: https://jscd.pw/ 1632 | size: 71.6 1633 | last_checked: 2022-03-12 1634 | 1635 | - domain: jundimubarok.com 1636 | url: https://jundimubarok.com/ 1637 | size: 58.8 1638 | last_checked: 2022-05-05 1639 | 1640 | - domain: kaki87.net 1641 | url: https://kaki87.net/ 1642 | size: 346 1643 | last_checked: 2023-06-07 1644 | 1645 | - domain: karl.berlin 1646 | url: https://www.karl.berlin/ 1647 | size: 3.0 1648 | last_checked: 2022-04-26 1649 | 1650 | - domain: kaukokaipuu.xyz 1651 | url: https://www.kaukokaipuu.xyz/ 1652 | size: 89.0 1653 | last_checked: 2023-09-24 1654 | 1655 | - domain: kealanparr.com 1656 | url: https://kealanparr.com/ 1657 | size: 388 1658 | last_checked: 2022-09-17 1659 | 1660 | - domain: kevquirk.com 1661 | url: https://kevquirk.com 1662 | size: 59.5 1663 | last_checked: 2023-03-22 1664 | 1665 | - domain: kidl.at 1666 | url: https://kidl.at/ 1667 | size: 11.5 1668 | last_checked: 2022-05-15 1669 | 1670 | - domain: kimchiii.space 1671 | url: https://kimchiii.space/ 1672 | size: 483 1673 | last_checked: 2023-09-08 1674 | 1675 | - domain: kinduff.com 1676 | url: https://kinduff.com/ 1677 | size: 215 1678 | last_checked: 2022-09-12 1679 | 1680 | - domain: kirillunlimited.com 1681 | url: https://kirillunlimited.com/ 1682 | size: 138 1683 | last_checked: 2023-08-07 1684 | 1685 | - domain: kishvanchee.com 1686 | url: https://kishvanchee.com/ 1687 | size: 11.5 1688 | last_checked: 2022-04-26 1689 | 1690 | - domain: kj7nzl.net 1691 | url: https://www.kj7nzl.net/ 1692 | size: 30.0 1693 | last_checked: 2022-04-26 1694 | 1695 | - domain: klokmork.com 1696 | url: https://klokmork.com/ 1697 | size: 197 1698 | last_checked: 2022-03-12 1699 | 1700 | - domain: konstantintutsch.de 1701 | url: https://konstantintutsch.de/ 1702 | size: 73.7 1703 | last_checked: 2023-09-16 1704 | 1705 | - domain: kraktoos.com 1706 | url: https://kraktoos.com/ 1707 | size: 23.8 1708 | last_checked: 2023-04-29 1709 | 1710 | - domain: kru.run 1711 | url: https://kru.run/ 1712 | size: 11.8 1713 | last_checked: 2023-06-20 1714 | 1715 | - domain: krzysztofjankowski.com 1716 | url: https://krzysztofjankowski.com/ 1717 | size: 131 1718 | last_checked: 2022-01-30 1719 | 1720 | - domain: kytta.dev 1721 | url: https://www.kytta.dev/ 1722 | size: 12.2 1723 | last_checked: 2022-01-13 1724 | 1725 | - domain: lazy-gamer.net 1726 | url: https://lazy-gamer.net/ 1727 | size: 111 1728 | last_checked: 2022-05-05 1729 | 1730 | - domain: lectupedia.com 1731 | url: https://lectupedia.com/ 1732 | size: 42.3 1733 | last_checked: 2022-05-06 1734 | 1735 | - domain: lichess.org 1736 | url: https://lichess.org/ 1737 | size: 495 1738 | last_checked: 2022-05-06 1739 | 1740 | - domain: lighthouse16.com 1741 | url: https://lighthouse16.com/ 1742 | size: 48.1 1743 | last_checked: 2022-04-26 1744 | 1745 | - domain: littlezhang.com 1746 | url: https://littlezhang.com/ 1747 | size: 31.2 1748 | last_checked: 2022-03-12 1749 | 1750 | - domain: lkhrs.com 1751 | url: https://www.lkhrs.com/ 1752 | size: 232 1753 | last_checked: 2022-03-28 1754 | 1755 | - domain: log.pfad.fr 1756 | url: https://log.pfad.fr/ 1757 | size: 6 1758 | last_checked: 2023-07-06 1759 | 1760 | - domain: loganmarchione.com 1761 | url: https://loganmarchione.com/ 1762 | size: 98 1763 | last_checked: 2022-04-15 1764 | 1765 | - domain: luana.cc 1766 | url: https://luana.cc/ 1767 | size: 12.4 1768 | last_checked: 2022-05-06 1769 | 1770 | - domain: lucienbill.fr 1771 | url: https://www.lucienbill.fr 1772 | size: 157 1773 | last_checked: 2022-05-15 1774 | 1775 | - domain: lukealexdavis.co.uk 1776 | url: https://lukealexdavis.co.uk/ 1777 | size: 17.8 1778 | last_checked: 2023-04-21 1779 | 1780 | - domain: lukerissacher.com 1781 | url: https://lukerissacher.com/blog 1782 | size: 161 1783 | last_checked: 2022-01-30 1784 | 1785 | - domain: lukesempire.com 1786 | url: https://lukesempire.com/ 1787 | size: 77.4 1788 | last_checked: 2022-05-14 1789 | 1790 | - domain: lunar.icu 1791 | url: https://lunar.icu/ 1792 | size: 218 1793 | last_checked: 2023-07-13 1794 | 1795 | - domain: lushka.al 1796 | url: https://lushka.al/ 1797 | size: 20.5 1798 | last_checked: 2022-03-09 1799 | 1800 | - domain: lx862.com 1801 | url: https://lx862.com/ 1802 | size: 146 1803 | last_checked: 2023-02-18 1804 | 1805 | - domain: lyndon.codes 1806 | url: https://lyndon.codes/ 1807 | size: 94.8 1808 | last_checked: 2022-03-12 1809 | 1810 | - domain: m-chrzan.xyz 1811 | url: https://m-chrzan.xyz/ 1812 | size: 3.9 1813 | last_checked: 2022-05-06 1814 | 1815 | - domain: madelinepritchard.net 1816 | url: https://madelinepritchard.net/ 1817 | size: 144 1818 | last_checked: 2022-10-14 1819 | 1820 | - domain: magicznylas.pl 1821 | url: https://www.magicznylas.pl/ 1822 | size: 42.1 1823 | last_checked: 2023-07-01 1824 | 1825 | - domain: manuelmoreale.com 1826 | url: https://manuelmoreale.com/ 1827 | size: 45.4 1828 | last_checked: 2022-05-15 1829 | 1830 | - domain: markosaric.com 1831 | url: https://markosaric.com/ 1832 | size: 352 1833 | last_checked: 2022-03-17 1834 | 1835 | - domain: markus-haack.com 1836 | url: https://markus-haack.com/ 1837 | size: 230 1838 | last_checked: 2023-04-12 1839 | 1840 | - domain: martin.baillie.id 1841 | url: https://martin.baillie.id/ 1842 | size: 127 1843 | last_checked: 2022-03-17 1844 | 1845 | - domain: mataroa.blog 1846 | url: https://mataroa.blog/ 1847 | size: 21.3 1848 | last_checked: 2022-05-06 1849 | 1850 | - domain: mathijs.vgorcum.com 1851 | url: https://mathijs.vgorcum.com/ 1852 | size: 81.6 1853 | last_checked: 2023-09-14 1854 | 1855 | - domain: matt-smiley 1856 | url: https://matt-smiley.com/ 1857 | size: 48.6 1858 | last_checked: 2022-03-25 1859 | 1860 | - domain: matthew.science 1861 | url: https://matthew.science/ 1862 | size: 276 1863 | last_checked: 2022-05-06 1864 | 1865 | - domain: matthewayers.com 1866 | url: https://matthewayers.com/ 1867 | size: 104 1868 | last_checked: 2022-04-19 1869 | 1870 | - domain: matthewgraybosch.com 1871 | url: https://www.matthewgraybosch.com/ 1872 | size: 5.8 1873 | last_checked: 2021-12-05 1874 | 1875 | - domain: matthewthom.as 1876 | url: https://www.matthewthom.as/ 1877 | size: 87.0 1878 | last_checked: 2022-08-03 1879 | 1880 | - domain: mattsanetra.uk 1881 | url: https://mattsanetra.uk/ 1882 | size: 226 1883 | last_checked: 2023-03-18 1884 | 1885 | - domain: mawoka.eu 1886 | url: https://mawoka.eu/ 1887 | size: 485 1888 | last_checked: 2022-05-06 1889 | 1890 | - domain: mck.is 1891 | url: https://mck.is/ 1892 | size: 47.9 1893 | last_checked: 2022-05-15 1894 | 1895 | - domain: mees.io 1896 | url: https://mees.io/ 1897 | size: 152 1898 | last_checked: 2022-03-17 1899 | 1900 | - domain: melroy.org 1901 | url: https://melroy.org 1902 | size: 38.4 1903 | last_checked: 2022-05-04 1904 | 1905 | - domain: meribold.org 1906 | url: https://meribold.org/ 1907 | size: 19.9 1908 | last_checked: 2022-05-15 1909 | 1910 | - domain: mha.fi 1911 | url: https://mha.fi/ 1912 | size: 66.9 1913 | last_checked: 2022-05-15 1914 | 1915 | - domain: michel-slm.name 1916 | url: https://michel-slm.name/ 1917 | size: 250 1918 | last_checked: 2022-03-17 1919 | 1920 | - domain: midnight.pub 1921 | url: https://midnight.pub/ 1922 | size: 9.9 1923 | last_checked: 2022-05-06 1924 | 1925 | - domain: miguelpimentel.do 1926 | url: https://miguelpimentel.do/ 1927 | size: 88.1 1928 | last_checked: 2023-08-24 1929 | 1930 | - domain: mikebabb.com 1931 | url: https://mikebabb.com/ 1932 | size: 103 1933 | last_checked: 2022-03-17 1934 | 1935 | - domain: mikestone.me 1936 | url: https://mikestone.me/ 1937 | size: 260 1938 | last_checked: 2022-05-06 1939 | 1940 | - domain: miltsghostrehab.xyz 1941 | url: https://miltsghostrehab.xyz/ 1942 | size: 52.9 1943 | last_checked: 2022-03-17 1944 | 1945 | - domain: minutestomidnight.co.uk 1946 | url: https://minutestomidnight.co.uk 1947 | size: 100 1948 | last_checked: 2022-11-11 1949 | 1950 | - domain: minwiz.com 1951 | url: https://minwiz.com/ 1952 | size: 4.1 1953 | last_checked: 2022-05-06 1954 | 1955 | - domain: mirekdlugosz.com 1956 | url: https://mirekdlugosz.com/ 1957 | size: 294 1958 | last_checked: 2022-08-04 1959 | 1960 | - domain: mizik.sk 1961 | url: https://mizik.sk/ 1962 | size: 9.8 1963 | last_checked: 2022-05-06 1964 | 1965 | - domain: mobilecoverage.co.uk 1966 | url: https://www.mobilecoverage.co.uk 1967 | size: 168 1968 | last_checked: 2022-10-21 1969 | 1970 | - domain: mogwai.be 1971 | url: https://mogwai.be/ 1972 | size: 26.3 1973 | last_checked: 2022-05-06 1974 | 1975 | - domain: momi.ca 1976 | url: https://momi.ca/ 1977 | size: 264 1978 | last_checked: 2022-03-17 1979 | 1980 | - domain: mrmarketingmustache.com 1981 | url: https://mrmarketingmustache.com/ 1982 | size: 66.4 1983 | last_checked: 2022-03-05 1984 | 1985 | - domain: mthia.xdd.moe 1986 | url: https://mthia.xdd.moe/ 1987 | size: 366 1988 | last_checked: 2023-06-18 1989 | 1990 | - domain: mulph.ie 1991 | url: https://mulph.ie/ 1992 | size: 196 1993 | last_checked: 2022-01-31 1994 | 1995 | - domain: murtezayesil.me 1996 | url: https://murtezayesil.me/ 1997 | size: 80 1998 | last_checked: 2022-08-17 1999 | 2000 | - domain: mvion.fr 2001 | url: https://mvion.fr/ 2002 | size: 111 2003 | last_checked: 2022-03-17 2004 | 2005 | - domain: my-flow.com 2006 | url: https://www.my-flow.com/ 2007 | size: 148 2008 | last_checked: 2022-03-17 2009 | 2010 | - domain: mzumquadrat.de 2011 | url: https://mzumquadrat.de/ 2012 | size: 13.2 2013 | last_checked: 2022-05-06 2014 | 2015 | - domain: na20a.neocities.org 2016 | url: https://na20a.neocities.org/ 2017 | size: 9.8 2018 | last_checked: 2022-04-26 2019 | 2020 | - domain: nayuki.io 2021 | url: https://www.nayuki.io/ 2022 | size: 426 2023 | last_checked: 2022-01-30 2024 | 2025 | - domain: ndanes.com 2026 | url: https://ndanes.com/ 2027 | size: 51.5 2028 | last_checked: 2022-05-06 2029 | 2030 | - domain: neilgrogan.com 2031 | url: https://www.neilgrogan.com/ 2032 | size: 418 2033 | last_checked: 2023-03-01 2034 | 2035 | - domain: nelson.cloud 2036 | url: https://nelson.cloud/ 2037 | size: 38.1 2038 | last_checked: 2022-12-28 2039 | 2040 | - domain: nequalsonelifestyle.com 2041 | url: https://nequalsonelifestyle.com/ 2042 | size: 73.5 2043 | last_checked: 2022-04-11 2044 | 2045 | - domain: nest.jakl.one 2046 | url: https://nest.jakl.one/ 2047 | size: 11.7 2048 | last_checked: 2022-05-15 2049 | 2050 | - domain: news.itsjake.me 2051 | url: https://news.itsjake.me/ 2052 | size: 77.2 2053 | last_checked: 2023-09-21 2054 | 2055 | - domain: news.tatooine.club 2056 | url: https://news.tatooine.club 2057 | size: 31.5 2058 | last_checked: 2023-06-09 2059 | 2060 | - domain: newsasfacts.com 2061 | url: https://newsasfacts.com/ 2062 | size: 378 2063 | last_checked: 2022-09-12 2064 | 2065 | - domain: nih.ar 2066 | url: https://nih.ar/ 2067 | size: 3.9 2068 | last_checked: 2022-10-23 2069 | 2070 | - domain: nikhilhenry.vercel.app 2071 | url: https://nikhilhenry.vercel.app/ 2072 | size: 245 2073 | last_checked: 2022-07-19 2074 | 2075 | - domain: nixnet.email 2076 | url: https://nixnet.email/ 2077 | size: 270 2078 | last_checked: 2022-05-15 2079 | 2080 | - domain: nixnet.services 2081 | url: https://nixnet.services/ 2082 | size: 175 2083 | last_checked: 2022-04-26 2084 | 2085 | - domain: no-bs-repairs.com 2086 | url: https://no-bs-repairs.com 2087 | size: 101 2088 | last_checked: 2023-07-23 2089 | 2090 | - domain: no-js.club 2091 | url: https://no-js.club/ 2092 | size: 19.0 2093 | last_checked: 2022-05-04 2094 | 2095 | - domain: noblogo.org 2096 | url: https://noblogo.org/ 2097 | size: 314 2098 | last_checked: 2022-04-26 2099 | 2100 | - domain: nobodyspecial.neocities.org 2101 | url: https://nobodyspecial.neocities.org/ 2102 | size: 8.2 2103 | last_checked: 2022-05-15 2104 | 2105 | - domain: notes.musayev.com 2106 | url: https://notes.musayev.com/ 2107 | size: 32.7 2108 | last_checked: 2023-08-18 2109 | 2110 | - domain: notes.whoibrar.com 2111 | url: https://notes.whoibrar.com 2112 | size: 9.48 2113 | last_checked: 2022-05-07 2114 | 2115 | - domain: notionbackups.com 2116 | url: https://notionbackups.com 2117 | size: 48.3 2118 | last_checked: 2022-03-21 2119 | 2120 | - domain: noulin.net 2121 | url: https://noulin.net/blog 2122 | size: 22.2 2123 | last_checked: 2022-05-15 2124 | 2125 | - domain: obviy.us 2126 | url: https://obviy.us/ 2127 | size: 470 2128 | last_checked: 2023-06-09 2129 | 2130 | - domain: ofearthandacorns.com 2131 | url: https://ofearthandacorns.com/ 2132 | size: 30.2 2133 | last_checked: 2023-02-08 2134 | 2135 | - domain: oh.mg 2136 | url: https://www.oh.mg/ 2137 | size: 25.8 2138 | last_checked: 2022-06-24 2139 | 2140 | - domain: ohheybrian.com 2141 | url: https://ohheybrian.com 2142 | size: 160 2143 | last_checked: 2023-01-28 2144 | 2145 | - domain: oldirtyhacker.com 2146 | url: https://oldirtyhacker.com/ 2147 | size: 119 2148 | last_checked: 2022-03-17 2149 | 2150 | - domain: onekiji.com 2151 | url: https://onekiji.com/ 2152 | size: 20.4 2153 | last_checked: 2023-08-21 2154 | 2155 | - domain: ononoki.org 2156 | url: https://ononoki.org/ 2157 | size: 89.0 2158 | last_checked: 2022-06-25 2159 | 2160 | - domain: order332.com 2161 | url: https://order332.com/ 2162 | size: 372 2163 | last_checked: 2023-06-18 2164 | 2165 | - domain: oscarforner.com 2166 | url: https://oscarforner.com/ 2167 | size: 19.7 2168 | last_checked: 2022-05-06 2169 | 2170 | - domain: osiux.com 2171 | url: https://osiux.com/ 2172 | size: 16.9 2173 | last_checked: 2022-05-15 2174 | 2175 | - domain: otgt.us.eu.org 2176 | url: https://otgt.us.eu.org/ 2177 | size: 70.7 2178 | last_checked: 2022-04-11 2179 | 2180 | - domain: paheko.cloud 2181 | url: https://paheko.cloud/ 2182 | size: 156 2183 | last_checked: 2023-08-16 2184 | 2185 | - domain: palashbauri.in 2186 | url: https://palashbauri.in 2187 | size: 32.8 2188 | last_checked: 2022-03-07 2189 | 2190 | - domain: palora.vercel.app 2191 | url: https://palora.vercel.app/ 2192 | size: 403 2193 | last_checked: 2022-07-11 2194 | 2195 | - domain: pantsufan.github.io 2196 | url: https://pantsufan.github.io/ 2197 | size: 19.7 2198 | last_checked: 2022-05-06 2199 | 2200 | - domain: paola.work 2201 | url: https://paola.work/ 2202 | size: 138 2203 | last_checked: 2022-04-19 2204 | 2205 | - domain: paolomainardi.com 2206 | url: https://paolomainardi.com/ 2207 | size: 311 2208 | last_checked: 2023-03-22 2209 | 2210 | - domain: paramdeo.com 2211 | url: https://paramdeo.com/ 2212 | size: 150 2213 | last_checked: 2022-04-26 2214 | 2215 | - domain: paritybit.ca 2216 | url: https://paritybit.ca/ 2217 | size: 8.4 2218 | last_checked: 2022-05-06 2219 | 2220 | - domain: patrickwu.space 2221 | url: https://patrickwu.space/ 2222 | size: 47.4 2223 | last_checked: 2022-09-11 2224 | 2225 | - domain: paulwilde.uk 2226 | url: https://paulwilde.uk/ 2227 | size: 33.5 2228 | last_checked: 2022-05-06 2229 | 2230 | - domain: pavel-main.github.io 2231 | url: https://pavel-main.github.io/ 2232 | size: 58.5 2233 | last_checked: 2022-01-30 2234 | 2235 | - domain: pawelgrzybek.com 2236 | url: https://pawelgrzybek.com/ 2237 | size: 29.1 2238 | last_checked: 2022-03-18 2239 | 2240 | - domain: pdp.dev 2241 | url: https://pdp.dev 2242 | size: 38.0 2243 | last_checked: 2022-06-16 2244 | 2245 | - domain: penstemon.net 2246 | url: https://penstemon.net/ 2247 | size: 5.7 2248 | last_checked: 2023-07-19 2249 | 2250 | - domain: person-al.github.io 2251 | url: https://person-al.github.io/ 2252 | size: 66.3 2253 | last_checked: 2022-05-21 2254 | 2255 | - domain: phate6660.codeberg.page 2256 | url: https://phate6660.codeberg.page/ 2257 | size: 87.3 2258 | last_checked: 2022-05-15 2259 | 2260 | - domain: phreedom.club 2261 | url: https://phreedom.club/ 2262 | size: 8.5 2263 | last_checked: 2022-03-18 2264 | 2265 | - domain: piccioni.london 2266 | url: https://piccioni.london/ 2267 | size: 374 2268 | last_checked: 2022-06-27 2269 | 2270 | - domain: pikselkraft.com 2271 | url: https://www.pikselkraft.com/ 2272 | size: 195 2273 | last_checked: 2023-06-05 2274 | 2275 | - domain: piuvas.net 2276 | url: https://piuvas.net/ 2277 | size: 16.6 2278 | last_checked: 2023-06-12 2279 | 2280 | - domain: pjals.vern.cc 2281 | url: https://pjals.vern.cc/ 2282 | size: 45.1 2283 | last_checked: 2022-12-10 2284 | 2285 | - domain: plabayo.tech 2286 | url: https://plabayo.tech/ 2287 | size: 19.6 2288 | last_checked: 2022-04-06 2289 | 2290 | - domain: plaindrops.de 2291 | url: https://plaindrops.de/ 2292 | size: 27.1 2293 | last_checked: 2022-02-21 2294 | 2295 | - domain: plausible.io 2296 | url: https://plausible.io/ 2297 | size: 182 2298 | last_checked: 2022-03-18 2299 | 2300 | - domain: playerone.kevincox.ca 2301 | url: https://playerone.kevincox.ca/ 2302 | size: 339 2303 | last_checked: 2022-04-26 2304 | 2305 | - domain: popov.link 2306 | url: https://popov.link/ 2307 | size: 11.5 2308 | last_checked: 2023-08-30 2309 | 2310 | - domain: port53.me 2311 | url: https://port53.me/ 2312 | size: 42.6 2313 | last_checked: 2022-04-26 2314 | 2315 | - domain: portable.fyi 2316 | url: https://portable.fyi/ 2317 | size: 19.5 2318 | last_checked: 2022-05-06 2319 | 2320 | - domain: portnumber.co.uk 2321 | url: https://www.portnumber.co.uk/ 2322 | size: 123 2323 | last_checked: 2022-12-02 2324 | 2325 | - domain: pothix.com 2326 | url: https://pothix.com/ 2327 | size: 183 2328 | last_checked: 2022-03-18 2329 | 2330 | - domain: privatebin.info 2331 | url: https://privatebin.info/ 2332 | size: 355 2333 | last_checked: 2022-02-05 2334 | 2335 | - domain: prma.dev 2336 | url: https://prma.dev/ 2337 | size: 12.8 2338 | last_checked: 2023-07-29 2339 | 2340 | - domain: probably.co.uk 2341 | url: https://probably.co.uk/ 2342 | size: 73.4 2343 | last_checked: 2023-06-17 2344 | 2345 | - domain: processwire.dev 2346 | url: https://processwire.dev/ 2347 | size: 58.8 2348 | last_checked: 2022-03-20 2349 | 2350 | - domain: projects.deltabeard.com 2351 | url: https://projects.deltabeard.com/ 2352 | size: 26.5 2353 | last_checked: 2022-05-15 2354 | 2355 | - domain: proseandconst.xyz 2356 | url: https://proseandconst.xyz/ 2357 | size: 311 2358 | last_checked: 2022-03-25 2359 | 2360 | - domain: pubindexapi.com 2361 | url: https://www.pubindexapi.com/ 2362 | size: 103 2363 | last_checked: 2023-04-14 2364 | 2365 | - domain: pukima.site 2366 | url: https://pukima.site/ 2367 | size: 225 2368 | last_checked: 2022-04-12 2369 | 2370 | - domain: purplebits.co.uk 2371 | url: https://purplebits.co.uk/ 2372 | size: 83.0 2373 | last_checked: 2022-05-15 2374 | 2375 | - domain: puxped.ddns.net 2376 | url: https://puxped.ddns.net/ 2377 | size: 412 2378 | last_checked: 2023-08-20 2379 | 2380 | - domain: pyratebeard.net 2381 | url: https://pyratebeard.net 2382 | size: 62.3 2383 | last_checked: 2022-01-11 2384 | 2385 | - domain: pzel.name 2386 | url: https://pzel.name/ 2387 | size: 15.1 2388 | last_checked: 2022-10-03 2389 | 2390 | - domain: qcard.link 2391 | url: https://qcard.link/ 2392 | size: 101 2393 | last_checked: 2022-03-25 2394 | 2395 | - domain: qtrnn.io 2396 | url: https://qtrnn.io/ 2397 | size: 3.8 2398 | last_checked: 2022-05-06 2399 | 2400 | - domain: qubyte.codes 2401 | url: https://qubyte.codes/ 2402 | size: 31.2 2403 | last_checked: 2022-04-26 2404 | 2405 | - domain: quinncasey.com 2406 | url: https://quinncasey.com/ 2407 | size: 288 2408 | last_checked: 2022-05-15 2409 | 2410 | - domain: qunitjs.com 2411 | url: https://qunitjs.com/ 2412 | size: 303 2413 | last_checked: 2022-04-26 2414 | 2415 | - domain: r00ks.io 2416 | url: https://r00ks.io/ 2417 | size: 171 2418 | last_checked: 2023-08-31 2419 | 2420 | - domain: radiocanadamini.ca 2421 | url: https://radiocanadamini.ca 2422 | size: 27.3 2423 | last_checked: 2022-09-30 2424 | 2425 | - domain: raikas.dev 2426 | url: https://raikas.dev/ 2427 | size: 4.85 2428 | last_checked: 2022-05-08 2429 | 2430 | - domain: ramenos.net 2431 | url: https://www.ramenos.net/ 2432 | size: 15.5 2433 | last_checked: 2022-05-06 2434 | 2435 | - domain: ranvier.net 2436 | url: https://ranvier.net/ 2437 | size: 67.7 2438 | last_checked: 2022-03-25 2439 | 2440 | - domain: raregems.io 2441 | url: https://raregems.io/ 2442 | size: 405 2443 | last_checked: 2022-09-14 2444 | 2445 | - domain: ratfactor.com 2446 | url: https://ratfactor.com/ 2447 | size: 60.6 2448 | last_checked: 2022-02-24 2449 | 2450 | - domain: rav3ndust.xyz 2451 | url: https://rav3ndust.xyz/ 2452 | size: 72.1 2453 | last_checked: 2022-03-25 2454 | 2455 | - domain: rectangles.app 2456 | url: https://rectangles.app/ 2457 | size: 6.93 2458 | last_checked: 2022-04-01 2459 | 2460 | - domain: redmanmale.com 2461 | url: https://redmanmale.com/ 2462 | size: 27.6 2463 | last_checked: 2022-10-26 2464 | 2465 | - domain: reim.ar 2466 | url: https://reim.ar/ 2467 | size: 32.1 2468 | last_checked: 2022-09-18 2469 | 2470 | - domain: reorx.com 2471 | url: https://reorx.com/ 2472 | size: 123 2473 | last_checked: 2022-05-22 2474 | 2475 | - domain: revuo-xmr.com 2476 | url: https://revuo-xmr.com/ 2477 | size: 444 2478 | last_checked: 2022-04-10 2479 | 2480 | - domain: rezhajul.io 2481 | url: https://rezhajul.io/ 2482 | size: 28.4 2483 | last_checked: 2023-01-13 2484 | 2485 | - domain: rhapsode.adrian.geek.nz 2486 | url: http://rhapsode.adrian.geek.nz/ 2487 | size: 148 2488 | last_checked: 2022-05-15 2489 | 2490 | - domain: richj.co 2491 | url: https://richj.co/ 2492 | size: 48.0 2493 | last_checked: 2022-04-26 2494 | 2495 | - domain: rickrollblog.blogspot.com 2496 | url: http://rickrollblog.blogspot.com/ 2497 | size: 61.8 2498 | last_checked: 2022-05-06 2499 | 2500 | - domain: rico040.xyz 2501 | url: https://rico040.xyz/ 2502 | size: 99 2503 | last_checked: 2022-11-23 2504 | 2505 | - domain: riedler.wien 2506 | url: http://riedler.wien/music/ 2507 | size: 138 2508 | last_checked: 2022-08-17 2509 | 2510 | - domain: rishigoomar.com 2511 | url: https://rishigoomar.com/ 2512 | size: 9.45 2513 | last_checked: 2022-08-20 2514 | 2515 | - domain: robbie.antenesse.net 2516 | url: https://robbie.antenesse.net/ 2517 | size: 282 2518 | last_checked: 2022-04-26 2519 | 2520 | - domain: robbie.deighton.be 2521 | url: http://robbie.deighton.be/ 2522 | size: 12.6 2523 | last_checked: 2022-04-01 2524 | 2525 | - domain: robot.unipv.it/toolleeo/ 2526 | url: https://robot.unipv.it/toolleeo/ 2527 | size: 27.8 2528 | last_checked: 2022-02-04 2529 | 2530 | - domain: roelbazuin.nl 2531 | url: https://roelbazuin.nl/ 2532 | size: 407 2533 | last_checked: 2022-04-26 2534 | 2535 | - domain: roelwillems.com 2536 | url: https://roelwillems.com/ 2537 | size: 243 2538 | last_checked: 2022-04-26 2539 | 2540 | - domain: rohandebsarkar.github.io 2541 | url: https://rohandebsarkar.github.io/ 2542 | size: 226 2543 | last_checked: 2022-10-28 2544 | 2545 | - domain: rohitfarmer.github.io 2546 | url: https://rohitfarmer.github.io/ 2547 | size: 74.3 2548 | last_checked: 2022-04-21 2549 | 2550 | - domain: rojen.uk 2551 | url: https://rojen.uk/ 2552 | size: 10 2553 | last_checked: 2022-11-14 2554 | 2555 | - domain: rollc.at 2556 | url: https://www.rollc.at/ 2557 | size: 10.3 2558 | last_checked: 2023-09-06 2559 | 2560 | - domain: roly.neocities.org 2561 | url: https://roly.neocities.org/ 2562 | size: 158 2563 | last_checked: 2022-03-20 2564 | 2565 | - domain: ronitray.xyz 2566 | url: https://ronitray.xyz/ 2567 | size: 21.6 2568 | last_checked: 2022-01-29 2569 | 2570 | - domain: roytakanen.github.io 2571 | url: https://roytakanen.github.io/ 2572 | size: 89.4 2573 | last_checked: 2022-05-03 2574 | 2575 | - domain: rshmhrj.io 2576 | url: https://rshmhrj.io/ 2577 | size: 170 2578 | last_checked: 2023-07-11 2579 | 2580 | - domain: ru.order332.com 2581 | url: https://ru.order332.com/ 2582 | size: 375 2583 | last_checked: 2023-06-18 2584 | 2585 | - domain: rutar.org 2586 | url: https://rutar.org/ 2587 | size: 10.1 2588 | last_checked: 2022-01-20 2589 | 2590 | - domain: s9a.me 2591 | url: https://s9a.me/ 2592 | size: 162 2593 | last_checked: 2022-12-23 2594 | 2595 | - domain: saladhax.site 2596 | url: https://saladhax.site/ 2597 | size: 21.7 2598 | last_checked: 2022-04-26 2599 | 2600 | - domain: salixos.org 2601 | url: https://salixos.org/ 2602 | size: 85.8 2603 | last_checked: 2022-04-26 2604 | 2605 | - domain: sam.pavot.ca 2606 | url: https://sam.pavot.ca 2607 | size: 34.8 2608 | last_checked: 2022-05-15 2609 | 2610 | - domain: samic.org 2611 | url: https://samic.org/ 2612 | size: 18.4 2613 | last_checked: 2022-04-15 2614 | 2615 | - domain: sashanoraa.gay 2616 | url: https://sashanoraa.gay/ 2617 | size: 73.0 2618 | last_checked: 2023-07-12 2619 | 2620 | - domain: saucecode.bar 2621 | url: https://saucecode.bar/ 2622 | size: 5.61 2623 | last_checked: 2022-08-02 2624 | 2625 | - domain: saurabhs.org 2626 | url: https://saurabhs.org/ 2627 | size: 71.7 2628 | last_checked: 2023-09-20 2629 | 2630 | - domain: scf37.me 2631 | url: https://scf37.me/ 2632 | size: 93.5 2633 | last_checked: 2022-05-15 2634 | 2635 | - domain: schmidbauer.cz 2636 | url: https://www.schmidbauer.cz/ 2637 | size: 58.9 2638 | last_checked: 2022-05-15 2639 | 2640 | - domain: scottk.mba 2641 | url: https://scottk.mba/ 2642 | size: 19.7 2643 | last_checked: 2023-06-16 2644 | 2645 | - domain: searchcandy.uk 2646 | url: https://www.searchcandy.uk/ 2647 | size: 290 2648 | last_checked: 2023-04-14 2649 | 2650 | - domain: searchforplanet.org 2651 | url: https://searchforplanet.org/ 2652 | size: 173 2653 | last_checked: 2022-04-26 2654 | 2655 | - domain: sebastian.graphics 2656 | url: https://sebastian.graphics/ 2657 | size: 181 2658 | last_checked: 2022-04-26 2659 | 2660 | - domain: secluded.site 2661 | url: https://secluded.site/ 2662 | size: 84.4 2663 | last_checked: 2022-05-15 2664 | 2665 | - domain: seirdy.one 2666 | url: https://seirdy.one/ 2667 | size: 20.6 2668 | last_checked: 2022-05-06 2669 | 2670 | - domain: sergeysh.com 2671 | url: https://sergeysh.com/ 2672 | size: 295 2673 | last_checked: 2022-03-18 2674 | 2675 | - domain: serhack.me 2676 | url: http://serhack.me/ 2677 | size: 461 2678 | last_checked: 2022-01-29 2679 | 2680 | - domain: sexnine.xyz 2681 | url: https://sexnine.xyz/ 2682 | size: 95.5 2683 | last_checked: 2023-09-08 2684 | 2685 | - domain: sfl.pro.br 2686 | url: https://sfl.pro.br/ 2687 | size: 84.9 2688 | last_checked: 2023-08-22 2689 | 2690 | - domain: sglazov.ru 2691 | url: https://sglazov.ru/ 2692 | size: 285 2693 | last_checked: 2022-03-31 2694 | 2695 | - domain: shatteredpalisa.de 2696 | url: https://shatteredpalisa.de 2697 | size: 60.0 2698 | last_checked: 2022-08-01 2699 | 2700 | - domain: shayanaqvi.github.io 2701 | url: https://shayanaqvi.github.io/ 2702 | size: 299 2703 | last_checked: 2023-09-16 2704 | 2705 | - domain: sheepdev.xyz 2706 | url: https://sheepdev.xyz 2707 | size: 105 2708 | last_checked: 2023-02-26 2709 | 2710 | - domain: sherrieg.com 2711 | url: https://sherrieg.com/ 2712 | size: 25.5 2713 | last_checked: 2022-07-24 2714 | 2715 | - domain: shom.dev 2716 | url: https://shom.dev/ 2717 | size: 37.3 2718 | last_checked: 2022-05-15 2719 | 2720 | - domain: silviamaggidesign.com 2721 | url: https://silviamaggidesign.com/ 2722 | size: 311 2723 | last_checked: 2022-01-24 2724 | 2725 | - domain: simpleblogs.org 2726 | url: https://simpleblogs.org/ 2727 | size: 376 2728 | last_checked: 2022-04-26 2729 | 2730 | - domain: simplecss.org 2731 | url: https://simplecss.org/ 2732 | size: 17.3 2733 | last_checked: 2022-05-06 2734 | 2735 | - domain: slashdev.space 2736 | url: https://slashdev.space/ 2737 | size: 400 2738 | last_checked: 2022-04-26 2739 | 2740 | - domain: sm6kne.amprnet.se 2741 | url: https://sm6kne.amprnet.se/ 2742 | size: 8.9 2743 | last_checked: 2023-02-07 2744 | 2745 | - domain: sno.ws 2746 | url: https://sno.ws/ 2747 | size: 16.7 2748 | last_checked: 2023-08-15 2749 | 2750 | - domain: soeren.codes 2751 | url: https://soeren.codes/ 2752 | size: 10.0 2753 | last_checked: 2022-09-17 2754 | 2755 | - domain: solar.milangaelectronica.com.ar 2756 | url: https://solar.milangaelectronica.com.ar/ 2757 | size: 67.6 2758 | last_checked: 2022-10-31 2759 | 2760 | - domain: sousali.com 2761 | url: https://sousali.com/ 2762 | size: 435 2763 | last_checked: 2023-01-28 2764 | 2765 | - domain: sp-codes.de 2766 | url: https://sp-codes.de/ 2767 | size: 54.3 2768 | last_checked: 2022-05-15 2769 | 2770 | - domain: spacehey.com 2771 | url: https://spacehey.com/ 2772 | size: 164 2773 | last_checked: 2022-09-30 2774 | 2775 | - domain: spearfishcap.cap 2776 | url: https://www.spearfishcap.com/ 2777 | size: 415 2778 | last_checked: 2022-07-25 2779 | 2780 | - domain: speyllsite.pages.dev 2781 | url: https://speyllsite.pages.dev/ 2782 | size: 115 2783 | last_checked: 2023-07-25 2784 | 2785 | - domain: spool-five.com 2786 | url: https://spool-five.com/ 2787 | size: 6.6 2788 | last_checked: 2022-05-06 2789 | 2790 | - domain: stapy.magentix.fr 2791 | url: https://stapy.magentix.fr/ 2792 | size: 21.4 2793 | last_checked: 2022-05-06 2794 | 2795 | - domain: steamosaic.com 2796 | url: https://steamosaic.com/ 2797 | size: 356 2798 | last_checked: 2022-04-26 2799 | 2800 | - domain: stefdawson.com 2801 | url: https://stefdawson.com/ 2802 | size: 188 2803 | last_checked: 2022-04-26 2804 | 2805 | - domain: sudocss.com 2806 | url: https://sudocss.com/ 2807 | size: 108 2808 | last_checked: 2023-08-31 2809 | 2810 | - domain: sudoedit.com 2811 | url: https://sudoedit.com/ 2812 | size: 317 2813 | last_checked: 2022-04-29 2814 | 2815 | - domain: support.tfwnogf.nl 2816 | url: https://support.tfwnogf.nl 2817 | size: 24.6 2818 | last_checked: 2022-01-29 2819 | 2820 | - domain: susam.net 2821 | url: https://susam.net/ 2822 | size: 9.51 2823 | last_checked: 2022-12-11 2824 | 2825 | - domain: sverona.dev 2826 | url: https://sverona.dev/ 2827 | size: 15.2 2828 | last_checked: 2023-02-07 2829 | 2830 | - domain: tanami.org 2831 | url: https://tanami.org/ 2832 | size: 32.6 2833 | last_checked: 2022-05-15 2834 | 2835 | - domain: taylantatli.com 2836 | url: https://taylantatli.com/ 2837 | size: 155 2838 | last_checked: 2022-04-26 2839 | 2840 | - domain: tdpain.net 2841 | url: https://www.tdpain.net/ 2842 | size: 287 2843 | last_checked: 2023-03-13 2844 | 2845 | - domain: tedmagaoay.com 2846 | url: https://tedmagaoay.com/ 2847 | size: 74.8 2848 | last_checked: 2023-07-08 2849 | 2850 | - domain: tek256.com 2851 | url: https://tek256.com/ 2852 | size: 228 2853 | last_checked: 2022-04-26 2854 | 2855 | - domain: temp.sh 2856 | url: https://temp.sh/ 2857 | size: 3.9 2858 | last_checked: 2022-05-06 2859 | 2860 | - domain: thatdaria.com 2861 | url: https://thatdaria.com/ 2862 | size: 92.6 2863 | last_checked: 2022-04-26 2864 | 2865 | - domain: thaumatorium.com 2866 | url: https://thaumatorium.com/ 2867 | size: 53.3 2868 | last_checked: 2022-04-26 2869 | 2870 | - domain: theden.sh 2871 | url: https://theden.sh/ 2872 | size: 132 2873 | last_checked: 2023-07-11 2874 | 2875 | - domain: thejollyteapot.com 2876 | url: https://thejollyteapot.com/ 2877 | size: 3.65 2878 | last_checked: 2022-06-02 2879 | 2880 | - domain: thelazysre.com 2881 | url: https://thelazysre.com/ 2882 | size: 13.3 2883 | last_checked: 2023-06-12 2884 | 2885 | - domain: thelion.website 2886 | url: https://thelion.website/ 2887 | size: 43.2 2888 | last_checked: 2022-04-26 2889 | 2890 | - domain: thewebisfucked.com 2891 | url: https://thewebisfucked.com 2892 | size: 135 2893 | last_checked: 2022-05-06 2894 | 2895 | - domain: thomas.me 2896 | url: https://thomas.me/ 2897 | size: 73.0 2898 | last_checked: 2022-04-26 2899 | 2900 | - domain: thomaspark.co 2901 | url: https://thomaspark.co/ 2902 | size: 488 2903 | last_checked: 2022-05-15 2904 | 2905 | - domain: thomassimon.dev 2906 | url: https://thomassimon.dev/ 2907 | size: 41.0 2908 | last_checked: 2023-08-19 2909 | 2910 | - domain: thomasvoss.com 2911 | url: https://thomasvoss.com 2912 | size: 32.2 2913 | last_checked: 2023-08-15 2914 | 2915 | - domain: tianheg.xyz 2916 | url: https://tianheg.xyz/ 2917 | size: 101 2918 | last_checked: 2022-11-24 2919 | 2920 | - domain: tiberriver256.github.io 2921 | url: https://tiberriver256.github.io/ 2922 | size: 58.6 2923 | last_checked: 2023-01-09 2924 | 2925 | - domain: ticklethepanda.dev 2926 | url: https://www.ticklethepanda.dev/ 2927 | size: 407 2928 | last_checked: 2022-06-15 2929 | 2930 | - domain: timedpassword.com 2931 | url: https://timedpassword.com/ 2932 | size: 90 2933 | last_checked: 2023-07-28 2934 | 2935 | - domain: timespreader.com 2936 | url: https://timespreader.com/ 2937 | size: 344 2938 | last_checked: 2022-04-30 2939 | 2940 | - domain: timharek.no 2941 | url: https://timharek.no/ 2942 | size: 22.8 2943 | last_checked: 2022-05-15 2944 | 2945 | - domain: timotijhof.net 2946 | url: https://timotijhof.net/ 2947 | size: 28.5 2948 | last_checked: 2022-05-15 2949 | 2950 | - domain: toby3d.me 2951 | url: https://toby3d.me/ 2952 | size: 195 2953 | last_checked: 2022-02-13 2954 | 2955 | - domain: tonisagrista.com 2956 | url: https://tonisagrista.com/ 2957 | size: 390 2958 | last_checked: 2023-01-09 2959 | 2960 | - domain: topikettunen.com 2961 | url: https://topikettunen.com 2962 | size: 26.0 2963 | last_checked: 2022-06-03 2964 | 2965 | - domain: tradingcode.net 2966 | url: https://tradingcode.net/ 2967 | size: 33.8 2968 | last_checked: 2022-05-15 2969 | 2970 | - domain: translucide.net 2971 | url: https://translucide.net/ 2972 | size: 270 2973 | last_checked: 2023-05-26 2974 | 2975 | - domain: trinity.moe 2976 | url: http://www.trinity.moe 2977 | size: 39.6 2978 | last_checked: 2022-04-26 2979 | 2980 | - domain: troylusty.com 2981 | url: https://troylusty.com/ 2982 | size: 7.49 2983 | last_checked: 2022-12-03 2984 | 2985 | - domain: tsk.bearblog.dev 2986 | url: https://tsk.bearblog.dev/ 2987 | size: 112 2988 | last_checked: 2022-09-28 2989 | 2990 | - domain: tsukuraku.github.io 2991 | url: https://tsukuraku.github.io/ 2992 | size: 354 2993 | last_checked: 2023-06-23 2994 | 2995 | - domain: ttntm.me 2996 | url: https://ttntm.me/ 2997 | size: 72.2 2998 | last_checked: 2022-04-26 2999 | 3000 | - domain: tty1.blog 3001 | url: https://tty1.blog/ 3002 | size: 19.5 3003 | last_checked: 2023-05-07 3004 | 3005 | - domain: tunesheavy.com 3006 | url: https://tunesheavy.com/ 3007 | size: 42.9 3008 | last_checked: 2022-05-15 3009 | 3010 | - domain: txt.fabio.com.ar 3011 | url: https://txt.fabio.com.ar/ 3012 | size: 312 3013 | last_checked: 2023-04-19 3014 | 3015 | - domain: unindented.org 3016 | url: https://www.unindented.org/ 3017 | size: 105 3018 | last_checked: 2022-01-06 3019 | 3020 | - domain: unitoo.it 3021 | url: https://unitoo.it/ 3022 | size: 463 3023 | last_checked: 2022-02-25 3024 | 3025 | - domain: unixsheikh.com 3026 | url: https://unixsheikh.com/ 3027 | size: 39.2 3028 | last_checked: 2022-09-14 3029 | 3030 | - domain: unli.xyz 3031 | url: https://unli.xyz/ 3032 | size: 102 3033 | last_checked: 2022-10-05 3034 | 3035 | - domain: unsolicitedadvise.com 3036 | url: https://unsolicitedadvise.com/ 3037 | size: 454 3038 | last_checked: 2022-05-15 3039 | 3040 | - domain: unsungnovelty.org 3041 | url: https://www.unsungnovelty.org/ 3042 | size: 87.1 3043 | last_checked: 2023-04-25 3044 | 3045 | - domain: usecue.com 3046 | url: https://www.usecue.com/ 3047 | size: 51.6 3048 | last_checked: 2022-05-15 3049 | 3050 | - domain: v-glb.github.io 3051 | url: https://v-glb.github.io/ 3052 | size: 88.8 3053 | last_checked: 2023-07-11 3054 | 3055 | - domain: vandenbran.de 3056 | url: https://vandenbran.de/ 3057 | size: 51.2 3058 | last_checked: 2022-09-12 3059 | 3060 | - domain: vanzasetia.site 3061 | url: https://vanzasetia.site/ 3062 | size: 42.3 3063 | last_checked: 2023-03-26 3064 | 3065 | - domain: vegard.net 3066 | url: https://www.vegard.net/ 3067 | size: 54.5 3068 | last_checked: 2022-02-24 3069 | 3070 | - domain: vern.cc 3071 | url: https://vern.cc/ 3072 | size: 21.7 3073 | last_checked: 2022-12-10 3074 | 3075 | - domain: vidhukant.com 3076 | url: https://vidhukant.com/ 3077 | size: 28.3 3078 | last_checked: 2023-08-27 3079 | 3080 | - domain: vili.dev 3081 | url: https://vili.dev/ 3082 | size: 157 3083 | last_checked: 2023-09-09 3084 | 3085 | - domain: vitcerny.xyz 3086 | url: https://vitcerny.xyz/ 3087 | size: 52.7 3088 | last_checked: 2022-04-26 3089 | 3090 | - domain: vladas.palubinskas.lt 3091 | url: https://vladas.palubinskas.lt/ 3092 | size: 9.0 3093 | last_checked: 2022-05-13 3094 | 3095 | - domain: vmaxleclub.com 3096 | url: https://www.vmaxleclub.com/ 3097 | size: 245 3098 | last_checked: 2023-04-29 3099 | 3100 | - domain: volleyball-baustetten.de 3101 | url: https://volleyball-baustetten.de/ 3102 | size: 210 3103 | last_checked: 2022-01-30 3104 | 3105 | - domain: vreeman.com 3106 | url: https://vreeman.com/ 3107 | size: 358 3108 | last_checked: 2022-04-26 3109 | 3110 | - domain: vvulpes0.github.io 3111 | url: https://vvulpes0.github.io/ 3112 | size: 7.6 3113 | last_checked: 2022-04-26 3114 | 3115 | - domain: wayfarers.space 3116 | url: https://wayfarers.space/ 3117 | size: 364 3118 | last_checked: 2023-04-19 3119 | 3120 | - domain: webmusic.pages.dev 3121 | url: https://webmusic.pages.dev/ 3122 | size: 505 3123 | last_checked: 2022-06-16 3124 | 3125 | - domain: webzine.puffy.cafe 3126 | url: https://webzine.puffy.cafe 3127 | size: 8.2 3128 | last_checked: 2022-05-06 3129 | 3130 | - domain: weinzierlweb.com 3131 | url: https://weinzierlweb.com/ 3132 | size: 310 3133 | last_checked: 2022-04-26 3134 | 3135 | - domain: whoisyoges.eu.org 3136 | url: https://whoisyoges.eu.org/ 3137 | size: 94.3 3138 | last_checked: 2022-12-19 3139 | 3140 | - domain: why-openbsd.rocks 3141 | url: https://why-openbsd.rocks/fact/ 3142 | size: 35.4 3143 | last_checked: 2022-05-15 3144 | 3145 | - domain: wilde-it.co.uk 3146 | url: https://wilde-it.co.uk/ 3147 | size: 158 3148 | last_checked: 2022-04-26 3149 | 3150 | - domain: will.cx 3151 | url: https://will.cx/ 3152 | size: 40.8 3153 | last_checked: 2022-05-15 3154 | 3155 | - domain: wilw.dev 3156 | url: https://wilw.dev/ 3157 | size: 18.3 3158 | last_checked: 2022-08-28 3159 | 3160 | - domain: wolfgang.lol 3161 | url: https://wolfgang.lol/ 3162 | size: 335 3163 | last_checked: 2022-04-26 3164 | 3165 | - domain: wor.do 3166 | url: https://wor.do/ 3167 | size: 349 3168 | last_checked: 2022-04-26 3169 | 3170 | - domain: wpturbo.dev 3171 | url: https://wpturbo.dev/ 3172 | size: 280 3173 | last_checked: 2023-01-04 3174 | 3175 | - domain: wrzeczak.net 3176 | url: https://wrzeczak.net/ 3177 | size: 35.4 3178 | last_checked: 2022-11-24 3179 | 3180 | - domain: xameren.repl.co 3181 | url: https://xameren.repl.co/ 3182 | size: 56.6 3183 | last_checked: 2023-05-01 3184 | 3185 | - domain: xidoc.nim.town 3186 | url: http://xidoc.nim.town/ 3187 | size: 73.2 3188 | last_checked: 2022-04-26 3189 | 3190 | - domain: xigoi.neocities.org 3191 | url: https://xigoi.neocities.org/ 3192 | size: 10.4 3193 | last_checked: 2022-03-18 3194 | 3195 | - domain: xkon.dev 3196 | url: https://xkon.dev/ 3197 | size: 6.8 3198 | last_checked: 2022-05-15 3199 | 3200 | - domain: xlthlx.com 3201 | url: https://xlthlx.com/ 3202 | size: 434 3203 | last_checked: 2022-06-27 3204 | 3205 | - domain: xnacly.me 3206 | url: https://xnacly.me/ 3207 | size: 26.8 3208 | last_checked: 2022-11-28 3209 | 3210 | - domain: xwx.moe 3211 | url: https://xwx.moe/ 3212 | size: 414 3213 | last_checked: 2022-05-15 3214 | 3215 | - domain: yalinpala.dev 3216 | url: https://yalinpala.dev/ 3217 | size: 395 3218 | last_checked: 2022-05-16 3219 | 3220 | - domain: yaroslav-i.ru 3221 | url: https://yaroslav-i.ru/ 3222 | size: 475 3223 | last_checked: 2022-05-15 3224 | 3225 | - domain: yne.fr 3226 | url: https://yne.fr/ 3227 | size: 4.5 3228 | last_checked: 2022-05-13 3229 | 3230 | - domain: yogas.eu.org 3231 | url: https://yogas.eu.org/ 3232 | size: 67.1 3233 | last_checked: 2022-05-25 3234 | 3235 | - domain: yom.li 3236 | url: https://yom.li/ 3237 | size: 128 3238 | last_checked: 2023-09-12 3239 | 3240 | - domain: youkwhd.vercel.app 3241 | url: https://youkwhd.vercel.app/ 3242 | size: 221 3243 | last_checked: 2022-03-25 3244 | 3245 | - domain: youssefy.com 3246 | url: https://youssefy.com/ 3247 | size: 94.7 3248 | last_checked: 2022-11-02 3249 | 3250 | - domain: youtube-playlist-timer.mmap.page 3251 | url: https://youtube-playlist-timer.mmap.page 3252 | size: 124 3253 | last_checked: 2023-04-27 3254 | 3255 | - domain: yulian.kuncheff.com 3256 | url: https://yulian.kuncheff.com/ 3257 | size: 257 3258 | last_checked: 2023-08-07 3259 | 3260 | - domain: yuv.al 3261 | url: https://yuv.al/ 3262 | size: 255 3263 | last_checked: 2022-10-28 3264 | 3265 | - domain: zakr.es 3266 | url: https://zakr.es/ 3267 | size: 231 3268 | last_checked: 2022-04-26 3269 | 3270 | - domain: zakrzewski.click 3271 | url: https://zakrzewski.click 3272 | size: 463 3273 | last_checked: 2023-06-05 3274 | 3275 | - domain: zapisnik.skladka.net 3276 | url: https://zapisnik.skladka.net/ 3277 | size: 14.7 3278 | last_checked: 2023-02-07 3279 | 3280 | - domain: zeriax.com 3281 | url: https://zeriax.com/ 3282 | size: 91.3 3283 | last_checked: 2022-07-24 3284 | 3285 | - domain: zerokspot.com 3286 | url: https://zerokspot.com/ 3287 | size: 175 3288 | last_checked: 2022-04-26 3289 | 3290 | - domain: zhangjet.com 3291 | url: https://zhangjet.com/ 3292 | size: 17.7 3293 | last_checked: 2022-06-24 3294 | 3295 | - domain: zoia.org 3296 | url: https://zoia.org 3297 | size: 22.1 3298 | last_checked: 2022-03-28 3299 | 3300 | - domain: zserge.com 3301 | url: https://zserge.com/ 3302 | size: 20.6 3303 | last_checked: 2022-05-13 3304 | 3305 | - domain: zue.ge 3306 | url: https://zue.ge/ 3307 | size: 198 3308 | last_checked: 2022-11-24 3309 | 3310 | - domain: zwbetz.com 3311 | url: https://zwbetz.com/ 3312 | size: 67.8 3313 | last_checked: 2022-07-20 3314 | --------------------------------------------------------------------------------