Warning: mysqli::__construct(): (HY000/1203): User howardkn already has more than 'max_user_connections' active connections in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\includes\artfuncs.php on line 21
Failed to connect to MySQL: (1203) User howardkn already has more than 'max_user_connections' active connections
Warning: mysqli::query(): Couldn't fetch mysqli in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\index.php on line 66
Article <vda0ko$1e457$1@dont-email.me>
Deutsch   English   Français   Italiano  
<vda0ko$1e457$1@dont-email.me>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!news.mixmin.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Lawrence D'Oliveiro <ldo@nz.invalid>
Newsgroups: comp.os.linux.advocacy
Subject: Does Dimdows Know What Time It Is?
Date: Sat, 28 Sep 2024 22:40:24 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 24
Message-ID: <vda0ko$1e457$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 29 Sep 2024 00:40:25 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="22838b7286fd66ecaa0be3d192bfd789";
	logging-data="1511591"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX18Hu7Djh884r4rnHlKXU1Hv"
User-Agent: Pan/0.160 (Toresk; )
Cancel-Lock: sha1:mxsiaX0on9wMNbJDq9RruDh+pGw=
Bytes: 2208

Something Unix did that was different from most other OSes was, its system 
clock kept time in UTC (or GMT, in pre-UTC days). Linux does the same. 
When you use a command like “date” to see what the current date and time 
is, it converts that UTC time to a local time in some specified timezone. 
Changing the timezone is as easy as specifying a new value for the TZ 
environment variable.

Windows, on the other hand, keeps its system clock in local time, in some 
specific time zone that is assumed to apply systemwide.

This is a particularly dumb idea when you realize how much it complicates 
things if your time zone has daylight saving time. We have seen this sort 
of thing happen on Windows systems before, where they might forget to 
adjust the clock to start/stop daylight saving, or even adjust it twice so 
you end up being an hour off in the opposite direction.

This can’t happen on Linux systems, because there is no turning daylight 
saving “on” or “off” as such: there is simply a table of local time 
offsets (from the “tzdata” files), and the correct offset to apply depends 
only on the actual UTC time value, not on the current setting of any 
system flag.

This also makes it easy to convert between UTC and local times at any time 
in the past, for any time zone.