Eric Zhang
Eric Zhang
In addition to #56, if the dunder method is cursed into `ctypes`' integer types, a raised exception causes Python to crash on Windows. Proof of concept: ```python #!/usr/bin/env python3 from...
Proof of concept: ```python #!/usr/bin/env python3 from forbiddenfruit import curse class foo(object): def __init__(self): pass def foo_add(self: foo, other: int) -> foo: raise TypeError('This exception should be caught') curse(foo, '__add__',...
`SQLDescribeCol()` returns 0 ("unlimited") as column sizes for `varchar(max)`/`nvarchar(max)`/`varbinary(max)` types. We use the cursor's maximum output size instead in this case. The change for `SQL_BINARY`/`SQL_VARBINARY` cases is not a must...
**Expected behavior and actual behavior** When trying to fetch the result of a query, the `odbc` module uses `SQLDescribeCol()` to get sizes of the columns in the result and reserve...
Kept here to replace `TODO.md` in the repo. Items marked "(?)" are still under consideration. --- **~~Emergency changes~~** Fabric Loader v0.12.0 introduces a massive refactor on mod loading mechanics, which...
As mentioned in [#1](https://github.com/EZForever/ThatOrThis/issues/1#issuecomment-786994333), I have a plan to make ThatOrThis a library mod, expose the ability of choosing and loading additional mods to other mods and developers. Modpack configs,...
Currently (as of v0.2.1) in a dedicated server environment, there is no way to change ThatOrThis' settings without manually editing `choices.json`. This is not considered a lack of feature (since...
目前通过右键菜单发送内容后,内容会被追加到Memos弹窗,用户需要手动打开弹窗(鼠标点击图标或者按快捷键)才能进行后续编辑和保存。(顺便,现在的版本好像快捷键不管用了。)如果能像移动端的分享界面设计一样,在右键菜单发送内容后自动弹出Memos弹窗(因为是用户操作触发弹窗,理论上应该是可行的),用户便可以立即对内容进行编辑和保存,用起来会方便的多。 而且,因为弹窗在用户点击网页的时候就会自动隐藏,即使是连续使用右键菜单发送文本,弹窗应该也不会对用户操作有太大干扰。 原本计划把这个功能合进之前的PR里,但是开启弹窗的`chrome.action.openPopup()`方法[还没有实装到稳定版浏览器里](https://github.com/GoogleChrome/developer.chrome.com/issues/2602),需要各位大佬提供新的方案。
Since the portal blocks are translucent, keeping them in the portal frame still allows the atmosphere to be seen, as well as adds to an "illusion"-like effect. Inter-dimensional interactions can...
introduces a dependency on `execinfo.h`, which is not available (or rather, [removed](https://gitlab.alpinelinux.org/alpine/aports/-/commit/50795a14dee639ce2dcc836e2b2baca9bad4a1b1)) on Alpine Linux. This causes ggml and llama.cpp builds on Alpine to fail, as can be seen here:...