mirror of
https://github.com/nkoehring/250kb-club.git
synced 2025-04-17 12:49:04 +02:00
fix update date on page details
This commit is contained in:
parent
710195d542
commit
f98596f7dc
444 changed files with 471 additions and 470 deletions
47
index.ts
47
index.ts
|
@ -15,6 +15,18 @@ import {
|
|||
retrieveMetrics,
|
||||
} from './analyser/metrics.ts'
|
||||
|
||||
const debug = Deno.env.get('DEBUG') !== undefined
|
||||
if (!debug) console.debug = () => {} // supress debug messages
|
||||
|
||||
const white = (output: string | number) => colors.white(` ${output} `)
|
||||
const whiteHd = (output: string | number) => colors.bgWhite.bold.black(` ${output} `)
|
||||
const red = (output: string | number) => colors.red(` ${output} `)
|
||||
const redHd = (output: string | number) => colors.bgRed.bold.black(` ${output} `)
|
||||
const yellow = (output: string | number) => colors.yellow(` ${output} `)
|
||||
const yellowHd = (output: string | number) => colors.bgYellow.bold.black(` ${output} `)
|
||||
const blue = (output: string | number) => colors.blue(` ${output} `)
|
||||
const blueHd = (output: string | number) => colors.bgBlue.bold.black(` ${output} `)
|
||||
|
||||
const INPUT_FILE = Deno.args[0] ?? './pages.txt'
|
||||
const OUTPUT_PATH = Deno.args[1] ?? './content' // results are written here
|
||||
const RECHECK_THRESHOLD = 60 * 60 * 24 * 7 * 1000 // recheck pages older than 1 week
|
||||
|
@ -43,7 +55,7 @@ async function updateRecord(runId: string, url: string): Promise<boolean> {
|
|||
|
||||
if (!metrics) {
|
||||
statistics.errors.push(`Failed to retrieve results for ${url} (run id: ${runId})`)
|
||||
console.debug("failed to retrieve results for", url, runId)
|
||||
console.debug(red("failed to retrieve results"), "for", blue(url), runId)
|
||||
return false
|
||||
}
|
||||
|
||||
|
@ -53,12 +65,12 @@ async function updateRecord(runId: string, url: string): Promise<boolean> {
|
|||
|
||||
if (weight > REJECT_THRESHOLD) {
|
||||
statistics.rejected.push({ url, weight: Math.round(weight / 1024) })
|
||||
console.debug(url, "rejected! Weighs", Math.round(weight / 1024), "kb")
|
||||
console.debug(url, red("rejected!"), "Weighs", Math.round(weight / 1024), "kb")
|
||||
if (oldRecord) {
|
||||
console.debug("Removing record at", OUTPUT_PATH)
|
||||
removeRecord(url, OUTPUT_PATH).catch(() => {
|
||||
statistics.errors.push('Failed to remove', OUTPUT_PATH)
|
||||
console.debug("Failed to remove old record of rejected url", url)
|
||||
console.debug(red("Failed to remove old record"), "of rejected url", url)
|
||||
})
|
||||
}
|
||||
return false
|
||||
|
@ -82,10 +94,10 @@ async function updateRecord(runId: string, url: string): Promise<boolean> {
|
|||
|
||||
if (success) {
|
||||
statistics.updated.push({ url, weight })
|
||||
console.debug(url, "successfully updated")
|
||||
console.debug(blue(url), white("successfully updated!"))
|
||||
} else {
|
||||
statistics.errors.push(`Failed to write record for ${url}`)
|
||||
console.debug(url, "record could not be written!")
|
||||
console.debug(blue(url), red("record could not be written!"))
|
||||
}
|
||||
|
||||
return true
|
||||
|
@ -98,18 +110,18 @@ async function checkPage(url: string) {
|
|||
|
||||
if (!needsCheck) {
|
||||
statistics.checked++
|
||||
console.debug(url, "is up-to-date")
|
||||
console.debug(blue(url), white("is up-to-date"))
|
||||
return true
|
||||
}
|
||||
|
||||
const runId = await requestMetricsRun(url)
|
||||
if (!runId) {
|
||||
statistics.errors.push(`Failed to run metric for ${url}`)
|
||||
console.debug(url, "updating failed!")
|
||||
console.debug(blue(url), red("getting metrics failed!"))
|
||||
return false
|
||||
}
|
||||
|
||||
console.debug(url, "new or outdated, runId is", runId)
|
||||
console.debug(blue(url), white("new or outdated,"), "runId is", runId)
|
||||
return runId
|
||||
}
|
||||
|
||||
|
@ -119,15 +131,6 @@ function sleep(duration: number) {
|
|||
})
|
||||
}
|
||||
|
||||
const white = (output: string | number) => colors.white(` ${output} `)
|
||||
const whiteHd = (output: string | number) => colors.bgWhite.bold.black(` ${output} `)
|
||||
const red = (output: string | number) => colors.red(` ${output} `)
|
||||
const redHd = (output: string | number) => colors.bgRed.bold.black(` ${output} `)
|
||||
const yellow = (output: string | number) => colors.yellow(` ${output} `)
|
||||
const yellowHd = (output: string | number) => colors.bgYellow.bold.black(` ${output} `)
|
||||
const blue = (output: string | number) => colors.blue(` ${output} `)
|
||||
const blueHd = (output: string | number) => colors.bgBlue.bold.black(` ${output} `)
|
||||
|
||||
function updateStatusScreen() {
|
||||
const { total, checked, updated, rejected, errors } = statistics
|
||||
|
||||
|
@ -152,7 +155,7 @@ function showStatistics() {
|
|||
}
|
||||
|
||||
async function handleBatch() {
|
||||
updateStatusScreen()
|
||||
if (!debug) updateStatusScreen()
|
||||
if (!pages.length) return showStatistics() // done, yeah!
|
||||
|
||||
const batch = pages.splice(0, PARALLEL_JOBS)
|
||||
|
@ -172,13 +175,14 @@ async function handleBatch() {
|
|||
|
||||
if (status === "failed") {
|
||||
statistics.errors.push(`YLT analysis failed for ${url} (run id: ${runId})`)
|
||||
console.debug(url, "YLT analysis failed")
|
||||
console.debug(blue(url), red("YLT analysis failed"))
|
||||
continue
|
||||
} else if (status === "complete") {
|
||||
console.debug(url, "updating record...")
|
||||
console.debug(blue(url), blue("updating record..."))
|
||||
await updateRecord(runId, url)
|
||||
continue
|
||||
} else {
|
||||
console.debug(blue(url), white("job incomplete, pushing back"))
|
||||
// not done yet, add it back
|
||||
jobs.push(job)
|
||||
// wait a bit before checking again
|
||||
|
@ -189,8 +193,5 @@ async function handleBatch() {
|
|||
handleBatch()
|
||||
}
|
||||
|
||||
const debug = Deno.env.get('DEBUG') !== undefined
|
||||
if (!debug) console.debug = () => {} // supress debug messages
|
||||
|
||||
console.log('Starting...')
|
||||
handleBatch()
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>0xc3.win</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-04-25 datetime=2024-04-25 itemprop=datePublished pubdate> Added: 2024-04-25 </time> | <time class=dt-published content=2024-04-25 datetime=2024-04-25 itemprop=datePublished pubdate> Last updated: 2024-04-25 </time><p class=e-content><a rel="noopener nofollow" href=https://0xc3.win/ target=_blank>0xc3.win</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 158kb </strong> and has a content-to-bloat ratio of <strong>85%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>0xc3.win</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-04-25 datetime=2024-04-25 itemprop=datePublished pubdate> Added: 2024-04-25 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://0xc3.win/ target=_blank>0xc3.win</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 158kb </strong> and has a content-to-bloat ratio of <strong>85%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/0xc3-win">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>0xedward.io</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://0xedward.io/ target=_blank>0xedward.io</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 14kb </strong> and has a content-to-bloat ratio of <strong>32%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>0xedward.io</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://0xedward.io/ target=_blank>0xedward.io</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 14kb </strong> and has a content-to-bloat ratio of <strong>32%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/0xedward-io">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>0xff.nu</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://0xff.nu/ target=_blank>0xff.nu</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 5kb </strong> and has a content-to-bloat ratio of <strong>72%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>0xff.nu</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://0xff.nu/ target=_blank>0xff.nu</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 5kb </strong> and has a content-to-bloat ratio of <strong>72%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/0xff-nu">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>10maurycy10.github.io</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-02-26 datetime=2023-02-26 itemprop=datePublished pubdate> Added: 2023-02-26 </time> | <time class=dt-published content=2023-02-26 datetime=2023-02-26 itemprop=datePublished pubdate> Last updated: 2023-02-26 </time><p class=e-content><a rel="noopener nofollow" href=https://10maurycy10.github.io/ target=_blank>10maurycy10.github.io</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 121kb </strong> and has a content-to-bloat ratio of <strong>15%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>10maurycy10.github.io</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-02-26 datetime=2023-02-26 itemprop=datePublished pubdate> Added: 2023-02-26 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://10maurycy10.github.io/ target=_blank>10maurycy10.github.io</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 121kb </strong> and has a content-to-bloat ratio of <strong>15%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/10maurycy10-github-io">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>1kb.lejtzen.dev</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-11-28 datetime=2022-11-28 itemprop=datePublished pubdate> Added: 2022-11-28 </time> | <time class=dt-published content=2022-11-28 datetime=2022-11-28 itemprop=datePublished pubdate> Last updated: 2022-11-28 </time><p class=e-content><a rel="noopener nofollow" href=https://1kb.lejtzen.dev target=_blank>1kb.lejtzen.dev</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 1kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>1kb.lejtzen.dev</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-11-28 datetime=2022-11-28 itemprop=datePublished pubdate> Added: 2022-11-28 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://1kb.lejtzen.dev target=_blank>1kb.lejtzen.dev</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 1kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/1kb-lejtzen-dev">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>1mb.club</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://1mb.club/ target=_blank>1mb.club</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 230kb </strong> and has a content-to-bloat ratio of <strong>98%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>1mb.club</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://1mb.club/ target=_blank>1mb.club</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 230kb </strong> and has a content-to-bloat ratio of <strong>98%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/1mb-club">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>250kb.club</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-02-22 datetime=2022-02-22 itemprop=datePublished pubdate> Added: 2022-02-22 </time> | <time class=dt-published content=2022-02-22 datetime=2022-02-22 itemprop=datePublished pubdate> Last updated: 2022-02-22 </time><p class=e-content><a rel="noopener nofollow" href=https://250kb.club/ target=_blank>250kb.club</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 12kb </strong> and has a content-to-bloat ratio of <strong>72%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>250kb.club</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-02-22 datetime=2022-02-22 itemprop=datePublished pubdate> Added: 2022-02-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://250kb.club/ target=_blank>250kb.club</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 12kb </strong> and has a content-to-bloat ratio of <strong>72%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/250kb-club">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>512kb.club</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://512kb.club/ target=_blank>512kb.club</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 22kb </strong> and has a content-to-bloat ratio of <strong>88%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>512kb.club</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://512kb.club/ target=_blank>512kb.club</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 22kb </strong> and has a content-to-bloat ratio of <strong>88%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/512kb-club">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>abridge.netlify.app</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-11-26 datetime=2022-11-26 itemprop=datePublished pubdate> Added: 2022-11-26 </time> | <time class=dt-published content=2022-11-26 datetime=2022-11-26 itemprop=datePublished pubdate> Last updated: 2022-11-26 </time><p class=e-content><a rel="noopener nofollow" href=https://abridge.netlify.app/ target=_blank>abridge.netlify.app</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 17kb </strong> and has a content-to-bloat ratio of <strong>25%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>abridge.netlify.app</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-11-26 datetime=2022-11-26 itemprop=datePublished pubdate> Added: 2022-11-26 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://abridge.netlify.app/ target=_blank>abridge.netlify.app</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 17kb </strong> and has a content-to-bloat ratio of <strong>25%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/abridge-netlify-app">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>ache.one</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://ache.one/ target=_blank>ache.one</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 22kb </strong> and has a content-to-bloat ratio of <strong>66%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>ache.one</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://ache.one/ target=_blank>ache.one</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 22kb </strong> and has a content-to-bloat ratio of <strong>66%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/ache-one">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>adambuczek.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-01-31 datetime=2023-01-31 itemprop=datePublished pubdate> Added: 2023-01-31 </time> | <time class=dt-published content=2023-01-31 datetime=2023-01-31 itemprop=datePublished pubdate> Last updated: 2023-01-31 </time><p class=e-content><a rel="noopener nofollow" href=https://adambuczek.com target=_blank>adambuczek.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 20kb </strong> and has a content-to-bloat ratio of <strong>48%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>adambuczek.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-01-31 datetime=2023-01-31 itemprop=datePublished pubdate> Added: 2023-01-31 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://adambuczek.com target=_blank>adambuczek.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 20kb </strong> and has a content-to-bloat ratio of <strong>48%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/adambuczek-com">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>adayo.client.jp</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-01-08 datetime=2024-01-08 itemprop=datePublished pubdate> Added: 2024-01-08 </time> | <time class=dt-published content=2024-01-08 datetime=2024-01-08 itemprop=datePublished pubdate> Last updated: 2024-01-08 </time><p class=e-content><a rel="noopener nofollow" href=https://adayo.client.jp/ target=_blank>adayo.client.jp</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 3kb </strong> and has a content-to-bloat ratio of <strong>44%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>adayo.client.jp</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-01-08 datetime=2024-01-08 itemprop=datePublished pubdate> Added: 2024-01-08 </time> | <time class=dt-updated content=2024-01-08 datetime=2024-01-08 itemprop=dateUpdated pubdate> Last updated: 2024-01-08 </time><p class=e-content><a rel="noopener nofollow" href=https://adayo.client.jp/ target=_blank>adayo.client.jp</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 3kb </strong> and has a content-to-bloat ratio of <strong>44%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/adayo-client-jp">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>adithya.zip</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-12-13 datetime=2023-12-13 itemprop=datePublished pubdate> Added: 2023-12-13 </time> | <time class=dt-published content=2023-12-13 datetime=2023-12-13 itemprop=datePublished pubdate> Last updated: 2023-12-13 </time><p class=e-content><a rel="noopener nofollow" href=https://adithya.zip/ target=_blank>adithya.zip</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 4kb </strong> and has a content-to-bloat ratio of <strong>36%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>adithya.zip</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-12-13 datetime=2023-12-13 itemprop=datePublished pubdate> Added: 2023-12-13 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://adithya.zip/ target=_blank>adithya.zip</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 4kb </strong> and has a content-to-bloat ratio of <strong>36%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/adithya-zip">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>ahmubashshir.github.io</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-05-10 datetime=2023-05-10 itemprop=datePublished pubdate> Added: 2023-05-10 </time> | <time class=dt-published content=2023-05-10 datetime=2023-05-10 itemprop=datePublished pubdate> Last updated: 2023-05-10 </time><p class=e-content><a rel="noopener nofollow" href=https://ahmubashshir.github.io/ target=_blank>ahmubashshir.github.io</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 66kb </strong> and has a content-to-bloat ratio of <strong>41%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>ahmubashshir.github.io</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-05-10 datetime=2023-05-10 itemprop=datePublished pubdate> Added: 2023-05-10 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://ahmubashshir.github.io/ target=_blank>ahmubashshir.github.io</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 66kb </strong> and has a content-to-bloat ratio of <strong>41%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/ahmubashshir-github-io">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>aitrack.work</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-01-31 datetime=2023-01-31 itemprop=datePublished pubdate> Added: 2023-01-31 </time> | <time class=dt-published content=2023-01-31 datetime=2023-01-31 itemprop=datePublished pubdate> Last updated: 2023-01-31 </time><p class=e-content><a rel="noopener nofollow" href=https://aitrack.work/ target=_blank>aitrack.work</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 127kb </strong> and has a content-to-bloat ratio of <strong>5%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>aitrack.work</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-01-31 datetime=2023-01-31 itemprop=datePublished pubdate> Added: 2023-01-31 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://aitrack.work/ target=_blank>aitrack.work</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 127kb </strong> and has a content-to-bloat ratio of <strong>5%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/aitrack-work">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>akgbhat.github.io</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Added: 2023-11-17 </time> | <time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Last updated: 2023-11-17 </time><p class=e-content><a rel="noopener nofollow" href=https://akgbhat.github.io/ target=_blank>akgbhat.github.io</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 13kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>akgbhat.github.io</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Added: 2023-11-17 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://akgbhat.github.io/ target=_blank>akgbhat.github.io</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 13kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/akgbhat-github-io">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>alexalejandre.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-02-21 datetime=2024-02-21 itemprop=datePublished pubdate> Added: 2024-02-21 </time> | <time class=dt-published content=2024-02-21 datetime=2024-02-21 itemprop=datePublished pubdate> Last updated: 2024-02-21 </time><p class=e-content><a rel="noopener nofollow" href=https://alexalejandre.com/ target=_blank>alexalejandre.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 9kb </strong> and has a content-to-bloat ratio of <strong>76%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>alexalejandre.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-02-21 datetime=2024-02-21 itemprop=datePublished pubdate> Added: 2024-02-21 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://alexalejandre.com/ target=_blank>alexalejandre.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 9kb </strong> and has a content-to-bloat ratio of <strong>76%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/alexalejandre-com">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>alexschroeder.ch</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Added: 2023-11-17 </time> | <time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Last updated: 2023-11-17 </time><p class=e-content><a rel="noopener nofollow" href=https://alexschroeder.ch/ target=_blank>alexschroeder.ch</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 5kb </strong> and has a content-to-bloat ratio of <strong>67%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>alexschroeder.ch</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Added: 2023-11-17 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://alexschroeder.ch/ target=_blank>alexschroeder.ch</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 5kb </strong> and has a content-to-bloat ratio of <strong>67%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/alexschroeder-ch">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>allfoxesare.gay</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-03-17 datetime=2023-03-17 itemprop=datePublished pubdate> Added: 2023-03-17 </time> | <time class=dt-published content=2023-03-17 datetime=2023-03-17 itemprop=datePublished pubdate> Last updated: 2023-03-17 </time><p class=e-content><a rel="noopener nofollow" href=https://allfoxesare.gay/ target=_blank>allfoxesare.gay</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 21kb </strong> and has a content-to-bloat ratio of <strong>10%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>allfoxesare.gay</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-03-17 datetime=2023-03-17 itemprop=datePublished pubdate> Added: 2023-03-17 </time> | <time class=dt-updated content=2023-04-17 datetime=2023-04-17 itemprop=dateUpdated pubdate> Last updated: 2023-04-17 </time><p class=e-content><a rel="noopener nofollow" href=https://allfoxesare.gay/ target=_blank>allfoxesare.gay</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 21kb </strong> and has a content-to-bloat ratio of <strong>10%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/allfoxesare-gay">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>allien.work</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://allien.work/ target=_blank>allien.work</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 112kb </strong> and has a content-to-bloat ratio of <strong>6%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>allien.work</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://allien.work/ target=_blank>allien.work</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 112kb </strong> and has a content-to-bloat ratio of <strong>6%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/allien-work">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>ampersandia.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-04-11 datetime=2022-04-11 itemprop=datePublished pubdate> Added: 2022-04-11 </time> | <time class=dt-published content=2022-04-11 datetime=2022-04-11 itemprop=datePublished pubdate> Last updated: 2022-04-11 </time><p class=e-content><a rel="noopener nofollow" href=https://ampersandia.net/ target=_blank>ampersandia.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 50kb </strong> and has a content-to-bloat ratio of <strong>7%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>ampersandia.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-04-11 datetime=2022-04-11 itemprop=datePublished pubdate> Added: 2022-04-11 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://ampersandia.net/ target=_blank>ampersandia.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 50kb </strong> and has a content-to-bloat ratio of <strong>7%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/ampersandia-net">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>anabeatriz.dev</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://anabeatriz.dev/ target=_blank>anabeatriz.dev</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 74kb </strong> and has a content-to-bloat ratio of <strong>1%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>anabeatriz.dev</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2022-06-08 datetime=2022-06-08 itemprop=dateUpdated pubdate> Last updated: 2022-06-08 </time><p class=e-content><a rel="noopener nofollow" href=https://anabeatriz.dev/ target=_blank>anabeatriz.dev</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 74kb </strong> and has a content-to-bloat ratio of <strong>1%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/anabeatriz-dev">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>anakojm.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-04-25 datetime=2024-04-25 itemprop=datePublished pubdate> Added: 2024-04-25 </time> | <time class=dt-published content=2024-04-25 datetime=2024-04-25 itemprop=datePublished pubdate> Last updated: 2024-04-25 </time><p class=e-content><a rel="noopener nofollow" href=https://anakojm.net/ target=_blank>anakojm.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 89kb </strong> and has a content-to-bloat ratio of <strong>7%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>anakojm.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-04-25 datetime=2024-04-25 itemprop=datePublished pubdate> Added: 2024-04-25 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://anakojm.net/ target=_blank>anakojm.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 89kb </strong> and has a content-to-bloat ratio of <strong>7%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/anakojm-net">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>andrekelling.de</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-01-19 datetime=2024-01-19 itemprop=datePublished pubdate> Added: 2024-01-19 </time> | <time class=dt-published content=2024-01-19 datetime=2024-01-19 itemprop=datePublished pubdate> Last updated: 2024-01-19 </time><p class=e-content><a rel="noopener nofollow" href=https://andrekelling.de/ target=_blank>andrekelling.de</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 14kb </strong> and has a content-to-bloat ratio of <strong>45%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>andrekelling.de</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-01-19 datetime=2024-01-19 itemprop=datePublished pubdate> Added: 2024-01-19 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://andrekelling.de/ target=_blank>andrekelling.de</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 14kb </strong> and has a content-to-bloat ratio of <strong>45%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/andrekelling-de">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>annaaurora.eu</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-11-28 datetime=2022-11-28 itemprop=datePublished pubdate> Added: 2022-11-28 </time> | <time class=dt-published content=2022-11-28 datetime=2022-11-28 itemprop=datePublished pubdate> Last updated: 2022-11-28 </time><p class=e-content><a rel="noopener nofollow" href=https://annaaurora.eu/ target=_blank>annaaurora.eu</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 91kb </strong> and has a content-to-bloat ratio of <strong>66%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>annaaurora.eu</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-11-28 datetime=2022-11-28 itemprop=datePublished pubdate> Added: 2022-11-28 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://annaaurora.eu/ target=_blank>annaaurora.eu</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 91kb </strong> and has a content-to-bloat ratio of <strong>66%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/annaaurora-eu">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>ansharora.in</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2025-01-03 datetime=2025-01-03 itemprop=datePublished pubdate> Added: 2025-01-03 </time> | <time class=dt-published content=2025-01-03 datetime=2025-01-03 itemprop=datePublished pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://ansharora.in/ target=_blank>ansharora.in</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 3kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>ansharora.in</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2025-01-03 datetime=2025-01-03 itemprop=datePublished pubdate> Added: 2025-01-03 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://ansharora.in/ target=_blank>ansharora.in</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 3kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/ansharora-in">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>antares.neocities.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-04-25 datetime=2024-04-25 itemprop=datePublished pubdate> Added: 2024-04-25 </time> | <time class=dt-published content=2024-04-25 datetime=2024-04-25 itemprop=datePublished pubdate> Last updated: 2024-04-25 </time><p class=e-content><a rel="noopener nofollow" href=https://antares.neocities.org/ target=_blank>antares.neocities.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 140kb </strong> and has a content-to-bloat ratio of <strong>96%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>antares.neocities.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-04-25 datetime=2024-04-25 itemprop=datePublished pubdate> Added: 2024-04-25 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://antares.neocities.org/ target=_blank>antares.neocities.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 140kb </strong> and has a content-to-bloat ratio of <strong>96%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/antares-neocities-org">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>arc-x.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Added: 2023-11-17 </time> | <time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Last updated: 2023-11-17 </time><p class=e-content><a rel="noopener nofollow" href=http://arc-x.org/ target=_blank>arc-x.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 13kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>arc-x.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Added: 2023-11-17 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=http://arc-x.org/ target=_blank>arc-x.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 13kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/arc-x-org">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>arfer.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://arfer.net/ target=_blank>arfer.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 8kb </strong> and has a content-to-bloat ratio of <strong>14%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>arfer.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://arfer.net/ target=_blank>arfer.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 8kb </strong> and has a content-to-bloat ratio of <strong>14%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/arfer-net">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>arkensys.dedyn.io</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-12-13 datetime=2023-12-13 itemprop=datePublished pubdate> Added: 2023-12-13 </time> | <time class=dt-published content=2023-12-13 datetime=2023-12-13 itemprop=datePublished pubdate> Last updated: 2023-12-13 </time><p class=e-content><a rel="noopener nofollow" href=https://arkensys.dedyn.io/ target=_blank>arkensys.dedyn.io</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 17kb </strong> and has a content-to-bloat ratio of <strong>89%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>arkensys.dedyn.io</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-12-13 datetime=2023-12-13 itemprop=datePublished pubdate> Added: 2023-12-13 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://arkensys.dedyn.io/ target=_blank>arkensys.dedyn.io</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 17kb </strong> and has a content-to-bloat ratio of <strong>89%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/arkensys-dedyn-io">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>armaanb.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://armaanb.net/ target=_blank>armaanb.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 17kb </strong> and has a content-to-bloat ratio of <strong>95%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>armaanb.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://armaanb.net/ target=_blank>armaanb.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 17kb </strong> and has a content-to-bloat ratio of <strong>95%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/armaanb-net">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>artemislena.eu</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://artemislena.eu/ target=_blank>artemislena.eu</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 3kb </strong> and has a content-to-bloat ratio of <strong>65%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>artemislena.eu</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://artemislena.eu/ target=_blank>artemislena.eu</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 3kb </strong> and has a content-to-bloat ratio of <strong>65%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/artemislena-eu">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>asnine.me</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-10-27 datetime=2024-10-27 itemprop=datePublished pubdate> Added: 2024-10-27 </time> | <time class=dt-published content=2024-10-27 datetime=2024-10-27 itemprop=datePublished pubdate> Last updated: 2024-10-27 </time><p class=e-content><a rel="noopener nofollow" href=https://asnine.me/ target=_blank>asnine.me</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 12kb </strong> and has a content-to-bloat ratio of <strong>32%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>asnine.me</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-10-27 datetime=2024-10-27 itemprop=datePublished pubdate> Added: 2024-10-27 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://asnine.me/ target=_blank>asnine.me</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 12kb </strong> and has a content-to-bloat ratio of <strong>32%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/asnine-me">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>asukaminato.eu.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-08-05 datetime=2023-08-05 itemprop=datePublished pubdate> Added: 2023-08-05 </time> | <time class=dt-published content=2023-08-05 datetime=2023-08-05 itemprop=datePublished pubdate> Last updated: 2023-08-05 </time><p class=e-content><a rel="noopener nofollow" href=https://asukaminato.eu.org/ target=_blank>asukaminato.eu.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 8kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>asukaminato.eu.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-08-05 datetime=2023-08-05 itemprop=datePublished pubdate> Added: 2023-08-05 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://asukaminato.eu.org/ target=_blank>asukaminato.eu.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 8kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/asukaminato-eu-org">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>avidseeker.github.io</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-07-14 datetime=2024-07-14 itemprop=datePublished pubdate> Added: 2024-07-14 </time> | <time class=dt-published content=2024-07-14 datetime=2024-07-14 itemprop=datePublished pubdate> Last updated: 2024-07-14 </time><p class=e-content><a rel="noopener nofollow" href=https://avidseeker.github.io/ target=_blank>avidseeker.github.io</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 5kb </strong> and has a content-to-bloat ratio of <strong>70%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>avidseeker.github.io</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-07-14 datetime=2024-07-14 itemprop=datePublished pubdate> Added: 2024-07-14 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://avidseeker.github.io/ target=_blank>avidseeker.github.io</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 5kb </strong> and has a content-to-bloat ratio of <strong>70%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/avidseeker-github-io">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>axel.beckert.ch</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-01-31 datetime=2023-01-31 itemprop=datePublished pubdate> Added: 2023-01-31 </time> | <time class=dt-published content=2023-01-31 datetime=2023-01-31 itemprop=datePublished pubdate> Last updated: 2023-01-31 </time><p class=e-content><a rel="noopener nofollow" href=https://axel.beckert.ch/ target=_blank>axel.beckert.ch</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 63kb </strong> and has a content-to-bloat ratio of <strong>89%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>axel.beckert.ch</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-01-31 datetime=2023-01-31 itemprop=datePublished pubdate> Added: 2023-01-31 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://axel.beckert.ch/ target=_blank>axel.beckert.ch</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 63kb </strong> and has a content-to-bloat ratio of <strong>89%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/axel-beckert-ch">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>ayham.xyz</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-01-31 datetime=2023-01-31 itemprop=datePublished pubdate> Added: 2023-01-31 </time> | <time class=dt-published content=2023-01-31 datetime=2023-01-31 itemprop=datePublished pubdate> Last updated: 2023-01-31 </time><p class=e-content><a rel="noopener nofollow" href=https://ayham.xyz/ target=_blank>ayham.xyz</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 42kb </strong> and has a content-to-bloat ratio of <strong>48%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>ayham.xyz</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-01-31 datetime=2023-01-31 itemprop=datePublished pubdate> Added: 2023-01-31 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://ayham.xyz/ target=_blank>ayham.xyz</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 42kb </strong> and has a content-to-bloat ratio of <strong>48%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/ayham-xyz">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bacardi55.io</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-03-08 datetime=2024-03-08 itemprop=datePublished pubdate> Added: 2024-03-08 </time> | <time class=dt-published content=2024-03-08 datetime=2024-03-08 itemprop=datePublished pubdate> Last updated: 2024-03-08 </time><p class=e-content><a rel="noopener nofollow" href=https://bacardi55.io/ target=_blank>bacardi55.io</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 26kb </strong> and has a content-to-bloat ratio of <strong>87%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bacardi55.io</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-03-08 datetime=2024-03-08 itemprop=datePublished pubdate> Added: 2024-03-08 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://bacardi55.io/ target=_blank>bacardi55.io</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 26kb </strong> and has a content-to-bloat ratio of <strong>87%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/bacardi55-io">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bcachefs.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://bcachefs.org/ target=_blank>bcachefs.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 10kb </strong> and has a content-to-bloat ratio of <strong>52%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bcachefs.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://bcachefs.org/ target=_blank>bcachefs.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 10kb </strong> and has a content-to-bloat ratio of <strong>52%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/bcachefs-org">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bduck.xyz</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://bduck.xyz/ target=_blank>bduck.xyz</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 147kb </strong> and has a content-to-bloat ratio of <strong>5%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bduck.xyz</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2022-06-08 datetime=2022-06-08 itemprop=dateUpdated pubdate> Last updated: 2022-06-08 </time><p class=e-content><a rel="noopener nofollow" href=https://bduck.xyz/ target=_blank>bduck.xyz</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 147kb </strong> and has a content-to-bloat ratio of <strong>5%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/bduck-xyz">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>beh.uk</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://beh.uk/ target=_blank>beh.uk</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 79kb </strong> and has a content-to-bloat ratio of <strong>41%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>beh.uk</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://beh.uk/ target=_blank>beh.uk</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 79kb </strong> and has a content-to-bloat ratio of <strong>41%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/beh-uk">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>benovermyer.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://benovermyer.com/ target=_blank>benovermyer.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 74kb </strong> and has a content-to-bloat ratio of <strong>99%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>benovermyer.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://benovermyer.com/ target=_blank>benovermyer.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 74kb </strong> and has a content-to-bloat ratio of <strong>99%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/benovermyer-com">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>berkshirehathaway.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://berkshirehathaway.com target=_blank>berkshirehathaway.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 212kb </strong> and has a content-to-bloat ratio of <strong>2%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>berkshirehathaway.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://berkshirehathaway.com target=_blank>berkshirehathaway.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 212kb </strong> and has a content-to-bloat ratio of <strong>2%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/berkshirehathaway-com">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bernsteinbear.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://bernsteinbear.com/ target=_blank>bernsteinbear.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 129kb </strong> and has a content-to-bloat ratio of <strong>12%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bernsteinbear.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://bernsteinbear.com/ target=_blank>bernsteinbear.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 129kb </strong> and has a content-to-bloat ratio of <strong>12%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/bernsteinbear-com">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bestmotherfucking.website</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://bestmotherfucking.website/ target=_blank>bestmotherfucking.website</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 3kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bestmotherfucking.website</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://bestmotherfucking.website/ target=_blank>bestmotherfucking.website</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 3kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/bestmotherfucking-website">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bettermotherfuckingwebsite.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=http://bettermotherfuckingwebsite.com/ target=_blank>bettermotherfuckingwebsite.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 122kb </strong> and has a content-to-bloat ratio of <strong>2%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bettermotherfuckingwebsite.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=http://bettermotherfuckingwebsite.com/ target=_blank>bettermotherfuckingwebsite.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 122kb </strong> and has a content-to-bloat ratio of <strong>2%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/bettermotherfuckingwebsite-com">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>beuke.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Added: 2023-11-17 </time> | <time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Last updated: 2023-11-17 </time><p class=e-content><a rel="noopener nofollow" href=https://beuke.org/ target=_blank>beuke.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 21kb </strong> and has a content-to-bloat ratio of <strong>20%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>beuke.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Added: 2023-11-17 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://beuke.org/ target=_blank>beuke.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 21kb </strong> and has a content-to-bloat ratio of <strong>20%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/beuke-org">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>binyam.in</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://binyam.in/ target=_blank>binyam.in</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 44kb </strong> and has a content-to-bloat ratio of <strong>21%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>binyam.in</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://binyam.in/ target=_blank>binyam.in</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 44kb </strong> and has a content-to-bloat ratio of <strong>21%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/binyam-in">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bishwasaha.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Added: 2023-11-17 </time> | <time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Last updated: 2023-11-17 </time><p class=e-content><a rel="noopener nofollow" href=https://bishwasaha.com/ target=_blank>bishwasaha.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 154kb </strong> and has a content-to-bloat ratio of <strong>88%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bishwasaha.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Added: 2023-11-17 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://bishwasaha.com/ target=_blank>bishwasaha.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 154kb </strong> and has a content-to-bloat ratio of <strong>88%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/bishwasaha-com">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bittich.be</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-01-08 datetime=2024-01-08 itemprop=datePublished pubdate> Added: 2024-01-08 </time> | <time class=dt-published content=2024-01-08 datetime=2024-01-08 itemprop=datePublished pubdate> Last updated: 2024-01-08 </time><p class=e-content><a rel="noopener nofollow" href=https://bittich.be/ target=_blank>bittich.be</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 17kb </strong> and has a content-to-bloat ratio of <strong>53%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bittich.be</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-01-08 datetime=2024-01-08 itemprop=datePublished pubdate> Added: 2024-01-08 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://bittich.be/ target=_blank>bittich.be</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 17kb </strong> and has a content-to-bloat ratio of <strong>53%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/bittich-be">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blakehawkins.com/blog</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://blakehawkins.com/blog target=_blank>blakehawkins.com/blog</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 56kb </strong> and has a content-to-bloat ratio of <strong>8%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blakehawkins.com/blog</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://blakehawkins.com/blog target=_blank>blakehawkins.com/blog</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 56kb </strong> and has a content-to-bloat ratio of <strong>8%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/blakehawkins-com-blog">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blitzw.in</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-03-08 datetime=2024-03-08 itemprop=datePublished pubdate> Added: 2024-03-08 </time> | <time class=dt-published content=2024-03-08 datetime=2024-03-08 itemprop=datePublished pubdate> Last updated: 2024-03-08 </time><p class=e-content><a rel="noopener nofollow" href=https://blitzw.in/ target=_blank>blitzw.in</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 41kb </strong> and has a content-to-bloat ratio of <strong>71%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blitzw.in</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-03-08 datetime=2024-03-08 itemprop=datePublished pubdate> Added: 2024-03-08 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://blitzw.in/ target=_blank>blitzw.in</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 41kb </strong> and has a content-to-bloat ratio of <strong>71%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/blitzw-in">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.bshah.in</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.bshah.in/ target=_blank>blog.bshah.in</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 27kb </strong> and has a content-to-bloat ratio of <strong>13%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.bshah.in</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.bshah.in/ target=_blank>blog.bshah.in</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 27kb </strong> and has a content-to-bloat ratio of <strong>13%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/blog-bshah-in">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.circuitsofimagination.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.circuitsofimagination.com/ target=_blank>blog.circuitsofimagination.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 159kb </strong> and has a content-to-bloat ratio of <strong>4%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.circuitsofimagination.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2024-10-27 datetime=2024-10-27 itemprop=dateUpdated pubdate> Last updated: 2024-10-27 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.circuitsofimagination.com/ target=_blank>blog.circuitsofimagination.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 159kb </strong> and has a content-to-bloat ratio of <strong>4%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/blog-circuitsofimagination-com">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.fefe.de</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.fefe.de target=_blank>blog.fefe.de</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 10kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.fefe.de</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.fefe.de target=_blank>blog.fefe.de</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 10kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/blog-fefe-de">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.fossterer.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.fossterer.com/ target=_blank>blog.fossterer.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 16kb </strong> and has a content-to-bloat ratio of <strong>9%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.fossterer.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.fossterer.com/ target=_blank>blog.fossterer.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 16kb </strong> and has a content-to-bloat ratio of <strong>9%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/blog-fossterer-com">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.madelinepritchard.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-03-17 datetime=2023-03-17 itemprop=datePublished pubdate> Added: 2023-03-17 </time> | <time class=dt-published content=2023-03-17 datetime=2023-03-17 itemprop=datePublished pubdate> Last updated: 2023-03-17 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.madelinepritchard.net/ target=_blank>blog.madelinepritchard.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 41kb </strong> and has a content-to-bloat ratio of <strong>6%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.madelinepritchard.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-03-17 datetime=2023-03-17 itemprop=datePublished pubdate> Added: 2023-03-17 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.madelinepritchard.net/ target=_blank>blog.madelinepritchard.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 41kb </strong> and has a content-to-bloat ratio of <strong>6%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/blog-madelinepritchard-net">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.mni.li</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-07-14 datetime=2024-07-14 itemprop=datePublished pubdate> Added: 2024-07-14 </time> | <time class=dt-published content=2024-07-14 datetime=2024-07-14 itemprop=datePublished pubdate> Last updated: 2024-07-14 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.mni.li/ target=_blank>blog.mni.li</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 44kb </strong> and has a content-to-bloat ratio of <strong>10%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.mni.li</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-07-14 datetime=2024-07-14 itemprop=datePublished pubdate> Added: 2024-07-14 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.mni.li/ target=_blank>blog.mni.li</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 44kb </strong> and has a content-to-bloat ratio of <strong>10%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/blog-mni-li">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.plr.moe</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-01-08 datetime=2024-01-08 itemprop=datePublished pubdate> Added: 2024-01-08 </time> | <time class=dt-published content=2024-01-08 datetime=2024-01-08 itemprop=datePublished pubdate> Last updated: 2024-01-08 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.plr.moe/ target=_blank>blog.plr.moe</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 126kb </strong> and has a content-to-bloat ratio of <strong>10%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.plr.moe</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-01-08 datetime=2024-01-08 itemprop=datePublished pubdate> Added: 2024-01-08 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.plr.moe/ target=_blank>blog.plr.moe</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 126kb </strong> and has a content-to-bloat ratio of <strong>10%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/blog-plr-moe">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.skiserv.eu</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-07-15 datetime=2023-07-15 itemprop=datePublished pubdate> Added: 2023-07-15 </time> | <time class=dt-published content=2023-07-15 datetime=2023-07-15 itemprop=datePublished pubdate> Last updated: 2023-07-15 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.skiserv.eu/ target=_blank>blog.skiserv.eu</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 28kb </strong> and has a content-to-bloat ratio of <strong>96%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.skiserv.eu</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-07-15 datetime=2023-07-15 itemprop=datePublished pubdate> Added: 2023-07-15 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.skiserv.eu/ target=_blank>blog.skiserv.eu</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 28kb </strong> and has a content-to-bloat ratio of <strong>96%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/blog-skiserv-eu">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.tt4e.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2025-01-03 datetime=2025-01-03 itemprop=datePublished pubdate> Added: 2025-01-03 </time> | <time class=dt-published content=2025-01-03 datetime=2025-01-03 itemprop=datePublished pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.tt4e.com/ target=_blank>blog.tt4e.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 4kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.tt4e.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2025-01-03 datetime=2025-01-03 itemprop=datePublished pubdate> Added: 2025-01-03 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.tt4e.com/ target=_blank>blog.tt4e.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 4kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/blog-tt4e-com">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.x-way.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-10-27 datetime=2024-10-27 itemprop=datePublished pubdate> Added: 2024-10-27 </time> | <time class=dt-published content=2024-10-27 datetime=2024-10-27 itemprop=datePublished pubdate> Last updated: 2024-10-27 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.x-way.org/ target=_blank>blog.x-way.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 72kb </strong> and has a content-to-bloat ratio of <strong>86%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>blog.x-way.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-10-27 datetime=2024-10-27 itemprop=datePublished pubdate> Added: 2024-10-27 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://blog.x-way.org/ target=_blank>blog.x-way.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 72kb </strong> and has a content-to-bloat ratio of <strong>86%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/blog-x-way-org">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bmoat.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-05-10 datetime=2023-05-10 itemprop=datePublished pubdate> Added: 2023-05-10 </time> | <time class=dt-published content=2023-05-10 datetime=2023-05-10 itemprop=datePublished pubdate> Last updated: 2023-05-10 </time><p class=e-content><a rel="noopener nofollow" href=https://bmoat.com/ target=_blank>bmoat.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 97kb </strong> and has a content-to-bloat ratio of <strong>12%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bmoat.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-05-10 datetime=2023-05-10 itemprop=datePublished pubdate> Added: 2023-05-10 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://bmoat.com/ target=_blank>bmoat.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 97kb </strong> and has a content-to-bloat ratio of <strong>12%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/bmoat-com">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bnolet.me</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://bnolet.me target=_blank>bnolet.me</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 107kb </strong> and has a content-to-bloat ratio of <strong>2%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bnolet.me</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://bnolet.me target=_blank>bnolet.me</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 107kb </strong> and has a content-to-bloat ratio of <strong>2%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/bnolet-me">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bobbyhiltz.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-10-27 datetime=2024-10-27 itemprop=datePublished pubdate> Added: 2024-10-27 </time> | <time class=dt-published content=2024-10-27 datetime=2024-10-27 itemprop=datePublished pubdate> Last updated: 2024-10-27 </time><p class=e-content><a rel="noopener nofollow" href=https://bobbyhiltz.com/ target=_blank>bobbyhiltz.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 26kb </strong> and has a content-to-bloat ratio of <strong>71%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bobbyhiltz.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-10-27 datetime=2024-10-27 itemprop=datePublished pubdate> Added: 2024-10-27 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://bobbyhiltz.com/ target=_blank>bobbyhiltz.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 26kb </strong> and has a content-to-bloat ratio of <strong>71%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/bobbyhiltz-com">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>boehs.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://boehs.org/ target=_blank>boehs.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 61kb </strong> and has a content-to-bloat ratio of <strong>4%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>boehs.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://boehs.org/ target=_blank>boehs.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 61kb </strong> and has a content-to-bloat ratio of <strong>4%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/boehs-org">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bonetflix.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-07-15 datetime=2023-07-15 itemprop=datePublished pubdate> Added: 2023-07-15 </time> | <time class=dt-published content=2023-07-15 datetime=2023-07-15 itemprop=datePublished pubdate> Last updated: 2023-07-15 </time><p class=e-content><a rel="noopener nofollow" href=https://bonetflix.com/ target=_blank>bonetflix.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 132kb </strong> and has a content-to-bloat ratio of <strong>31%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bonetflix.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-07-15 datetime=2023-07-15 itemprop=datePublished pubdate> Added: 2023-07-15 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://bonetflix.com/ target=_blank>bonetflix.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 132kb </strong> and has a content-to-bloat ratio of <strong>31%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/bonetflix-com">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>box.matto.nl</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://box.matto.nl target=_blank>box.matto.nl</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 4kb </strong> and has a content-to-bloat ratio of <strong>47%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>box.matto.nl</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://box.matto.nl target=_blank>box.matto.nl</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 4kb </strong> and has a content-to-bloat ratio of <strong>47%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/box-matto-nl">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bridge.simplefin.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://bridge.simplefin.org target=_blank>bridge.simplefin.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 9kb </strong> and has a content-to-bloat ratio of <strong>52%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bridge.simplefin.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://bridge.simplefin.org target=_blank>bridge.simplefin.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 9kb </strong> and has a content-to-bloat ratio of <strong>52%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/bridge-simplefin-org">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>brunofontes.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Added: 2023-11-17 </time> | <time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Last updated: 2023-11-17 </time><p class=e-content><a rel="noopener nofollow" href=https://brunofontes.net/ target=_blank>brunofontes.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 158kb </strong> and has a content-to-bloat ratio of <strong>4%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>brunofontes.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-11-17 datetime=2023-11-17 itemprop=datePublished pubdate> Added: 2023-11-17 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://brunofontes.net/ target=_blank>brunofontes.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 158kb </strong> and has a content-to-bloat ratio of <strong>4%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/brunofontes-net">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bubirwebsitesi.github.io</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-02-01 datetime=2023-02-01 itemprop=datePublished pubdate> Added: 2023-02-01 </time> | <time class=dt-published content=2023-02-01 datetime=2023-02-01 itemprop=datePublished pubdate> Last updated: 2023-02-01 </time><p class=e-content><a rel="noopener nofollow" href=https://bubirwebsitesi.github.io/ target=_blank>bubirwebsitesi.github.io</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 3kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bubirwebsitesi.github.io</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-02-01 datetime=2023-02-01 itemprop=datePublished pubdate> Added: 2023-02-01 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://bubirwebsitesi.github.io/ target=_blank>bubirwebsitesi.github.io</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 3kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/bubirwebsitesi-github-io">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>buchh.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://buchh.org/ target=_blank>buchh.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 2kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>buchh.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://buchh.org/ target=_blank>buchh.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 2kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/buchh-org">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bukmark.club</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-02-21 datetime=2024-02-21 itemprop=datePublished pubdate> Added: 2024-02-21 </time> | <time class=dt-published content=2024-02-21 datetime=2024-02-21 itemprop=datePublished pubdate> Last updated: 2024-02-21 </time><p class=e-content><a rel="noopener nofollow" href=https://bukmark.club/ target=_blank>bukmark.club</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 26kb </strong> and has a content-to-bloat ratio of <strong>91%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bukmark.club</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-02-21 datetime=2024-02-21 itemprop=datePublished pubdate> Added: 2024-02-21 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://bukmark.club/ target=_blank>bukmark.club</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 26kb </strong> and has a content-to-bloat ratio of <strong>91%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/bukmark-club">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bvnf.space</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://bvnf.space/ target=_blank>bvnf.space</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 4kb </strong> and has a content-to-bloat ratio of <strong>86%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>bvnf.space</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://bvnf.space/ target=_blank>bvnf.space</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 4kb </strong> and has a content-to-bloat ratio of <strong>86%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/bvnf-space">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cashx.pages.dev</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-04-25 datetime=2024-04-25 itemprop=datePublished pubdate> Added: 2024-04-25 </time> | <time class=dt-published content=2024-04-25 datetime=2024-04-25 itemprop=datePublished pubdate> Last updated: 2024-04-25 </time><p class=e-content><a rel="noopener nofollow" href=https://cashx.pages.dev/ target=_blank>cashx.pages.dev</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 26kb </strong> and has a content-to-bloat ratio of <strong>93%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cashx.pages.dev</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-04-25 datetime=2024-04-25 itemprop=datePublished pubdate> Added: 2024-04-25 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://cashx.pages.dev/ target=_blank>cashx.pages.dev</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 26kb </strong> and has a content-to-bloat ratio of <strong>93%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/cashx-pages-dev">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>casperlefantom.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-04-11 datetime=2022-04-11 itemprop=datePublished pubdate> Added: 2022-04-11 </time> | <time class=dt-published content=2022-04-11 datetime=2022-04-11 itemprop=datePublished pubdate> Last updated: 2022-04-11 </time><p class=e-content><a rel="noopener nofollow" href=https://casperlefantom.net/ target=_blank>casperlefantom.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 183kb </strong> and has a content-to-bloat ratio of <strong>55%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>casperlefantom.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-04-11 datetime=2022-04-11 itemprop=datePublished pubdate> Added: 2022-04-11 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://casperlefantom.net/ target=_blank>casperlefantom.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 183kb </strong> and has a content-to-bloat ratio of <strong>55%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/casperlefantom-net">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>casuallyblue.dev</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-04-25 datetime=2024-04-25 itemprop=datePublished pubdate> Added: 2024-04-25 </time> | <time class=dt-published content=2024-04-25 datetime=2024-04-25 itemprop=datePublished pubdate> Last updated: 2024-04-25 </time><p class=e-content><a rel="noopener nofollow" href=https://casuallyblue.dev/ target=_blank>casuallyblue.dev</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 38kb </strong> and has a content-to-bloat ratio of <strong>95%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>casuallyblue.dev</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-04-25 datetime=2024-04-25 itemprop=datePublished pubdate> Added: 2024-04-25 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://casuallyblue.dev/ target=_blank>casuallyblue.dev</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 38kb </strong> and has a content-to-bloat ratio of <strong>95%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/casuallyblue-dev">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cat-v.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=http://cat-v.org/ target=_blank>cat-v.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 10kb </strong> and has a content-to-bloat ratio of <strong>66%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cat-v.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=http://cat-v.org/ target=_blank>cat-v.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 10kb </strong> and has a content-to-bloat ratio of <strong>66%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/cat-v-org">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>ccsleep.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://ccsleep.net/ target=_blank>ccsleep.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 4kb </strong> and has a content-to-bloat ratio of <strong>28%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>ccsleep.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://ccsleep.net/ target=_blank>ccsleep.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 4kb </strong> and has a content-to-bloat ratio of <strong>28%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/ccsleep-net">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>chad.hirsch.host</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://chad.hirsch.host target=_blank>chad.hirsch.host</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 25kb </strong> and has a content-to-bloat ratio of <strong>66%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>chad.hirsch.host</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://chad.hirsch.host target=_blank>chad.hirsch.host</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 25kb </strong> and has a content-to-bloat ratio of <strong>66%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/chad-hirsch-host">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>chino.is-a.dev</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-02-26 datetime=2023-02-26 itemprop=datePublished pubdate> Added: 2023-02-26 </time> | <time class=dt-published content=2023-02-26 datetime=2023-02-26 itemprop=datePublished pubdate> Last updated: 2023-02-26 </time><p class=e-content><a rel="noopener nofollow" href=https://chino.is-a.dev/ target=_blank>chino.is-a.dev</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 199kb </strong> and has a content-to-bloat ratio of <strong>5%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>chino.is-a.dev</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-02-26 datetime=2023-02-26 itemprop=datePublished pubdate> Added: 2023-02-26 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://chino.is-a.dev/ target=_blank>chino.is-a.dev</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 199kb </strong> and has a content-to-bloat ratio of <strong>5%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/chino-is-a-dev">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>chromora.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-07-14 datetime=2024-07-14 itemprop=datePublished pubdate> Added: 2024-07-14 </time> | <time class=dt-published content=2024-07-14 datetime=2024-07-14 itemprop=datePublished pubdate> Last updated: 2024-07-14 </time><p class=e-content><a rel="noopener nofollow" href=https://chromora.com/ target=_blank>chromora.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 94kb </strong> and has a content-to-bloat ratio of <strong>56%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>chromora.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-07-14 datetime=2024-07-14 itemprop=datePublished pubdate> Added: 2024-07-14 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://chromora.com/ target=_blank>chromora.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 94kb </strong> and has a content-to-bloat ratio of <strong>56%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/chromora-com">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cli.club</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-01-31 datetime=2023-01-31 itemprop=datePublished pubdate> Added: 2023-01-31 </time> | <time class=dt-published content=2023-01-31 datetime=2023-01-31 itemprop=datePublished pubdate> Last updated: 2023-01-31 </time><p class=e-content><a rel="noopener nofollow" href=https://cli.club/ target=_blank>cli.club</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 30kb </strong> and has a content-to-bloat ratio of <strong>97%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cli.club</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-01-31 datetime=2023-01-31 itemprop=datePublished pubdate> Added: 2023-01-31 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://cli.club/ target=_blank>cli.club</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 30kb </strong> and has a content-to-bloat ratio of <strong>97%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/cli-club">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cnx.gdn</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-02-01 datetime=2023-02-01 itemprop=datePublished pubdate> Added: 2023-02-01 </time> | <time class=dt-published content=2023-02-01 datetime=2023-02-01 itemprop=datePublished pubdate> Last updated: 2023-02-01 </time><p class=e-content><a rel="noopener nofollow" href=https://cnx.gdn target=_blank>cnx.gdn</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 3kb </strong> and has a content-to-bloat ratio of <strong>48%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cnx.gdn</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-02-01 datetime=2023-02-01 itemprop=datePublished pubdate> Added: 2023-02-01 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://cnx.gdn target=_blank>cnx.gdn</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 3kb </strong> and has a content-to-bloat ratio of <strong>48%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/cnx-gdn">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cnx.srht.site</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://cnx.srht.site/ target=_blank>cnx.srht.site</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 3kb </strong> and has a content-to-bloat ratio of <strong>48%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cnx.srht.site</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2023-01-31 datetime=2023-01-31 itemprop=dateUpdated pubdate> Last updated: 2023-01-31 </time><p class=e-content><a rel="noopener nofollow" href=https://cnx.srht.site/ target=_blank>cnx.srht.site</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 3kb </strong> and has a content-to-bloat ratio of <strong>48%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/cnx-srht-site">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>code.strigo.cc</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-07-15 datetime=2023-07-15 itemprop=datePublished pubdate> Added: 2023-07-15 </time> | <time class=dt-published content=2023-07-15 datetime=2023-07-15 itemprop=datePublished pubdate> Last updated: 2023-07-15 </time><p class=e-content><a rel="noopener nofollow" href=https://code.strigo.cc/ target=_blank>code.strigo.cc</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 105kb </strong> and has a content-to-bloat ratio of <strong>2%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>code.strigo.cc</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-07-15 datetime=2023-07-15 itemprop=datePublished pubdate> Added: 2023-07-15 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://code.strigo.cc/ target=_blank>code.strigo.cc</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 105kb </strong> and has a content-to-bloat ratio of <strong>2%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/code-strigo-cc">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>codevoid.de</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://codevoid.de/ target=_blank>codevoid.de</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 7kb </strong> and has a content-to-bloat ratio of <strong>90%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>codevoid.de</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://codevoid.de/ target=_blank>codevoid.de</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 7kb </strong> and has a content-to-bloat ratio of <strong>90%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/codevoid-de">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>codingotaku.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://codingotaku.com/ target=_blank>codingotaku.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 11kb </strong> and has a content-to-bloat ratio of <strong>73%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>codingotaku.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://codingotaku.com/ target=_blank>codingotaku.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 11kb </strong> and has a content-to-bloat ratio of <strong>73%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/codingotaku-com">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>colincogle.name</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-07-15 datetime=2023-07-15 itemprop=datePublished pubdate> Added: 2023-07-15 </time> | <time class=dt-published content=2023-07-15 datetime=2023-07-15 itemprop=datePublished pubdate> Last updated: 2023-07-15 </time><p class=e-content><a rel="noopener nofollow" href=https://colincogle.name/ target=_blank>colincogle.name</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 36kb </strong> and has a content-to-bloat ratio of <strong>41%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>colincogle.name</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2023-07-15 datetime=2023-07-15 itemprop=datePublished pubdate> Added: 2023-07-15 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://colincogle.name/ target=_blank>colincogle.name</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 36kb </strong> and has a content-to-bloat ratio of <strong>41%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/colincogle-name">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>concise-encoding.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://concise-encoding.org/ target=_blank>concise-encoding.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 27kb </strong> and has a content-to-bloat ratio of <strong>91%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>concise-encoding.org</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://concise-encoding.org/ target=_blank>concise-encoding.org</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 27kb </strong> and has a content-to-bloat ratio of <strong>91%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/concise-encoding-org">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>consoom.soy</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://consoom.soy/ target=_blank>consoom.soy</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 9kb </strong> and has a content-to-bloat ratio of <strong>63%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>consoom.soy</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://consoom.soy/ target=_blank>consoom.soy</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 9kb </strong> and has a content-to-bloat ratio of <strong>63%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/consoom-soy">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>coolmathgames.tech</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=http://coolmathgames.tech/ target=_blank>coolmathgames.tech</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 61kb </strong> and has a content-to-bloat ratio of <strong>8%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>coolmathgames.tech</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2023-05-10 datetime=2023-05-10 itemprop=dateUpdated pubdate> Last updated: 2023-05-10 </time><p class=e-content><a rel="noopener nofollow" href=http://coolmathgames.tech/ target=_blank>coolmathgames.tech</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 61kb </strong> and has a content-to-bloat ratio of <strong>8%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/coolmathgames-tech">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cosmo.red</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://cosmo.red target=_blank>cosmo.red</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 1kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cosmo.red</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://cosmo.red target=_blank>cosmo.red</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 1kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/cosmo-red">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>crackle.dev</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://crackle.dev/ target=_blank>crackle.dev</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 1kb </strong> and has a content-to-bloat ratio of <strong>51%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>crackle.dev</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2022-06-08 datetime=2022-06-08 itemprop=dateUpdated pubdate> Last updated: 2022-06-08 </time><p class=e-content><a rel="noopener nofollow" href=https://crackle.dev/ target=_blank>crackle.dev</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 1kb </strong> and has a content-to-bloat ratio of <strong>51%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/crackle-dev">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>crism.ro</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-07-14 datetime=2024-07-14 itemprop=datePublished pubdate> Added: 2024-07-14 </time> | <time class=dt-published content=2024-07-14 datetime=2024-07-14 itemprop=datePublished pubdate> Last updated: 2024-07-14 </time><p class=e-content><a rel="noopener nofollow" href=https://crism.ro/ target=_blank>crism.ro</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 60kb </strong> and has a content-to-bloat ratio of <strong>7%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>crism.ro</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-07-14 datetime=2024-07-14 itemprop=datePublished pubdate> Added: 2024-07-14 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://crism.ro/ target=_blank>crism.ro</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 60kb </strong> and has a content-to-bloat ratio of <strong>7%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/crism-ro">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cronokirby.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://cronokirby.com target=_blank>cronokirby.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 245kb </strong> and has a content-to-bloat ratio of <strong>48%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cronokirby.com</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://cronokirby.com target=_blank>cronokirby.com</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 245kb </strong> and has a content-to-bloat ratio of <strong>48%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/cronokirby-com">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>crtv.pages.dev</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-07-14 datetime=2024-07-14 itemprop=datePublished pubdate> Added: 2024-07-14 </time> | <time class=dt-published content=2024-07-14 datetime=2024-07-14 itemprop=datePublished pubdate> Last updated: 2024-07-14 </time><p class=e-content><a rel="noopener nofollow" href=https://crtv.pages.dev/ target=_blank>crtv.pages.dev</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 7kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>crtv.pages.dev</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-07-14 datetime=2024-07-14 itemprop=datePublished pubdate> Added: 2024-07-14 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://crtv.pages.dev/ target=_blank>crtv.pages.dev</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 7kb </strong> and has a content-to-bloat ratio of <strong>100%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/crtv-pages-dev">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cujo.casa</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-10-27 datetime=2024-10-27 itemprop=datePublished pubdate> Added: 2024-10-27 </time> | <time class=dt-published content=2024-10-27 datetime=2024-10-27 itemprop=datePublished pubdate> Last updated: 2024-10-27 </time><p class=e-content><a rel="noopener nofollow" href=https://cujo.casa/ target=_blank>cujo.casa</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 4kb </strong> and has a content-to-bloat ratio of <strong>52%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cujo.casa</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2024-10-27 datetime=2024-10-27 itemprop=datePublished pubdate> Added: 2024-10-27 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://cujo.casa/ target=_blank>cujo.casa</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 4kb </strong> and has a content-to-bloat ratio of <strong>52%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/cujo-casa">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cycloneblaze.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Last updated: 2022-03-22 </time><p class=e-content><a rel="noopener nofollow" href=https://cycloneblaze.net/ target=_blank>cycloneblaze.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 25kb </strong> and has a content-to-bloat ratio of <strong>18%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<!doctype html><html lang=en><head><meta charset=utf-8><meta content="width=device-width,initial-scale=1" name=viewport><title>The 250kb Club</title><meta content="An exclusive membership for web pages presenting themselves in no more than 250kb." name=description><meta content=koehr name=author><meta content="The 250kb Club" name=DC.title><link href=https://koehr.ing rel=author><link href=/favicon.png rel=icon type=image/x-icon><link href=https://250kb.club/rss.xml rel=alternate title=RSS type=application/rss+xml><style>body{color:#333;background:#fff;margin:0;padding:0;font:16px/1.4 sans-serif}body>header,main,body>footer{width:calc(100% - 2em);max-width:calc(720px - 2em);margin:0 auto;padding:0 1em}#main-footer{border-top:1px solid #d3d3d3;margin:3rem auto 0;font-size:85%}main{margin:3em auto}h1{letter-spacing:6px;text-align:center;margin-top:1.2em;font:small-caps 700 2.2em/1.4 sans-serif}h2{letter-spacing:5px;text-align:center;font:small-caps 700 2em/1.4 sans-serif}p{text-align:justify}a,a:visited{color:currentColor;text-decoration:underline}select,label,#donate{color:currentColor;font:inherit;background:0 0;border:2px solid gray;padding:.25em .5em}ol{padding:0;list-style:none}li{background-color:#0002;margin-bottom:1em}aside{flex-flow:wrap;justify-content:flex-end;gap:.5em;display:flex;position:relative}.hidden{visibility:hidden}.big{font-size:1.5em}.center{text-align:center}#info-toggle{display:none}#info-toggle~label{text-align:center}#info-toggle~label>.info-close{display:none}#info-toggle:checked~label>.info-close{display:inline}#info-toggle:checked~label>.info-text{display:none}#info-popup{background:#fff;border:3px solid #ddd;width:calc(714px - 2em);max-width:calc(100vw - 2em - 6px);padding:0 1em;display:none;position:absolute;top:2.5em;left:-1em}#info-toggle:checked~#info-popup{display:block}.entry{flex-flow:row;justify-content:space-between;height:2em;padding:.5em .5em 0;font-size:1.3em;line-height:2em;display:flex}.entry>.url{text-overflow:ellipsis;flex:auto;width:70%;overflow:hidden}.entry>.size,.entry>.ratio,.entry>.open-page{text-align:right;flex:none;width:10%}.entry>.open-page img{max-height:32px;margin-top:4px}.entry-size-bar,.entry-ratio-bar{border-bottom:2px solid;height:0;margin-bottom:2px}.entry-size-bar.highlighted,.entry-ratio-bar.highlighted{border-bottom-width:4px}.entry-size-bar{width:calc(var(--size)/256*100%);border-bottom-color:#e44}.entry-ratio-bar{width:var(--ratio);border-bottom-color:#56b}#pager{flex-flow:row;justify-content:space-between;align-items:center;display:flex}.badges>img{margin-bottom:-5px}pre{background:#8885;height:11em;display:block}@media (prefers-color-scheme:dark){body{color:#fff;background:#222}#info-popup{background:#000;border-color:#444}}</style><body><main id=member><h1 class="p-name dated" id=title>cycloneblaze.net</h1><p class="big center">Proud member of the exclusive 250KB Club!<p><time class=dt-published content=2022-03-22 datetime=2022-03-22 itemprop=datePublished pubdate> Added: 2022-03-22 </time> | <time class=dt-updated content=2025-01-03 datetime=2025-01-03 itemprop=dateUpdated pubdate> Last updated: 2025-01-03 </time><p class=e-content><a rel="noopener nofollow" href=https://cycloneblaze.net/ target=_blank>cycloneblaze.net</a> is a member of the exclusive 250KB Club. The page weighs <strong> only 25kb </strong> and has a content-to-bloat ratio of <strong>18%</strong>.<p>The owner of this page is now entitled to add one of those shiny badges to their page. But, even though I tried to make them as small as possible, a badge will add some kilobytes to the page weight. A code snipped can be found by clicking on the respective badge.<p class=badges>The badges can either be downloaded and served as part of the website or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for <i>every visitor of <strong>your</strong> page</i>. I'm not interested in those logs but you still have to trust my word. So decide for yourself.<p><details><summary><img alt="simple badge, dark" src=/simple_badge_dark.png> (1.4kB)</summary> <pre><code>
|
||||
<a title="250KB Club page" href="https://250kb.club/cycloneblaze-net">
|
||||
<img
|
||||
alt="badge: proud member of the 250KB Club"
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue