Bram Vanbilsen
Bram Vanbilsen
I am trying to make a call to my database in a next-connect handler as follows: ```js const handler = common().get( async (req: NextApiRequest, res: NextApiResponse) => { const uid...
I'm trying to scan an endpoint that expects JSON data. Not quite sure on how to pass this to NoSQLi. Currently doing the following: ``` ./nosqli_macos_v0.5.4 scan -t http://localhost:3000/readsWithoutJs -d...
**Feature Request** There is an extremely useful feature in IntelliJ which allows you to automatically generate setters and getters for a class's member variables. This would be amazing to have...
I have some (dummy) candlestick data with an interval of 30mins: ```js const orig = [ { open: 1.11399, high: 1.11399, low: 1.11389, close: 1.11389, time: 1435701600 }, { open:...
Invalid escape codes in string produce the following error: ``` Syntax error I don't understand this escape code. Hint: Add another backslash before it. See: https://gleam.run/book/tour/strings.html#escape-sequences ``` The following link...
Bumped `mongostore` for the `mongodriver` package to fix the TTL index issue (https://github.com/gin-contrib/sessions/issues/258) The package was previously called github.com/bos-hieu/mongostore, however.. Navigating to https://github.com/bos-hieu/mongostore now leads to https://github.com/laziness-coders/mongostore This instructs to...
Setting the TTL for the mongodriver does currently not work as expected. The docs provide the following example (adjusted to trigger error): ```go maxAge := 30 store := mongodriver.NewStore(c, maxAge,...
I am using this plugin in a Typescript project. Unfortunately, there are no types yet which makes it difficult to use. Adding them would be greatly appreciated 😄
### Check for existing issues - [X] Completed ### Describe the bug / provide steps to reproduce it When opening a project that includes different programming languages, Go files do...
### Describe the bug Trying to inline a function with an `Option` return which is invoked immediately results in a compilation error when using an `or` block. ### Reproduction Steps...