Sai
Sai
```make Installing https://luarocks.org/luajson-1.3.4-1.src.rock Do not use 'module' as a build type. Use 'builtin' instead. luajson 1.3.4-1 is now installed in /opt/local/share/luarocks (license: MIT/X11) ```
If `downloads.cache` isn't populated (e.g. the extension crashed & was reloaded), then this will fail. https://github.com/inbasic/turbo-download-manager-v2/blob/6b565b09dc8934547939c6b7ea7fddae1ffcdfd6/v3/downloads/manager.js#L457-L482 This could be fixed by adding this to manager.js: ```javascript manager.updateDb = (obj) =>...
The DSL is misleading: ```ruby searchable do text :a, :b, :c # works! time :x, :y, :z # silently ignores y & z :( [:x, :y, :z].each do |f| time...
https://github.com/rvm/rvm/blob/426990b6a8e705302b03e2c77972066b90f2b9d4/hooks/after_use_current#L17 ``` $ cd some_rails_dir $ cd some_random_dir usage: 'rvm alias [action] [alias_name] [ruby_string]' ```
I noticed that a lot of mappings were a) just wrong (e.g. linked to the wrong record, like col a vs col b, or the wrong version number / line...
SchI is listed in the `sources/headers` CSV files, but there's no `sources/SchI.csv`, and it's not in `map_generator.rb`, `fech_utils.rb`, or `rendered_maps.rb`. There's no documentation to indicate this is intentional. What's the...
``` $ sudo src/dislocker-fuse -u -V /dev/disk0s4 -- /Volumes/Windows Enter the user password: $ mount [snip] dislocker-fuse@osxfuse0 on /Volumes/Windows (osxfuse, synchronous) $ sudo ls -l /Volumes/Windows total 118514696 -rw-rw-rw- 1...
Is there a simple way to make this the default, so that it is e.g. what is returned by JSON.parse, hash literals, etc., and you have to explicitly ask for...
If Unicode braille occurs within text — for instance, ⠐⠣⠃⠗⠇⠐⠜ says "(braille)" in UEB — NVDA currently just skips over the braille entirely. It should at least pronounce the braille...
It'd be nice if the gem automatically made integer columns have validations (via introspection), e.g.: ``` validates column, numericality: { only_integer: true, greater_than_or_equal_to: 0, presence: !column_allows_nil } ```