# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 27
# self = https://watcher.sour.is/conv/ee63oea
Good question! πŸ€” I'll have a look around πŸ‘Œ
Good question! πŸ€” I'll have a look around πŸ‘Œ
Good question! πŸ€” I'll have a look around πŸ‘Œ
What are you looking for? Inputting a password and getting a mnemonic to remember it easily? And from that mnemonic get the same password?

A quick search on Google gave me many results (indeed it's an interesting problem), although this one caught my attention:
DeepMnemonic: Password Mnemonic Generation via Deep Attentive Encoder-Decoder Model
https://ieeexplore.ieee.org/document/9064919

I thought it was easier than it sounds πŸ˜…
What are you looking for? Inputting a password and getting a mnemonic to remember it easily? And from that mnemonic get the same password?
@eapl.me it is not about remembering, it is about converting something like:


ALBimMb+bxXypHuw8bCyZ++Sby6BFNxXs1ATtm+xiEIQbTcvOvR4BaYcAs0cZduf



To:



apple strawberry corn cat cow impertinence bloke bread stone hydrogen mountain


For example, and being able to use the words to β€œre-assemble” the password.
@eapl.me it is not about remembering, it is about converting something like:


ALBimMb+bxXypHuw8bCyZ++Sby6BFNxXs1ATtm+xiEIQbTcvOvR4BaYcAs0cZduf


To:



apple strawberry corn cat cow impertinence bloke bread stone hydrogen mountain


For example, and being able to use the words to β€œre-assemble” the password.
@eapl.me the document you list is too deep. Also behind a login. I have searched The Tubes, and found nothing.
I'm not aware of that kind of tools, but you could try with
I'm not aware of that kind of tools, but you could try with
https://pypi.org/project/bip39/

Perhaps there is something similar in your favorite language.
and just asking for the sake of the conversation, why not using a longer passphrase instead of that complex password in the first place?
It would have higher entropy πŸ€”

https://www.omnicalculator.com/other/password-entropy
and just asking for the sake of the conversation, why not using a longer passphrase instead of that complex password in the first place?
Hmmm, is bip39 suppose to be reversible? I _thought_ that's what it was for?!


$ echo 59I0nDFYho4Hq4ps | ./bip39 -e | ./bip39 -d
353949306e444659686f344871347073


=> https://goplay.mills.io/snippet/WzAKPDFHmse
Hmmm, is bip39 suppose to be reversible? I _thought_ that's what it was for?!


$ echo 59I0nDFYho4Hq4ps | ./bip39 -e | ./bip39 -d
353949306e444659686f344871347073


=> https://goplay.mills.io/snippet/WzAKPDFHmse
Hmmm, is bip39 suppose to be reversible? I _thought_ that's what it was for?!


$ echo 59I0nDFYho4Hq4ps | ./bip39 -e | ./bip39 -d
353949306e444659686f344871347073


=> https://goplay.mills.io/snippet/WzAKPDFHmse
@prologic https://learnmeabitcoin.com/technical/mnemonic might be more helpful here
@prologic https://learnmeabitcoin.com/technical/mnemonic
@prologic Not sure what's wrong with that script, everything *looks* like it should work...

hacked this up in python that does roughly what you wanted

https://gist.github.com/ShreyanJain9/29438d5dc0ebf58d28fc57dd585621e6
@shreyan Any significant differences in logic with your program vs. mine? πŸ€”
@shreyan Any significant differences in logic with your program vs. mine? πŸ€”
@shreyan Any significant differences in logic with your program vs. mine? πŸ€”
@prologic Not sure! I have a feeling it has something to do with yours possibly not converting to-or-from UTF-8?
Another thing I noticed - the Python implementation cannot handle 256-bit keys. Not sure if this is a limitation of the library or of BIP-39 itself.
Another thing I noticed - the Python implementation cannot handle 512-bit keys. Not sure if this is a limitation of the library or of BIP-39 itself.
Interesting πŸ€”
Interesting πŸ€”
Interesting πŸ€”