[-] houseofleft@slrpnk.net 1 points 1 week ago* (last edited 1 week ago)

I don't agree they're looking at all areas at once, solar, wind and the net zero per mw by 2030 goal only relate to energy, not things like gas heating reduction, or public transport etc. Energy is also one of the few areas where as a country we've already made quite a bit of progress. There are points where only 10% of the UK's energy comes from fossil fuels.

In fairness, I did share the wrong article, sorry! Here's the actual opinion piece it's referring to (which was written in the Sun, I agree it's a shit rag, but Kier Starmer chose to publish in it, so here we are): https://www.thesun.co.uk/news/30853358/keir-starmer-great-british-industry-net-zero/

Specifically, the bits I'm referring to are:

This ground-breaking technology, known as Carbon Capture Usage and Storage, is a game-changer in our efforts to fulfil our legal obligations to reach Net Zero by 2050 in a sensible way, while supporting jobs and industry.

Shifting focus onto onto bare minimum meeting of legal obligations and positioning carbon capture as a central part of that strategy.

To those drum-banging, finger-wagging extremists I say: I will never sacrifice Great British industry.

Said in opposition to people wanting regulation of carbon emissions over carbon capture investment.

But this is a third way that brings industry with us on our path to Net Zero

Again, in opposition to regulating emissions more strictly.

To be 100% clear, this is speculation from Labours messaging that implies they're gearing up for a massive backslide, we won't know for sure until their budget is announced over the next few weeks. I think this is where a lot of objection comes fron though. If we see large investment in public transport and heat pumps, and regulation of emissions, then I'll be extremely happy to be proved wrong.

[-] houseofleft@slrpnk.net 0 points 1 week ago* (last edited 1 week ago)

I 100% agree with you! But I think you're missing some key context on why people are angry about this:

  • The new UK government is from the center left Labour party, who were elected under the promise (amongst others) that they would do more about carbon change that the previous government

  • They recently announced funding for carbon capture as the central part of their climate change plan

  • Their plan to achieve the UK's legally obligated net zero targets (they no longer plan to reduce emissions by anything more than international law mandates) depends on the success of this very unproven technology

  • The UK prime minister referred to critics of this scheme (which should include pretty much anyone who wants climate policy to be based on scientific evidence rather than lobbying) "finger wagging extremists" in an opinion piece[1]

So, although I'd support investing into climate capture research as part of a much broader carbon reduction plan, this policy is really an incredible backslide and a massive betrayal of anyone who voted for the party on the basis of their climate change policies.

Edit: spelling!

[1] https://www.thesun.co.uk/news/30855560/keir-starmer-ignore-climate-extremists/

[-] houseofleft@slrpnk.net 1 points 2 weeks ago

Yeah, that's my experience too. I think once projects get to a certain size, you really reap the benefits of strong opinions, regardless if what those opinions are.

[-] houseofleft@slrpnk.net 2 points 2 weeks ago

It's not easier to do getters or setters but especially in python there's a big culture of just not having getters or setters and accessing object variables directly. Which makes code bases smaller.

Same with the types (although most languages for instance doesn't consider None a valid value for an int type) Javascript has sooo many dynamic options, but I don't see people checking much.

I think it boils down to, java has a lot of ceremony, which is designed to improve stability. I think this makes code bases more complex, and gives it the reputation it has.

[-] houseofleft@slrpnk.net 1 points 3 weeks ago

Yazi sounds ideal! Does river involve as much set up as dwm? I really love the ideas behind suckless tools but they normally involve a lot or set up to configure hoe I like.

[-] houseofleft@slrpnk.net 1 points 3 weeks ago

I read 'Computer Science Distilled' early on and it really helped me. It's a very shallow summary of some CS fundamentals, but that's kind of what you want when you're starting out- just enough knowledge to know what exists to learn later.

Here's a link: https://www.goodreads.com/book/show/34189798-computer-science-distilled

[-] houseofleft@slrpnk.net 3 points 3 weeks ago

Never heard of river but looks really cool! Come to think of it, I haven't heard or a bunch of this stuff- yazi looks really neat

[-] houseofleft@slrpnk.net 2 points 1 month ago

I think short answer is yes, but longer answer is also that Pixi is a drop in replacement for Conda, which is a lot less used than Pip (which uv is a replacement for).

[-] houseofleft@slrpnk.net 3 points 1 month ago

I'm a data engineer, use parquet all the time and absolutely love love love it as a format!

arrow (a data format) + parquet, is particularly powerful, and lets you:

  • Only read the columns you need (with a csv your computer has to parse all the data even if afterwards you discard all but one column)

  • Use metadata to only read relevant files. This is particularly cool abd probably needs some unpacking. Say you're reading 10 files, but only want data where "column-a" is greater than 5. Parquet can look at file headers at run time, and figure out if a file doesn't have any column-a values over five. And therefore, never have to read it!.

  • Have data in an unambigious format that can be read by multiple programming languages. Since CSV is text, anything reading it will look at a value like "2022-04-05" and say "oh, this text looks like dates, let's see what happens if I read it as dates". Parquet contains actual data type information, so it will always be read consistently.

If you're handling a lot of data, this kind of stuff can wind up making a huge difference.

[-] houseofleft@slrpnk.net 3 points 1 month ago

Oh nice! I didn't know about it- thanks for the link

view more: ‹ prev next ›

houseofleft

joined 2 months ago