sandbox

This is my current blog where I discuss a variety of computing topics including Linux, vim, python and javascript as well as science and statistics. Many of the posts have accompanying gists, which contain code for the example discussed.

vim and vundle on Ubuntu 16.04

Sep 21, 2016

I have just upgraded to Ubuntu 16.04, the new long-term-stable distribution of Ubuntu. This means I will be installing all of my trusted computing tools on this new distribution as well as reconsidering some of my approaches. In this post I'll go over a new approach to my vim setup for Ubuntu 16.04, changing from pathogen to vundle plugin management.

ES2015 using Node, Babel and Webpack

Jul 13, 2016

In this post I will cover setting up a project that uses ES2015/ES6 -- modern JavaScript-- that will still work in current web browsers that need ES5. The trick is to use Babel to transpile ES2015/ES6 code to ES5, which can run on current browsers. Why do this? Well, ES2015/ES6 is the future of JavaScript and I'd like to start using it now.

Upgrading to Meteor 1.3 on Ubuntu 14.04

Mar 30, 2016

In a recent post I documented the install process for Meteor -- at that time the current version was 1.2.1. Well, the new version -- 1.3 -- is out and I will briefly document the upgrade process and provide some links to new guides and tutorials that the MDG (Meteor Development Group) has released.

A d3 experiment on my Tinkerer blog

Mar 15, 2016

This blog uses Tinkerer, which is based on the Sphinx documentation framework, to create static html pages from rest (rst) markup. If you are familiar with the Python world you've probably created documentation using Sphinx, or at the very least, you have read documenation created in Sphinx. Because the setup is Python-focused, it is not straightforward to write posts that employ javascript libraries like d3. This post describes my method for doing javascript examples in Tinkerer blog posts or Sphinx docs, as well as how to do some d3.

Install Meteor on Ubuntu 14.04

Mar 14, 2016

I've been spending a lot of time working with Meteor recently. This framework uses javascript and MongoDB to create a full stack solution that is pretty easy to use. The installation is simple and painless on Ubuntu 14.04, but I'll document my process here for reference and provide some links for learning more about Meteor.