TRS-80
TRS-80
If you are getting the "Error 'AuthSend': error: malformed-request[?]" that I previously mentioned here and created (see link above) an issue about, I finally figured it out, and you can...
In case anyone else stumbles along here like I did, I discovered pykemacs from [xkeysnail](https://github.com/mooz/xkeysnail) which not only builds on top of this project, but actually implements the behavior mentioned...
Well, FWIW, I ended up completely abandoning the automated importing approach, and now instead I do a more manual one. I can actually do it in only a few minutes...
I just tried again, this time following _exactly_ (other than my db file name) the example from [here](https://bottlepy.org/docs/0.12/plugins/sqlite.html): ``` import bottle app = bottle.Bottle() plugin = bottle.ext.sqlite.Plugin(dbfile='database.sqlite3') app.install(plugin) ``` Now...
Thanks for the tip! I ended up getting it working by following the [ToDo example](https://bottlepy.org/docs/dev/tutorial_app.html), and just straight calling the regular sqlite3 from the standard library like they do in...
Hmm, then still no results? Almost same case, in reverse? At least there will be this issue for people to find (and we can link to) now. Since we all...
I came here today wondering the same thing. My case is slightly different however. I would be perfectly fine with flashing alternative firmware, but I've learned I bought some of...
Update: I made a post at [tuyapi](https://github.com/codetheweb/tuyapi/issues/335) asking a couple questions to confirm couple things, but I think that software might fit my needs for containing the devices in the...
I fixed it by commenting out the following line, which can be found near the end of the `todotxt-add-priority` function in `todotxt.el`: ``` ;(todotxt-prioritize 'todotxt-get-due-priority-sort-key) ``` Then, there appears to...
This would also be really easy to do with a shell script, i.e., `find` the files then pipe them into `wc` for instance. You could even dump those results into...