diff --git a/cache/jsonfeed-to-mastodon-timestamp.json b/cache/jsonfeed-to-mastodon-timestamp.json index d056d29c..677185e2 100644 --- a/cache/jsonfeed-to-mastodon-timestamp.json +++ b/cache/jsonfeed-to-mastodon-timestamp.json @@ -1,3 +1,3 @@ { - "timestamp": 1717013010631 + "timestamp": 1717028029136 } \ No newline at end of file diff --git a/cache/jsonfeed-to-mastodon.json b/cache/jsonfeed-to-mastodon.json index b2720777..c59566ab 100644 --- a/cache/jsonfeed-to-mastodon.json +++ b/cache/jsonfeed-to-mastodon.json @@ -13825,7 +13825,10 @@ "url": "https://www.mayank.co/blog/web-components-considered-harmful/", "content_text": "๐Ÿ”—: 'Web components' considered harmful via Mayank #Tech #WebDev #JavaScript https://www.mayank.co/blog/web-components-considered-harmful/", "date_published": "Wed, 29 May 2024 17:47:00 GMT", - "toots": [] + "toots": [ + "https://social.lol/users/cory/statuses/112526636930211664" + ], + "lastTootTimestamp": 1717020216882 }, "https://www.todayintabs.com/p/fracking-web": { "id": "aHR0cHM6Ly93d3cudG9kYXlpbnRhYnMuY29tL3AvZnJhY2tpbmctd2Vi", @@ -13837,5 +13840,27 @@ "https://social.lol/users/cory/statuses/112526164660375290" ], "lastTootTimestamp": 1717013010622 + }, + "https://coryd.dev/posts/2024/partnering-with-an-ai-company-means-i-can-no-longer-trust-your-output/": { + "id": "aHR0cHM6Ly9jb3J5ZC5kZXYvcG9zdHMvMjAyNC9wYXJ0bmVyaW5nLXdpdGgtYW4tYWktY29tcGFueS1tZWFucy1pLWNhbi1uby1sb25nZXItdHJ1c3QteW91ci1vdXRwdXQv", + "title": "๐Ÿ“: Partnering with an AI company means I can no longer trust your output", + "url": "https://coryd.dev/posts/2024/partnering-with-an-ai-company-means-i-can-no-longer-trust-your-output/", + "content_text": "๐Ÿ“: Partnering with an AI company means I can no longer trust your output #Tech #AI #Journalism https://coryd.dev/posts/2024/partnering-with-an-ai-company-means-i-can-no-longer-trust-your-output/", + "date_published": "Wed, 29 May 2024 21:58:00 GMT", + "toots": [ + "https://social.lol/users/cory/statuses/112526906768202894" + ], + "lastTootTimestamp": 1717024334301 + }, + "https://aworkinglibrary.com/writing/against-optimization": { + "id": "aHR0cHM6Ly9hd29ya2luZ2xpYnJhcnkuY29tL3dyaXRpbmcvYWdhaW5zdC1vcHRpbWl6YXRpb24=", + "title": "๐Ÿ”—: Against optimization via Mandy Brown", + "url": "https://aworkinglibrary.com/writing/against-optimization", + "content_text": "๐Ÿ”—: Against optimization via Mandy Brown #Tech https://aworkinglibrary.com/writing/against-optimization", + "date_published": "Wed, 29 May 2024 21:21:00 GMT", + "toots": [ + "https://social.lol/users/cory/statuses/112527148912147461" + ], + "lastTootTimestamp": 1717028029128 } } \ No newline at end of file diff --git a/src/_includes/base.liquid b/src/_includes/base.liquid index bb12bfae..7138350c 100644 --- a/src/_includes/base.liquid +++ b/src/_includes/base.liquid @@ -43,7 +43,8 @@ {%- assign ogImage = meta.meta_data.opengraph_default -%} {%- case schema -%} {%- when 'blog' -%} - {%- assign ogImage = meta.url | append: '/assets/img/ogi/' | append: title | slugifyString | append: '-preview.png' -%} + {%- assign ogBlogSlug = title | slugifyString -%} + {%- assign ogImage = meta.url | append: '/assets/img/ogi/' | append: ogBlogSlug | append: '-preview.png' -%} {%- when 'music' -%} {%- assign ogImage = music.recent.artists[0].image -%} {%- when 'music-index' -%} diff --git a/src/_includes/partials/media/music/releases.liquid b/src/_includes/partials/media/music/releases.liquid index 7c10e9a9..e7a8bf7f 100644 --- a/src/_includes/partials/media/music/releases.liquid +++ b/src/_includes/partials/media/music/releases.liquid @@ -13,7 +13,6 @@ {{ album.artist }} - โ€ข {{ album.genre }} {% endfor %} \ No newline at end of file diff --git a/src/assets/styles/pages/links.css b/src/assets/styles/pages/links.css index bc4ed8ac..67ce5b3d 100644 --- a/src/assets/styles/pages/links.css +++ b/src/assets/styles/pages/links.css @@ -7,13 +7,6 @@ & .link-box { border: 1px solid var(--gray-light); padding: var(--sizing-xs) var(--sizing-sm); - position: relative; - } - - & button { - position: absolute; - bottom: var(--sizing-sm); - right: var(--sizing-sm); } } diff --git a/src/links/2024/2024-05-29-against-optimization.md b/src/links/2024/2024-05-29-against-optimization.md new file mode 100644 index 00000000..199d2dbd --- /dev/null +++ b/src/links/2024/2024-05-29-against-optimization.md @@ -0,0 +1,7 @@ +--- +title: "Against optimization" +date: "2024-05-29T14:21:14-07:00" +tags: ['tech'] +description: "One of the most inescapable edicts when leading a team is the order to optimize the system towards the organizationโ€™s goals. It comes up across industries and at every conceivable stage of an organization, whether an early-stage startup optimizing for experimentation or a later-stage group optimizing for growth or an aged institution optimizing for preserving revenue." +link: "https://aworkinglibrary.com/writing/against-optimization" +--- \ No newline at end of file diff --git a/src/links.html b/src/pages/main/links.html similarity index 90% rename from src/links.html rename to src/pages/main/links.html index cf01de2b..bdf86029 100644 --- a/src/links.html +++ b/src/pages/main/links.html @@ -21,7 +21,6 @@ permalink: "/links/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }} {% if author %} via {{ author }}{% endif %} {% render "partials/widgets/tags.liquid", tags:link.data.tags %} - {% render "partials/widgets/share-button.liquid", url:link.data.link, title:link.data.title, tagMap:collections.tagMap %} {% endfor %} diff --git a/src/posts.html b/src/pages/main/posts.html similarity index 100% rename from src/posts.html rename to src/pages/main/posts.html diff --git a/src/tag-list.html b/src/pages/main/tag-list.html similarity index 100% rename from src/tag-list.html rename to src/pages/main/tag-list.html