Paper and the Cybernetically Enhanced Programmer
September 10th, 2014
So far my posts on Typographic Programming have covered font choices and formatting. Different ways of rendering the source code itself. I haven’t covered the spacing of the code yet, or more specifically: indentation. Or even more specifically: tabs vs spaces.
Tabs vs Spaces, the Pointless War
September 2nd, 2014
So far my posts on Typographic Programming have covered font choices and formatting. Different ways of rendering the source code itself. I haven’t covered the spacing of the code yet, or more specifically: indentation. Or even more specifically: tabs vs spaces.
Typographic Programming: Fonts
August 25th, 2014
Apparently my last post hit HackerNews and I didn’t know it. That’s what I get for not checking my server logs.
Typographic Programming Language
August 22nd, 2014
Allow me to present a simple thought experiment. Suppose we didn’t need to store our code as ASCII text on disk. Could we change the way we write – and more importantly read – symbolic code? Let’s assume we have a magic code editor which can read, edit, and write anything we can imagine. Furthermore, assume we have a magic compiler which can work with the same. What would the ideal code look like?
Building a Headline Viewer with Amino
August 19th, 2014
This is part 3 of a series on Amino, a JavaScript graphics library for OpenGL on the Raspberry PI. You can also read part 1 and part 2.
Photo Slideshow in Amino
August 11th, 2014
This is the second blog in a series about Amino, a Javascript OpenGL library for the Raspberry Pi. The first post is here.
Amino: Refactored
August 8th, 2014
I’ve been working on Amino, my graphics library, for several years now. I’ve ported it from pure Java to JavaScript, to a complex custom-language generator system (I was really into code-gen two years ago), and back to JS. It has accreted features and bloat. And yet, through all that time, even with blog posts and the goamino.org website, I don’t think anyone but me has ever used it. I had accepted this fact and continued tweaking it to meet my personal needs; satisfied that I was creating something that lets me build other useful things. Until earlier this year.
Electron 0.3 Released
August 6th, 2014
I’m happy to announce the release of Electron 0.3. While there are a few under the hood improvements, the big news is a *brand new user interface*. We’ve rewritten the UI from scratch using Angular JS. This will make Electron more stable and easier to improve in the future.
60s Book Review: TinkerCad
August 4th, 2014
TinkerCad is a free web based CAD program. It runs entirely in the browser using WebGL, so you’ll probably want to use it with Chrome (I think Safari may work in Yosemite+). TinkerCad is meant for novice CAD users. So novice that you can know absolutely nothing about CAD and be able to make something after five minutes of their built in learning quests (tutorials). Then you an save your creation to their cloud or download it for 3D printing.
Electron Updates
August 2nd, 2014
Now that OSCON is over I can get back to working on Electron. That means a new version is coming, and by far the biggest change will be a brand new user interface. I had posted an early preview here but that's now completely out of date. You see, I discovered a new framework.
60 Sec Book Review: Physics of the Impossible
August 2nd, 2014
Michio Kaku, the science popularizer and theoretical physicist, is always a wonderful speaker. I’ve greatly enjoyed his TED talks. In _Physics of the Impossible_ he takes on the many improbable technologies of science fiction to determine if they are in fact impossible. Surprisingly, few truly are. He divides technologies into three levels of impossible: likely today or in the next 20 years with existing science (ex: replicators), likely in the next hundred or so without violating any known laws of physics (shockingly, time travel is in this bunch), and the truly impossible without some new laws of physics. There are very few things in the last category. It’s an easy read and lots of fun.
Command Parser for Arduino
July 31st, 2014
This is day zero of my Month Of Writing
Amino at OSCON
July 28th, 2014
I'm finally back from OSCON, and what a trip it was. Friend of the show wxl came
with me to assist and experience the awesomeness that is OSCON. Over the
next few days I'll be posting about the three sessions we taught and many, many sessions we attended. A splendid time is guaranteed for all. To kick things off, here is the code from my Amino talk.
Electron 0.2 Released
July 4th, 2014
I’m happy to announce Electron 0.2. We’ve done a lot of work to improve the
compiler and library tools. The biggest news is Windows and Linux
support. Also, you don’t need to pre-install the regular Arduino IDE anymore.
Electron will auto-download it’s own copy of the required toolchain. Here’s the
details:
Node Streams are Awesome
June 25th, 2014
I’ve been using Node JS off and on for the past few years, ever since we used it in webOS, but I’ve really gotten to go deep recently. As part of my learning I’ve finally started digging into Streams, perhaps one of the coolest unknown features of Node.
Introducing Electron, a new IDE for Arduino
June 17th, 2014
I love the Arduino platform. I have official boards and lots of derivatives. I love how it makes hardware hacking so accessible. But there’s one thing I hate: the IDE. It’s ugly. It’s ancient. It has to go.
If they did it, how Apple would make a TV
June 9th, 2014
It's the fashionable thing to speculate on future Apple products. One idea that continues to get traction is the Apple TV, a complete TV set with integrated Apple-ly features. Supposedly to be announced this fall, after failing to appear at any
event for the past three years, it will revolutionize up the TV market, cure global warming, and cause puppies and kittens to slide down rainbows in joy.
Future Tweet 2
June 9th, 2014
More Beta Testing Software
Future Tweeting
June 9th, 2014
This is a new future tweeting system I'm working on. It will let me write a post, send it to my blog, then link the blog from twitter, all in the *future*!
Where's The Data?
April 29th, 2014
The Web is amazing for answering questions. Suppose you want to answer a question like, "what does the .JPG file extension mean", then the answer is just an internet search away. Millions of answers. However, if you stray from the common path just a tiny bit things get hairy. What if you want to get a list of all file extensions? This is harder to find. Occasionally you might find a PDF listing them, but if you are asking for all file extensions then you probably want to do something with that list. This means you want the list in some computable form. A database or at least a JSON file. Now you are in the world of ‘public’ data. You are in a world of pain.