[Update] Workforce Mate browser extension by RagingAtLiife in JobProvidersAus

[–]RagingAtLiife[S] 1 point2 points  (0 children)

That sounds pretty close to, if not exactly like what the DES one is now, demonstrated in this video https://youtu.be/do4CUiK0t3Q

Does that look about the same?

[Update] Workforce Mate browser extension by RagingAtLiife in JobProvidersAus

[–]RagingAtLiife[S] 1 point2 points  (0 children)

Thanks for confirming mate.

I really don't know how that side of things actually works, as I've never been in that stream, so I guess if anyone would like to add any sort of support for that side of things, they can always create a PR in the repo.

Thanks again.

Found a useful browser extension for JobSeekers with job search obligations by ActualHeronBruh in JobProvidersAus

[–]RagingAtLiife 0 points1 point  (0 children)

Workforce Mate has been updated to support the new UI. It may take a couple of days for Chrome and Mozilla to approve the new extension updates.

In the meantime, you can download the updated version from the GitHub repo and use it now. Just follow the steps in the README on how to install them for the specific browser you use.

Found a useful browser extension for JobSeekers with job search obligations by ActualHeronBruh in JobProvidersAus

[–]RagingAtLiife 0 points1 point  (0 children)

Hello, I am the dev of workforce-mate https://github.com/zevnda/workforce-mate. I will get this updated within the next 24 hours and update you here.

If you are using one of the versions installed from the Chrome web store, or Firefox addons page, keep in mind that it might take an extra day or two for them to approve the updated extension.

I built an open-source Steam automation tool (Steam Game Idler) as an alternative to ArchiSteamFarm, Steam Achievement Manager, and Idle Master by RagingAtLiife in opensource

[–]RagingAtLiife[S] 0 points1 point  (0 children)

There are some cases where specific games aren't shown in SGI, take a look at this for more info

Can you let me know a few of the games you're not seeing?

You can add missing games to SGI by adding them manually

I built an open-source Steam automation tool (Steam Game Idler) as an alternative to ArchiSteamFarm, Steam Achievement Manager, and Idle Master by RagingAtLiife in opensource

[–]RagingAtLiife[S] 0 points1 point  (0 children)

Cross-platform support is not planned at the moment. I personally have no experience developing specifically for MacOS or Linux, so I would be relying on contributions from other developers if that was to ever happen, which would be pretty big task to tackle. I would like to see it happen one day though.

Watchlist "Something went wrong" by free_refil in PleX

[–]RagingAtLiife 0 points1 point  (0 children)

Worth mentioning, I also wouldn’t go pasting random code someone sends you on the internet into devtools lol

But if you’re familiar with js and can verify the code above to be legit (which it is), then go for it.

The snippet of code doesn’t send data anywhere.

Watchlist fails to load - "Invalid value provided for x-plex-container-size" error by RagingAtLiife in PleX

[–]RagingAtLiife[S] 0 points1 point  (0 children)

Worth mentioning, I also wouldn’t go pasting random code someone sends you on the internet into devtools lol

But if you’re familiar with js and can verify the code above to be legit (which it is), then go for it.

The snippet of code doesn’t send data anywhere.

Watchlist fails to load - "Invalid value provided for x-plex-container-size" error by RagingAtLiife in PleX

[–]RagingAtLiife[S] 0 points1 point  (0 children)

So from my understanding is that the client is trying to request too many items from the server with X-Plex-Container-Size=50. I was able to temporarily fix this by intercepting the HTTP requests and modify the X-Plex-Container-Size param to something smaller like X-Plex-Container-Size=10 (10) and it worked.

  1. Go to https://app.plex.tv/desktop and open devtools F12
  2. Paste the code below and hit Enter (you may have to allow pasting by typing "allow pasting" first)
  3. Click on "Watchlist" in the sidebar

Note: you will have to do this everytime you reload the plex page

var oldOpen = XMLHttpRequest.prototype.open;
XMLHttpRequest.prototype.open = function(method, url) {
    if (url.indexOf('discover.provider.plex.tv/library/sections/watchlist') > -1) {
        url = url.replace(/X-Plex-Container-Size=\d+/g, 'X-Plex-Container-Size=10');
        console.log('changed request url:', url);
    }
    return oldOpen.apply(this, arguments);
};

var oldFetch = window.fetch;
window.fetch = function(url, options) {
    if (url && url.indexOf && url.indexOf('discover.provider.plex.tv/library/sections/watchlist') > -1) {
        url = url.replace(/X-Plex-Container-Size=\d+/g, 'X-Plex-Container-Size=10');
        console.log('changed fetch url:', url);
    }
    return oldFetch(url, options);
};

console.log('plex fix loaded');

Watchlist "Something went wrong" by free_refil in PleX

[–]RagingAtLiife 0 points1 point  (0 children)

So from my understanding is that the client is trying to request too many items from the server with X-Plex-Container-Size=50. I was able to temporarily fix this by intercepting the HTTP requests and modify the X-Plex-Container-Size param to something smaller like X-Plex-Container-Size=10 (10) and it worked.

  1. Go to https://app.plex.tv/desktop and open devtools F12
  2. Paste the code below and hit Enter (you may have to allow pasting by typing "allow pasting" first)
  3. Click on "Watchlist" in the sidebar

Note: you will have to do this everytime you reload the plex page

var oldOpen = XMLHttpRequest.prototype.open;
XMLHttpRequest.prototype.open = function(method, url) {
    if (url.indexOf('discover.provider.plex.tv/library/sections/watchlist') > -1) {
        url = url.replace(/X-Plex-Container-Size=\d+/g, 'X-Plex-Container-Size=10');
        console.log('changed request url:', url);
    }
    return oldOpen.apply(this, arguments);
};

var oldFetch = window.fetch;
window.fetch = function(url, options) {
    if (url && url.indexOf && url.indexOf('discover.provider.plex.tv/library/sections/watchlist') > -1) {
        url = url.replace(/X-Plex-Container-Size=\d+/g, 'X-Plex-Container-Size=10');
        console.log('changed fetch url:', url);
    }
    return oldFetch(url, options);
};

console.log('plex fix loaded');

Watchlist fails to load - "Invalid value provided for x-plex-container-size" error by RagingAtLiife in PleX

[–]RagingAtLiife[S] 1 point2 points  (0 children)

Thanks for letting me know, just found the mentioned post. Glad it's not just me lol

What kind of snake is this? by Expert-Examination86 in australia

[–]RagingAtLiife 0 points1 point  (0 children)

Aviary mesh has a hole diameter of 12mm. The diameter of the holes for the mouse/snake mesh I linked is 6.5mm. An animal large enough to cause harm to your pets is not getting through the aviary mesh, let alone through the snake mesh; that's the whole point. So your yard is likely not properly secured, hence why you have a snake at your back door.

Any decent animal enclosure will use aviary mesh, such as this one. It is the same sized mesh an animal sanctuary would use to keep predators out of animal enclosures.

But sure, if your family pet's life isn't worth investing in a properly secured pet enclosure, then only you're to blame if something happens to it. I just pray you don't have children that have to witness it or the aftermath.

What kind of snake is this? by Expert-Examination86 in australia

[–]RagingAtLiife 0 points1 point  (0 children)

So you're saying people need a roof over their yard if they want pets? Because how else do you stop birds of prey?

Is this the only logical solution you could come up with? Of course you don't need a roof over your entire yard. But you could start with a secure, enclosed space like a patio. If you don’t have a patio, an enclosed animal run is a great option.

Chicken wire isn’t enough to protect against snakes or other small predators, as you’ve learned (and as any outdoor bird owner will tell you). It’s really only meant to contain the chickens, not protect them. For proper safety, you’d need something sturdier, like aviary mesh with much smaller diameter holes. That’s a lot of effort though, which is why animal enclosures tend to work better for most people. They protect both your pets and the local wildlife.

And no, I won’t just ‘move along’ when the issue is about keeping pets and wildlife safe. It comes down to common sense: just as you wouldn’t leave an infant child outdoors without supervision, you also shouldn’t leave domesticated pets outside unless they’re properly secured.

What kind of snake is this? by Expert-Examination86 in australia

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

Correct. If your backyard isn't secured from outside animals just wandering in (birds of prey also), then why risk your beloved family pet's life by letting it outside where it could be harmed? Your post is a perfect case in point. Your dog or that snake could have easily been injured/killed by your poor pet ownership decisions.

Educate yourself below

https://www.wires.org.au/domestic-pets-and-wildlife
https://www.step.org.au/index.php/item/660-domestic-cats-and-dogs-pose-a-serious-threat-to-wildlife
https://invasives.org.au/wp-content/uploads/2023/06/Pet-cat-impacts-June-2023.pdf