5.7 C
New York
Friday, April 11, 2025
Home Blog Page 4

UK Power Minister to talk at All-Power 2025 in Glasgow



Michael Shanks
UK Power Minister, Michael Shanks MP will communicate on the opening plenary session.

With 5 weeks to go earlier than All-Power opens at Glasgow’s SEC, the UK’s largest renewable and low carbon power exhibition and convention has introduced that following a keynote tackle by Scotland’s First Minister, The Rt Hon John Swinney MSP, the UK Power Minister, Michael Shanks MP shall be talking within the convention opening plenary session on Wednesday 14 Could. He’ll then be a part of a panel discussing Britain’s Clear Energy Mission.

“When the 2 Ministers have completed their keynote addresses we transfer to a what I do know shall be a stimulating panel dialogue on the Clear Energy Mission 2030,” defined Occasion Supervisor Anam Khan of RX, homeowners and organisers of the 2 day occasion. “We’re delighted that Minister Shanks is staying on to participate within the panel dialogue earlier than endeavor a lightning tour of the exhibition.”

The 90-minute session shall be chaired by Keith Anderson, CEO of ScottishPower who may even give a brief tackle after the Lord Provost’s Civic Welcome and the displaying of a particular video message from Professor Sir Jim Skea, Chair of the Intergovernmental Panel on Local weather Change (IPCC). That is to remind the viewers why Clear Energy 2030 and in the end Internet Zero are so vital to the planet. Then come the 2 political keynotes and at last the panel dialogue.

Along with Minister Shanks, panellists Juergen Maier, Chair of Nice British Power; Andrew Lever, Director – Power Transition on the Carbon Belief; and Councillor Susan Aitken will set the scene from their organisation’s perspective, after which the inter panel dialogue will start.

“The Day 2 (15 Could) plenary periods follows an identical format,” defined Anam Khan. “This time Professor Sir Jim McDonald, Principal and Vice Chancellor of the College of Strathclyde shall be within the chair. The keynote speaker shall be Chris Stark CBE, Head of UK’s Mission for Clear Energy, Division for Power Safety and Internet Zero (DESNZ).

“The panellists are Professor Keith Bell, ScottishPower Chair in Good Grids, College of Strathclyde, Co-Director UK Power Analysis Centre, and member of the Local weather Change Committee; Tom Glover, UK Nation Chair, RWE; Dhara Vyas, Chief Government, Power UK; Darren Davidson, Vice President UK & Eire, Siemens Power; and Rachel Fletcher, Director of Regulation and Economics, Octopus Power.”

Following the 2 plenary periods, the All-Power convention breaks into 11 parallel streams overlaying all types of renewable power; grid and networks; decarbonisation of warmth; – Scotland’s Performing Minister for Local weather Motion, Dr Alasdair Allan MSP will ship a keynote tackle within the first of 4 periods on warmth. There are additionally streams and periods on the decarbonisation of cities – two of them on Glasgow’s Internet Zero Routemap; transport and trade. Along with the principle convention, there are seven present ground theatres throughout the exhibition.

At lunch time on Day 2, Tim Decide MBE, Commissioner, Clear Energy 2030 Advisory Fee; *Chair of the Offshore Wind Development Partnership shall be having fun with a hearth chat with Ed Reed, Editor of E-FWD.

Anam Khan explains: “That’s not the place it ends, removed from it, different subjects that come underneath the convention highlight embrace periods on subjects as different as funding to expertise and coaching, Buy Energy Agreements (PPAs) to hydrogen; attracting younger individuals to the industries we serve to power storage. Added to which there are periods on Fairness, Variety and Inclusion (ED&I) and Psychological Well being within the office. The complete programme is on-line.”

Registration is open at https://www.all-energy.co.uk/PR All-Power is free to attend for all with related enterprise, governmental and educational pursuits and contains admission to the key exhibition, the principle convention and present ground theatres; and the Civic Reception, held courtesy of the Rt Hon Lord Provost of Glasgow, which is an integral a part of the Big Networking Night on 14 Could on the Glasgow Science Centre.

The All-Power exhibition has lengthy been famend for its dynamic ambiance with a excessive degree of enterprise exercise happening and this shall be very a lot the case once more on 14 and 15 Could. This 12 months’s 270+ exhibitors come from 17 nations – Canada, China, the Czech Republic, Denmark, France, Finland, Germany, Italy, Eire, Netherlands, Poland, Portugal, Spain, Sweden, Switzerland, Taiwan from all around the UK and Northern Eire. The complete exhibitor listing is on-line.

All-Power is a ‘Good Occasion’ which means guests now not have to gather enterprise playing cards or carry round flyers or brochures. They only must look out for the Colleqt QR Code at each stand and have space to shortly get their info utilizing their smartphone and thus sharing their particulars with exhibitors. They may obtain a abstract e-mail every day with detailed info on every exhibitor they’ve scanned.

All-Power’s headline sponsor, Shepherd and Wedderburn, celebrates its eleventh 12 months within the function; different sponsors embrace Noventa, Hitachi Power UK, Statkraft, SEFC, Black & Veatch, SGS, Flexitricity, AMSC, XING Mobility Inc and the College of Sheffield. Glasgow Conference Bureau is All-Power’s official associate; and The Society for Underwater Expertise is its Realized Society Patron. All mix to make this 12 months’s present, set proper in the course of Glasgow’s Local weather Week, and through Glasgow’s 850 12 months celebrations, a really particular two days.

For additional info go to https://www.all-energy.co.uk/25

safari – iOS WKWebView’s addUserScript doesn’t work first time for “about:clean”


I’m able to show my difficulty utilizing the beneath easy instance.

I principally want to make use of the addUserScript to load completely different scripts based mostly upon which web site the net view has navigated to. This works advantageous for all web sites nevertheless it would not work for about:clean.

For instance, beneath works advantageous for hackerNews (“https://information.ycombinator.com”) however fails for homePage (“about:clean”):

import UIKit
import WebKit
import SnapKit

extension String {
    static let hackerNews = "https://information.ycombinator.com"
    static let homePage = "about:clean"
}

class ViewController: UIViewController, WKScriptMessageHandler, WKNavigationDelegate {
        
    override func viewDidLoad() {
        tremendous.viewDidLoad()
        
        let configuration = WKWebViewConfiguration()
        configuration.mediaTypesRequiringUserActionForPlayback = .all
        
        let browser = WKWebView(body: .zero, configuration: configuration)
        browser.isInspectable =  true
        browser.navigationDelegate = self
        
        view.addSubview(browser)
        browser.snp.makeConstraints { make in
            make.edges.equalToSuperview()
        }
        
        browser.load(URLRequest(url: URL(string: .homePage)!))
        
    }
    
    func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping @MainActor (WKNavigationActionPolicy) -> Void) {
        
        guard let urlString = navigationAction.request.url?.absoluteString else {
            return
        }
        
        print("Navigating to url: (urlString)")
        webView.configuration.userContentController.removeAllUserScripts()
        webView.configuration.userContentController.removeAllScriptMessageHandlers()
        webView.configuration.userContentController.removeAllContentRuleLists()
        
        let world = WKContentWorld.world(title: "MyWorld")
        webView.configuration.userContentController.add(self, contentWorld: world, title: "handleConsoleLog")
        
        let userScript = """

perform logConsole(err) {
    console.log(`logConsole: ${err}`);
    if (window.webkit) {
        window.webkit.messageHandlers.handleConsoleLog.postMessage(err.toString());
    }
}

logConsole(`Whats up: ${window.location}`);

"""
        
        webView.configuration.userContentController.addUserScript(WKUserScript(supply: userScript, injectionTime: .atDocumentStart, forMainFrameOnly: false, in: world))
        
        decisionHandler(.enable)
    }
    
    func userContentController(_ userContentController: WKUserContentController, didReceive message: WKScriptMessage) {
        print("userContentController: (message.title), ((message.physique as? String)?.prefix(100))...")
    }

}

The above instance doesn’t name my handler on first web page load.

But when I alter .homePage within the line:

browser.load(URLRequest(url: URL(string: .homePage)!))

to make use of .hackerNews, then it really works even on first web page load.

If I exploit macOS Safari develop menu’s inspector’s console tab and “reload” the web page, then it really works too:

enter image description here

It solely would not work on “about:clean” on first web page load.

How can I get it to work?

Infoblox, Google Cloud accomplice to guard hybrid and multicloud enterprise sources



“Google Cloud DNS Armor, powered by Infoblox delivers highly effective, preemptive safety towards a variety of contemporary cyber threats by utilizing DNS as a primary line of protection. As a result of almost each cyberattack touches DNS in some unspecified time in the future—whether or not it’s ransomware calling house, knowledge being exfiltrated, or menace actors utilizing area era algorithms—DNS Armor is uniquely positioned to detect malicious exercise early within the assault chain,” Gupta defined.

“The answer inspects DNS queries in actual time to determine suspicious habits like command-and-control communications, zero-day threats, and domains tied to identified adversaries. In contrast to conventional safety instruments that react after harm is finished, DNS Armor proactively flags and blocks threats—usually greater than two months earlier than different methods catch them. And since it’s natively built-in into Google Cloud, it’s simple for purchasers to activate and handle straight from the console with out including complexity or requiring new infrastructure. This implies stronger safety with much less effort, and a safer setting for cloud workloads,” Gupta mentioned.

With this product, enterprise prospects can activate and configure DNS menace detection straight on the Google Cloud console, and directors can monitor DNS queries and entry DNS menace logs to allow early menace detection.

“As cyber threats develop extra refined, the collaboration between Infoblox and Google Cloud delivers a game-changing method to community safety,” mentioned Bob Walker, senior area community engineer, Lloyds Banking Group, in a assertion. “Google Cloud’s DNS Armor, powered by Infoblox, harnesses one of the best of each applied sciences—cutting-edge DNS menace intelligence and scalable cloud structure—to offer enterprises with strong safety towards rising threats.”

Based on Infoblox, DNS Armor makes use of Infoblox DNS expertise to realize visibility to search out DNS-based assaults with a low false constructive fee. The visibility reduces the danger of malware, knowledge breaches, and cyberattacks for Google Cloud prospects.

“Infoblox powers Google Cloud’s DNS Armor with intelligence past only a DNS block listing—monitoring exercise of potential adversaries to uncover and flag each nook of their malicious community,” mentioned Chris Kissel, analysis vp, safety and belief, IDC in a assertion. “The primary problem to cybersecurity is it’s usually reactive, and DNS Armor, powered by Infoblox, offers a preemptive resolution to securing cloud workloads that doesn’t add extra complexity or compute.”

Again accidents, rising insurance coverage, and one sensible transfer in palletizing

0


Some issues don’t present up in your Total Gear Effectiveness dashboard—however they price you huge. That’s what a sauce and spice producer in Latin America realized when ergonomic accidents and insurance coverage premiums began piling up. Their reply? A quick, easy palletizing resolution constructed to ship ROI past simply labor financial savings.

Unilever pushes commerce associations to talk up on local weather coverage


Key takeaways:

  • The success of Unilever’s local weather transition motion plan relies on stricter rules for high-emitting sectors.
  • The corporate will give up commerce teams that stay misaligned 12 months after being placed on discover.
  • Unilever’s annual evaluation of trade affiliation is uncommon.

Unilever has distanced itself from two commerce associations as a result of their lobbying actions are misaligned with the buyer merchandise firm’s local weather coverage agenda.

In a single occasion, the corporate requested that the German Chemical Business Affiliation cease utilizing Unilever’s identify and brand in advertising and marketing supplies as a result of the group is out of step with Unilever’s advocacy positions on renewable vitality and carbon pricing. 

Unilever can also be distancing itself from the Tennessee Chamber of Commerce & Business, which represents the pursuits of an ice-cream manufacturing plant in Covington. That relationship might be reviewed in late 2025, together with a number of others, after Unilever divests its ice cream enterprise.

The actions have been outlined in Unilever’s annual evaluation of the lobbying and political advocacy positions of greater than two dozen key trade organizations by which it has a membership curiosity. 

The corporate belongs to greater than 600 commerce teams. These assessed — together with the Client Items Discussion board and the Private Care Merchandise Council — signify sectors the place extra stringent rules and insurance policies are wanted to drive local weather progress.

“Unilever is already making progress towards our local weather targets, however enabling authorities insurance policies will assist us go additional, sooner,” stated Rebecca Marmot, chief sustainability and company affairs officer at Unilever. “We’ve elevated our direct advocacy on local weather points to mirror that. We’d like commerce associations to do the identical, bringing their appreciable affect to the desk, and rising local weather engagement amongst their members.”

As a matter after all, Unilever would somewhat keep engaged with commerce organizations, to create constructive change. If a misalignment lingers for longer than a yr, the problem is taken up by the Unilever division that owns the connection. “At this level, we are going to decide whether or not to withdraw our membership and make our withdrawal public,” Unilever stated in its evaluation. “In some cases, there could also be a disagreement relating to positions taken, however Unilever could resolve that its pursuits are greatest served by retaining membership.”

Fewer commerce teams misaligned with decarbonization targets 

Unilever’s most up-to-date evaluation, launched April 7, makes use of publicly out there info from analysis agency InfluenceMap. It discovered that 18 of the 26 evaluated organizations haven’t any “misalignment” with Unilever’s local weather coverage positions. That’s up from 13 of the 27 organizations thought-about in the 2024 version

However solely 5 organizations are actively engaged in supporting local weather insurance policies, whereas 50 % are “passive” — that means they don’t communicate out both method. Unilever desires these organizations to do extra.

With one exception, the identical organizations have been evaluated within the two assessments.

“After final yr’s [report], Unilever outlined extra actions for commerce associations to take,” the corporate stated in its evaluation. “Many have been aware of requests, however extra work is required to verify these actions result in coverage modifications, particularly because the final evaluate was current.”

5 cross-cutting political priorities

Unilever’s local weather transition motion plan requires the corporate to actively interact on the next insurance policies:

  • Persuade nations to undertake nationwide emissions discount plans that may maintain world temperature will increase to 1.5 levels Celsius
  • Advocate applicable carbon pricing ranges
  • Scale up renewable vitality capability, whereas phasing out fossil fuels
  • Help forest safety and nature restoration
  • Encourage the Greenhouse Fuel Protocol to evolve carbon accounting requirements to reward emissions reductions throughout company worth chains

Unilever ranks as a pacesetter among the many restricted group of firms that actively interact on local weather coverage, and it was highlighted in 2024 by InfluenceMap for its affect on commerce teams. 

“The evaluate continues to lift the bar in driving greatest practices round how corporations needs to be asking for stronger local weather change insurance policies whereas strategically partaking with their commerce associations,” stated Deborah McNamara, govt director of advocacy nonprofit ClimateVoice. 

Unilever is a vibrant spot at a time when many corporations within the U.S. have “stagnated or gone silent,” she stated. “I believe corporations must be asking over and over if sufficient is being completed, and the reply is definitively no. This evaluate nonetheless units the trail and exhibits what is feasible.”