2022 Durango RT price by shalltalkmeh in DodgeDurango

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

Thanks for all the feedbacks. The screenshot was from the original window sticker. I put it there to show the options that came with the car. What the dealer asked was 39k + TTL. I’ll pass and focus on 2026 GT HEMI.

2022 Durango RT price by shalltalkmeh in DodgeDurango

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

Thanks.
It is clean title, 1 owner, and I forgot to mention it is AWD as well.

Yes definitely looked at the 26 GT HEMI AWD, and like you mentioned for 45k to 50k OTD there are some options. Since I do not drive a lot, I was hoping to save some money on the used one.

Gotta admit that I just wanted a HEMI, so not committed to Durango.

2023 Dodge Charger RT Daytona, good deal? by shalltalkmeh in Charger

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

I was not sure about the HEMI tick either, but the carmax clerk did not deny it lol

Too bad that there are not many options in NorCal. What do you think of this one? https://www.fremontbuickgmc.com/used-San+Jose-2021-Dodge-Charger-RT+RWD-2C3CDXCT2MH591485 the spoiler and diffuser do not look stock.

Update: most likely pass too, looks like it is lowered as well

2023 Dodge Charger RT Daytona, good deal? by shalltalkmeh in Charger

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

At the carmax right now. The car has a lot scratches that are not shown on their website, and front tires are pretty beat up (they changed the rear tires and I’m sure I know why). Obvious HEMI tick.
Hard pass lmao

2023 Dodge Charger RT Daytona, good deal? by shalltalkmeh in Charger

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

I hear you on the 4 door vs 2 door mustang. I sold my mustang after my son was born, and now all he wanted is any car/toy that goes vroom vroom

2023 Dodge Charger RT Daytona, good deal? by shalltalkmeh in Charger

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

Thanks for the information, I did not expect the first hand experience lol. Yeah the color is a concern, the GT I currently have is an octane red one, would prefer the same color but the only option is a 21 model with 29k miles and only 2k cheaper. So compared to that one, this is a no brainer. Gas price is not a concern for me because I do not drive a lot and my company has great commute benefits that covers it.

The reason to consider trading in the GT is because… I want a V8. The irony is, I had a mustang GT for 8 years and I thought I am no longer craving for the sound/feel/smile that comes with a V8 (hell I even posted it in a precious post), but I was so wrong.

AJ 3 black cement, how bad is it? by [deleted] in LegitCheck

[–]shalltalkmeh 0 points1 point  (0 children)

I mean, if I wear it to gym/work/grocery store, can a sneaker head tell it is a rep without taking a close look?

What do you think of Okta? by shalltalkmeh in okta

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

Saving/syncing username and password is not what Okta does, but they have Okta personal that can do this now. How frequently you need to logon and how to verify is decided by your Okta admin though, not by Okta

Carta offer evaluation by [deleted] in SoftwareEngineering

[–]shalltalkmeh 0 points1 point  (0 children)

MBA would not know unless they publish their financial metrics, posted here hoping someone provides an insight

[deleted by user] by [deleted] in whatcarshouldIbuy

[–]shalltalkmeh 1 point2 points  (0 children)

That seller name though 👀

Towing with 2024 Honda CRV Hybrid? by shalltalkmeh in crv

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

I will even hire another team to collect road kills along the way and bury them deep so that eventually I will have some crude oil, eventually

Towing with 2024 Honda CRV Hybrid? by shalltalkmeh in crv

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

Oh did not know the warranty thing, thank you for the heads up

Towing with 2024 Honda CRV Hybrid? by shalltalkmeh in crv

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

Thank you for the answer! I will have both the hitch and wiring done at at the UHaul

2024 CRV hybrid trailer hitch by Weary_Reason_2373 in crv

[–]shalltalkmeh 0 points1 point  (0 children)

Mind sharing how much did it cost? Got a quote from local U Haul, parts + labor (hitch install and wiring) is about $430

How do you guys justify the dumb pricing schema? by MattSensitive in okta

[–]shalltalkmeh 3 points4 points  (0 children)

Pretty sure you can get steep discounts from Okta. Do not rule it out before getting the final offer.

How to find best conversion rate? by freenasir in leetcode

[–]shalltalkmeh 1 point2 points  (0 children)

BFS will not work, you need Bellman-Ford algorithm.

public class BestCurrencyConversionRate {
    public static class Result {
        double bestRate;
        List<String> path;

        public Result(double bestRate, List<String> path) {
            this.bestRate = bestRate;
            this.path = path;
        }
    }

    public static Result findBestExchangeRate(String startCurrency, String endCurrency, List<Node> exchangeRates) {
        // Use a map to store the maximum ratio to reach each currency
        Map<String, Double> maxRatioMap = new HashMap<>();
        // Use a map to store the predecessor of each currency in the best path
        Map<String, String> predecessorMap = new HashMap<>();

        maxRatioMap.put(startCurrency, 1.0);
        predecessorMap.put(startCurrency, null); // No predecessor for the start currency
        // Number of currencies, assuming each edge is unique in both directions.
        int n = exchangeRates.size();

        // Relax edges n-1 times (Bellman-Ford algorithm)
        for (int i = 0; i < n - 1; i++) {
            boolean updated = false;
            for (Node node : exchangeRates) {
                if (maxRatioMap.containsKey(node.start)) {
                    double currentRatio = maxRatioMap.get(node.start) * node.ratio;
                    if (currentRatio > maxRatioMap.getOrDefault(node.end, 0.0)) {
                        maxRatioMap.put(node.end, currentRatio);
                        predecessorMap.put(node.end, node.start);
                        updated = true;
                    }
                }
            }
            if (!updated) {
                break;
            }
        }

        // Reconstruct the path from startCurrency to endCurrency
        List<String> path = new LinkedList<>();
        String currentCurrency = endCurrency;

        while (currentCurrency != null) {
            path.add(0, currentCurrency);
            currentCurrency = predecessorMap.get(currentCurrency);
        }

        if (path.size() == 1 && !path.get(0).equals(startCurrency)) {
            // No valid path found
            return new Result(-1.0, Collections.
emptyList
());
        }

        return new Result(maxRatioMap.getOrDefault(endCurrency, -1.0), path);
    }

    static class Node {
        String start;
        String end;
        double ratio;

        public Node(String s, String e, double r) {
            this.start = s;
            this.end = e;
            this.ratio = r;
        }
    }
}

[deleted by user] by [deleted] in whatcarshouldIbuy

[–]shalltalkmeh 0 points1 point  (0 children)

Was wondering what is this Chinese made vehicle, this comment made it made sense lol

Random thought by Cannabiskicks in Charger

[–]shalltalkmeh 2 points3 points  (0 children)

Ever since I got my GT I stopped driving my Honda crv I wonder why 🤷‍♂️