You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not really urgent, but a statement in password.js can be rewritten with bit shifting, mostly to be consistent with fzmv-password-decoder
Not really urgent too, but would also be a good idea to remove input clear on mouse click, fits more for just password decoders when a working password has been entered, an idea could be also moving it on right click or double click
Replace every instance of multiplication, division or remainder involving powers of 2 with their bit-wise equivalent form
_ExistsInKeyboard1D inside keyboard.js has ironically zero purpose to exist, remove it
Code
_ExistsInKeyboard1D
inside keyboard.js has ironically zero purpose to exist, remove it_FindOffsetInKeyboard1D
in dijkstra.js, generator.js, and keyboard.js can be replaced with constants((((Buffer[ElementX] & (1 << BitX)) >> BitX) + ((Buffer[ElementY] & (1 << BitY)) >> BitY)) & 0x1)
can be rewritten as just(((Buffer[ElementX] & (1 << BitX)) >> BitX) ^ ((Buffer[ElementY] & (1 << BitY)) >> BitY))
Repository
The text was updated successfully, but these errors were encountered: