zxcvbn is heavily inspired by its predecessor, yggdrasil, released two years ago almost to the date. this particular version has been in the works for at least a quarter of that time.
the initial ideas for this script were formulated two years ago by the Northern Information personnel @tyleretters , and @license. The mx.samples clade was helped by the digital ghost @zebra - in fact a great deal of every facet of the norns system is due to their ingenuity along with @dan_derks and @tehn. The mx.synths clade has contributions from @alanza, @timriot, @sixolet and @chrisl. The drum clade and the infinite pad started off as an exercise in understanding @nathan’s SuperCollider videos. The reverb comes from @jpcima. there are so many more people here that I’m infinitely grateful to have learned from and continue to grow as a music maker and a maker of music making.
Is there any easy way to change the expected keyboard layout?
At first glance it looks like the script uses keyboard.code() and not .char(), so the Keyboard Layout sete in devices are not applied.
I might give it a go and try write a fix, but just want to check that I’m not missing anything obvious. (which I hope I did )
cool! yeah the video itself will be archived so if you can’t make it no problem.
yes, it can be added, I think. .char() can’t be used because that function doesn’t capture ctl, enter, etc etc. so I’m not sure because I don’t have a sete keyboard, but I think all that is needed is an array of conversions for the language of the board. for example, if your board inputs an è, then it will have to be converted to a e. so if there is a table keyboard_sete["è"]="e" it can be converted right before this line and all should work. this might already exist somewhere, but its only 26 characters so it seems a pretty easy way…if that way will work. I’m not sure it will since I’m not familiar with non-english boards unfortunately.
there were three choices for the name: qwerty, asdfgh, or zxcvbn. I felt the third one doesn’t get enough use as the first one and is easier to pronounce than the second one
After about 30 minutes on step 3 with no feedback, I hit K1 to reawaken the screen and find I’m back out at the credits screen. I hit K3 to hopefully rejoin the script wherever it left off, and:
lua: /home/we/norns/lua/core/clock.lua:58: bad argument #1 to 'resume' (thread expected)
stack traceback:
[C]: in function 'coroutine.resume'
/home/we/norns/lua/core/clock.lua:58: in function 'core/clock.resume'
I’m on a first gen shield, rpi 3b. I don’t seem to get the log file the docs claim I will, I get two files instead, is there one that would be more helpful than the other?
I must have done my edit while you were replying - I’m on a first gen shield with a 3b, and in dust.data after picking SYSTEM > LOG I have a file called system.favorites and a file called system.state. I don’t know if those are analogous to system.log or not but here they are:
It doesn’t show up in maiden the way the docs say it will, but it’s here - I’ve generated it a time or two from the menu, but the most recent entries in it are from when I ran goldeneye a couple weeks ago. Gonna delete it then try again
After reading the docs I can’t quite figure out how to enter notes having sharps and flats. Especially for notes singing together, how would you specify the cluster having Ab, B and C#, for instance? It seems like that might be “abbdb”. But then how would you specify the cluster having A, Bb and C#?
sorry about that ! it hasn’t been merged quite yet into the main list. so yeah, the docs for the maiden installation aren’t correct currently, but hopefully will in the future. for the present, installation is possible with the ;install invocation in the docs.
good catch, the flat is of course unfortunately customarily written as a “b”. so if you want to write out a chord or an arpeggio with a flat then you need to make sure to utilize the octave notation, e.g.:
a3bb3c#3
or
a3bb3db3
the flat is the greedy part of the parser, so you can actually shorten it to just
a3bbc#
or
a3bbdb
since those flats will automatically be determined. but the “a” will be flattened since a “b” follows it, unless you include the octave (I arbitrarily chose “3”, you could choose any octave you want).
if there is a more intuitive way to go about this, lmk. I thought about using additional flat denoter (e.g. “*”) but thats noncanonical which is also a barrier to think about…
yeah, you should just need to delete the code folder to try again! if you can open maiden while it installs and see if it says anything when it stalls, that would be good to know. hopefully it works this time though!