Jinghao1209

Results 9 comments of Jinghao1209

## 新问题出现:闪退 ``` $ ~ curl https://gist.githubusercontent.com/nondanee/f157bbbccecfe29e48d87273cd02e213/raw | python % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 3528 100...

还是不可以.... ```sh #!/bin/bash # filename: bash.bash export VSCODE_INSTALLATION="/Applications/Visual Studio Code.app" codesign --remove-signature "$VSCODE_INSTALLATION/Contents/MacOS/Electron" codesign --remove-signature "$VSCODE_INSTALLATION/Contents/Frameworks/Code Helper.app" codesign --remove-signature "$VSCODE_INSTALLATION/Contents/Frameworks/Code Helper (Renderer).app" codesign --remove-signature "$VSCODE_INSTALLATION/Contents/Frameworks/Code Helper (GPU).app" ``` ### 步骤...

好的,把他全部`codesign --remove-signature`这个不知道怎么做,等你~ (´ . .̫ . `)

有进展了吗?

好可惜ouo.....

Maybe this can help you: By `BillGoldenWater`: https://github.com/BillGoldenWater/ChaosDanmuTool/blob/dev/backend/src/utils/window_utils/macos.rs `Discord`: https://discord.com/channels/616186924390023171/1113520012800577569

**Bun version: 1.0.25 (a8ff7be6)** Same issue, is it solved?

Try to use `import * as test from './path/to/test.yml';` ```js console.log(test) ``` It should output: ``` Module { name: 'Tom', age: 10 } ```

It is the bun's problem, but for yaml we can do with ourselves. Noticed that `console.log(test)` was typed as `Module`, so we just need to add some codes. I think...