Tag: Programming

  • Sun Dec 8 2019 @ 10:40AM PST

    Sun Dec 8 2019 @ 10:40AM PST

    I made some really good progress on my Jeopardy clone yesterday. It gives me confidence that I’ll be able to finish it in time for Christmas. Jepurdee It’s a bit cluttered at the moment, but this is what I’m looking at. The red overlay on the left edge of the screen is just a debug […]

  • Project Ideas (Master List)

    I have a lot of ideas for webapps and games and videos and misc. Here are a bunch of them. Interactive Programming Stream on Chaturbate Streamer appears on screen as a 3d Vtuber with motion tracking (Projekt Melody style.) Programming or math questions are presented to chat. Chat participants type their answers. Correct answers automatically […]

  • Ludum Dare, Code in the Dark Aftermath

    Ludum Dare, Code in the Dark Aftermath

    I took part in not one, but two competitions last weekend. First was Ludum Dare 45, a competition to make a game in 48 hours. Second was Spokane Code in the Dark 2019, a HTML/CSS competition with a nightclub vibe. Code in the Dark had such a cool atmosphere. I met a gentleman who works […]

  • Ludum Dare 45 Struggles

    Ludum Dare 45 Struggles

    I woke up from a nap at 3:30PM and jumped on ldjam.com to check the theme. “Start with nothing.” 30 minutes into the competition, I fired up Atom, and opened the love2d wiki. I had a perfect idea. Kasane Teto starts with nothing. Just like she did when she was created. No friends. People thought […]

  • Robinhood Stock App Enhancements

    Robinhood Stock App Enhancements

    The idea of making some extra cash from simple economic growth is very appealing to me. Thanks to Robinhood, I can pursue this idea and invest without brokerage fees. My strategy is simple. Speculate on industries or corporations which I think will grow in the next 6-12 months. Buy a stock or two in said […]

  • How to convert an image to a data url

    How to convert an image to a data url

    I have a project where I want to embed an PNG image into a Tampermonkey script. Lucky for me, Firefox is capable of converting an image file on disk into a base64 dataurl! All I had to do is right click on the file I wanted to convert, and open it in Firefox. After that, […]

  • Ludem Dare 42

    Ludem Dare 42

    I will be participating in Ludem Dare 42 this weekend, August 10-12 2018 along with my brothers Michael and David. A few years ago, the three of us formed Team Rocket Propelled Chainsaw, a brotherly club who make video games. TeamRPC is re-united for the answer to life, the universe, and everything edition (42) of […]

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

  • Xbee notes

    Unformatted, unordered, brain dump of information for my Mil-Sim airsoft wireless pyrotechnics ignition project. Mostly for my reference but if it helps someone with their xbee project, that’s a bonus. Code here: http://github.com/insanity54/detpack Vids here: https://www.youtube.com/playlist?list=PL21r4IMiMKF93vCYHH69TBEh6ASPYJjIf V2 OSEPP Fio $19 XBee Pro 63mW RPSMA – Series 2B (ZigBee Mesh) $29 search for arduino serach for […]

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