chore: ads post
This commit is contained in:
parent
4f8f032a25
commit
98ad50f265
4 changed files with 57 additions and 6 deletions
|
@ -15,9 +15,9 @@ module.exports = {
|
||||||
mdToHtml: (content) => {
|
mdToHtml: (content) => {
|
||||||
return marked.parse(content)
|
return marked.parse(content)
|
||||||
},
|
},
|
||||||
getFirstAttachment: (post) => {
|
getPostImage: (post) => {
|
||||||
if (post && post['attachments'] && post['attachments'].length > 0) {
|
if (post && post['image'] && post['image'] !== '') {
|
||||||
return post['attachments'][0].url ? post['attachments'][0].url : post['attachments'][0]
|
return post['image']
|
||||||
}
|
}
|
||||||
|
|
||||||
return '/assets/img/social-card.png'
|
return '/assets/img/social-card.png'
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<meta property="og:description" content="{% if excerpt %}{{ excerpt}}{% else %}{{ site.description }}{% endif %}" />
|
<meta property="og:description" content="{% if excerpt %}{{ excerpt}}{% else %}{{ site.description }}{% endif %}" />
|
||||||
<meta property="og:type" content="article" />
|
<meta property="og:type" content="article" />
|
||||||
<meta property="og:url" content="https://coryd.dev{{ page.url }}" />
|
<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="theme-color" content="#a855f7" />
|
||||||
<meta name="generator" content="{{ eleventy.generator }}">
|
<meta name="generator" content="{{ eleventy.generator }}">
|
||||||
<link
|
<link
|
||||||
|
|
52
src/posts/2023/i-block-ads.md
Normal file
52
src/posts/2023/i-block-ads.md
Normal 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
|
|
@ -1,4 +1,3 @@
|
||||||
const { getFirstAttachment } = require('../../config/filters')
|
|
||||||
const md = require('markdown-it')()
|
const md = require('markdown-it')()
|
||||||
const striptags = require('striptags')
|
const striptags = require('striptags')
|
||||||
|
|
||||||
|
@ -21,7 +20,7 @@ module.exports = {
|
||||||
description: (data) => striptags(md.render(data.post_excerpt)),
|
description: (data) => striptags(md.render(data.post_excerpt)),
|
||||||
url: (data) => data.url,
|
url: (data) => data.url,
|
||||||
image: {
|
image: {
|
||||||
src: (data) => data.post | getFirstAttachment,
|
src: '/assets/img/social-card.png',
|
||||||
},
|
},
|
||||||
author: {
|
author: {
|
||||||
name: 'Cory Dransfeldt',
|
name: 'Cory Dransfeldt',
|
||||||
|
|
Reference in a new issue