Bug-Reaper

Results 83 comments of Bug-Reaper

Same issue, workarounds that involve `id="unique-anything"` and `isLazy` don't help.

Solved :+1: needed to set my locale to UTF-8: ![Screenshot_2020-10-23_00-51-16](https://user-images.githubusercontent.com/31227781/96971467-fa954280-14c9-11eb-89ee-c4ae5d3bdbef.png) ![Screenshot_2020-10-23_01-13-07](https://user-images.githubusercontent.com/31227781/96973598-f74f8600-14cc-11eb-923d-c89dbcc8e1a7.png) This command does it for me: ``` LC_ALL="en_US.utf8" cool-retro-term ``` Pro-Tip, you can see what locales you have installed...

Okay so I managed to squeeze out a slightly more favorable result with: ```javascript const mainWindow = new BrowserWindow({ width: 1200, height: 600, transparent:true, resizable:true, frame: false, enableLargerThanScreen:true, titleBarStyle: 'hidden',...

👋 Hey hey! > Having the empty title bar show up for maximized frameless windows is not an ideal experience. I agree that it would be better if the titlebar...

Am curious about this logic https://github.com/electron/electron/blob/8104c7908a2e281cdb2e380dd2ec49c3ead7fa3e/shell/browser/ui/cocoa/window_buttons_proxy.mm#L173-L179 Might try and do a few custom builds with breakpoints around code that triggers the titlebar if I get a chance.

Hey all, anybody here have a take on whether or not 3rd party cookies will be extinguished by Q1 2025? I don't really want to do the dev for "login...

Thanks for the quick answer @jasonbosco. Since I already have a million+ records created, I'll handle it via ljson export of the entire db => script to do processing =>...

Re-discovered this today [sorting-null-empty-or-missing-values](https://typesense.org/docs/0.23.1/api/search.html#sorting-null-empty-or-missing-values). Doesn't fit my use-case but for anyone that wants to find all documents with unset optional numeric fields, you could use `filter_by` to arrange them at...

``` # # Fatal error in , line 0 # Fatal JavaScript invalid size error 169220804 # # # #FailureMessage Object: 0x7ffd2274a0d0 1: 0x7fa37b2c497b [/usr/bin/../lib/libnode.so.111] 2: 0x7fa37bf3cc94 V8_Fatal(char const*, ...)...

> > @Bug-Reaper In recent versions of Typesense, you can filter on the ID field like this: > > ``` > > filter_by: id:[id1,id2,id3] > > ``` > > >...