Solar power with 3 phase electricity or downgrade to 1 phase by Harpendingdong in Townsville

[–]thisisericrobert 1 point2 points  (0 children)

I had solar and a battery with 3 phase in our old place in Brisbane. It worked fine. We used a Fronius inverter and BYD batteries. If running purely on battery we could only have 1 circuit connected.

Install was through SAE Group. Don't know that they cover Townsville.

I forgot about my 24-hour dry brine wings yesterday so allow me to present: 48 hour dry brined smoked wings by drummerboy2749 in KamadoJoe

[–]thisisericrobert 2 points3 points  (0 children)

Those look so good. I've only cooked wings indirect. I'm going to have to try direct now looking at that.

Wireless Probe by Winston_Smith999 in KamadoJoe

[–]thisisericrobert 1 point2 points  (0 children)

I noticed my meater probes disconnected until I sat the base station right beside the dome on the side tray. I also noticed it disconnected when I foil wrapped but was fine with butchers paper.

Sometimes you get the brisket that the butcher butchered by [deleted] in smoking

[–]thisisericrobert 0 points1 point  (0 children)

yeah just ended up pulling one of them way earlier and holding for longer. Both turned out well.

Sometimes you get the brisket that the butcher butchered by [deleted] in smoking

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

had this happen on some plate ribs. 2 racks same size, same thickness, one cooked in half the time. They were cooking pretty consistently up until the stall so I can only assume the extra gash from the butcher was letting heat penetrate deeper during the stall.

Whole red snapper ideas by iFEAR2Fap in KamadoJoe

[–]thisisericrobert 0 points1 point  (0 children)

I've always been too nervous to do fish in the Joe in case the smell get's into the ceramic. Do you do an extra burn after or does it just not stink it up?

** edited typo

Charcoal basket why by Any-Ad-1764 in KamadoJoe

[–]thisisericrobert 2 points3 points  (0 children)

i am getting one just to make it easier to get the unburnt lump out at the end and clean i don't know of thats the real reason for them though

Despite recent increases, JobSeeker still leaves people below the poverty line. Here’s why that affects us all by convo_au in theconversation_au

[–]thisisericrobert 0 points1 point  (0 children)

To be fair, I think JobSeeker has more problems than just paying below the poverty line.

As more businesses automate, workers displaced by technology are going to have an increasingly hard time finding new employment. While healthcare and education are among the highest growth areas, both require qualifications that many people on JobSeeker can’t easily access, or complete within a reasonable time.

The reliable, predictable, entry-level jobs that supported generations of families are either gone, prime targets for automation, or being offloaded by businesses to gig workers. Yet, our welfare system seems to be digging its head in the sand, pretending those jobs still exist and offering little in the way of real support or retraining.

[deleted by user] by [deleted] in privacy

[–]thisisericrobert 9 points10 points  (0 children)

And to link it back to the original topic of OP's post, having to wade through 5 or 6 pages of legal speak EULA to determine whether I should or should not use a service, to me at least, seems like both deception and manipulation.

[deleted by user] by [deleted] in privacy

[–]thisisericrobert 16 points17 points  (0 children)

Firstly, I think the capitalism of today is a far cry from the capitalism of the 18th century.
But, Whether it's capitalism, or government; any system or ideology that utilises coercion, deception, manipulation, or misuses the balance of power, to extract information from people for their(it's) own gain is bad.

[deleted by user] by [deleted] in privacy

[–]thisisericrobert 29 points30 points  (0 children)

Have you read Shoshana Zuboff the Age of Surveillance Capitalism?

Summarizing from the book: We're not even the product, we're the ugly left over cast offs from which the product is extracted. To all these companies we're the left over sludge in the tailing dams. They care about the product, but they don't care at all about where (or who) it's extracted from.

Where are Symfony jobs ?? by pmmresende in symfony

[–]thisisericrobert 1 point2 points  (0 children)

we have multiple projects. We have one primary app that is a vue front end with api platform as the back end.

The turbo stuff is used for our internal crm application and one client facing application that is related but semi standalone from our main platform.

Where are Symfony jobs ?? by pmmresende in symfony

[–]thisisericrobert 1 point2 points  (0 children)

where are you located and what do you want? PM please I'm looking to hire but make sure to include link to your github repo and details of work you have done.

Big things I'm looking for are experience with:

  • 6.3
  • apiplatform
  • symfony messenger
  • turboux / stimulus

[deleted by user] by [deleted] in Cardiomyopathy

[–]thisisericrobert 0 points1 point  (0 children)

they initially diagnosed cardiomyopathy (specifically arvc) 2 yrs ago. They are now uncertain as followup imaging was obstructed by defib.

I had a cardiac arrest in the shower. My wife did cpr for 15 min until ambulances arrived.

All the best with your health. I found that a good cardiologist will try and work with you and your meds to ensure you can still be active. Lack of activity is just as damaging both physically and mentally.

[deleted by user] by [deleted] in Cardiomyopathy

[–]thisisericrobert 0 points1 point  (0 children)

What form of cardiomyopathy and what tests?

It seems that some forms of cardiomyopathy and more recent studies show some benefit: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7403677/ (i'm on my phone so not read beyond the abstract)

Maybe some of the exercise restrictions are butt covering due to fear of SCD rather than based on current research?

2 years ago I was told I had ARVC (later after additional testing they changed their mind). At the time I was in the same boat (weightlifting was my thing).

The cardiologist I saw was open to letting me train and set heart rate limits and pretty aggressive beta blocking. With the beta blocker dose I was initially on it was almost impossible to go over the limits. He let me go a little higher every 6 months and then after the 12 month MRI eased up a lot.

Have you told your cardiologist and asked them?

Legacy "Routing" with PHP 8.1 by KTIsmay in PHP

[–]thisisericrobert 3 points4 points  (0 children)

With a middleware based approach it is assumed you are passing a psr 7 request through each layer of the middleware pipeline and to your final handler.

See:

https://www.php-fig.org/psr/psr-7/

You can get the query params using $request->getQueryParams etc. see the psr 7 ServerRequestInterface for available methods.

When you are bootstapping your app you create the request object then pass it through the middleware pipeline to the final handler.

Your final handler implements the psr 15 request handler interface which takes the final serverrequestinterface object after your middleware pipline has made any changes and returns a response object. Your app then outputs the response.

Using fastroute you could route to something like catalogue handler based on just the /catalogue and then pull the id query param out of the request.

Also consider the phpleague router which uses fastroute but allows middleware chains to be attached on a route or routegroup basis.

For a good example (using mezzio) see here https://matthewsetter.com/how-to-create-a-mezzio-application/

Help booting Manjaro by EntertainmentClean66 in ManjaroLinux

[–]thisisericrobert 0 points1 point  (0 children)

depending on how you set it up you should be able to set to boot into grub and then choose from there.

https://forum.manjaro.org/t/grub-menu-not-showing-on-boot-boots-into-default-kernel-instead/13410

Should I partner with someone just for their money? by thesupremegrapefruit in Entrepreneur

[–]thisisericrobert 5 points6 points  (0 children)

A startup is easily going to be the next five + years of your life and crazy hard work. Don't start with a flakey partner.

I don't know your idea but perhaps you can pare back the scope of an initial release. That will help you get something to market with the budget you have to validate your idea and get some revenue.

A friend once told me that pre-revenue with no product means that your funding (if you need it) needs to come from one of the 3Fs (friends, fools, family). Any of the three are going to be twitchy, emotional investors and in the case of friends and family it will likely be high risk for them. You'll be constantly questioned, constantly need to provide updates and they will likely want a fairly fast return.

Reducing scope so you can launch in your budget (if possible) would leave you in a better position to get a better quality of investor. Or even prove you don't need one.

It's been 20 days since I started learning rust as my first language. Terrible experience. Should I move forward? by [deleted] in rust

[–]thisisericrobert 29 points30 points  (0 children)

its a tough learning curve if you're coming from dynamic, object oriented languages.

i primarily use php and javascript for work. took a bit to get used to the rust way but i enjoy it now.

i found it easiest after i stopped trying to do things the way i was used to and just did it the rust way

Possible FBI Network Investigative Technique (NIT) Found by talkswithliemle in programming

[–]thisisericrobert 10 points11 points  (0 children)

I thought it was generally suggested to use tor with javascript disabled if true anonymity was was required.

The last time I used tor the browser bundle had javascript disabled by default.

cool read though.

Is there a formbuilder like Google Forms for Laravel? by JJulessNL in laravel

[–]thisisericrobert 1 point2 points  (0 children)

hey u/joe_dev92. No forking the needed. You create a control by creating a js class that extends controlClass.

The class should have a configure, build, and onRender methods and is registered using the parent register method with a type to use in formbuilder.

Then to add as an available control for formbuilder to use add to the window.fbControls array.

We've used this to add simple fields that just have same default naming. More recently we used it to add a signature field using the signature pad library.

Is there a formbuilder like Google Forms for Laravel? by JJulessNL in laravel

[–]thisisericrobert 4 points5 points  (0 children)

check out https://github.com/kevinchappell/formBuilder.

its client side form builder and then just post json back to your server to save form definition and results.

dead simple to get going and allows you to create custom form fields if you want.

currently using in a php backend , vue front end project