cubxx

Results 9 issues of cubxx

![image](https://user-images.githubusercontent.com/109600351/220310294-53ca634a-0bb0-40fb-8b4c-825a0244f5d5.png) 脚本版本 3.4.3 调试发现 findAnswer 函数内变量 question 和 answersText 均为加密字符(789行) 后端响应中 obj.topic 为 undefined,obj.message 为 '_TTGlyphGlyf' object has no attribute '_glyph'(798行) 疑似后端接口问题

### PsychoPy Version 2024.2.1 ### What OS are your PsychoPy running on? Windows 11 ### Bug Description ```py #tools/arraytools.py#line-386 elif patternType == "gauss": ... invVar = (1.0 / maskStdev) **...

🐞 bug

### Description SFC custom block and JSX/TSX YAML format comments are not perfect method to custom route data, especially when I want to use imported data in route data: ```ts...

I think it the best method to improve code quality, but the prerequisite is that you need sponsors. cracked by tampermonkey: https://github.com/theajack/disable-devtool/issues/101#issuecomment-2336606489

`p.proptery(name) as T` is tedious, `p.proptery(name)` is better for chain call

### PsychoPy Version 2024.2.5 ### What OS are your PsychoPy running on? Linux-based systems ### Bug Description see following ### Expected Behaviour see following ### Steps to Reproduce ```python from...

🐞 bug

```js const o = vanX.reactive({}); van.derive(() => console.log(o.p)); // only undefined o.p = "new"; ``` It will cause unexpected issues with components with optional props: ```js const defineComponent = (setup,...

```js const s = van.state(); van.add(document.body, van.tags.div(() => s.val)); s.val = 'new'; ``` The initial `s.val` is `undefined`, so vanjs won't create a DOM to bind with the state. Maybe...

I found the update is always slow by 1 frame when I change state in the rAF callback: ```js //minimal case const a = van.state(0); van.dervie(() => (el.textContent = a.val));...