Groups | Search | Server Info | Keyboard shortcuts | Login | Register


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

[Python-de] Re: Keyboard-coding

Path csiph.com!news.samoylyk.net!fu-berlin.de!uni-berlin.de!not-for-mail
From Erich Schnoor <eschnoor@multi-matrix.de>
Newsgroups de.comp.lang.python
Subject [Python-de] Re: Keyboard-coding
Date Mon, 8 Jul 2024 14:13:01 +0200
Lines 28
Message-ID <9D53C66E-0232-4EFE-AB49-2C47EDD4178B@multi-matrix.de> (permalink)
References <2998A0C7-CE1A-451A-9CF7-7E2D472A6A85@multi-matrix.de>
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 DSmtqVOeSmuTQ8gZPdwNHwHaJPuDlwRGxzOLcS7VcW1g==
Cancel-Lock sha1:PESF9/nDLdIO9afNJiTCKveAzPE= sha256:focicMpPmYLjjEeWmKvsejtNgLZlwW7ys3wRZ8kvATk=
Authentication-Results mail.python.org; dkim=pass reason="2048-bit key; unprotected key" header.d=jintelligence.com header.i=@jintelligence.com header.b=TnbP/LTc; 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:message-id:in-reply-to:to :references:date:subject:mime-version:content-type:from; s=dkim; t=1720440791; x=1723032792; bh=jP3B6ENjswTpO6PEIY8oH6dwvULjaj+S xAZ2zUeq5MQ=; b=TnbP/LTcITCuwnGCwCfKP9QiKXczmIO6jU05DkMmVYlBeyxN bj4IIHY/lbPVREbsn/thl568gOdjsyG8byxm/aBqPku/sCuzwnROdLPEtVZR111G Y6gPqu2fFvmphDhJerLy6x17UiL59qY1uyp1MSiz6BozLvFP2vOuoJQ3yF9fxsoE xCFgusYbfIlYOHRk1cbMc66c5a3AgJdDFAYPaSDlOuuj3tS2myTd0c/J+ZVg+L/d KBViC+P3b7XLFFbF5XHLOVCyf8cXvzlWwm5bIFH5wOtqwTxiy+3kL6RWKQfwdZrT sbzzsfuSuZQSvGvuvjN2lXP26RZye/aO2OmH2w==
X-Virus-Scanned Debian amavis at mail-01.jintelligence.com
In-Reply-To <2998A0C7-CE1A-451A-9CF7-7E2D472A6A85@multi-matrix.de>
X-Mailer Apple Mail (2.3774.500.171.1.1)
Message-ID-Hash 6LHWPAEUX5UL5V65CYYTUZPG4AVS6NFJ
X-Message-ID-Hash 6LHWPAEUX5UL5V65CYYTUZPG4AVS6NFJ
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/6LHWPAEUX5UL5V65CYYTUZPG4AVS6NFJ/>
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:6112

Show key headers only | View raw


Hallo, liebe Pythonier,
offenbar wird versucht den Speicherbedarf für die kodierung von Unicode-Zeichen
bis <point>65536 mit 2 Byte per abweisenden Daumen 👎 infrage zu stellen.

Aber, die Grenze zwischen 2 Byte (16 bits) und 3 Byte (17 bits) wird mit meinem
Programm wie folgt gezeigt:

 choosen:  2
 insert character-point:  >  65536

               character:   𐀀
               point:         65536
               index:        g0
               binary:       10000000000000000        17  bits

 choosen:  2
 insert character-point:  >  65535

               character:   ￿
               point:         65535
               index:        fꇸ
               binary:       1111111111111111        16  bits

Das kann auch von keinem Daumen infrage gestellt werden

 
> Am 06.07.2024 um 14:56 schrieb Erich Schnoor <eschnoor@multi-matrix.de>:
> 
> Hallo liebe Pythonier,
> Python 3.12 macht’s möglich:
> 
> Mit dem neu generierten Zahlensystem zur Basis 4096
> und einer angepassten Tastatur können alle Unicode-Zeichen 
> von <point>1 bis <point>65536 mit 2 Byte kodiert werden.
> 
> Da Posting des Programms in der Mailingliste zu umfangreich 
> ist und auch den Regeln widerspricht, kann jeder die
> neuen Erkenntnisse (keyboard-coding) bei mir per mail anfordern!
>                    eschnoor@multi-matrix.de
> Den Programmcode habe ich selbst entwickelt und
> ist daher frei von Schadcode.
> 
> Mit internetten Grüßen
> Ernst Erich Schnoor
> eschnoor@multi-matrix.de
> 
> 

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


Thread

[Python-de] Keyboard-coding Erich Schnoor <eschnoor@multi-matrix.de> - 2024-07-06 14:56 +0200
  [Python-de] Re: Keyboard-coding Erich Schnoor <eschnoor@multi-matrix.de> - 2024-07-08 14:13 +0200

csiph-web