Just finished hearings with the Enviro Minister. @amymacsouthbris asked some great questions on coal, emissions and climate action. Unfortunately, the new Minister either didn't have the questions or didn't want to answer.

Remember this square? Qld Environment Minister wouldn't indicate whether these 18 new coal mines will still be operating in 2050, and whether that's consistent with the governments’ target for net zero emissions by 2050.

https://t.co/mLVKes4TDq
In response to an Opposition Question, the Environment Minister says Qld will need to cut about 40M tonnes of carbon or 40% below 2018 levels to reach Labor's 2030 target of a 30% emissions reduction. But she stumbles when asked about the plan to get there...
Before the 2017 election Gov't promised a green paper on how to cut pollution for these targets, but it never happened. They promised it again this yr - now called a “Climate Change Strategy”. But...
When asked what funding has been allocated to develop the Climate Change Strategy and when it will be released, @meaghan_scanlon says repeatedly "the plan is a document... it is a document"... and that it will be developed internally.

No budget, no timeline.
On national parks funding, the pre-election Enviro Minister announced $28M to buy new land for protected areas as an “initial” investment. Then in the Budget we learnt that amount will actually be spread over 4 years, meaning we won’t reach the 17% protected areas target.
So @amymacsouthbris asks when we can expect national park funding beyond the “initial investment”. Gov't simply says the 17% target isn't achievable within the 3 year target.

When I ask whether they've abandoned the 17% target, they insist no - but give no timeline to reach it.
Last week @_LisaMCox reported the Fed Gov't wrote to Qld suggesting collaboration to delist part of the Moreton Bay Ramsar wetland for the Toondah Harbour dev't.

My Q: will Govt rule out endorsing a change to the Moreton Bay Ramsar wetland boundary to facilitate Toondah?
Encouraging response fr the Minister: "We’ve already ruled out changes to the boundary".

Presumably refers to this response to my Question on Notice, where the previous Minister advised a DG review had concluded there is no justification for the change: https://t.co/rKMPVQj6gH
The question is now: will the Qld Government rule out approving the Toondah Harbour development?

We've already seen expert advise that it would breach our obligations under the Ramsar Convention, causing unacceptable & irreversible damage to the wetland. It cannot go ahead.

More from Government

🔷 Rev. Raphael Warnock has become the first Democrat to win a Georgia Senate race in 20 years

The politician spoke to voters via MSNBC this morning

https://t.co/T9oJN2fjmo


Warnock is a pastor at the Ebenezer Baptist Church in Atlanta where civil rights leader Martin Luther King once preached.

He will become Georgia's first Black senator


This blue victory gives the Democrats the chance to regain control of the Senate for at least the first two years of the Biden presidency


"With Biden proposing to reverse President Donald Trump's tax cut, increase the minimum wage, and strengthen oversight on various industries, some might argue that his agenda is not particularly market-friendly," says Vasu Menon, investment strategy director at OCBC Bank
Caveat: This article is sourced from @Daily_Express !!!

"End of Sturgeon?"

Frankly, an appropriate response from @NicolaSturgeon might be to quote the infamous Mark Twain response to an erroneous 'obituary' known to all...

"The reports of my demise are greatly exaggerated."

https://t.co/Ce1xVVISR2

More accurately, the media have quoted:

"Ms Sturgeon said she had a “real job to do” and was focused on guiding Scotland through the Covid-19 pandemic."

It's very reassuring to hear that @scotgov and @ScotGovFM have prioritised safeguarding lives and Scotland, above all else.

"I’ll leave others to play games or politics. I have got a real job to do and people can decide themselves whether I am doing it well or not, but I am absolutely 100 per cent focused on leading this country through a pandemic."

💯% 😀👍

Making her priorities crystal clear!

“That’s what I’ve done since this time last year and it’s what I’m going to continue to do for absolutely as long as necessary.”

And again, making it absolutely crystal clear!

You May Also Like

A brief analysis and comparison of the CSS for Twitter's PWA vs Twitter's legacy desktop website. The difference is dramatic and I'll touch on some reasons why.

Legacy site *downloads* ~630 KB CSS per theme and writing direction.

6,769 rules
9,252 selectors
16.7k declarations
3,370 unique declarations
44 media queries
36 unique colors
50 unique background colors
46 unique font sizes
39 unique z-indices

https://t.co/qyl4Bt1i5x


PWA *incrementally generates* ~30 KB CSS that handles all themes and writing directions.

735 rules
740 selectors
757 declarations
730 unique declarations
0 media queries
11 unique colors
32 unique background colors
15 unique font sizes
7 unique z-indices

https://t.co/w7oNG5KUkJ


The legacy site's CSS is what happens when hundreds of people directly write CSS over many years. Specificity wars, redundancy, a house of cards that can't be fixed. The result is extremely inefficient and error-prone styling that punishes users and developers.

The PWA's CSS is generated on-demand by a JS framework that manages styles and outputs "atomic CSS". The framework can enforce strict constraints and perform optimisations, which is why the CSS is so much smaller and safer. Style conflicts and unbounded CSS growth are avoided.