mastodon.online is one of the many independent Mastodon servers you can use to participate in the fediverse.
A newer server operated by the Mastodon gGmbH non-profit

Server stats:

11K
active users

#pinyin

1 post1 participant0 posts today

Hsu Hung-chi or Xu Hongji (#simplifiedChinese: 许鸿基; #traditionalChinese: 許鴻基; #pinyin: Xǔ Hóngjī) (1934–1984) was a Taiwanese #martialArtist who specialized in the #Neijia of #xingyiquan, #baguazhang and #taijiquan. Hsu was born in Taihoku, #TaihokuPrefecture, in 1934 to a family of six brothers. In school, he was very athletic and participated in swimming, soccer and #judo. He began his study of #ShaolinKungFu with his father at an early age. He also learned boxing.

David Zhuang (#Chinese: 莊永祥; #pinyin: Zhuāng Yǒngxiáng, born September 1, 1963) is a #professional Chinese-born American table tennis player. Zhuang began playing table tennis competitively at age 11, and was a professional player at age 12. One of his schoolmates was #JiangJialiang, the 1985 and 1987 #WorldTableTennisChampion. David moved to the United States in 1990, and became one of the top players in the country. Championships won by David Zhuang:

Part1: From [2024-01-06 Sat]
#mastadon #emacs #chinese #pinyin #elisp #lisp
I am working on major update to my Emacs package for quick pinyin search.
I am going to add search of Chinese hieroglyphs by pinyin. ☯

During my work I collected often used functions: ❤️🧡💛💚💙💜
flatten list by one level
: (apply 'append v)
all or every
: (defun all (l) (cl-every #'identity l))
all or every nil
: (defun allnil (l) (cl-every #'null l))
any t
: (defun any (l) (cl-some #'identity l))
any nil
: (defun anynil (l) (cl-some #'null l))
Apply map to every leaf of a tree like list
(defun maptree (f l)
(mapcar (lambda (x) (if (listp x)
(maptree f x)

(funcall f x)
)) l))

From [2024-01-10 Wed]
#emacs #chinese #pinyin

I finally 😫 released a major update to my Emacs package
that allow to search with toneless pinyin in Chinese ☯
characters and in normal pinyin text. 😊

It is \"isearch submode\".

You just press: C-s nu, and it will find for you 女 and nǚ.

By default it looks for both pinyin and Chinese characters,
but you can switch to pinyin with M-s p and to characters
with M-s h keys.

Code uses translation table (named Quail map) from Quail
minor mode (input multilingual text easily).
It is possible to adopt this code to many other
languages. ☆

I spent one month to code this (⚆i⚆) and I am going to use
it for the rest of my life. _/¯(⏿⏿)¯\_

From [2023-12-30 Sat]
Emacs: In my package for Chinese pinyin search I rewrited code
for isearch integration.
I did not read carefully whole isearch.el for before.
I found macro for simple intergration, but fixes is required still.
Much of code I just removed, that is why research and planning is critical.

Emacs is far from perfect, but I didn't saw anything compareble.
I am shure that my code will be usable in next 15-30 years.

Happy new year! ☤
#emacs #chinese #pinyin

From [2023-12-24 Sun]
I just have published my first package to MELPA as a pull request. ☑
Shortly it will be accessible by everyone. ^‿^

It allow to search Chinese pinyin text by pinyin but without tones. ✂

My plugin have unit tests, Github Action to test building with
stable Emacs versions and platforms and handle isearch with great care. 🦾

It was hard to make it to search only pinyin and ignore
common english text accurate, because I use it constantly. 🧊

I spent much time for optimization and for following to contribution guidlines.🐝

I plan to integrate another package pinyin-search that search
Chinese characters with pinyin, to mine later. ♲
#emacs #chinese #pinyin
☄️