OwlPaste

joined 1 year ago
[–] OwlPaste@lemmy.world 2 points 4 days ago

And they can vote for a better future. Last UK election we got a labour victory but 8% fewer people voted. Thats crazy.

Of topic, i agree with that, country borders are what making people xenophobic

[–] OwlPaste@lemmy.world 16 points 5 days ago (9 children)

Yeah totally should do that in an autocratic country, lets go with Russia and lets see how long it would take before the original poster is on their way to a Siberian gulag

[–] OwlPaste@lemmy.world 13 points 6 days ago

Damn NOT for men... my weekend plans are ruined 🥲

[–] OwlPaste@lemmy.world 6 points 1 week ago

For me the "coming out of dark ages" happened when freestyle libres came out and you didn't have to stab your fingers all time. Oh what a glorious time that was. Hope to live long enough to maybe see fruits of this labours too.

[–] OwlPaste@lemmy.world 19 points 1 week ago (2 children)

This sounds quite positive though quite a few years away, which 😔

[–] OwlPaste@lemmy.world 5 points 1 week ago

Russia is big, in the south it can easily reach +40 degrees in summer if not more. Can imagine they did not build in air-conditioning back in those days

[–] OwlPaste@lemmy.world 38 points 2 weeks ago (1 children)

Now do newspapers next!

[–] OwlPaste@lemmy.world 11 points 2 weeks ago* (last edited 2 weeks ago)

At least he didn't sell out to grammarly based on this spelling

[–] OwlPaste@lemmy.world 9 points 2 weeks ago

Confusion intensities

[–] OwlPaste@lemmy.world 1 points 2 weeks ago

Looks like someone you don't wanna cross in a dark alleyway...

[–] OwlPaste@lemmy.world 6 points 3 weeks ago (2 children)

Butcher right next to toielts, pinicle of planning

[–] OwlPaste@lemmy.world 5 points 3 weeks ago

Uhoh guess internet has reached deep Alabama swamps

1
submitted 8 months ago* (last edited 8 months ago) by OwlPaste@lemmy.world to c/london@feddit.uk
 

Got a small walking treadmill, that now became a fire hazard, rhe motor is sparking, but replacing it seems not feasible as i cannot get a replacement part (the company stopped existing a while ago and doesn't seem like a main manufacturer). And it seems a slightly more permanent installation than not.

So looking to scrap it, but how to scrap it in London without a car? Council bulk pickup seems not to mention anything about fitness equipment and neither does the "not so local" recycling centre, tried calling it but the number goes nowhere. Its a fair trip on a taxi if i wanted to bring it to the centre and not a straightforward walk either.

So the question is, how to scrap it? Contacted a random "local" company that mentioned picking up gym equipment but they quoted £200, which is more than the bloody thing cost!

Going to email the council, but anything else i can try?

 

Using react router and have a route definition:

  {
       path: '/',
       element: <Root pageTitle={pageTitle} />,
       errorElement: <ErrorPage setPageTitle={updatePageTitle} />,
       children: [
          ...
          {
             path: '*',
             element: <ErrorPage setPageTitle={updatePageTitle} />,
             loader: async () => {
                throw new Response('Not Found', { status: 404 });
             },
          },
       ],
    },

This shows me 404 page how I want but without the rest of the root element but also the http status is reported as 200. How do I properly throw it as a 404 and show it inside root element?

 

Using react router and have a route definition:

  {
       path: '/',
       element: <Root pageTitle={pageTitle} />,
       errorElement: <ErrorPage setPageTitle={updatePageTitle} />,
       children: [
          ...
          {
             path: '*',
             element: <ErrorPage setPageTitle={updatePageTitle} />,
             loader: async () => {
                console.log('throwing a 404');
                throw new Response('Not Found', { status: 404 });
             },
          },
       ],
    },

This does show me the 404 page how I want, but http status is reported as 200. How do I properly throw it as a 404?

It seems not to trigger the loader (console log does not appear), or is there another method to throw a 404 and show a pretty page?

view more: next ›