diff --git a/src/content/blog/2024-09-28-link-tossed-salads-and-scrumbled-eggs-lucidity.md b/src/content/blog/2024-09-28-link-tossed-salads-and-scrumbled-eggs-lucidity.md new file mode 100644 index 0000000..3c11828 --- /dev/null +++ b/src/content/blog/2024-09-28-link-tossed-salads-and-scrumbled-eggs-lucidity.md @@ -0,0 +1,24 @@ +--- +title: 'Link: "Tossed Salads And Scrumbled Eggs" - Lucidity' +date: 2024-09-28T14:24:47.467Z +slug: 2024-09-28-link-tossed-salads-and-scrumbled-eggs-lucidity +author: Thomas Wilson + +--- +[Link to the original article](https://ludic.mataroa.blog/blog/tossed-salads-and-scrumbled-eggs/) from Nikhil Suresh. + +I came across this article on Hacker News, and gave it my full attention this Friday, with a glass of wine. It's from the same author that gave us [I Will Fucking Piledrive You If You Mention AI Again](https://ludic.mataroa.blog/blog/i-will-fucking-piledrive-you-if-you-mention-ai-again/) + +I had the unique experience of seeing someone articulate the strong beliefs I have about How To Do Work Properly, in a clearer way, while being both funnier and more outraged. + +Suresh, you won't know this feeling, but it hurts to know in my heart that I will come at most second best in a niche I, until recently, thought occupied entirely by me shouting into the twin voids of my blog and every manager I have had since 2020. Ever more niche I must pitch myself. + +Look, just read the piece, but here are some of my highlights: + +> And this is exactly why I don't view Scrum itself as particularly problematic. The _fundamental issue_, the one that is only moved by small degrees by project management methodologies, is that many, many people simply have totally unsophisticated ideas around how knowledge work functions. + +> A phrase I love is that "the map is not the territory", which more or less translates to the idea that _maps_ merely contain abstract symbols of the territory they represent, and that while we may never have access to a perfect view of the whole territory, it is important to understand that we aren't looking at the real territory… Some people have just lived with these symbols for so long that they think drawing a box on a PowerPoint slide that says "Secure Personally Identifiable Data" is the same thing as _actually making that happen_, as if one could conjure a forest into existence by drawing some trees + +"As if one could conjure a forest into existence by drawing some trees." + +I have never, perhaps ever, written a sentence that goes that hard. The *closest* thing I have, that I trot out at every possible occasion, is "sure, go shout at the tides if you just want to shout". *as if one could conjure a forest into existence by drawing some trees*… it's good and I will use it. diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 1fde908..0893be2 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -18,12 +18,6 @@ localStorage.getItem("colourScheme"); const colourScheme = colourSchemes?.[colourSchemeName]; - console.log({ - colourSchemeName, - colourScheme, - prefersDarkmode - }) - if (colourScheme) { colourSchemeStore.set(colourScheme); } else if (prefersDarkmode) { @@ -35,11 +29,16 @@ colourSchemeStore.subscribe((value) => { if (!browser) return; + document.documentElement.style.setProperty( "--colour-scheme-background", value.background ); + // document.documentElement.style.setProperty( + // "--colour-scheme-back"" + // ) + document.documentElement.style.setProperty( "--colour-scheme-text", value.text diff --git a/src/routes/blog/[slug]/+page.svelte b/src/routes/blog/[slug]/+page.svelte index ac2a975..02ce341 100644 --- a/src/routes/blog/[slug]/+page.svelte +++ b/src/routes/blog/[slug]/+page.svelte @@ -16,25 +16,25 @@