Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > de.comp.lang.python > #6114

[Python-de] Keyboard coding

Path csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail
From Erich Schnoor <eschnoor@multi-matrix.de>
Newsgroups de.comp.lang.python
Subject [Python-de] Keyboard coding
Date Wed, 10 Jul 2024 13:07:37 +0200
Lines 25
Message-ID <AC2436EB-AA87-49E9-8B77-42CF5F33F7E6@multi-matrix.de> (permalink)
Mime-Version 1.0 (Mac OS X Mail 16.0 \(3774.500.171.1.1\))
Content-Type text/plain; charset=utf-8
Content-Transfer-Encoding base64
X-Trace news.uni-berlin.de STIl2DdySwBpubaW+jmuFgaswFHqNMs6ct3vmofA8/Kg==
Cancel-Lock sha1:1OrMly1oGMEGq1lxMaBWzYHGuhI= sha256:+MaEvqRgKWkdiVMeWscScH2Eq/z/f7CfwgTRijMkjtM=
Authentication-Results mail.python.org; dkim=pass reason="2048-bit key; unprotected key" header.d=jintelligence.com header.i=@jintelligence.com header.b=DidvXdBH; dkim-adsp=none (unprotected policy); dkim-atps=neutral
Authentication-Results mail-01.jintelligence.com (amavis); dkim=pass (2048-bit key) reason="pass (just generated, assumed good)" header.d=jintelligence.com
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/simple; d= jintelligence.com; h=x-mailer:to:date:message-id:subject :mime-version:content-type:from; s=dkim; t=1720609667; x= 1723201668; bh=X/TMzOFjwNqr3reJNS20pGe1R19D4t9BphVE3I0gMMU=; b=D idvXdBHVMqCHtOu+b6G1A4cDkWg8sCUL16L9djIAq1En3LWNPGZONmJxpaAlwCoG td56dluStgHDt06EqnAiXKcTQEgFLScfsVFPTxgsI+nIhh1dJXPj1GjIHuRVe9Uc NlzJxhku8j6HxQ0Jv39WK0w65JN92KXYgK9Il9EVrLooJDBaKXYUMLeqK2tjwrFQ B084zFeO7vTy/yMY9BePCu6eSU1KRBkiclfGaMQJyeJpDb8XS5B8AmeXtfJZKrA3 fb3S9MtC+EDhFuZXqdFFEv+LbPdOpKiQPzY6HB8KVfuSwcndETJKAsFASVlF0p/l rv4hZMgVXrX8vx2l2ndWw==
X-Virus-Scanned Debian amavis at mail-01.jintelligence.com
X-Mailer Apple Mail (2.3774.500.171.1.1)
Message-ID-Hash VO3P4EZ5ZGTSAY3L54HFJWQTQ22PH3UO
X-Message-ID-Hash VO3P4EZ5ZGTSAY3L54HFJWQTQ22PH3UO
X-MailFrom eschnoor@multi-matrix.de
X-Mailman-Rule-Misses dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-python-de.python.org-0; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header
X-Content-Filtered-By Mailman/MimeDel 3.3.10b1
X-Mailman-Version 3.3.10b1
Precedence list
List-Id Die Deutsche Python Mailingliste <python-de.python.org>
Archived-At <https://mail.python.org/archives/list/python-de@python.org/message/VO3P4EZ5ZGTSAY3L54HFJWQTQ22PH3UO/>
List-Archive <https://mail.python.org/archives/list/python-de@python.org/>
List-Help <mailto:python-de-request@python.org?subject=help>
List-Owner <mailto:python-de-owner@python.org>
List-Post <mailto:python-de@python.org>
List-Subscribe <mailto:python-de-join@python.org>
List-Unsubscribe <mailto:python-de-leave@python.org>
Xref csiph.com de.comp.lang.python:6114

Show key headers only | View raw


Hallo, liebe Pythonier,  

das “Daumenspiel”, vor allem meine Behauptung, "Keyboard coding"
erfasse alle Unicode-Zeichen, muss einmal mit folgenden Hinweisen,
auf sichere Grundlagen gestellt werden:

Die IT erfordert zur elektronischen Übertragung von Informationen
das Zahlensystem zur Basis 2 mit der Einheit von bits (0 und 1). 
Dabei stellen 8-bit ein 1 Byte dar. 2 Byte (16 bit) ermöglichen 256
Alternative, die mit dem Zahlensystem zur Basis 16 (2^8 hexadezimal)
organisiert werden können.

Wie sich herausgestellt hat, kann das Zahlensystem zur Basis 16 
nicht die Obergrenze sein für die serielle Ordnung von Sachverhalten mit Zahlen
(z.B.  Unicode-Zeichen). Die beiden höchsten Ziffern des Systems
“ff” erfassen nur 256 Zeichen. Für mehr Zeichen sind entweder mehr
Bytes oder höhere Zahlensysteme erforderlich.

Höhere Ordnungssysteme können nur mit mehr als 2^8 Ziffern
erreicht werden, und das sind: 2^9, 2^10, 2^11 und 2^12. Für die
letzere Variante bestehen 4096 Ziffern, denn mit 2 Ziffern 
“ gf “, (darstellbar mit 16 bit) werden 65535 Zeichen angesprochen,
das sind fast alle verwendeten Unicode-Zeichen.
Was zu beweisen wäre.

Für mehr Einzeilheiten, z.B. über die  "Codepage” als Organisationsschritt 
zur Zeichenkodierung, stehe ich jederzeit zur Verfügung.
(eschnoor@multi-matrix.de)


 






Back to de.comp.lang.python | Previous | NextNext in thread | Find similar


Thread

[Python-de] Keyboard coding Erich Schnoor <eschnoor@multi-matrix.de> - 2024-07-10 13:07 +0200
  [Python-de] Re: Keyboard coding "Wolli Buechel" <wjb131@web.de> - 2024-07-12 14:01 +0000
    [Python-de] Re: Keyboard coding Dinu Gherman <gherman@darwin.in-berlin.de> - 2024-07-12 17:46 +0200

csiph-web