feat: manually generate ogi to speed up builds
|
@ -10,7 +10,6 @@ import htmlmin from 'html-minifier-terser'
|
|||
|
||||
import filters from './config/filters/index.js'
|
||||
import { slugifyString } from './config/utils/index.js'
|
||||
import { svgToJpeg } from './config/events/index.js'
|
||||
import { minifyJsComponents } from './config/events/index.js'
|
||||
import { searchIndex, tagList, postStats, tagsSortedByCount, links, tagMap, booksToRead } from './config/collections/index.js'
|
||||
|
||||
|
@ -142,7 +141,6 @@ export default async function (eleventyConfig) {
|
|||
})
|
||||
|
||||
// events
|
||||
eleventyConfig.on('afterBuild', svgToJpeg)
|
||||
eleventyConfig.on('afterBuild', minifyJsComponents)
|
||||
|
||||
return {
|
||||
|
|
|
@ -1,30 +1,6 @@
|
|||
import fs from 'fs'
|
||||
import Image from '@11ty/eleventy-img'
|
||||
import { minify } from 'terser'
|
||||
|
||||
export const svgToJpeg = () => {
|
||||
const socialPreviewImagesDir = '_site/assets/img/social-preview/'
|
||||
fs.readdir(socialPreviewImagesDir, (err, files) => {
|
||||
if (!!files && files.length > 0) {
|
||||
files.forEach((fileName) => {
|
||||
if (fileName.endsWith('.svg')) {
|
||||
let imageUrl = socialPreviewImagesDir + fileName
|
||||
Image(imageUrl, {
|
||||
formats: ['jpeg'],
|
||||
outputDir: './' + socialPreviewImagesDir,
|
||||
filenameFormat: function (id, src, width, format) {
|
||||
let outputFileName = fileName.substring(0, fileName.length - 4)
|
||||
return `${outputFileName}.${format}`
|
||||
},
|
||||
})
|
||||
}
|
||||
})
|
||||
} else {
|
||||
console.log('⚠ No social images found')
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
export const minifyJsComponents = async () => {
|
||||
const jsComponentsDir = '_site/assets/scripts/components';
|
||||
const files = fs.readdirSync(jsComponentsDir);
|
||||
|
|
|
@ -22,17 +22,6 @@ export default {
|
|||
const replacement = '&'
|
||||
return string.replace(pattern, replacement)
|
||||
},
|
||||
splitLines: (input, maxCharLength) => {
|
||||
const parts = input.split(' ')
|
||||
const lines = parts.reduce(function (acc, cur) {
|
||||
if (!acc.length) return [cur]
|
||||
let lastOne = acc[acc.length - 1]
|
||||
if (lastOne.length + cur.length > maxCharLength) return [...acc, cur]
|
||||
acc[acc.length - 1] = lastOne + ' ' + cur
|
||||
return acc
|
||||
}, [])
|
||||
return lines
|
||||
},
|
||||
stripUtm: (string) => {
|
||||
if (!string) return
|
||||
return string.replace(utmPattern, '')
|
||||
|
|
67
package-lock.json
generated
|
@ -22,7 +22,6 @@
|
|||
"@11ty/eleventy": "3.0.0-alpha.10",
|
||||
"@11ty/eleventy-activity-feed": "^1.0.9",
|
||||
"@11ty/eleventy-fetch": "^4.0.1",
|
||||
"@11ty/eleventy-img": "^4.0.2",
|
||||
"@11ty/eleventy-plugin-rss": "^1.2.0",
|
||||
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
|
||||
"@11tyrocks/eleventy-plugin-lightningcss": "^1.4.0",
|
||||
|
@ -31,6 +30,7 @@
|
|||
"@remy/webmention": "^1.5.0",
|
||||
"@rknightuk/eleventy-plugin-post-graph": "^1.0.6",
|
||||
"dotenv-flow": "^4.1.0",
|
||||
"gray-matter": "^4.0.3",
|
||||
"html-minifier-terser": "^7.2.0",
|
||||
"ics-to-json-extended": "^1.1.4",
|
||||
"liquidjs": "^10.10.0",
|
||||
|
@ -39,6 +39,7 @@
|
|||
"markdown-it-anchor": "^8.4.1",
|
||||
"markdown-it-footnote": "^4.0.0",
|
||||
"sanitize-html": "^2.13.0",
|
||||
"sharp": "^0.33.3",
|
||||
"slugify": "^1.6.6",
|
||||
"terser": "^5.30.1",
|
||||
"writing-stats": "^1.0.6"
|
||||
|
@ -211,28 +212,6 @@
|
|||
"url": "https://opencollective.com/11ty"
|
||||
}
|
||||
},
|
||||
"node_modules/@11ty/eleventy-img": {
|
||||
"version": "4.0.2",
|
||||
"resolved": "https://registry.npmjs.org/@11ty/eleventy-img/-/eleventy-img-4.0.2.tgz",
|
||||
"integrity": "sha512-MSCkZRJk9rWa7nojx9HBMZJePOrm+V3XNpT091qguj61SG5UsgXbxAkoeejO3npmKIQJTyVIV/rrA6d7xZYOvw==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"@11ty/eleventy-fetch": "^4.0.0",
|
||||
"brotli-size": "^4.0.0",
|
||||
"debug": "^4.3.4",
|
||||
"entities": "^4.5.0",
|
||||
"image-size": "^1.1.1",
|
||||
"p-queue": "^6.6.2",
|
||||
"sharp": "^0.33.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"funding": {
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/11ty"
|
||||
}
|
||||
},
|
||||
"node_modules/@11ty/eleventy-plugin-bundle": {
|
||||
"version": "2.0.2",
|
||||
"resolved": "https://registry.npmjs.org/@11ty/eleventy-plugin-bundle/-/eleventy-plugin-bundle-2.0.2.tgz",
|
||||
|
@ -1683,18 +1662,6 @@
|
|||
"node": ">=8"
|
||||
}
|
||||
},
|
||||
"node_modules/brotli-size": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/brotli-size/-/brotli-size-4.0.0.tgz",
|
||||
"integrity": "sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"duplexer": "0.1.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 10.16.0"
|
||||
}
|
||||
},
|
||||
"node_modules/browserslist": {
|
||||
"version": "4.23.0",
|
||||
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz",
|
||||
|
@ -2327,12 +2294,6 @@
|
|||
"node": ">= 12.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/duplexer": {
|
||||
"version": "0.1.1",
|
||||
"resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz",
|
||||
"integrity": "sha512-sxNZ+ljy+RA1maXoUReeqBBpBC6RLKmg5ewzV+x+mSETmWNoKdZN6vcQjpFROemza23hGFskJtFNoUWUaQ+R4Q==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/ee-first": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
|
||||
|
@ -3165,21 +3126,6 @@
|
|||
"moment": "^2.29.1"
|
||||
}
|
||||
},
|
||||
"node_modules/image-size": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/image-size/-/image-size-1.1.1.tgz",
|
||||
"integrity": "sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"queue": "6.0.2"
|
||||
},
|
||||
"bin": {
|
||||
"image-size": "bin/image-size.js"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=16.x"
|
||||
}
|
||||
},
|
||||
"node_modules/inflight": {
|
||||
"version": "1.0.6",
|
||||
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
|
||||
|
@ -4960,15 +4906,6 @@
|
|||
"node": ">=6"
|
||||
}
|
||||
},
|
||||
"node_modules/queue": {
|
||||
"version": "6.0.2",
|
||||
"resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz",
|
||||
"integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"inherits": "~2.0.3"
|
||||
}
|
||||
},
|
||||
"node_modules/queue-microtask": {
|
||||
"version": "1.2.3",
|
||||
"resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "13.4.9",
|
||||
"version": "13.5.0",
|
||||
"description": "The source for my personal site. Built using 11ty.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -9,6 +9,7 @@
|
|||
"start:quick": "eleventy --serve --incremental --ignore-initial",
|
||||
"build": "ELEVENTY_PRODUCTION=true eleventy",
|
||||
"debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve",
|
||||
"build:ogi": "node ./scripts/og-images/index.js",
|
||||
"postbuild": "webmention _site/feeds/posts --limit 1 --send && webmention _site/feeds/links --limit 1 --send"
|
||||
},
|
||||
"keywords": [
|
||||
|
@ -33,7 +34,6 @@
|
|||
"@11ty/eleventy": "3.0.0-alpha.10",
|
||||
"@11ty/eleventy-activity-feed": "^1.0.9",
|
||||
"@11ty/eleventy-fetch": "^4.0.1",
|
||||
"@11ty/eleventy-img": "^4.0.2",
|
||||
"@11ty/eleventy-plugin-rss": "^1.2.0",
|
||||
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
|
||||
"@11tyrocks/eleventy-plugin-lightningcss": "^1.4.0",
|
||||
|
@ -42,6 +42,7 @@
|
|||
"@remy/webmention": "^1.5.0",
|
||||
"@rknightuk/eleventy-plugin-post-graph": "^1.0.6",
|
||||
"dotenv-flow": "^4.1.0",
|
||||
"gray-matter": "^4.0.3",
|
||||
"html-minifier-terser": "^7.2.0",
|
||||
"ics-to-json-extended": "^1.1.4",
|
||||
"liquidjs": "^10.10.0",
|
||||
|
@ -50,6 +51,7 @@
|
|||
"markdown-it-anchor": "^8.4.1",
|
||||
"markdown-it-footnote": "^4.0.0",
|
||||
"sanitize-html": "^2.13.0",
|
||||
"sharp": "^0.33.3",
|
||||
"slugify": "^1.6.6",
|
||||
"terser": "^5.30.1",
|
||||
"writing-stats": "^1.0.6"
|
||||
|
|
74
scripts/og-images/index.js
Normal file
|
@ -0,0 +1,74 @@
|
|||
import { promises as fs } from 'fs'
|
||||
import path from 'path'
|
||||
import sharp from 'sharp'
|
||||
import matter from 'gray-matter'
|
||||
import slugify from 'slugify'
|
||||
import { Liquid } from 'liquidjs'
|
||||
import { DateTime } from 'luxon'
|
||||
import { fileURLToPath } from 'url'
|
||||
|
||||
const __filename = fileURLToPath(import.meta.url)
|
||||
const __dirname = path.dirname(__filename)
|
||||
const baseDir = path.join(__dirname, '../../src/posts')
|
||||
const outputDir = path.join(__dirname, '../../src/assets/img/ogi/')
|
||||
const engine = new Liquid({ extname: '.liquid' })
|
||||
|
||||
engine.registerFilter('date', (isoDateString, formatString = 'MMMM d, yyyy') => {
|
||||
const date = DateTime.fromISO(isoDateString)
|
||||
return date.isValid ? date.toFormat(formatString) : isoDateString
|
||||
})
|
||||
|
||||
engine.registerFilter('splitLines', (input, maxCharLength) => {
|
||||
return input.split(' ').reduce((acc, cur) => {
|
||||
if (!acc.length || acc[acc.length - 1].length + cur.length + 1 > maxCharLength) {
|
||||
acc.push(cur)
|
||||
} else {
|
||||
acc[acc.length - 1] += ' ' + cur
|
||||
}
|
||||
return acc
|
||||
}, [])
|
||||
})
|
||||
|
||||
engine.registerFilter('slugify', (input) => slugify(input, { lower: true, strict: true, remove: /[*+~.()'"!:@]/g }))
|
||||
|
||||
const generateSVGAndConvertToPNG = async (filePath) => {
|
||||
try {
|
||||
const fileContent = await fs.readFile(filePath, 'utf8')
|
||||
const { data } = matter(fileContent)
|
||||
const svgTemplatePath = path.resolve(__dirname, 'index.liquid')
|
||||
const templateContent = await fs.readFile(svgTemplatePath, 'utf8')
|
||||
const svgContent = await engine.parseAndRender(templateContent, { preview: { data: data, date: data.date }})
|
||||
const outputFile = path.join(outputDir, `${engine.filters.slugify(data.title)}-preview.png`)
|
||||
|
||||
await fs.mkdir(outputDir, { recursive: true })
|
||||
await sharp(Buffer.from(svgContent)).png().toFile(outputFile)
|
||||
|
||||
console.log(`Generated png at ${outputFile}`)
|
||||
} catch (error) {
|
||||
console.error('Error processing file:', error)
|
||||
}
|
||||
}
|
||||
|
||||
const processYearDirectories = async (baseDir) => {
|
||||
try {
|
||||
const yearDirs = await fs.readdir(baseDir, { withFileTypes: true })
|
||||
for (const dirent of yearDirs) {
|
||||
if (dirent.isDirectory()) {
|
||||
const yearPath = path.join(baseDir, dirent.name)
|
||||
const markdownFiles = await fs.readdir(yearPath, { withFileTypes: true })
|
||||
for (const file of markdownFiles) {
|
||||
if (file.isFile() && file.name.endsWith('.md')) {
|
||||
const filePath = path.join(yearPath, file.name)
|
||||
await generateSVGAndConvertToPNG(filePath)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Failed to process directories:', error)
|
||||
}
|
||||
}
|
||||
|
||||
const generateOgImages = async () => await processYearDirectories(baseDir)
|
||||
|
||||
generateOgImages()
|
|
@ -1,11 +1,3 @@
|
|||
---
|
||||
pagination:
|
||||
data: collections.posts
|
||||
size: 1
|
||||
alias: preview
|
||||
permalink: '/assets/img/social-preview/{{ preview.data.title | slugify }}-preview.svg'
|
||||
eleventyExcludeFromCollections: true
|
||||
---
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="1200" height="630" viewBox="0 0 1200 630" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
{% assign titleInLines = preview.data.title | splitLines: 40 %}
|
||||
|
@ -32,7 +24,7 @@ eleventyExcludeFromCollections: true
|
|||
fill="#fff"
|
||||
>
|
||||
<tspan x="80" y="{{ verticalStartingPoint | minus: 120 }}">
|
||||
{{ preview.date | date: "%B %e, %Y" }}
|
||||
{{ preview.data.date | date: "MMMM d, yyyy" }}
|
||||
</tspan>
|
||||
</text>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.7 KiB |
|
@ -1684,6 +1684,11 @@
|
|||
"genre": "death metal",
|
||||
"image": "https://coryd.dev/media/artists/unaussprechlichen-kulten.jpg"
|
||||
},
|
||||
"undergang": {
|
||||
"mbid": "6853b4ec-8cd4-46a4-b970-8331d4587c43",
|
||||
"genre": "death metal",
|
||||
"image": "https://coryd.dev/media/artists/undergang.jpg"
|
||||
},
|
||||
"under-the-church": {
|
||||
"mbid": "a2bdbefc-2cfd-43a2-8728-6352f038628a",
|
||||
"genre": "death metal",
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
<meta property="og:url" content="{{ fullUrl }}" />
|
||||
<meta
|
||||
property="og:image"
|
||||
content="{%- if schema == 'blog' %}{{ meta.url }}/assets/img/social-preview/{{ title | slugify }}-preview.jpeg{%- else -%}{{ meta.meta_data.opengraph_default }}{% endif -%}"
|
||||
content="{%- if schema == 'blog' %}{{ meta.url }}/assets/img/ogi/{{ title | slugify }}-preview.png{%- else -%}{{ meta.meta_data.opengraph_default }}{% endif -%}"
|
||||
/>
|
||||
<meta name="theme-color" content="{{ meta.themeColor }}" />
|
||||
<meta name="generator" content="Eleventy">
|
||||
|
|
BIN
src/assets/img/ogi/2021-reading-list-preview.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
src/assets/img/ogi/2022-reading-list-preview.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
src/assets/img/ogi/a-brief-intro-to-git-preview.png
Normal file
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 31 KiB |
BIN
src/assets/img/ogi/a-music-workflow-for-2024-preview.png
Normal file
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 29 KiB |
BIN
src/assets/img/ogi/adding-a-light-dark-theme-toggle-preview.png
Normal file
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 37 KiB |
After Width: | Height: | Size: 37 KiB |
BIN
src/assets/img/ogi/an-indie-web-primer-preview.png
Normal file
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 41 KiB |
BIN
src/assets/img/ogi/apple-music-a-tale-of-woe-preview.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
src/assets/img/ogi/arcade-fire-reflektor-preview.png
Normal file
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 30 KiB |
BIN
src/assets/img/ogi/automatic-mastodon-post-embeds-preview.png
Normal file
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 35 KiB |
BIN
src/assets/img/ogi/automating-email-cleanup-in-gmail-preview.png
Normal file
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 36 KiB |
BIN
src/assets/img/ogi/avoiding-phishing-preview.png
Normal file
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 32 KiB |
BIN
src/assets/img/ogi/ben-thompson-on-net-neutrality-preview.png
Normal file
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 33 KiB |
BIN
src/assets/img/ogi/blitzen-trapper-ever-loved-once-preview.png
Normal file
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 32 KiB |
BIN
src/assets/img/ogi/browsing-the-mobile-web-sucks-preview.png
Normal file
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 36 KiB |
BIN
src/assets/img/ogi/building-a-reactive-website-preview.png
Normal file
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 35 KiB |
BIN
src/assets/img/ogi/castro-v23-released-preview.png
Normal file
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 36 KiB |
BIN
src/assets/img/ogi/changes-coming-to-droplr-preview.png
Normal file
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 35 KiB |
BIN
src/assets/img/ogi/check-in-to-your-personal-site-preview.png
Normal file
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 37 KiB |
BIN
src/assets/img/ogi/clearing-modpagespeed-cache-preview.png
Normal file
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 33 KiB |
BIN
src/assets/img/ogi/currently-reading-preview.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
src/assets/img/ogi/damien-jurado-2014-preview.png
Normal file
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 29 KiB |
BIN
src/assets/img/ogi/data-is-a-toxic-asset-preview.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
src/assets/img/ogi/data-ownership-and-agency-preview.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
src/assets/img/ogi/dawes-most-people-preview.png
Normal file
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 34 KiB |
BIN
src/assets/img/ogi/design-by-numbers-typography-preview.png
Normal file
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 31 KiB |
BIN
src/assets/img/ogi/digital-privacy-tools-preview.png
Normal file
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 38 KiB |
BIN
src/assets/img/ogi/dressing-for-the-surveillance-age-preview.png
Normal file
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 31 KiB |
BIN
src/assets/img/ogi/dumb-pipes-preview.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
src/assets/img/ogi/dutch-government-on-encryption-preview.png
Normal file
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 34 KiB |