diff --git a/.astro/types.d.ts b/.astro/types.d.ts index 54c5e5f..8b4d248 100644 --- a/.astro/types.d.ts +++ b/.astro/types.d.ts @@ -332,6 +332,13 @@ declare module 'astro:content' { collection: "blog"; data: InferEntrySchema<"blog"> } & { render(): Render[".mdx"] }; +"year2025.mdx": { + id: "year2025.mdx"; + slug: "year2025"; + body: string; + collection: "blog"; + data: InferEntrySchema<"blog"> +} & { render(): Render[".mdx"] }; }; }; diff --git a/.yarnrc.yml b/.yarnrc.yml index dc61281..c9ab4af 100644 --- a/.yarnrc.yml +++ b/.yarnrc.yml @@ -1,5 +1,3 @@ -approvedGitRepositories: - - "**" enableScripts: true diff --git a/README.md b/README.md index fb0c1b8..7f832ac 100644 --- a/README.md +++ b/README.md @@ -16,15 +16,15 @@ After that, a Caddy image will serve the files generated in the `dist` directory All commands are run from the root of the project, from a terminal: -| Command | Action | -| :------------------ | :------------------------------------------------- | -| `npm i -g yarn` | Installs yarn (if needed) | -| `yarn` | Installs dependencies | -| `yarn dev` | Starts local dev server at `localhost:3000` | -| `yarn build` | Build your production site to `./dist/` | -| `yarn preview` | Preview your build locally, before deploying | -| `yarn astro ...` | Run CLI commands like `astro add`, `astro preview` | -| `yarn astro --help` | Get help using the Astro CLI | +| Command | Action | +| :------------------------ | :------------------------------------------------- | +| `npm install -g corepack` | Installs yarn (if needed) | +| `yarn` | Installs dependencies | +| `yarn dev` | Starts local dev server at `localhost:3000` | +| `yarn build` | Build your production site to `./dist/` | +| `yarn preview` | Preview your build locally, before deploying | +| `yarn astro ...` | Run CLI commands like `astro add`, `astro preview` | +| `yarn astro --help` | Get help using the Astro CLI | ## πŸš€ Project Structure diff --git a/src/content/blog/year2022-1.mdx b/src/content/blog/year2022-1.mdx index 18712b7..1af8034 100644 --- a/src/content/blog/year2022-1.mdx +++ b/src/content/blog/year2022-1.mdx @@ -80,7 +80,7 @@ It is hard to paint a tube with a brush. It looks _okaayy_. ]} /> -If we knew what we knew now, we'd have either bought the legs already ✨bling✨ed, or been satisfied with the legs as they were. It wasn't really worth the amount of effort we had to put in to change them. +If we knew what we know now, we'd have either bought the legs already ✨bling✨ed, or been satisfied with the legs as they were. It wasn't really worth the amount of effort we had to put in to change them. As of yet, we haven't seen the photos on their website, but we'll let you know when we have! diff --git a/src/content/blog/year2022-end.mdx b/src/content/blog/year2022-end.mdx index dd3bbd7..4b1cf49 100644 --- a/src/content/blog/year2022-end.mdx +++ b/src/content/blog/year2022-end.mdx @@ -60,7 +60,7 @@ In the span of a day and a half, Simon and Will installed everything: our shower ]} /> -The silicon was still curing as we left to head off for Christmas, but when we get back we'll be able to have the first test shower! An excellent Christmas present to us 🎁 +The silicone was still curing as we left to head off for Christmas, but when we get back we'll be able to have the first test shower! An excellent Christmas present to us 🎁 Of course, it's still only done\*. There are some bits of paint which need a touch up, we still need to find a light for above the sink, and we want to add some hooks and decorate a bit. @@ -140,7 +140,7 @@ Well, we're basically plumbing experts now - why not break out the pex pipes and We asked Simon for his advice, and he suggested soldering some extra copper pipe on, with a collar to join over the gap. This was a bit more than we were prepared for (or had the tools for!), but Simon offered to do it for us. We were fortunate he was there! - The important bit is not to set things on fire + The important bit is to not set things on fire Not all of the pipes required extending. The ones that didn't, however, had a different challenge in the form of an olive. These are rings of copper or brass which compression fit when you tighten the bolts between the valve and the pipe. To get a new valve on, we had to take the old olives off without damaging the pipe. This involves sawing through part of the olive (but not the pipe), then turn a screwdriver in the resulting groove to ping it off (with suitable eye protection). diff --git a/src/content/blog/year2022-w1.mdx b/src/content/blog/year2022-w1.mdx index 0ed34ac..ab89d86 100644 --- a/src/content/blog/year2022-w1.mdx +++ b/src/content/blog/year2022-w1.mdx @@ -152,7 +152,7 @@ In the end I think we're going to end up with the same approach as everyone else ## Cat cat cat -We were surprised one day to enter our kitchen and see a not-ours cat casually sat there. Argh. We really don't want territorial disputes inside our house thank you. As a result we have installed a microchip operated cat flap, and are in the process of trying to coax the cat to use it. The whirring of the catch has been putting her off, but we think she's slowly getting there. +We were surprised one day to enter our kitchen and see a not-ours cat casually sat there. Argh. We really don't want territorial disputes inside our house thank you. As a result we have installed a microchip operated cat flap, and are in the process of trying to coax our cat to use it. The whirring of the catch has been putting her off, but we think she's slowly getting there. ## Outro diff --git a/src/content/blog/year2024.mdx b/src/content/blog/year2024.mdx index 7274e72..ba6a36e 100644 --- a/src/content/blog/year2024.mdx +++ b/src/content/blog/year2024.mdx @@ -220,4 +220,4 @@ Let us know if you want any gutters inspected πŸ˜„ See you all next year! - + diff --git a/src/content/blog/year2025.mdx b/src/content/blog/year2025.mdx new file mode 100644 index 0000000..5040bb0 --- /dev/null +++ b/src/content/blog/year2025.mdx @@ -0,0 +1,265 @@ +--- +layout: ../../layouts/LayoutMdx.astro +title: "2025" +date: 2026-08-29 +dir: year2025 +image: spare-done2 +description: we forgot to write the blog on time +--- + +import { generateImageHyrdationFunction } from "../../utils"; +export const s = generateImageHyrdationFunction("year2025"); + +import Cards from "../../components/Cards.astro"; +import Callout from "../../components/Callout.astro"; +import NextPrev from "../../components/NextPrev.astro"; +import Quote from "../../components/Quote.astro"; + +Oops. Don't look at the publish date + +We forgot to write the blog. + +Here is the latest installment of the house news blog, only a little bit backdated. + + +# Blob or tube + +Previously when doing up our guest bathroom, we cunningly didn't draw attention to the dodgy looking ceiling wires in our photos. + + + +We had said: + + + Of course, it's still only done\*. ... we still need to find a light for above the sink + + +This year, right on time, we can finally call this room actually done done! + +We found it pretty difficult to find a light fitting we both liked. Nikki likes the more traditional and stylish options and Ozzy likes saying no. (bad taste)/(a better joke). + +Our shortlist was between 'Blob' and 'Tube'. + + + +Blob or tube? Blob? Or tube?? A tricky decision. + +What then followed was a philosophical debate as to whether all objects in the universe can be split into blob and tube. (We were also reminded of Ozzy's friend Chris' opinion that the only real colours are blue and brown, and all other perceived colours are just a shade of blue or brown.) + +This however raised more questions than it answered. + +Where is the cut off point for a long potato to be tube rather than blob? + +If a single spaghetto is a tube, is a bowl of spaghetti blob or just many tube? + +Do tubes have to have a hole to be a tube or are they topologically just blob? + +Is a sponge a blob or a tube? + +What about Mike Oldfield's wonderful album: Tubular Blobs? + + + +We ended up going with blob. + + + +βœ… Done done! + +# Bits and bobs (blobs?) + +We also got some smaller jobs done. In no particular order with no particular fanfare: + +One of our floorboards was doing a pretty good impression of a springy diving board. Previously we'd 'fixed' this by hiding it under a sofa, but a bit of lounge rearrangement called for a better solution, so we added an extra block to support it. + + + +We added a doorknob to the back door to the garden to stop us scraping our knuckles when trying to close it, and added some brass doorknobs to replace the plastic ones on the top floor. + + + +We got our lounge fireplace swept so we can have occasional fires on cold nights, on which we could toast marshmallows. We haven't had many as the weather has been very mild over winter this year. Also Nikki misremembered marshmallows as being better than they are. Ozzy never liked them to begin with. + + + + +# Curtain poles + +Argh, curtain poles! + +In general, we haven't had the best experience with attaching heavy things to our walls. No matter what we tried, the wall plugs would steadily be pulled out of the wall. We tried [little plaster cloths](https://www.wickes.co.uk/Rawlplug-Wet-n-Fix-Repair-Pads---Pack-of-10/p/300747) (useless), we tried matchsticks (slightly better). It worked okayyy, but our main approach was to just not have heavy things on the walls. + +But one day we realised our bedroom curtains weren't quite as attached as we would have hoped when they fell off the wall, while we were trying to get to sleep. Argh! + + + +And, of course, once one plug is pulled out the rest of them all follow suit in fairly short order. + +The short term solution was to decamp to the spare room while we tried some heavier duty ways to affix the poles. + +The longer term solution was several weeks of trying out various different combinations of filler and plugs. Each time waiting, sanding, adding another layer, waiting, testing, sighing/swearing, and trying again. After much back and forth, we eventually found a more hardcore filler that seemed to work well for us, but we'd also run out of patience with the whole process. So we decided to make extra double sure they wouldn't fall off again we also added metal brackets to share the load among more wall plugs. Finally success. It doesn't look the nicest but at least it has not budged since. + +(pictures of the new curtain pole installation) + +Then we found out the spare room curtains were coming off the wall as well. 😑 We used the same heavy-duty filler with those and again, no budging since. Phew! + +# Spare Room + +Our main progress since our last update was to improve the rest of the spare room. When we moved in, our priority was to get it feeling more habitable as soon as we could. We [steamed the wallpaper off](week1#what-a-week) and [painted it contract white](/week2#the-guest-bedroom-5f) and said ['good enough for now'](/week4#guest-room), with the intention of decorating properly at a later date. + +What really sped up our decision to redecorate was that the radiator stopped radiating, and we had guests booked to come over in the wintertime. + +As it's a north facing bedroom, we are leaning into the cosy with a nice muted red-brown. No paint bombs have been invented yet, unfortunately, so manual painting it is. + + + +Next on the list was leaning into the cosy by fixing the heating. + +The issue with the radiator was that the TRV had seized up, and it wouldn't be possible to just replace it like for like. The old radiator had imperial tails, and the TRV was horizontal rather than vertical. A modern replacement TRV wouldn't line up with the existing pipes, so we took the opportunity to get a nice new radiator with a standard radiator tail and standard TRVs. + +There's a nice-looking radiator shop just down the road from us, so we decided to go with them. Support local and all that. But when they quoted us Β£600 to plumb the new radiator in (radiator not included) we thought they were having a laugh and what's the worst that could happen if we just did it ourselves. + + + Nikki and Ozzy are VERY optimistic. They have never yet had a fun plumbing experience. + + +First we mounted the new radiator on the wall. This was the easy bit. + + + +What came next was a lot of plumbing research using the good old school of youtube. + +Armed with our new expertise, we went to Screwfix to buy a big blowtorch. What followed after was a lot of practising to solder pipe together without leaks. We had also remembered our tips from Simon on how to solder pipe. + + + The important bit is to not set things on fire + + +In particular, we also recalled why you don't vertically wire wool the pipe to clean the end in preparation for the solder. + +(Diagram of why to not vertically wire wool a pipe) + +We practised so much that we had to go back to Screwfix to get more pipe and couplings, and to get better flux and solder. The stuff supplied in the Baby's First Soldering kit that we'd bought was absolute rubbish. Maybe it's a ruse by Big Solder to get you to hire actual plumbers. + +We also needed to bend the pipe to accommodate the slightly wider combined width of the radiator and new TRVs. We practised this too. The trick for a dogleg is to draw a line on the pipe bender so your second bend is the same angle as the first. It's also important to be sure you're bending in the same z axis. + + + + +Practice makes perfect! Or at the very least makes less terrible. + + + +We refilled the system and monitored our handiwork for leaks... and there weren't any! We were pretty unnerved considering how plumbing in our house usually seemed to go! Everything seemed to go just a bit too smoothly. + + + +Quids in. Nice and toasty warm. + +We also decided to switch out the switches and sockets for some new ones. We didn't want to go with the sockets we normally go for (cheap white Screwfix multipacks) as it wouldn't go with the walls, so Nikki decided to plump for some fancier ones. These are made by the same people as our 'invisible' kitchen island sockets which, whilst lacking invisibility, are really very nice to use. The toggle light switch in particular is very fun to fiddle with. + + + +The trouble with these fancier sockets and switches is that they require a deeper than standard backbox for a flush faceplate. Ozzy spent a lot of time hunched over the sockets with a brick bolster. Thanks Ozzy!! Would we do this again? Ozzy is less keen than Nikki, that's for sure. + +Last of all, we scheduled in our favourite carpet shop to replace our least favourite carpet. In preparation, we went around and nailed down all the squeakiest floorboards and did a final coat of paint around the bottom of the skirting. + + + +The new carpet is great and so soft to walk on. + +They had to trim a little off the bottoms of the doors to account for the increased carpet thickness so we now have 50% more openable doors! Not that we needed the door between the spare room and office to actually open, but it's nice to have the option. We have a door wedge to keep it shut again. (It helps people de-clench) + +We also managed to find this armchair in a local shop which just happened to be on sale, down from ludicrously expensive to actually worth getting. The colour is a perfect match! It's great quality too, very comfy to sit in, perfect for relaxing and reading. + + + + +Done*. Asterisk of course. We had some other ideas for this room, maybe a desk or bureau in the alcove, extra shelves, mouldings, a larger and comfier headboard, maybe a floor lamp for reading, but as always, other worse rooms are being bumped up the priority list for what we might tackle next. + +# Thoughts + +We were pretty pleased to finally have a nice uneventful plumbing experience in our house for once. + +It's also really nice for us to have finally done a room ourselves to a higher standard. The nicest parts of our house are still the bits we got others in to do for us. + +See you next time, when we remember. + + \ No newline at end of file diff --git a/src/images/year2025/bathroom-light1.jpg b/src/images/year2025/bathroom-light1.jpg new file mode 100644 index 0000000..df968ad --- /dev/null +++ b/src/images/year2025/bathroom-light1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da0714ba058b3f1278a77a6b8448c6a3ce2278e08a80095abebd44862ece7cea +size 5252058 diff --git a/src/images/year2025/bathroom-light2.jpg b/src/images/year2025/bathroom-light2.jpg new file mode 100644 index 0000000..8163454 --- /dev/null +++ b/src/images/year2025/bathroom-light2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80acfc7cc7806247c22ac9908606a5ce9a68dedadebc6ac98f36bc1fceadff02 +size 4341188 diff --git a/src/images/year2025/bathroom-wires.jpg b/src/images/year2025/bathroom-wires.jpg new file mode 100644 index 0000000..7f41476 --- /dev/null +++ b/src/images/year2025/bathroom-wires.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:046372b9943455af5b16c2255af078e1aec0eae13cec9bb7aa139c493836dfb3 +size 4377791 diff --git a/src/images/year2025/bathroom1.jpg b/src/images/year2025/bathroom1.jpg new file mode 100644 index 0000000..f347504 --- /dev/null +++ b/src/images/year2025/bathroom1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2134714207638e4a5560cf2ec6d1a92d0e5eded2c56f4fab4d44b8524e7fd53 +size 3503017 diff --git a/src/images/year2025/bathroom2.jpg b/src/images/year2025/bathroom2.jpg new file mode 100644 index 0000000..0721f01 --- /dev/null +++ b/src/images/year2025/bathroom2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c304f0fb90793fc7a32e8fd1d8e6fafd9b2579ac927c75542a5037a0c48942f +size 4787046 diff --git a/src/images/year2025/blob.jpg b/src/images/year2025/blob.jpg new file mode 100644 index 0000000..a4d68c9 --- /dev/null +++ b/src/images/year2025/blob.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebd65753e383f500135d00bc699dac28427fb9b82b109db503013617a8214d43 +size 24322 diff --git a/src/images/year2025/curtains-argh1.jpg b/src/images/year2025/curtains-argh1.jpg new file mode 100644 index 0000000..392b39d --- /dev/null +++ b/src/images/year2025/curtains-argh1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb8e202e055602bad8ad8ac16925e2d915613a47930486eae50e4904d62de403 +size 4207236 diff --git a/src/images/year2025/fireplace.jpg b/src/images/year2025/fireplace.jpg new file mode 100644 index 0000000..a746600 --- /dev/null +++ b/src/images/year2025/fireplace.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba619368310be304ea8afe128bdcf90ce161f8e905ac70d2afc7ab209eba57b9 +size 4995494 diff --git a/src/images/year2025/floorboard-block.jpg b/src/images/year2025/floorboard-block.jpg new file mode 100644 index 0000000..cd6c068 --- /dev/null +++ b/src/images/year2025/floorboard-block.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c5d1cbae652a4aee62f648b0c94390216bf47db74fb87959168633a391726d4 +size 4700836 diff --git a/src/images/year2025/knob-kitchen.jpg b/src/images/year2025/knob-kitchen.jpg new file mode 100644 index 0000000..80a5ea9 --- /dev/null +++ b/src/images/year2025/knob-kitchen.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd278e330af5e22faafe30fe2eabcc84ef533030d1678bf2b124a86c4d515525 +size 4265111 diff --git a/src/images/year2025/knob-old.jpg b/src/images/year2025/knob-old.jpg new file mode 100644 index 0000000..376fe1c --- /dev/null +++ b/src/images/year2025/knob-old.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab967303bdb6ebd5093968517de326f8cf03e645c12bbbe28fc382aafaae4723 +size 5569451 diff --git a/src/images/year2025/knob1.jpg b/src/images/year2025/knob1.jpg new file mode 100644 index 0000000..1d196ea --- /dev/null +++ b/src/images/year2025/knob1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0053a4074485483a26720f421c0450089eeb44bf4c8f5131faf852a4f00a8da6 +size 4059699 diff --git a/src/images/year2025/knob2.jpg b/src/images/year2025/knob2.jpg new file mode 100644 index 0000000..75804e0 --- /dev/null +++ b/src/images/year2025/knob2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fc487ef927ffe0b6b2ac28dc410008d4baea86b2bd6506ab14387ca1766b039 +size 4279644 diff --git a/src/images/year2025/spare-carpet.jpg b/src/images/year2025/spare-carpet.jpg new file mode 100644 index 0000000..2132844 --- /dev/null +++ b/src/images/year2025/spare-carpet.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b982e0035ced216847678c1d103356b61a10a5418e87d77967d03629082d3a4 +size 3859962 diff --git a/src/images/year2025/spare-done1.jpg b/src/images/year2025/spare-done1.jpg new file mode 100644 index 0000000..d14a362 --- /dev/null +++ b/src/images/year2025/spare-done1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96818a870b6870b4bdabdf3d520f5166b0ca15d0ce94fa72b2365f9e0ec45e7b +size 3370682 diff --git a/src/images/year2025/spare-done2.jpg b/src/images/year2025/spare-done2.jpg new file mode 100644 index 0000000..a9352f3 --- /dev/null +++ b/src/images/year2025/spare-done2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3325e61b295d7c2e6a8310798b162ff135edad62373d4bdcedc27a2d88e594a7 +size 5493493 diff --git a/src/images/year2025/spare-done3.jpg b/src/images/year2025/spare-done3.jpg new file mode 100644 index 0000000..7d031f2 --- /dev/null +++ b/src/images/year2025/spare-done3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e302ce7090f2558ad2e0b47e199a8fb88f6715fd35e10466ef3433ef575ed700 +size 4098315 diff --git a/src/images/year2025/spare-paint1.jpg b/src/images/year2025/spare-paint1.jpg new file mode 100644 index 0000000..fec7491 --- /dev/null +++ b/src/images/year2025/spare-paint1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53d22a195738fc035c14004ee52dc183ab6cd757afa94aebe6b0b1d81499426c +size 3597255 diff --git a/src/images/year2025/spare-paint1andabit.jpg b/src/images/year2025/spare-paint1andabit.jpg new file mode 100644 index 0000000..53c911f --- /dev/null +++ b/src/images/year2025/spare-paint1andabit.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87b28c80e8557c145d9b1045d0410b4a0bc90e76f05e645133b56bd20d31fd9e +size 3363778 diff --git a/src/images/year2025/spare-paint2.jpg b/src/images/year2025/spare-paint2.jpg new file mode 100644 index 0000000..306d7ab --- /dev/null +++ b/src/images/year2025/spare-paint2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1001169d7e92ff8226da95b6ed3badbac31108156e915ee751da85ae0ed7014 +size 4555996 diff --git a/src/images/year2025/spare-paint3.jpg b/src/images/year2025/spare-paint3.jpg new file mode 100644 index 0000000..9e88131 --- /dev/null +++ b/src/images/year2025/spare-paint3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ed382cb9717534cb8b81fac83095276401a6017946ce85df182be3f584d6218 +size 3544628 diff --git a/src/images/year2025/spare-paint4.jpg b/src/images/year2025/spare-paint4.jpg new file mode 100644 index 0000000..f2d9c2d --- /dev/null +++ b/src/images/year2025/spare-paint4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d40f190cb1426778ce19b41bc1fcc78f66ed404efc71071ebbf8016e36f7cc7e +size 4243287 diff --git a/src/images/year2025/spare-plumbing1.jpg b/src/images/year2025/spare-plumbing1.jpg new file mode 100644 index 0000000..aff8946 --- /dev/null +++ b/src/images/year2025/spare-plumbing1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e1ca0a8d5bb55239e5ea0387c42c9f793b2b1e8bc20434485c42a93f8af9c78 +size 4405131 diff --git a/src/images/year2025/spare-plumbing2.jpg b/src/images/year2025/spare-plumbing2.jpg new file mode 100644 index 0000000..1bf466c --- /dev/null +++ b/src/images/year2025/spare-plumbing2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b9d3fed7a55df61a7050fcc4d12d25bb93fb7b998164e4c3ed98e0b76b6ef50 +size 4603268 diff --git a/src/images/year2025/spare-plumbing3.jpg b/src/images/year2025/spare-plumbing3.jpg new file mode 100644 index 0000000..50e0fbc --- /dev/null +++ b/src/images/year2025/spare-plumbing3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25428e2759759afbd32b9a4aece0491571c9c42d46bd380e2145458922430e03 +size 4877417 diff --git a/src/images/year2025/spare-radiator1.jpg b/src/images/year2025/spare-radiator1.jpg new file mode 100644 index 0000000..854a7c1 --- /dev/null +++ b/src/images/year2025/spare-radiator1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:852ca89d26aff687558c0f3ddc062939d8aa291e283d918aa73b085c06d5f6a5 +size 5021781 diff --git a/src/images/year2025/spare-radiator2.jpg b/src/images/year2025/spare-radiator2.jpg new file mode 100644 index 0000000..05f3415 --- /dev/null +++ b/src/images/year2025/spare-radiator2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d26d408aaf023642620ab6384d67534975e6dae6f00f3bca5bf2cb13d673073 +size 4146533 diff --git a/src/images/year2025/spare-radiator3.jpg b/src/images/year2025/spare-radiator3.jpg new file mode 100644 index 0000000..4954ddf --- /dev/null +++ b/src/images/year2025/spare-radiator3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b96422d4c1e2d00e5e03ce1e838275d877108cb3f7b7b1edf08763e4c518cde +size 5093996 diff --git a/src/images/year2025/spare-radiator4.jpg b/src/images/year2025/spare-radiator4.jpg new file mode 100644 index 0000000..a91de0c --- /dev/null +++ b/src/images/year2025/spare-radiator4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412946dfd9d69f68abee92926a70a4cd1290320911a54727a149ead92ec11700 +size 4550824 diff --git a/src/images/year2025/spare-sockets.jpg b/src/images/year2025/spare-sockets.jpg new file mode 100644 index 0000000..4c762dd --- /dev/null +++ b/src/images/year2025/spare-sockets.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30a1cf4f479d2c85cbf311014f98245d0a41eb5357b151bee3fb3e39fb4ca932 +size 5066717 diff --git a/src/images/year2025/tube.jpg b/src/images/year2025/tube.jpg new file mode 100644 index 0000000..46fd1f0 --- /dev/null +++ b/src/images/year2025/tube.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1cfbff520cea413c2a2b1c3ad0ebc2d077ff5bd83c8a42b8582763dea02fc42 +size 12168