I'd sell it.
G
glitzersachen@hachyderm.io
@glitzersachen@hachyderm.io
A forum for discussing and organizing recreational softball and baseball games and leagues in the greater Halifax area.
Posts
-
I'm watching a video about "the crown of St Wenceslas" which is from 1346 in Prague. -
If anyone wants a horrible python program that will write integers in cuneiform sexegesimal (base sixty) using unicode so you can paste it all over the place in emails, documents and text messages I have just the thing.I am not sure (I don't know enough cuneiform):
>>> for i in range(0,20):
... print(chr(ord(symbols[0])+i), "\n")
...
𒐕𒐖
𒐗
𒐘
𒐙
𒐚
𒐛
𒐜
𒐝
𒐞
𒐟
𒐠
𒐡
𒐢
𒐣
𒐤
𒐥
𒐦
𒐧
𒐨
So you can find the characters by using ord/char and adding some offset. This seems to work nice until ~9. The symbol you show, though, look different.
-
If anyone wants a horrible python program that will write integers in cuneiform sexegesimal (base sixty) using unicode so you can paste it all over the place in emails, documents and text messages I have just the thing.Python 3.13.2 (main, Feb 5 2025, 08:05:21) [GCC 14.2.1 20250128] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
>>> symbols = ["𒐕", "𒐖"]
>>> symbols[0]
'𒐕'
>>>Probably didn't get the problem. Do you might explaining?