Axel Rindle

Results 18 comments of Axel Rindle

What about a login-like page that allows the user himself to set an initial password?

You can use `ProxyCtx.RoundTripper` for this: ```go proxy.OnRequest().DoFunc(func (req *http.Request, ctx *goproxy.ProxyCtx) (*http.Request, *http.Response) { ctx.RoundTripper = goproxy.RoundTripperFunc(func (req *http.Request, ctx *goproxy.ProxyCtx) (*http.Response, error) { // create transport and RoundTrip...

@chekun Have a look at this file: https://github.com/axelrindle/proxyguy/blob/main/server/server.go This is currently at a very early stage of implementation.

> When should it be called ? After all flags have been successfully parsed, but before the command action is executed. > If there is an error in flag parsing(maybe...

I just thought about `-h` again and maybe it's better to don't call any hooks when help is requested as the help output should not change based on other flags.

I think this error is caused by the Renderer Process trying to access Node.js APIs. While this is generally possible by enabling the [`nodeIntegration`](https://www.electronjs.org/docs/latest/api/browser-window#new-browserwindowoptions) for a `BrowserWindow`, Vite might be...

Just a small update: I managed to get the application to start with the new Vite workflow, but the renderer does not work yet. ![image](https://github.com/jacobwhall/marktext/assets/7105632/ebbce9af-9d99-46ec-a929-f85cc1cf0b32)