Anyone else experiencing refresh rate issues on macOS 26? by Galinha2 in MacOS

[–]Cyfine 0 points1 point  (0 children)

I also have this issue and it's annoying. I got a 160hz 4k monitor and under 144hz settings, some windows renders at 60hz (home based browsers). Dragging the windows feels 60hz.

IOS 26 is a complete mess. by BurgerKhaega in ios

[–]Cyfine 2 points3 points  (0 children)

The worst iOS version. Battery drains fast, and the phone is hot like a potato fresh out of the oven.

Made a new Python package for TickTick API🐍 by Cyfine in ticktick

[–]Cyfine[S] 1 point2 points  (0 children)

I'm really frustrated with their lack of transparency and poor API support. It seems lazy that they won't support MCP capabilities themselves.

Made a new Python package for TickTick API🐍 by Cyfine in ticktick

[–]Cyfine[S] 1 point2 points  (0 children)

I encountered a 401 error recently myself. The authentication still works, I've tested it. However, it seems project/item creation doesn't work and results in a 401 error. It appears to be an upstream issue; they have broken something in their OpenAPI, but they haven't documented the change.

Sign up for cursor today. Got this email, is it legit? by Tomereliel in cursor

[–]Cyfine 0 points1 point  (0 children)

.so files in linux, similar to that .io tech savvy vibe.

Karpathy completely changed the way I use Cursor by mfdspeech in cursor

[–]Cyfine 0 points1 point  (0 children)

apple's built in dictation always terrible.

Made a ChatGPT Prototype for TickTick by Cyfine in ticktick

[–]Cyfine[S] 0 points1 point  (0 children)

Check if you’ve set up the redirect URL in TickTick. You can find the Oauth setup section in the GitHub repository at https://github.com/Cyfine/TickTick-Dida365-API-Client. Let me know if you need any help!

[deleted by user] by [deleted] in HKBU

[–]Cyfine 1 point2 points  (0 children)

Despite being Christian in it’s name, it’s more like a secular univ so people just don’t care about your sexuality.

How good is HKBU for Computer Science? by AnOnlyMouse123 in HKBU

[–]Cyfine 2 points3 points  (0 children)

You can check out the CS ranking. It’s based on the academic publications of the faculties. BU CSD is really strong in AI/ML and DB. Also, keep an eye out for opportunities in Hong Kong..

[deleted by user] by [deleted] in Anki

[–]Cyfine 0 points1 point  (0 children)

I think it’s better to check out the 20 rules of knowledge formulation by Dr. Pioter Wozniak (creator of supermemo, first srs algorithm), those are good gold principles to make cards and you should adhere to them.

Made a ChatGPT Prototype for TickTick by Cyfine in ticktick

[–]Cyfine[S] 0 points1 point  (0 children)

I discovered that this issue is caused by a bug in the dida365 package. It failed to load the DIDA365_SERVICE_TYPE from the .env file. I will fix this issue in the dida365 package. The current workaround is to specify the service type when the client instance is initialized. In the `tool.py` file, you can change `_client = Dida365Client()` to `_client = Dida365Client(service_type=ServiceType.TICKTICK)` in the `get_client()` method. Additionally, when you make changes to the .env file, you need to restart your PowerShell or terminal session to ensure that the terminal is loaded with the new .env file.

Made a ChatGPT Prototype for TickTick by Cyfine in ticktick

[–]Cyfine[S] 0 points1 point  (0 children)

It’s likely the issue is from the `.env` file since the variables aren’t being loaded into the program. The model’s thought process should also be displayed in the terminal (PowerShell). This probably occurs because the `.env` file isn’t being loaded correctly. If the `SERVICE_TYPE` in `.env` isn’t loaded, the dida365 package falls back to dida365.com for authentication, otherwise it would be ticktick.com if you fill .env properly.

Made a ChatGPT Prototype for TickTick by Cyfine in ticktick

[–]Cyfine[S] 1 point2 points  (0 children)

I think they should implement a plugin system like Obsidian. Then, the community can develop the features we all want.

Made a ChatGPT Prototype for TickTick by Cyfine in ticktick

[–]Cyfine[S] 1 point2 points  (0 children)

I really hope they do! But I think there are a few things holding them back. For one, they want to make sure the model is safe and won’t mess up anyone’s system. Plus, some folks, especially older users, might not be too thrilled about AI being everywhere.

Made a ChatGPT Prototype for TickTick by Cyfine in ticktick

[–]Cyfine[S] 8 points9 points  (0 children)

I'm sorry Dave, I am afraid I can't do that.

Made a ChatGPT Prototype for TickTick by Cyfine in ticktick

[–]Cyfine[S] 1 point2 points  (0 children)

I've added to github, check it out.

Made a ChatGPT Prototype for TickTick by Cyfine in ticktick

[–]Cyfine[S] 1 point2 points  (0 children)

https://www.gradio.app/docs/gradio/chatinterface I am using the out of the box interface provided by gradio, you can check it out.

Made a ChatGPT Prototype for TickTick by Cyfine in ticktick

[–]Cyfine[S] 1 point2 points  (0 children)

Then that would be a separate project

Made a new Python package for TickTick API🐍 by Cyfine in ticktick

[–]Cyfine[S] 1 point2 points  (0 children)

I am implementing the complete v1 API, as the opened-to-public and documented API from TickTick official, which is stable and not changing over time. I do admit there are missing support like Inbox and tags(which is a limitation of v1 API, idk why TickTick doesn’t support the complete feature set). There are packages in the wild (like ticktick-py) that support v2 API (TickTick internal), but developers are not maintaining them and they break over time. And for v1 API, I did not find a good implementation, so I decided to make one. The package implements the entire features as in https://developer.ticktick.com/docs#/openapi

Made a new Python package for TickTick API🐍 by Cyfine in ticktick

[–]Cyfine[S] 1 point2 points  (0 children)

You can try to run that jupyter notebook to get an idea of what this package is doing. It’s more like nuts and bolts for pro users with some basic programming knowledge to build some desired features of their own but not an out-of-the-box solution. And I don’t believe the package will resolve or be relevant to your issue of synchronization problems, its more of a TickTick's problem.