Danlock
Danlock
should throw an error if database name is not found, instead of returning wrong database
Setting a bookmark and selecting it with continuous view on will always set the view to the very top of the 1st page, instead of scrolling to the correct bookmarked...
I noticed that you are storing your passwords in the database unsalted using just an MD5 hash. Here is why that's a bad idea. https://security.stackexchange.com/questions/52461/how-weak-is-md5-as-a-password-hashing-function https://security.stackexchange.com/questions/19906/is-md5-considered-insecure Alternatives like argon2 or...
Running the autofix via golangci-lint will convert this code: ``` elapsed := time.Minute assert.True(t, elapsed.Seconds() >= 1) ``` into this code. ``` elapsed := time.Minute assert.GreaterOrEqual(t, elapsed.Seconds(), 1) ``` However...
Hey, I am interested in a TODO item you have listed here. Are you planning on using something like CGo calls to aubio or Essentia? Or writing it all in...