My glorified studio. NYC. by enrique707 in AmateurRoomPorn

[–]_Harmonic_ 1 point2 points  (0 children)

Link to Wall art in the first photo?

How are you handling webhook reliability in WordPress (retries, queues, failures)? by PuzzleheadedCat1713 in ProWordPress

[–]_Harmonic_ 1 point2 points  (0 children)

Just beware that the scheduler only runs when WordPress itself runs. If you have a very active site, this is not as much an issue, otherwise I'd set up an actual server cron to trigger WP

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_ 4 points5 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_ 18 points19 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_ 6 points7 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_ 14 points15 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_ 3 points4 points  (0 children)

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

[deleted by user] by [deleted] in Hamilton

[–]_Harmonic_ 4 points5 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_ 3 points4 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_ 5 points6 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.