Arijus Šukys

Results 12 comments of Arijus Šukys

> > Thank you @wanderer163. Please could you sign the agreement mentioned [here](https://github.com/questdb/questdb.io/pull/1143#issuecomment-1285915149) so that we could proceed with this PR? > > I have signed it, but the status...

Add this to Sublime user preferences: `"ensure_newline_at_eof_on_save": true`.

I'm using Sublime Text build 3059 on Linux and this options does work on my system. I'm not sure whether this options is Sublime 3 specific, but I guess it's...

I don't think I can help any further, I just checked this option on Win 7, same 3059 build and it does work for me. Perhaps some installed package is...

Hey there! I submitted a PR which allows to customize `chat_template` here: https://github.com/Robitx/gp.nvim/pull/117 but it's not merged to this repo and so far is only available in my fork. Give...

> An absolutely disgusting and terrible way to implement this wow i hate this, but it's awesome, thanks for sharing! Displaying progress is useful not only for users with slow...

for dev server you can set the port in vite.config.ts: ``` export default defineConfig({ server: { port: 8002, }, }) ```

for built server module, if you use `deno serve` to start your fresh app, you can pass `--port` param, e.g.: ``` deno serve -A --port=8001 _fresh/server.js ```

the claim is `app.listen not setting custom port`. Here's the source of `.listen()`: https://github.com/denoland/fresh/blob/41b9422dd148ebf3883e692d44fca20fe88a0120/packages/fresh/src/app.ts#L457-L469 we can see that having `options.port` is enough to pass all the options to `Deno.serve`. Thus,...