chore: ads post

This commit is contained in:
Cory Dransfeldt 2023-05-23 09:01:57 -07:00
parent 4f8f032a25
commit 98ad50f265
No known key found for this signature in database
4 changed files with 57 additions and 6 deletions

View file

@ -15,9 +15,9 @@ module.exports = {
mdToHtml: (content) => {
return marked.parse(content)
},
getFirstAttachment: (post) => {
if (post && post['attachments'] && post['attachments'].length > 0) {
return post['attachments'][0].url ? post['attachments'][0].url : post['attachments'][0]
getPostImage: (post) => {
if (post && post['image'] && post['image'] !== '') {
return post['image']
}
return '/assets/img/social-card.png'

View file

@ -15,7 +15,7 @@
<meta property="og:description" content="{% if excerpt %}{{ excerpt}}{% else %}{{ site.description }}{% endif %}" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://coryd.dev{{ page.url }}" />
<meta property="og:image" content="{{ post | getFirstAttachment }}">
<meta property="og:image" content="/assets/img/social-card.png">
<meta name="theme-color" content="#a855f7" />
<meta name="generator" content="{{ eleventy.generator }}">
<link

View file

@ -0,0 +1,52 @@
---
date: '2023-05-23'
title: 'I block ads'
draft: false
tags: ['advertising', 'privacy', 'tech']
image: https://cdn.coryd.dev/blog/adblocks.jpg
---
I block ads in the browser.
I block ads at the DNS level.<!-- excerpt -->
I block analytics, metrics, reporting and diagnostic logging.
I block programmatic pleas to disable ad-blocking.
I block the ping attribute on URLs.
I block tracking beacons.
I strip UTM campaign tags.
I unshorten URLs.
I block the page visibility API.
I stop videos from autoplaying.
I block prompts to install your app.
I block all cookies that aren't strictly required for your site to function.
I block email pixel trackers.
I provide a masked email address.
I unsubscribe from your mailing list (and block your address if I can't).
I don't answer the phone unless you're in my contacts.
I block and report SMS messages.
I pay a company to wrangle data brokers.
I throw your physical mail in the recycling without opening it and unsubscribe from it when I can.
I block ads, and you should too.
> "Let the products sell themselves
> Fuck advertising, commercial psychology
> Psychological methods to sell should be destroyed"
> Minutemen, *Shit from an Old Notebook*, 1984

View file

@ -1,4 +1,3 @@
const { getFirstAttachment } = require('../../config/filters')
const md = require('markdown-it')()
const striptags = require('striptags')
@ -21,7 +20,7 @@ module.exports = {
description: (data) => striptags(md.render(data.post_excerpt)),
url: (data) => data.url,
image: {
src: (data) => data.post | getFirstAttachment,
src: '/assets/img/social-card.png',
},
author: {
name: 'Cory Dransfeldt',