Results 22 comments of André Gil

Another more likely explanation to what happened: > SQLite uses POSIX advisory locks to implement locking on Unix. On Windows it uses the LockFile(), LockFileEx(), and UnlockFile() system calls. SQLite...

I've been thinking about this as well, although not sure how to implement it with a nice experience. Pinboard.io has a feature where you can save tab sessions to open...

This is such a weird issue 🤔 My setup is very simple: ```lua { 'folke/trouble.nvim', config = function() require('trouble').setup({ icons = false, }) vim.keymap.set('n', 'xx', function() require('trouble').open() end) vim.keymap.set('n', 'xw',...

Hey @zedeus ! I'm also interested in this, so I tried to hack the template a bit with: ```patch diff --git a/src/views/rss.nimf b/src/views/rss.nimf index 96f6466..5007801 100644 --- a/src/views/rss.nimf +++ b/src/views/rss.nimf...

Yeah, me too @koszzz ! But at this point, I'm not even sure if Nitter will ever be stable again so that we can use it for RSS 😢

@thomas-333 yeah, I imagined that would happen eventually. But given that Nitter future is uncertain (wasn't it discontinued a few weeks ago?) and RSS was never the focus, I'm not...

I've posted a [similar request](https://github.com/metabolist/metatext/issues/78), but your solution would be even more elegant.

The problem, _I think_, is that you can't call an API to fetch someone's profile from another server. Hope that I'm wrong, though! So this can be implemented nicely without...

By setting it to POST, you can do bigger queries without the GET size limitations.