OwlPaste

joined 1 year ago
[–] OwlPaste@lemmy.world 4 points 1 day ago (1 children)

Given what's happening over there right now, people who are due reparations will see exactly 0 and all the money would be stolen.

[–] OwlPaste@lemmy.world 13 points 1 day ago

I haven't tried myself, but suspect its more likely to be generally unethical tpwards the civets. From what i heard at least. Think battery hen farming.

But i have done no research beyond general unregulated market assumptions.

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

In the same way and any dicktators need to keep stroking their dicks to feel good. No reason needed

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

Thanks for that explanation, makes sense why you often see this on exercises but less so on a real front.

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

Kinda a weird question, but how come in the videos coming out of Ukraine you never see people putting grass on their heads?

Or is that a thing lf the past now in modern militaries?

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

So it was only half a crash?

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

Thats so cute, love it how the other cats "help" by kicking and biting the victims 😂🤣

[–] OwlPaste@lemmy.world 2 points 3 weeks 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 3 weeks 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 3 weeks ago

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

[–] OwlPaste@lemmy.world 6 points 1 month 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 month ago (2 children)

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

1
submitted 9 months ago* (last edited 9 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 ›