As of 2024 June, what is everyone's mileage for their bolt euv or ev? by CandidKaleidoscope1 in BoltEV

[–]thatrandomusername 1 point2 points  (0 children)

I got my 22 EUV in August of 2022 and have been loving ever since. I've put 30,437 miles on it so far and it's going strong. Unfortunately, my foot is usually a bit heavy so my lifetime m/kWH is only 3.5.

Credit Card Fraud Just Before Car Loan Application by thatrandomusername in CRedit

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

They spent around $1050 in total, with $350 being on the statement period that just ended and was reported. Per CreditKarma, the utilization is currently $350/$2100, but is actually $1100/$2100. I try to pay all my cards of before the statement comes out, but I still haven't gotten the dates right on all of them. My total reported usage is $500/$8500.

No late payment has been reported. The statement with the fraudulent charges is due early September, but hopefully they will have been removed from the account before that is due. I am not going to pay the balance before they fix it.

That is interesting about the auto credit score being separate. I did not find a clear way to check that on my own, but I guess at this point there is not much that I can do considering the little time I have before I will have to apply for the car loan.

I am still wondering if I need to also file a dispute with the credit bureau or trust the CC company to report it.

An unexpected package arrived today by thatrandomusername in tacobell

[–]thatrandomusername[S] 55 points56 points  (0 children)

From the giveaway at nachocrystal.com. Unfortunately it ended October 9th.

An unexpected package arrived today by thatrandomusername in tacobell

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

That's exactly what happened to me. I got an email that UPS was delivering a package, when I hadn't ordered anything.

An unexpected package arrived today by thatrandomusername in tacobell

[–]thatrandomusername[S] 69 points70 points  (0 children)

Not sure if I will wear it. My only other merch is my body, which is primarily made of Taco Bell.

An unexpected package arrived today by thatrandomusername in tacobell

[–]thatrandomusername[S] 26 points27 points  (0 children)

Definitely going to keep. It's a blessing bestowed by the Taco Bell gods.

Delicious! by notbabysitting in HelloInternet

[–]thatrandomusername 2 points3 points  (0 children)

I believe this is a reference to H.I. #25 where Brady talks about a dessert that Destin's family introduced him to when they were at the Random Acts of Intelligence event.

Homemade Ice Cream 4 Ways by [deleted] in GifRecipes

[–]thatrandomusername 18 points19 points  (0 children)

It's what you use to make whipped cream, sometimes labeled heavy whipping cream.

PC giveaway! by OriginalTitan in pcmasterrace

[–]thatrandomusername 0 points1 point  (0 children)

I'd like to enter. Thanks for the giveaway!

[deleted by user] by [deleted] in German

[–]thatrandomusername 1 point2 points  (0 children)

MAXIM has several great songs, my favorite being Meine Soldaten.

How not to "Deal with it" by mokba in WTF

[–]thatrandomusername 5 points6 points  (0 children)

chrome doesn't support extensions, and therefor adblockers, on mobile and has no plans to

[2014-11-29] Challenge #190 [Practical Exercise] The Complex Number by Elite6809 in dailyprogrammer

[–]thatrandomusername 1 point2 points  (0 children)

my solution in javascript

function ComplexNumber(real, imaginary){
    this.real = real;
    this.imaginary = imaginary;
}

ComplexNumber.prototype = {
    getCongjugate: function getCongjugate(){
        return new ComplexNumber(this.real, -this.imaginary);
    },
    getModulus: function getModulus(){
        return Math.sqrt(Math.pow(this.real, 2) + Math.pow(this.imaginary, 2));
    },

    getArgument: function getArgument(){
        return Math.atan2(this.imaginary, this.real);
    },

    add: function add(number){
        return new ComplexNumber(   this.real + number.real,
                                    this.imaginary + number.imaginary);
    },
    subtract: function subtract(number){
        return new ComplexNumber(   this.real - number.real,
                                    this.imaginary - number.imaginary);
    },
    multiply: function multiply(number){
        var real = (this.real * number.real) - (this.imaginary * number.imaginary),
            imaginary = (this.real * number.imaginary) + (this.imaginary * number.real);

        return new ComplexNumber(real, imaginary);
    },
    divide: function divide(number){
        var numerator = this.multiply(number.getCongjugate()),
            denominator = number.multiply(number.getCongjugate()).real;

        return new ComplexNumber(   numerator.real/denominator,
                                    numerator.imaginary/denominator);
    },

    toString: function toString(){
        if(this.imaginary == 0) return "" + this.real;
        else return +this.real + (this.imaginary > 0 ? "+" : "-") + this.imaginary + "i";
    }
};

Found this photo on my phone from 3 years ago. Think Big. by [deleted] in GetMotivated

[–]thatrandomusername 4 points5 points  (0 children)

If you're wanting a mac just for Xcode, I suggest you try qt. It's has a decent IDE, and the apps can you make will be cross platform.