Skip to content

Instantly share code, notes, and snippets.

View konn's full-sized avatar
🏠
Working from home

Hiromi Ishii konn

🏠
Working from home
View GitHub Profile
@konn
konn / dupe-pages.js
Created August 5, 2015 10:57
Duplicate each pages thru JXS + Acrobat Pro
var app = Application("Adobe Acrobat Pro")
doc = app.documents[0];
app.includeStandardAdditions = true;
app.pdfWindows[0].pages().reverse().forEach(function(page){
var n = page.pageNumber();
doc.insertPages({after: n,
from: doc,
startingWith: n,
numberOfPages: 1});
@konn
konn / ssh-mosh-bgch-hook.sh
Last active August 29, 2015 14:26
zsh hooks を使って ssh / mosh の接続先によって Terminal.app のテーマを変える ref: http://qiita.com/mr_konn/items/68fb9af87cf20a217a84
autoload -Uz add-zsh-hook;
unset __WINDOWLOC;
unset __PREVSETID;
function set_bg () {
osascript -e "tell app \"Terminal\" to set the current settings of the tab ${__WINDOWLOC[1]} of window id ${__WINDOWLOC[2]} to settings set \"$1\""
}
function ssh-mosh-observe() {
@konn
konn / ssh-mosh-bgch-hooks.zsh
Last active August 29, 2015 14:26
Auto Terminal BG change
autoload -Uz add-zsh-hook;
unset __WINDOWLOC;
unset __PREVSETID;
function set_bg () {
osascript -e "tell app \"Terminal\" to set the current settings of the tab ${__WINDOWLOC[1]} of window id ${__WINDOWLOC[2]} to settings set \"$1\""
}
function ssh-mosh-observe() {
@konn
konn / div.hs
Last active August 29, 2015 14:25
{-# LANGUAGE UndecidableInstances #-}
{-# LANGUAGE DataKinds, GADTs, PolyKinds, TypeFamilies, TypeOperators #-}
module Main where
import GHC.TypeLits
type family Div2 (n :: Nat) where
Div2 0 = 0
Div2 1 = 0
Div2 n = Div2 (n - 2) + 1
@konn
konn / iText Pro to InDesign.scpt
Last active January 6, 2018 12:12
iText Pro ルビ・圏点→InDesign 変換スクリプト
var app = Application("Adobe InDesign CS5"),
doc = app.activeDocument,
style = doc.styles;
doc.hyperlinks()
.forEach(function(ref){
try {
if (dest = ref.destination.destinationURL()) {
var comp = dest.match(/\/RubyText:(.+?)$/i)
horz = dest.match(/\/horzInVert:$/i)
$(document).ready (function(){
var redacted = $(".redacted");
var text = JSON.parse(redacted.attr("data-model"))['text'];
$(".redacted .btn").remove();
$(".redacted .fs-tweet-text").text(text);
redacted.removeClass("redacted");
});
@konn
konn / Examples.hs
Last active August 29, 2015 14:22
More type-safe, class-free and user friendly variadic printf in Haskell (inspired by myoun http://myuon-myon.hatenablog.com/entry/2014/02/21/001448).
{-# LANGUAGE OverloadedStrings, QuasiQuotes #-}
module Main where
import PrintfRevised
-- ^ Printf core
import PrintfQQ
-- ^ QuasiQuotes
main :: IO ()
main = do
let x = 42
@konn
konn / nat_aux.v
Last active August 29, 2015 14:20
Encoding sequence of natural numbers as natural numbers, preserving order.
Require Import ssreflect ssrbool eqtype ssrnat div prime.
Set Implicit Arguments.
Unset Strict Implicit.
Unset Printing Implicit Defensive.
Theorem wf_ltn : well_founded (fun (x y : nat) => x < y).
Proof.
move => x.
move : {2}x (leqnn x) => n.
import algebra.order
import standard
import logic
open algebra bool eq.ops
structure poset [class] (A: Type) extends has_le A :=
(le_refl : ∀a, le a a)
(le_trans : ∀a b c, le a b → le b c → le a c)
definition weak_order.to_poset [instance] [coercion] [reducible]
@konn
konn / KanjifyDate.js
Last active August 29, 2015 14:17
An attempt to automating editing works using OS X Yosemite's JXA (JavaScript for Automation)
String.prototype.tr = function (from, to) {
var str = this;
for (i in [...Array(Math.min(from.length, to.length))]) {
str = str.replace(new RegExp(from[i], "g"), to[i]);
}
return str;
}
function kanjify(str) {
return str.tr("0123456789", "〇一二三四五六七八九");