• 0 Posts
  • 6 Comments
Joined 1 year ago
cake
Cake day: September 11th, 2023

help-circle
  • Nova also adds that quick menu with most used apps and recently used apps. And that also includes a search bar that will search installed apps by default but can be configured to search the web with your browser and search engine of choice. I used those features a lot, but these days I use Niagara.


  • I have seen this, but with “Y”, “N” instead. That was the way the database stored it and the way the UI displayed it, but everything inbetween converted to boolean instead, because there was logic depending on those choices. It wasn’t that bad, all things considered, just a weird quirk in the system. I think there was another system that did just use those strings plain (like WHERE foo = 'Y' in stored procedures), but nothing I had to work with. We just mapped “Y” to true when reading the query results and were done with it.

    (And before anyone asks, yes, we considered any other value false. If anyone complained that their “Yes”, “y” or empty was seen as false, we told them they used it wrong. They always accepted that, though they didn’t necessarily learn from it.)