Viktor Kojouharov

Results 37 comments of Viktor Kojouharov

The suggestions look interesting, especially the 1st part. A few things, I've been meaning to do some sort of refactoring to the whole codebase, to separate the whole thing into...

This is *technically* possible by loading them via opml via the user's settings.

An opml file is a pretty basic xml file: ```xml ... ```

You should be able to use encoding/xml directly with parser.OpmlXml, as is done here: https://github.com/urandom/readeef/blob/master/api/opml.go#L104 Happy holidays

The bigger problem with using SQLite, regardless of what you want to store in it, is that you will run into locking problems. Even if you enable wal, there are...

If I'm understanding the code correctly, that particular error handling is generated by this part of the [handlers template](https://github.com/ogen-go/ogen/blob/d9e26864ed0103f3a188e1f0e7f41434abef51d8/gen/_template/handlers.tmpl#L197). It also seems like [decoding the request ](https://github.com/ogen-go/ogen/blob/d9e26864ed0103f3a188e1f0e7f41434abef51d8/gen/_template/handlers.tmpl#L210)will have similar issues.

Indeed, the arrays being omitted should be fine. What should not be is omitting arrays of pointers. The pointers themselves would need to be deep copied as well.