mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
Compare commits
4 commits
6a7ac36f11
...
f148720fba
Author | SHA1 | Date | |
---|---|---|---|
|
f148720fba | ||
|
c50ea3c34f | ||
|
a46b790a62 | ||
|
e453714d42 |
6 changed files with 23 additions and 6 deletions
|
@ -150,5 +150,5 @@ disableKinds = ["taxonomy", "term"]
|
||||||
# don't minify html but minify other resources, esp the fulltext rss/atom feeds
|
# don't minify html but minify other resources, esp the fulltext rss/atom feeds
|
||||||
[minify]
|
[minify]
|
||||||
minifyOutput = true
|
minifyOutput = true
|
||||||
disableXML = false
|
disableXML = true
|
||||||
disableHTML = true
|
disableHTML = true
|
||||||
|
|
13
content/notes/commodified-and-commoditized.md
Normal file
13
content/notes/commodified-and-commoditized.md
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
title: "Commodified and commoditized"
|
||||||
|
date: 2022-06-01T00:47:55-07:00
|
||||||
|
---
|
||||||
|
<aside role="note">
|
||||||
|
Reply to {{< mention-work itemprop="about" itemtype="SocialMediaPosting" reply=true >}}{{<cited-work name="not only are we not the customer, we aren't even the product: We're the commodified complement of the product." url="https://toot.cat/@idlestate/108396947965094826">}} by {{<indieweb-person name="@idlestate@toot.cat" url="https://toot.cat/@idlestate" itemprop="author">}}
|
||||||
|
{{</mention-work>}}
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
Commodification means something else; I'm assuming you're referring to "commoditize", as in "commoditize your complement". Although in this context the words have some _really interesting_ overlap, which is why I brought it up. See {{<mention-work itemprop="citation" role="doc-cite" itemtype="BlogPosting">}}{{<cited-work url="https://rushkoff.com/commodified-vs-commoditized/" name="Commodified vs. Commoditized">}} by {{<indieweb-person first-name="Douglas" last-name="Rushkoff" url="https://rushkoff.com">}}{{</mention-work>}}.
|
||||||
|
|
||||||
|
We are first commodified by being made a complement to a product, then gradually commoditized as complements ideally are.
|
||||||
|
|
|
@ -1010,7 +1010,7 @@ When setting max line lengths, use a CSS media query to ensure that printed vers
|
||||||
padding: 0 3%;
|
padding: 0 3%;
|
||||||
}
|
}
|
||||||
|
|
||||||
div[itemprop="articleBody"] {
|
div[itemprop='articleBody'] {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
max-width: 36em;
|
max-width: 36em;
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,5 +8,5 @@
|
||||||
{{- $href := printf "%s%s%s" $baseURL $parsedDest.Path $fragment | absURL -}}
|
{{- $href := printf "%s%s%s" $baseURL $parsedDest.Path $fragment | absURL -}}
|
||||||
<a href="{{ $href }}"{{ with .Title}} title="{{ . }}"{{ end }}>{{ .Text | safeHTML }}</a>
|
<a href="{{ $href }}"{{ with .Title}} title="{{ . }}"{{ end }}>{{ .Text | safeHTML }}</a>
|
||||||
{{- else -}}
|
{{- else -}}
|
||||||
<a href="{{ .Destination }}"{{ with .Title}} title="{{ . }}"{{ end }}>{{ .Text | safeHTML }}</a>
|
<a href="{{ .Destination | htmlEscape }}"{{ with .Title}} title="{{ . }}"{{ end }}>{{ .Text | safeHTML }}</a>
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
<id>{{ .Permalink }}</id>
|
<id>{{ .Permalink }}</id>
|
||||||
{{ range $pages }}
|
{{ range $pages }}
|
||||||
<entry>
|
<entry>
|
||||||
<title type="html"><![CDATA[{{ .Title | safeHTML }}]]></title>
|
<title type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">{{ .Title | safeHTML }}</div></title>
|
||||||
<link href="{{ .Permalink }}" />
|
<link href="{{ .Permalink }}" />
|
||||||
<published>{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</published>
|
<published>{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</published>
|
||||||
<updated>{{ .Lastmod.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</updated>
|
<updated>{{ .Lastmod.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</updated>
|
||||||
|
@ -26,7 +26,11 @@
|
||||||
</author>
|
</author>
|
||||||
<id>{{ .Permalink }}</id>
|
<id>{{ .Permalink }}</id>
|
||||||
<rights>CC-BY-SA 4.0 by Rohan Kumar</rights>
|
<rights>CC-BY-SA 4.0 by Rohan Kumar</rights>
|
||||||
<content type="html"><![CDATA[{{ .Content | safeHTML }}]]></content>
|
<content type="xhtml">
|
||||||
|
<div xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
{{ partial "processed-content.html" . | replaceRE `(?: )?item(type|scope|prop|id|ref)="[^"]*"` "" | safeHTML }}
|
||||||
|
</div>
|
||||||
|
</content>
|
||||||
<object-type xmlns="http://activitystrea.ms/spec/1.0/">
|
<object-type xmlns="http://activitystrea.ms/spec/1.0/">
|
||||||
{{- if eq .Section "notes" -}}
|
{{- if eq .Section "notes" -}}
|
||||||
note
|
note
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
|
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
|
||||||
{{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
|
{{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
|
||||||
<guid>{{ .Permalink }}</guid>
|
<guid>{{ .Permalink }}</guid>
|
||||||
<description>{{- .Content | html -}}</description>
|
<description>{{- .Content | replaceRE `(?: )?item(type|scope|prop|id|ref)="[^"]*"` "" | html -}}</description>
|
||||||
</item>
|
</item>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Reference in a new issue