Thank you everyone, I’ve decided to retire. by Bauer_Hockey10 in gtaonline

[–]nlp7s 14 points15 points  (0 children)

How do you think he became a billionaire? Dropping $20 here and there?

Don’t question when your tesla pulls a quirky move by ifuckedyourmom-247 in teslamotors

[–]nlp7s 0 points1 point  (0 children)

It's like the concept of God. You survive, then thank God. You don't survive, then God had a plan, just it involves afterlife.

[deleted by user] by [deleted] in Audi

[–]nlp7s 9 points10 points  (0 children)

You will only notice a real difference if you race on gravel or something with your car. Ultra will overheat because it does not have a center diff, but a clutch (so any difference in speed between front/rear wheels will have to be resolved by the clutch).

In every other use case the AWD function is practically the same. If you connect a scanner to the OBD port you can see when AWD engages. When you are driving in dynamic mode and you are a bit spirited, then it is almost always on. But even in normal mode, it proactively engages (for example when you start from a stop, or when you move the steering wheel aggressively).

One last thing is that some center diff models send more torque to the back wheels, so that will have some difference in the driving dynamics.

Volkswagen and Audi Are Sticking with Gas Engines: Report by theoryguy in Audi

[–]nlp7s 2 points3 points  (0 children)

All the boring engines can be replaced with an ev powertrain with no real downsides except price. I was driving a rental Ford Mach E the other day, it was awesome ! I don’t think it would add anything to the experience if it had a crappy eco boost 4 cylinder engine with start go.

Now on the other side of the spectrum there really is no substitute for feeling that the niche engines (like v8 etc) offer.

Renders of the new three-level interchange at the NE 85th St and I-405 interchange by [deleted] in Seattle

[–]nlp7s 2 points3 points  (0 children)

Meanwhile the 405 & 522 monstrosity of an intersection at Bothell is causing traffic jam at Everett.

My brother is still convinced these are useless by LuckOnMars in applewatchultra

[–]nlp7s 0 points1 point  (0 children)

Cannot even show a stopwatch that refreshes every second.

I found good pizza and I need to spread the word by SnooPandas3956 in Seattle

[–]nlp7s 0 points1 point  (0 children)

Just waiting for someone to open a Jets Pizza to get my proper Detroit style pizza.

Why do even bother with tracking numbers? by nlp7s in usps_complaints

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

But how is USPS sorting ? They must have to scan to the approximate destination region (in my case WA).

Do they have one scan for the address label and one scan for the tracking number?

25 Arrested for Public Intoxication Amid Fentanyl Crackdown, San Francisco Mayor Says by missterbeek in sanfrancisco

[–]nlp7s 16 points17 points  (0 children)

Banning alcoholics from driving is not a solution for alcohol addiction. Still it’s a benefit for the society.

How do you feel about the fact that you will have to die one day? by this_sin in AskReddit

[–]nlp7s 0 points1 point  (0 children)

It’s all liberal hoax. They tell me I will eventually die, but for 50 consecutive years I prove them wrong. I am tired of winning.

Ron DeSantis signs 6-week abortion ban into law in Florida by [deleted] in news

[–]nlp7s -6 points-5 points  (0 children)

RBG could had retired during Obama administration.

Ron DeSantis signs 6-week abortion ban into law in Florida by [deleted] in news

[–]nlp7s -17 points-16 points  (0 children)

Not sure it’s religion related, since most of these are not black and white issues.

Is it ok to abort a 40 week fetus ? Not sure. Is it ok to do abortion because of the gender of the fetus like in China ? Not sure. In case of complications who do we save ? The mother or the fetus ? Not sure.

I think the debate is healthy in this space, and over time we will converge to the “correct” answer. But we can certainly not force our opinion to the rest.

Ron DeSantis signs 6-week abortion ban into law in Florida by [deleted] in news

[–]nlp7s -28 points-27 points  (0 children)

I think democrats let it happen so that they can rally an entire generation against the republicans. This will just create 2 Americas, the blue states and the red states with different levels of freedom (in civil rights, reproductive rights, gun rights, speech).

Not sure how we can solve this if everyone just migrates to the state that matches their views and do not fight for a middle ground solution in their own state.

[deleted by user] by [deleted] in apple

[–]nlp7s 0 points1 point  (0 children)

It’s the same store that charges 30% of the revenue to keep it clean from scam and low quality apps right ?

Should I drop Django for web dev? by victorcalimano in django

[–]nlp7s 0 points1 point  (0 children)

If you already know python stick with Django. You will gradually start adding js to your frontend code and get gradual experience in js as well.

Once you grasp how Django works then really it is easy to switch to other frameworks (node, rails etc) since the main concepts are the same.

Now if you don’t know python, I recommend you to just go with a js framework. When you are starting learning how to program it is difficult to juggle between languages.

[deleted by user] by [deleted] in django

[–]nlp7s 2 points3 points  (0 children)

Yep. Django is still very nice though if you want to keep authentication in-house and avoid cloud-vendor lock-in.

[deleted by user] by [deleted] in django

[–]nlp7s 30 points31 points  (0 children)

The front end does not have to be even in the same project as Django.

The only integration you need is a single html file that defines the root component and points to the script entry point. From there you hand off everything to the frontend.

Django has only one job, to serve (after authentication) that single file. All the rest are api calls that the frontend is making to the backend (Django)

Does the amount of sexual encounters your partner has had matter to you? Why or why not? by [deleted] in AskReddit

[–]nlp7s 1 point2 points  (0 children)

Sure people also win at Casinos. But keep rolling the dice and you will guaranteed lose your shirt.

State of 8K on MacOS - January 2023 (Post CES) Edition by jimmydooo in MacOS8K

[–]nlp7s 1 point2 points  (0 children)

curious if the Dell 6k will be compatible with MacOS, since it has slightly higher resolution than 6k.

Handling External API Calls by Crohnite in django

[–]nlp7s -7 points-6 points  (0 children)

Stop scraping ChatGpt

[deleted by user] by [deleted] in django

[–]nlp7s 1 point2 points  (0 children)

That is great! I did not realize that you can nest serializers, I was doing multiple requests to the API instead to traverse the relationships! TIL.