Skip to content

Instantly share code, notes, and snippets.

@id774
id774 / python-pep8.el
Last active December 26, 2016 00:15 — forked from ieure/python-pep8.el
;;; python-pep8.el --- minor mode for running `pep8'
;; Copyright (c) 2009, 2010 Ian Eure <ian.eure@gmail.com>
;; Author: Ian Eure <ian.eure@gmail.com>
;; Keywords: languages python
;; Last edit: 2010-02-12
;; Version: 1.01
@id774
id774 / excel.rb
Created December 28, 2010 08:02 — forked from todesking/excel.rb
require 'win32ole'
require 'kconv'
module Excel
class Application
def initialize
@obj=WIN32OLE.new('Excel.Application')
ObjectSpace.define_finalizer(self,Application.finalizer_callback(self))
end