Jeff Liu

Results 7 issues of Jeff Liu

格式如下: #### Jeff Liu- [Github](https://github.com/jebberwocky) * :white_check_mark: [算一卦](http://pokkoa.cc/):- 使用周易方式起卦, 并提供给AI&ML尝试解卦

error message: ` return self.datetime_bookgua(int(now.year), int(now.month), int(now.day), int(now.hour)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ TypeError: Iching.datetime_bookgua() missing 1 required positional argument: 'minute'` 看了代码, 是不是少传了minutes ``` def current_bookgua(self): now = datetime.datetime.now() return self.datetime_bookgua(int(now.year), int(now.month), int(now.day), int(now.hour))...

fix the issue: https://github.com/kentang2017/ichingshifa/issues/9

it will be really nice if it can support "load on flip" for huge books

Encountering an issue where the BotAvatar component within customComponents of a react-chatbot-kit configuration is receiving an empty object ({}) as props. This behavior seems unexpected. 1. Create a BotAvatar and...

Can we share the state between custom messages? scenario: - there are 2 custom messages A and B and ` customMessages: { a: (props) => , b: (props) => ,...

测试方式: 1. 下载zip从github, unzip 2. 在和app.py 同样路径创建test.py 3. test.py内容如下 ``` import kinqimen print(kinqimen.Qimen(2024, 3, 27, 0,0).overall()) print(kinqimen.Qimen(2024, 3, 27, 0,0).pan(1)) print(kinqimen.Qimen(2024, 3, 27, 0,0).pan_minute(1)) print(kinqimen.Qimen(2024, 3, 27, 0,0).gpan()) ``` overall...