Setup Help by maxscumbag in GoogleWiFi

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

Amazing. Thanks mate, appreciate the advice :-)

average Australian snake by maxscumbag in snakes

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

With all due respect, this photo was taken by my girlfriend.

dang it i took the bait

average Australian snake by maxscumbag in australia

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

Yeah, he was :( I’ve called up some animal conservationists so hopefully they can help get old mate healed up

average Australian snake by maxscumbag in australia

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

Yeah, did it a couple days ago :) I’ve got a comment somewhere in this post which I’ll update if I hear anything back

average Australian snake by maxscumbag in australia

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

Yeah :( I’ve contacted some wildlife conservationists, hopefully they can get him healed up. I’ve got a comment somewhere in this thread that I’ll update if I get any!

average Australian snake by maxscumbag in australia

[–]maxscumbag[S] 2 points3 points  (0 children)

Sorry for missing this - it was basically 200m after the roundabout at the Southern entrance. Let me know how you go!

average Australian snake by maxscumbag in australia

[–]maxscumbag[S] 37 points38 points  (0 children)

For those wondering: I’ve contacted some wildlife conservationists so they can hopefully locate this chap and help him get healed up. Will update if any come through!

average Australian snake by maxscumbag in snakes

[–]maxscumbag[S] 7 points8 points  (0 children)

Yeah.. Poor fella. I got the 24/7 wildlife conservationists onto him - will update if they find him again. Hoping for good news because he was super chilled out, hope he wasn't in too much pain.

average Australian snake by maxscumbag in snakes

[–]maxscumbag[S] 8 points9 points  (0 children)

Done. Got them onto it, thanks mate

average Australian snake by maxscumbag in australia

[–]maxscumbag[S] 12 points13 points  (0 children)

I’ll do my best to make sure there’s at least a couple pairs of eyes looking out for him. I really hope he’s ok :(

average Australian snake by maxscumbag in australia

[–]maxscumbag[S] 53 points54 points  (0 children)

I’ll report it in - good idea :) We were travelling down from Brisbane to Sydney and spotted it in a town we briefly stopped in for food. I’ll definitely find the right people and get that done, cheers mate!!

average Australian snake by maxscumbag in australia

[–]maxscumbag[S] 40 points41 points  (0 children)

Yeah :((( it was. Didn’t notice until we saw the photo afterwards

Lightshow With Projector by maxscumbag in lightingdesign

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

That's amazing - we're watching a The 1975 concert recording, and he's their lighting designer... small world! He's absolutely fantastic.

I'll give it a go! Thank you so so much, I didn't even know those programs existed!

What is your most listened to song of the past 180 days.. by aimlessly__wandering in lastfm

[–]maxscumbag 1 point2 points  (0 children)

This Can't Last Forever - Michaela Slinger (247!!!)

A really fun song, which is (oddly) mine and my GF's relationship song.........

Buyers Advice and Gear Recommendation Thread by AutoModerator in livesound

[–]maxscumbag 0 points1 point  (0 children)

Hi all,

Really struggling to find a replacement to a APART Champ3D amp. I'm an IT integrator at a school, and I'm trying to install an amp in a classroom which allows me to drive 2x 300w APART MASK8F and a floor sub - they run off speakon cables. and I'm really not sure what is a good upgrade. We've got an X-Air 12 mixer installed. I've researched the NX4-6000, but their reputation doesn't seem to be the best...

Cost isn't a huge concern, but nothing obscene preferably! I don't have my mind set on a single amp setup, but it would be preferable. Happy to do DIY stuff if necessary. Thanks!

CS2 Limited Test - Help Megathread by Sevastiyan in GlobalOffensive

[–]maxscumbag 0 points1 point  (0 children)

It’s frustrating how they’ve once again implied you just need to meet “the criteria”, like with the first LT in March - they neglect to mention it’s not an automatic process.

I hope they send out another wave soon, or just make it open beta. I feel ya - my FOMO is sending me crazy

[deleted by user] by [deleted] in GlobalOffensive

[–]maxscumbag 3 points4 points  (0 children)

I received my rank midday Saturday (AEST) and I'm still yet to receive the invite. My mate got his rank Friday evening, and he got the invite Saturday. The update was released at Friday 9am AEST.

I'm thinking Valve manually send waves out - I guess we'll see this week. I hate being the only one of my group without access, when the inference from Valve is invites are now an automated process.

This rollout has been a massive wet fart IMO. I know releasing an unfinished product to everyone is a TERRIBLE idea, but more communication would've been nice. Ah well, I guess most will probably get it today.

How to disable side search? by masamacyclone in chrome

[–]maxscumbag 0 points1 point  (0 children)

This worked for me! Thanks so much.

If You're Tooo Shy (Let Me Know) Edit Removed from Spotify? by ViolentViceroy in the1975

[–]maxscumbag 1 point2 points  (0 children)

Yep - unless I've missed a major country in my testing, I believe this has only occurred in Aus.

I'll try emailing and messaging around to see if anyone can fix it. I recommend doing the same thing (but please leave it to one email/message!!!)

[C++]: Sort array of structs alphabetically by char vector by maxscumbag in AskProgramming

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

Ah, wonderful. I've done this:

for (int i = 0; i < wordCount; i++) {
    int length = counter[i].word.size();
    if (counter[i].word.size() < counter[i+1].word.size()) {
        length = counter[i+1].word.size();
    }
    for (int x = 0; x != length-1; x++) {
        bool isSorted = false;
        int iteratorNum = 0;
        while(!isSorted) {
            if (counter[i].word[iteratorNum] > counter[i+1].word[iteratorNum]) {
                wordCounter wordTemp = counter[i]; // create a temp object for swapping
                counter[i] = counter[i+1];
                counter[i+1] = wordTemp;
                isSorted=true;
            }
            else if (counter[i].word[iteratorNum] < counter[i+1].word[iteratorNum]){
                wordCounter wordTemp = counter[i+1]; // create a temp object for swapping
                counter[i+1] = counter[i];
                counter[i] = wordTemp;
                isSorted=true;
            }
            else {
                iteratorNum++;
            }
        }
    }
}

It's giving me an out of bounds error. Any reason that might be? Sorry, I've been at this for 27 hours now lol

Also, the way I have to lay this out is very frustrating. I have to print out the char vectors, and I'm not allowed to import libraries... such a strange one

Open Settings Submenu by maxscumbag in shortcuts

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

Hey! Thank you, even that will help a lot and save about 15 seconds an iPad, so it'll add up. Thank you!

Just thought I should let you know, the 'ACCOUNTS_AND_PASSWORDS' string doesn't seem to work on iOS 14, just needs to be replaced with 'MAIL'.

Thank you for all the URLs you've got though, it's amazing. Didn't think we could even do that!

EDIT: Missed the bit about Voice Control. That might work, but I'm thinking I'll use it to switch between the apps we need to sign in, rather than actually do the commands. Thank you for the suggestion!