tmRgwnM9b87eJUPq

joined 1 year ago
[–] tmRgwnM9b87eJUPq 1 points 11 months ago

Yeah right, and they are a big problem. I haven’t encountered a single V1 super charger in Europe after 4 years.

I have only ever seen one in the US and it was surrounded by V2 and V3.

[–] tmRgwnM9b87eJUPq 2 points 11 months ago (3 children)

You will not have that problem with Tesla though. All chargers are 150kW+.

[–] tmRgwnM9b87eJUPq 1 points 1 year ago

That 130km/h stuff is not true. 130 is the advised speed. If you go above, you might be also considered at fault if an accident occurs. And for that, you have insurance. Example would be driving 180, someone taking over a lorry with 100 and they crash into each other.

Also Germans don’t drive that well.

[–] tmRgwnM9b87eJUPq 0 points 1 year ago

So let’s say the code base leaks.

Let’s say our VPN was also compromised.

Then what is the worst that can happen? Some internal dev api with no real data in it can be tested by hackers.

[–] tmRgwnM9b87eJUPq 1 points 1 year ago (2 children)

No. For development purposes I want my devs to be able to clone the repo and start.

So the development config files are inside the repositories.

[–] tmRgwnM9b87eJUPq 1 points 1 year ago (4 children)

For local development you would definitely keep them in a config file. Nothing wrong with that.

For production they are set during the release process.

Nothing is more expensive than developers needing to find all the configs and keys to just start up a project to make a small fix somewhere.

[–] tmRgwnM9b87eJUPq 1 points 1 year ago

Tesla super chargers are €0,36 per kWh

[–] tmRgwnM9b87eJUPq 20 points 1 year ago (1 children)

Just to add: they should not be chained, but they should run in parallel.

[–] tmRgwnM9b87eJUPq 7 points 1 year ago

The car indeed has mobile data. A Tesla has a permanent 4g connection.

[–] tmRgwnM9b87eJUPq -1 points 1 year ago (2 children)

Huh?! If I look at the source of the article at Mozilla, Tesla is actually ranked as almost least creepy.

So I do not understand where this is coming from. Also the picture of the article only showing teslas is highly suggestive

https://foundation.mozilla.org/en/privacynotincluded/categories/cars/

[–] tmRgwnM9b87eJUPq 1 points 1 year ago

You can configure nextjs to compile as only client-side-rendering, so that it runs like before!

Another thing: NextJS is not only SSR. It’s hybrid. The advantage here is that it decreases the visible first load time.

First load pre-rendered HTML and styling is sent to the browser. So the page is already fully visible. After that all scripts and secondary CSS will be loaded. And even after that the bindings will be done.

Where as with pure CSR, all JavaScripts need to be loaded and executed and only then stuff will become visible to the user

view more: next ›