Skip to content

Instantly share code, notes, and snippets.

View daveaseeman's full-sized avatar

Dave Seeman daveaseeman

View GitHub Profile
@daveaseeman
daveaseeman / readscale.py
Created May 24, 2017 20:00 — forked from jacksenechal/readscale.py
Python script to read a USB scale in the Linux
#!/usr/bin/python
import os, time
import usb.core
import usb.util
import pygtk
pygtk.require('2.0')
import gtk
from sys import exit
import math
@daveaseeman
daveaseeman / gist:2acf7e62c8759df87981915a0acdaaf0
Created May 3, 2017 19:31 — forked from Bouke/gist:11261620
Multiple Python installations on OS X

Previous versions used homebrew to install the various versions. As suggested in the comments, it's better to use pyenv instead. If you are looking for the previous version of this document, see the revision history.

$ brew update
$ brew install pyenv
$ pyenv install 3.5.0
$ pyenv install 3.4.3
$ pyenv install 3.3.6
$ pyenv install 3.2.6
$ pyenv install 2.7.10

$ pyenv install 2.6.9

@daveaseeman
daveaseeman / gist:0ad7cbbe24752c429b07
Last active August 29, 2015 14:25 — forked from mhawksey/gist:1276293
Google App Script to insert data to a google spreadsheet via POST or GET
/*
Copyright 2011 Martin Hawksey
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
@daveaseeman
daveaseeman / bitly.rb
Last active August 29, 2015 14:20 — forked from jalcine/bitly.rb
##
## @author Jacky Alcine <[email protected]>
## @see [TODO: Add URL to post about bit.ly URLs.]
##
## Add in Bit.ly URL support to pages.
require "bitly"
# Ensure use of new API.
Bitly.use_api_version_3
=begin
Jekyll tag to include Markdown text from _includes directory preprocessing with Liquid.
Usage:
{% markdown <filename> %}
=end
module Jekyll
class MarkdownTag < Liquid::Tag
def initialize(tag_name, text, tokens)
super
@text = text.strip
@daveaseeman
daveaseeman / crawl_website.rb
Last active August 29, 2015 14:12 — forked from Achillefs/gist:1004409
web crawling example in ruby
%W[rubygems anemone].each {|r| require r}
site_root = "url"
# Create the root folder
folder = URI.parse(site_root).host
FileUtils.mkdir_p(File.join(".",folder))
Anemone.crawl(site_root) do |anemone|
anemone.on_every_page do |page|
@daveaseeman
daveaseeman / import.rb
Last active August 29, 2015 14:10 — forked from ngauthier/import.rb
A more generic import.rb that should work for any xml file if all you need is every "post" from your source. Use this to import posts to Jekyll!
require 'rubygems'
require 'nokogiri'
require 'fileutils'
require 'date'
require 'reverse_markdown'
# usage: ruby import.rb feed.xml
# feed.xml is an file you can download from most websites that support RSS
data = File.read ARGV[0]