-
swagger project test shows [SyntaxError: Unexpected identifier]
I’ve been working with Swagger to make an API server. With it, I created https://myopenbazaar.top. Pretty cool software, but I found testing with it pretty confusing. Swagger abstracts away mochajs, and for whatever reason, Swagger was hiding a stack trace of a failure when I was doing testing. $ swagger project test Running tests in: […]
-
Bitnet Project
I’m working on what I’m calling a bitnet. In a nutshell, it is a project to monitor and manage crypto currency mining on several remote computers I have at my disposal. There are other projects out there that do this already, but I haven’t found any that meet my requirements or suit my fancy. What […]
-
node.js node-sqlite3 error
I got this wonderful error when setting up CRUD functions on a little node project I’m working on: { [Error: SQLITE_RANGE: bind or column index out of range] errno: 25, code: ‘SQLITE_RANGE’ } Here is the code that caused the error: var row_update = function(index, name, password, comment, callback) { var update = db.prepare(“UPDATE workers […]