Ryan Crosby
Ryan Crosby
Just a heads up, I have an updated version of iPodLoader 2 here: https://github.com/crozone/ipodloader2/releases which fixes some longstanding PATA and FAT32 issues in the bootloader, in case you run into...
Need to investigate updating the parser to return `ReadOnlySpan` instead of the current struct. Probably won't make much of a difference to performance, since the current implementation is already using...
At present, `FormatWith` supports basic property navigations in parameter keys. However, it does not support combining this with indexers to navigate into objects arrays, lists, or dictionaries. For example, this...
Currently the tokenizer considers the entire contents of text between the open bracket and closed bracket the "key", including any whitespace that may be surrounding the actual text. This is...
## Preface It is currently possible to change the key equality behaviour when passing in a lookup `Dictionary` by specifying a specific `StringComparer` in the dictionary constructor. This is passed...
As `FormatWith` gains features, additional options to control how formatting is performed will be required. ### Control over disabling property and indexer navigations. Property navigations, and soon indexers (https://github.com/crozone/FormatWith/issues/26), are...
Results
## OS Linux 4.9.0-4-amd64 #1 SMP Debian 4.9.65-3+deb9u1 (2017-12-23) x86_64 GNU/Linux ## CPU: ``` vendor_id : AuthenticAMD cpu family : 22 model : 48 model name : AMD GX-412TC SOC...
# SQLITE_ENABLE_UPDATE_DELETE_LIMIT From the SQLite [Compile-time Options page](https://www.sqlite.org/compile.html): > This option enables an optional ORDER BY and LIMIT clause on UPDATE and DELETE statements. > > If this option is...
### Preface Occasionally the MySQL/MariaDB query planner will make a very sub-optimal (aka downright silly) decision when deciding which index to use for a query. This can have enormous performance...
### Preface MySQL supports a function called [`CONVERT_TZ(dt,from_tz,to_tz)`](https://mariadb.com/kb/en/convert_tz/), which allows datetime values to be converted from a given source timezone into a given target timezone. The timezone values can either...