snaggen

joined 1 year ago
[–] [email protected] 8 points 2 months ago* (last edited 2 months ago) (3 children)

For Boomers, cars was the latest tech that everyone was fiddling with. This caused even the boomer that wasn't very interested , to know quite a lot. For later generations, car became more of a means of transportation, and the knowledge of cars was only for specialists. For gen X, computers were the high tech thing, everyone was fiddling with. Most gen x can setup a printer if they have to. For later generations, computers are just tools, and the knowledge is only for specialists.

[–] [email protected] 18 points 2 months ago (1 children)

Producing products that the users wants, and that solves tje users real problems. And not trying to make products as addictive as possible, to harvest as much user data as possible to sell.

[–] [email protected] 3 points 2 months ago

It is making the tracking protection part of containers obsolete, this is basically that functionality but built in and default. The containers still let you have multiple cookie jars for the same site, so they are still useful if you have multiple accounts on a site.

[–] [email protected] 7 points 2 months ago

Container tabs are still useful, as they let you use multiple Cookie jars for the same site. So, it is very easy to have multiple accounts on s site.

[–] [email protected] 16 points 4 months ago (2 children)

Comment about image

[–] [email protected] 3 points 5 months ago (1 children)

The problem with assassin the Russian economy, is to do it faster then it commit suicide.

[–] [email protected] 1 points 5 months ago (1 children)

Of course cars would loose if you tried to use it to travel across the Atlantic...

[–] [email protected] 2 points 5 months ago* (last edited 5 months ago) (4 children)

But per mile measurement for flying implies that every mile of a flight is equally dangerous, but the truth I'd that it is most dangerous to start or land, which is a per trip occurrence. The take off and landing is equally dangerous whether you travel a long or short distance in between.

[–] [email protected] 1 points 5 months ago (1 children)

And the question is am I going to die on this trip? And there the real statistics are pretty clear, cars are safer.

[–] [email protected] 1 points 5 months ago (6 children)

Well, what I want to know is "Am I going to die today?". The distance traveled is irrelevant to answer that question. The only reason to add that to the equation is to make air travel look safer.

[–] [email protected] 2 points 5 months ago (3 children)

Per trip is more in line with how people think about danger. Like, am I going to die on this trip?

249
submitted 8 months ago* (last edited 8 months ago) by [email protected] to c/[email protected]
 

fjärrinlägg från: https://programming.dev/post/10803496

TIL: Sweden had February 30 in 1712 https://en.wikipedia.org/wiki/1712_in_Sweden , so I decided to see how chrono handled that.

use chrono::TimeZone;
use chrono_tz::Europe::Stockholm;

fn main() {
    let feb30 =  Stockholm.ymd(1712,2,30);
    println!("Date: {:?}", feb30);
}
 target/debug/feb30
thread 'main' panicked at /home/snaggen/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chrono-0.4.34/src/offset/mod.rs:252:40:
No such local time
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

Result (as expected): Not well! 😄

I also tested Java with

ZonedDateTime feb30 = ZonedDateTime.of(1712,2,30, 0,0,0,0, ZoneId.of("Europe/Stockholm"));

with simmilar result

java.time.DateTimeException: Invalid date 'FEBRUARY 30'

So, lets take a minute of silence for all the programmers of history related software, may the spagetti monster have mercy on their souls.

view more: next ›