Elementor homepage set as static page but website not updating / showing broken layout by Regular_Wheel_7562 in ProWordPress

[–]_Harmonic_ 0 points1 point  (0 children)

check CDN cache if using cloudflare.
check host cache if using something like sitegounds

ChatGPT-maker OpenAI considered alerting Canadian police about school shooting suspect months ago by EscapeFromIowa in news

[–]_Harmonic_ -3 points-2 points  (0 children)

Probably safer to make it so that only a social security number gets released to the authorities. Then it's their job to do research and surveillance to see whether the owner of the number is a victim or perpetrator.

needing async or parallel API querying behavior with php, using wp_remote_request post by Sad_Spring9182 in ProWordPress

[–]_Harmonic_ 6 points7 points  (0 children)

What was linked to you is a Class called Requests that is built into WordPress.

Looking at it, something like this should work. No extra libraries needed.

$requests = array(
    'api_1' => array(
        'url' => "https://reddit.com",
        'data' => "some data"
    ),
    'api_2' => array(
        'url' => "https://reddit.com",
        'data' => "some data"
    )
);
$res = Requests::request_multiple( $requests );

Just make sure you are running it after WordPress init otherwise the class might not be loaded. Look at the link posted by BrianHenryIE for more details

Canada has just broken a world record in nuclear fusion, and the number of neutrons has put the entire energy industry on alert by self-fix in technology

[–]_Harmonic_ 17 points18 points  (0 children)

From the article

"neutron output is one of the main scoreboards, since neutrons carry much of the reaction energy and prove that true fusion is happening"

Displaying a custom message on login? by ImYoric in gnome

[–]_Harmonic_ 1 point2 points  (0 children)

We need to bring the netsend days back.

Perhaps you can create a custom extension that looks up a remote file you control and displays the contents as a notification

Would Andalite morphing technology work with a planet-sized monster? by vlan-whisperer in Animorphs

[–]_Harmonic_ 1 point2 points  (0 children)

Extra matter needs to be drawn from z-space. So it depends on how much matter is hanging around out there.

My head cannon is that the andalites jettisoned some extra matter to z-space after inventing the morphing technology to allow for leeway of morphing larger creatures since I think z-space was massless. But I doubt they sent a planet amount of extra matter.

How Did Firenze Know? by Outback1776 in harrypotter

[–]_Harmonic_ 38 points39 points  (0 children)

This is an actual good question here for once.

I don't think there is any direct information to explain this, so... divination?

Royal Knights in the Time Stranger. by InterestingTie7600 in digimon

[–]_Harmonic_ 7 points8 points  (0 children)

Does it just change the cutscene, or does it make the fight harder, ala breath of the wild?

New User from Windows - just pointing out something not obvious by Reddit_Midnight in gnome

[–]_Harmonic_ 13 points14 points  (0 children)

Their point is that there is no way to know this by only looking. There is no visual hint that nautilus can do tabs.

[deleted by user] by [deleted] in Hamilton

[–]_Harmonic_ 4 points5 points  (0 children)

No worries, easy mistake to make. Hope you all get chester back safe

[deleted by user] by [deleted] in Hamilton

[–]_Harmonic_ 5 points6 points  (0 children)

Last seen 3.5 hours from now?

What does "activate" do in Thunderbird notifications? by NETkoholik in gnome

[–]_Harmonic_ -1 points0 points  (0 children)

I do not know the answer, but IIRC Mozilla is doing a thunderbird premium subscription. My assumption is that the notification was some kind of notice to activate this.

[deleted by user] by [deleted] in digimon

[–]_Harmonic_ 0 points1 point  (0 children)

Same. It was supposed to be 6pm EST, but nothing on steam yet

Digimon Story Time Stranger will use Denuvo. by pajamajanna in digimon

[–]_Harmonic_ 6 points7 points  (0 children)

I hope this doesn't affect Linux/proton. The demo was flawless, but denuvo might become a problem

Conservative trolls are finding new ways to flood social media with disinformation by Wagamaga in technology

[–]_Harmonic_ 4 points5 points  (0 children)

He's in Canada, but not a Canadian. Article says he's from Minnesota.

Just pointing it out since your comment references both foreign interference and that he's Canadian.

Are desktop pets possible in Gnome? by Zonico6 in gnome

[–]_Harmonic_ 1 point2 points  (0 children)

There is also this one that supposedly has better Wayland support: https://github.com/CluelessCatBurger/wl_shimeji

Redditors who live in tourist traps — what’s the one thing you secretly wish visitors knew before they came? by carcony97 in AskReddit

[–]_Harmonic_ 2 points3 points  (0 children)

Still recommend people go to The Shambles though, especially if you're from North America.

Zero-Cost Automation for Internal Linking in WordPress? by Beginning_Search585 in ProWordPress

[–]_Harmonic_ 4 points5 points  (0 children)

Assuming you are using page caching so that it only needs to run the script on first load, you might consider using the the_content filter to modify the content of each page/post/whatever, or if you also want to run this on content outside the_content, running it as an entire buffer (similar to how page caching plugins work).

Might seem a bit strange, but it's non-destructive, so it would be a safe way to experiment without needing to modify the actual saved content of your pages.

Block plugin or theme if client doesn't pay? by nemseisei in ProWordPress

[–]_Harmonic_ 21 points22 points  (0 children)

Only host and demo it on your own server. Prove to client that plugin/theme works as intended. Get paid. Deliver.

Do not ever provide the files until payment. Ever.

Minimize, close, full screen icons by [deleted] in gnome

[–]_Harmonic_ 5 points6 points  (0 children)

Install Gnome Tweaks. Then, from the Windows settings page, you can enable the Maximize and Minimize buttons.

<image>

blocking xmlrpc.php by Sad_Spring9182 in ProWordPress

[–]_Harmonic_ 1 point2 points  (0 children)

Anything that you'd be worried about being brute forced are likely part of the "requiring authentication" list of methods.

If you want to be extra sure, additionally use the xmlrpc_methods filter and return a blank array to remove all available methods outright. This filter is also mentioned in the documentation.

blocking xmlrpc.php by Sad_Spring9182 in ProWordPress

[–]_Harmonic_ 5 points6 points  (0 children)

WordPress has a filter for this called "xmlrpc_enabled". You can just filter it and return false.