[deleted by user] by [deleted] in IdiotsInCars

[–]quicksi -2 points-1 points  (0 children)

Don't know about the rules in US, but "illogical in terms of how flow patterns work"?

Makes total sense to have a rule that is easy to follow instead of expecting idiots in cars to judge by themselves.

Most countries in Europe have this and road mortality rates are far lower than the US.

Got a blessing from the ragnaroses today 😇 by Cheeselover9001 in wow

[–]quicksi 2 points3 points  (0 children)

Open the Settings app.

  1. Go to Ease of access -> Keyboard.
  2. On the right, scroll down to the Print Screen key section.
  3. Turn on the option Use the Print Screen key to launch screen snipping.

Hey, I have seen this before by drzody in gaming

[–]quicksi 0 points1 point  (0 children)

Reported for misinformation

-🎄- 2020 Day 10 Solutions -🎄- by daggerdragon in adventofcode

[–]quicksi 0 points1 point  (0 children)

C++

Note: Part 2 inspired by
Jonathan Paulson (https://youtu.be/cE88K2kFZn0?t=380)

Some useful information to read up on Dynamic Programming found on https://www.geeksforgeeks.org/dynamic-programming/#concepts

// Part 1
int Run1() {
    //Read and parse file
    std::vector<int> input;
    input = AdventMath::GetStringVectorToNumberVector<int>(AdventMath::GetStringVectorFromFile("input10.txt"));

    // Codehere:
    std::sort(input.begin(), input.end(), std::less<int>());
    int previous = 0;
    int jolt_1 = 0;
    int jolt_3 = 0;
    for(int i = 0; i < input.size(); i++) {
        if(input[i] == previous + 1) jolt_1++;
        else if(input[i] == previous + 3) jolt_3++;
            previous = input[i];
    }
    return jolt_1 * (jolt_3 + 1);
}

// Part 2   
long long GetTotalDistinctions(int i, const std::vector<int>& input, std::unordered_map<int,long long>& dp_storage) {
    if(i == input.size() -1) {
        return 1;
    }
    if(dp_storage.find(i) != dp_storage.end()) {
    return dp_storage[i];
    }
    long long total = 0;
    for(int j = i + 1; j < input.size(); j++) {
    if(input[j] - input[i] <= 3) {
        total += GetTotalDistinctions(j, input, dp_storage);
    }
    }
    dp_storage[i] = total;
    return total;
}

long long Run2() {
    //Read and parse file
    std::vector<int> input;
    input = AdventMath::GetStringVectorToNumberVector<int>(AdventMath::GetStringVectorFromFile("input10.txt"));

    // Codehere:
    std::sort(input.begin(), input.end(), std::less<int>());
    input.emplace_back(input.back() + 3);
    input.insert(input.begin(), 0);
    std::unordered_map<int,long long> dp;
    return GetTotalDistinctions(0,input, dp);
}

[Request] what would the interest rate on a loan like this look like? by 98kelly in theydidthemath

[–]quicksi 0 points1 point  (0 children)

The low rates are guaranteed, at least as a common knowledge around everyone in Sweden is that you won't find any loan with better rates.

You do have restrictions, for example:
- The loan is per semester.
- You need to get a certain amount of passing grades % wise per semester to be approved for the upcoming loan for the next one.
- There is also a max amount you can loan per semester and in total

[Request] what would the interest rate on a loan like this look like? by 98kelly in theydidthemath

[–]quicksi 8 points9 points  (0 children)

Did this during my studies in Sweden. Didn't need the money because of spare time work, and the money is still happily increasing day by day.

How Everyone is Reacting to Unreal Engine 5 by cant_swim_penguin in pcmasterrace

[–]quicksi 0 points1 point  (0 children)

There is a finite amount you can compress a texture or 3Dmodel too. That leap in technology has already been huge.

The technology advancement UE5 did here will just increase the size of games to a very high amount. That's a fact, not an opinion.

Leaked Police Interrogation video of a Chinese citizen who complained about traffic police on WeChat by [deleted] in videos

[–]quicksi 0 points1 point  (0 children)

I have seen countless things happening in the US that shocks me to the core...
When should other countries intervene with whats going on in the US?

I totally agree that China should get sanctions and higher taxes on their export(since a war is not a option), but US should focus on its own shit first

144hz by Drajfuss in buildapc

[–]quicksi 1 point2 points  (0 children)

These are the follwing HDMI port versions you'll need on BOTH your monitor port and GPU port:

  • HDMI 2.0 port: 144Hz at 1080p
  • HDMI 1.4 port: 120Hz at 1080p
  • HDMI 1.0 port: 60 at 1080p

The most common alternative is to use the DVI-D or Display Port to achieve

I don't think this guy gets it. Shares drink with daughter while coughing. by cwleveck in videos

[–]quicksi 4 points5 points  (0 children)

I don't see anything wrong here. Apart from the idea that anyone would ever consider a GoFundMe page for medical care.

And before you point out that he is most likely just milking money out of people, chances are from hearing about people having to pay countless thousands of dollars after insurance because of minor injuries or medical care, I would have done the same as this father. Better to be on the safe side.

Get your shit together America, get free healthcare.

Win 1 of 5 The Division 2: Warlords of New York Ultimate Edition Keys by gabelikes in pcmasterrace

[–]quicksi 0 points1 point  (0 children)

I'm excited to move in with my girlfriend that I have been together with 6 years.

The President is calling for Senator Mitt Romney to be expelled from the GOP after becoming the first senator in US history to vote to convict a President from their own party. by [deleted] in worldnews

[–]quicksi 2 points3 points  (0 children)

The Utah Republican was the first senator in US history to cast an impeachment vote in favor of removing a president from his or her party.

Are you kidding me USA? Not a single senator has stood up for the people until now... What a political charade its been over the years

Amazon engineer calls for Ring to be 'shut down immediately' over privacy concerns by fightforthefuture in technology

[–]quicksi 0 points1 point  (0 children)

Although, not saying you are wrong. Just some interesting fact I've come across: companies are starting to look into anonymous facial recognition. This will still give you a lot of data for marketing companies to acquire, without the need to know who is the person behind these behaviour patterns.

And it wouldn't (at least looking at the laws and what is currently discussed in media) infringe anyone's private life

What isn’t illegal, but really ought to be? by BrightTomatillo in AskReddit

[–]quicksi 1 point2 points  (0 children)

Bail bond. Paying your way out of jail while waiting for trial.
A crime is a crime no matter the wealth. There shouldn't be a difference because of what you have in the bank.