Tag: node.js

  • Wed May 6 2020

    Wed May 6 2020

    It’s raining today. It’s not bad because it’s nice and cool. Yesterday was 77 or 78 degrees Fahrenheit in my apartment. I was burning up during video games. So apparently the beer bottles I found near the firepit were beer bottles from Elysium Brewing. I found some bottle caps today as I combed over the […]

  • 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

    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 […]