Caelan

Results 305 comments of Caelan

bulk changes are a non-issue really as long as we use an anchor, I could be on page 5, and all the events from pages 2-4 could get deleted and...

I'm not entirely sure what the confusion is - maybe I'm missing something? I'd imagine an endpoint that takes an `anchorId` (an id of an event or stack) as a...

ElasticSearch supports this natively, so we just need to expose this instead of a page number: https://www.elastic.co/guide/en/elasticsearch/reference/master/search-request-search-after.html

fwiw, a scrolling API is not what you'd wan't either.`search_after` is very different and is exactly what you want. You want to retrieve all results that come _after_ a specific...

FYI this is how I pick an icon and give it to NotifyIcon at the moment: ```cs var desiredSize = System.Windows.Forms.SystemInformation.SmallIconSize.Width; var avaliableSizes = new[] { 64, 48, 40, 32,...

> it appears those functions trim off anything past the "official" end of the .exe file Indeed that's correct. dotnet5/6 binaries also store the application code (as IL) after the...

This version of squirrel does not support semver2 syntax in several places. The StubExecutable, old Nuget library, and the code you found all expect semver1. It is a fairly big...

This will not help people who need to process clipboard images on multiple platforms, however for anyone focused on Windows I have released a [clipboard replacement library](https://github.com/clowd/Clowd.Clipboard) which has [AvaloniaUI...

Found this from the linked issue at Squirrel.Window. I maintain a [semi-popular fork](https://github.com/clowd/Clowd.Squirrel) that has fixed this issue and dozens of others, should be a low effort migration if you...

What you need to do to migrate to my fork (v2) is - replace your nuget reference from Squirrel.Windows to Clowd.Squirrel - update the code which creates your shortcuts. Call...