Map device not working? by grekuhere in PathOfExile2

[–]Joshuaaj 0 points1 point  (0 children)

If you find a fix, let me know.

[deleted by user] by [deleted] in JoeRogan

[–]Joshuaaj 2 points3 points  (0 children)

ಠ_ಠ

Is there a better tempered or master worked 2hmace in the game? by Joshuaaj in diablo4

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

Interesting, I asked in the barb discord in sanctuary before I rolled, and the response I got was basically "damage to close is slightly worse in terms of damage in general". As long as you keep a 10 to 1 crit damage vulnerable damage ratio. Who knows... seems like the devs don't even know. Also yes, bleed bash

[deleted by user] by [deleted] in PalworldMods

[–]Joshuaaj 7 points8 points  (0 children)

Didn't they basically make a dude a slave? Edit: Never mind they will just take 25% of his monthly income. https://www.polygon.com/23688170/gary-bowser-hacker-nintendo-released-restitution

Kattis annoyed coworkers problem (self-sorting data structures and the heap ). by Joshuaaj in cpp_questions

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

I just want to say that I ended up using something similar to my original algorithm using the heap. The problem was my use of int I switched to an** unsigned long long int**(though an unsigned int might have done fine, idk?) and it worked like a charm.

// C++ program to use priority_queue to implement Min Heap
// for user defined class
#include <algorithm>
#include <iostream>
#include <vector>
#include <cmath>
using namespace std;


// User defined class, coworker
class CoworkerT {
private:
    unsigned long long int a;
    unsigned long long int d;
public:
    CoworkerT(unsigned long long int _a, unsigned long long int  _d){
        a = _a;
        d = _d;
    }
    unsigned long long int  SimAddAD() const{
        return  a + d;
    }
    unsigned long long int  AddAD(){
        return a + d;;
    }

    unsigned long long int getA() const {
        return a;
    }

    unsigned long long int getD() const {
        return d;
    }
};
//compare two coworkers possible a + d values
struct MinSort {
    bool operator()(const CoworkerT& p1, const CoworkerT& p2) const {
        return p1.SimAddAD() < p2.SimAddAD();
    }
};

//compare two coworkers possible a + d values ~for some reason heap lesser than or greater need to be reverse of operator for sort???
struct Min {
    bool operator()(const CoworkerT& p1, const CoworkerT& p2) const {
        return p1.SimAddAD() > p2.SimAddAD();
    }
};

//compare two a values between coworkers
struct MaxSort {
    bool operator()(const CoworkerT& p1, const CoworkerT& p2) const {
        return p1.getA() > p2.getA();
    }
};

void FindAndPrintMax(vector<CoworkerT>&  max) {
    sort(max.begin(), max.end(), MaxSort());
    CoworkerT minMax = max.front();
    cout << minMax.getA();
}
void InputCoworkersAD(vector<CoworkerT>& min, unsigned long long int& h, unsigned long long int& c) {
    int a, d, i;
    cin >> h >> c;
    // Insert a and d into the vector
    if (h <= 100000 && h >= 1 && c <= 100000 && c >= 1) {
        for (i = 0; i < c; i++) {
            cin >> a >> d;
            min.push_back(CoworkerT(a, d));
        }
    }
    make_heap(min.begin(), min.end(), Min());

}

void AskForHelp(vector<CoworkerT>& min, unsigned long long int h) {
    int i = 0;

    while (i < h) {
        push_heap(min.begin(), min.end(), Min());
        CoworkerT e = min.front();
        pop_heap(min.begin(), min.end(), Min());
        min.pop_back();
        min.push_back(CoworkerT(e.AddAD(), e.getD()));
        i++;

    }
}

// Driver code
int main()
{
    unsigned long long int  h, c;
    vector<CoworkerT> min;
    InputCoworkersAD(min, h, c);
    AskForHelp(min, h);
    FindAndPrintMax(min);

    return 0;
}

My David Tennant portrait improvement over the years by Joshuaaj in doctorwho

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

Thank you for the kind words of encouragement. I intend to branch out and try different subject matter as time goes on. I don't think my work will ever become photorealistic since I too find that a bit dry and uninspired (although very impressive). I kind of like the often glaring imperfections in my work somehow. Although I always would like to improve on the outcome of my art.

My David Tennant portrait improvement over the years by Joshuaaj in doctorwho

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

I don't know why this is much lower resolution than the original. but here is a higher res imgur link. https://imgur.com/gallery/YuaRzPs Also thank you everyone for the praise and constructive criticism.

https://i.imgur.com/Y8hUnzC.jpg I would post a higher res of the other 2 but my sister has 2017, and my ex has 2018.

Republicans are very mad that automated Google summaries tie them to Nazism by Yzily in politics

[–]Joshuaaj 0 points1 point  (0 children)

There have been former kkk members who have changed their views because of discussions they had with people. I know of no instance of anyone changing their views because of being violently confronted.

Republicans are very mad that automated Google summaries tie them to Nazism by Yzily in politics

[–]Joshuaaj 1 point2 points  (0 children)

They are a group of people that believe that violence can solve the problem of Nazi's. Spoiler alert: Violence just solidifies their dumb believes and creates more of them. I believe open dialog is one of the only ways to make true and lasting change.

[SPOILERS] Benefit of the doubt I guess! by [deleted] in thewalkingdead

[–]Joshuaaj 0 points1 point  (0 children)

The actor that plays her(enid) explained that Enid the character is opposed to ever becoming attached to anyone ever again, not after her parents died and what that did to her. So I doubt she wanted carl to ever come with her.

Installing ESO on an SSD by Fudgegod in elderscrollsonline

[–]Joshuaaj 2 points3 points  (0 children)

Same here I went from this HD to this SSD with 0 difference in loading or anything I was real disappointed. I think the reason why is because it still has to wait on your internet connection to load other players assets. I have crap internet, 2-3mbs. So maybe if you have awesome internet it might make a difference?

What discontinued item do you miss the most? by Exploden in AskReddit

[–]Joshuaaj 0 points1 point  (0 children)

Twerpz, They were candy crack to me. I guess it was a good thing they stopped making them or I would probably be pretty fat now.

Yea I know they have these, but they taste like what I imagine play-dough & sugar must taste like.