Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
cd ~
wget https://nodejs.org/dist/v6.6.0/node-v6.6.0-linux-x64.tar.xz
cd /usr/local
sudo tar --strip-components 1 -xf ~/node-v6.6.0-linux-x64.tar.xz
node -v
@pezholio
pezholio / import.rb
Last active January 15, 2020 14:03 — forked from dnagir/import.rb
Regenerate the source of an Octopress blog (if you're an idiot and forgot to commit the source like me)
require 'rubygems'
require 'nokogiri'
require 'fileutils'
require 'date'
require 'uri'
require 'find'
@posts = {}
@drafts = {}
@paul-delange
paul-delange / HighChartViewController.h
Created March 27, 2013 11:03
Highcharts running in a UIWebView for iOS
#import <UIKit/UIKit.h>
@interface HighChartViewController : UIViewController
@property (weak, nonatomic) IBOutlet UIWebView *webView;
@property (strong, nonatomic) NSArray* seriesArray;
@property (copy, nonatomic) NSString* optionFileName;
@end