Skip to content

Instantly share code, notes, and snippets.

@oxoofo
oxoofo / dxp2pdf.rb
Created January 19, 2011 16:05
Word,Excel,PowerPointをPDFに一括変換
# -*- coding: utf-8 -*-
require "win32ole"
require "fileutils"
require "kconv"
def usage
puts <<-USAGE.gsub(/^ *\|/, "")
|動作: ワード・エクセル・PowerPointをPDFに一括変換します。
| ネストした階層構造をそのまま再現します。
@oxoofo
oxoofo / gist:732173
Created December 7, 2010 18:17
[.keysnail.js] 選択中のテキストを、タイトルとURLと罫線付きでコピー
// [.keysnail.js] 選択中のテキストを、タイトルとURLと罫線付きでコピー
key.setViewKey(
'W',
function(){
var w = window.content, d = w.document;
var txt = '┌────────────────────────────────────┐\r\n' +
'│' + d.title + '\r\n' +
'│' + d.location.href + '\r\n' +
'│──────────────────────────────────\r\n' +
w.getSelection() + '\r\n' +