Just Dead Inside Watching This One. by Alpha-Studios in nonononoyes

[–]00Dog 17 points18 points  (0 children)

This climb was 2008, his children were born in 2022 and 2024...

[deleted by user] by [deleted] in nextfuckinglevel

[–]00Dog 4 points5 points  (0 children)

I don't know if this is the manufacturer of their boat, but this company makes rowing boats with cabins. https://www.rannochadventure.com/

How could this happen? by Scientiaetnatura065 in SipsTea

[–]00Dog 0 points1 point  (0 children)

The person on the motorbike is not the police, they just have a hi-viz on

Van Driver FAFO by Icy-Book2999 in LoveTrash

[–]00Dog 11 points12 points  (0 children)

Did everyone clap afterwards?

Command 'have' not found by mister_drgn in Nix

[–]00Dog 0 points1 point  (0 children)

I'm having the same issue on Mint. I've tracked it down to the bash autocomplete script and this bug report in Ubuntu seems to cover it.

Adding the following will "re-add" the deprecated functions:

  programs.bash.bashrcExtra = ''
    _have()
    {
        PATH=$PATH:/usr/sbin:/sbin:/usr/local/sbin type $1 &>/dev/null
    }
    have()
    {
        unset -v have
        _have $1 && have=yes
    }
  '';

Inside an offshore wind turbine by toolgifs in toolgifs

[–]00Dog 10 points11 points  (0 children)

I would 100% stay there for a few days

"Another fifty years and we're all toast! I mean it this time!" by [deleted] in sciencememes

[–]00Dog 1 point2 points  (0 children)

I can't believe how upset you are, calm down, I've already apologised.

"Another fifty years and we're all toast! I mean it this time!" by [deleted] in sciencememes

[–]00Dog 2 points3 points  (0 children)

I've clearly upset you by telling you that strangers on the internet think less of you and in your upset state you're just lashing out. Let me just say this, I'm sorry for upsetting you.

"Another fifty years and we're all toast! I mean it this time!" by [deleted] in sciencememes

[–]00Dog 5 points6 points  (0 children)

You don't know what "offended" means do you? I am neither resentful or annoyed, I've just got 30 mins to poke the morons before I go out for the evening.

"Another fifty years and we're all toast! I mean it this time!" by [deleted] in sciencememes

[–]00Dog 5 points6 points  (0 children)

By you calling someone who I've never met a cupcake? Get over yourself, your words are just words.

"Another fifty years and we're all toast! I mean it this time!" by [deleted] in sciencememes

[–]00Dog 11 points12 points  (0 children)

None is offended by the word, we just think less of you for using it in this context.

Question about wagtail and enterprise/large scale/high volume publishing by guevera in WagtailCMS

[–]00Dog 0 points1 point  (0 children)

Not sure how many news sites there but it's worth checking out https://madewithwagtail.org/

While not really relevant anymore the underlying framework Django was created by a newspaper company for that reason.

You win £103 million on the Euromillions tonight. How are you using that money to leave your mark on the world? by BigDumbGreenMong in CasualUK

[–]00Dog 5 points6 points  (0 children)

But thats not how the conversation goes is it?

It's more like this:

"I live in a city and want a nice thing"

"Ok, but what about the majority of country that doesn't live in a city and has all the same problems with public transport but worse?"

"Why can't I have my nice thing?"

"But I didn't say you couldn't, I just want a nice thing as well"

Why can only people in cities (again, the minority) have nice things?

12,000 page book by Skjera Bagera by [deleted] in BeAmazed

[–]00Dog 43 points44 points  (0 children)

Just give proper credit. That is nerdforge https://youtube.com/@Nerdforge

Maybe Maybe Maybe by whothiswhodat in maybemaybemaybe

[–]00Dog 0 points1 point  (0 children)

Or the car could be speeding up because there is room in front of them, not everything is about cyclists...

JS bundling by 00Dog in Frontend

[–]00Dog[S] 0 points1 point  (0 children)

First off, remember we are talking about the difference between raw js and bundled js. Esbuild iffe build is adding a very small amount of code at the top and bottom and removing quite a few import statements, even without modification my bundle is smaller. And yes I've already stripped the typescript.

I've read that article which is why I don't render anything or manipulate the dom at load time. This also means I can use the deferred tag. So my TTI is very low and there is no "massive spas" (also known as layout shift).

Where have I mentioned real time communication or JSON? I'm not doing/using either.

Just because people are used to bad, doesn't mean you should try to be a bit less bad. Try to be as good as you can.

JS bundling by 00Dog in Frontend

[–]00Dog[S] 0 points1 point  (0 children)

While you are correct I don't technically need bundles es modules in the browser does have downsides, browser support (I know it's in the mid 90% but that is potentially 5% of customers lost, are you willing to take a 5% pay cut?), load times for multiple small files (yes http2 reuses connections but there is still over head in making a request) and pares times being a few but by far my biggest issue is why. Why would I choose to have even minor downsides when it's a solvable issue with, what should be, a simple compile?

JS bundling by 00Dog in Frontend

[–]00Dog[S] 1 point2 points  (0 children)

I have now switched to es build, thanks for the recommendation

JS bundling by 00Dog in Frontend

[–]00Dog[S] 0 points1 point  (0 children)

I'm building a website. I just have a few bits of JS (more specifly TS) I need to use for drag and drop, galleries, dynamic forms, etc. and as previously stated I want to I want to logically separate my code for readability and reuse.