EJ Lee
EJ Lee
if you are using windows 11 and python 3.12, i found that this works for me, hoping it helps someone else check `py.exe` on your system ```powershell ~\dev on ⛅...
same issue. i always restart vscode, slack and the other apps based electron when i face this - vscode1.81.1 - windows 11 pro, 22H2, build 22621.2215
https://developers.cloudflare.com/workers/get-started/guide/ Open a terminal window and run C3 to create your Worker project: ``` npm create cloudflare@latest ``` https://developers.cloudflare.com/workers/get-started/quickstarts/ Quickstarts are GitHub repositories that are designed to be a starting...
i tried like this and it wokred for me ```js const guest_ids = [1,2,3,4,5,6,7,8,9,10] const question_marks = Array.from(Array(guest_ids.length)).map(id=>"?") DB.prepare(`SELECT * FROM guests WHERE id IN (${question_marks})`).bind(...guest_ids).run() ```
```pwsh PowerShell 7.5.1 Administrator in ~ > .\collect-wsl-logs.ps1 Log collection is running. Please reproduce the problem and once done press any key to save the logs. Saving logs... 100% [>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>]...
> We saw this when the runtime version (`Node.js 18.x`, `x86_64`) was automatically updated from > > ``` > arn:aws:lambda:us-east-1::runtime:0cdcfbdefbc5e7d3343f73c2e2dd3cba17d61dea0686b404502a0c9ce83931b9 > ``` > > to > > ``` > arn:aws:lambda:us-east-1::runtime:b475b23763329123d9e6f79f51886d0e1054f727f5b90ec945fcb2a3ec09afdd...
[the official testing document](https://hono.dev/docs/guides/testing) is saying like below ```js const res = await app.request('/posts', { method: 'POST', body: JSON.stringify({ message: 'hello hono' }), headers: new Headers({ 'Content-Type': 'application/json' }), })...