This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function run(input, parameters) { | |
// open iterm2 and retrieve session object | |
var iTerm = Application("iTerm2"); | |
var win = iTerm.createWindowWithDefaultProfile(); | |
var tab = win.currentTab(); | |
var ses = tab.currentSession(); | |
//run command in the session | |
ses.write({text: "echo yoyo"}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by souichi_sumi on 2017/09/28. | |
*/ | |
//unimplemented class | |
public class Hoge { | |
static String var1 = "hoge1"; | |
static String var2 = "hoge2"; | |
static String var3 = "hoge3"; | |
static String var4 = "hoge4"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import math as ma | |
import sys | |
import googlemaps | |
df = pd.read_csv('jusho.csv') | |
maxlen=0 | |
maxlenKen=0 | |
maxlenSi=0 | |
for key, row in df.iterrows(): | |
if maxlenKen<len(row[1]): |
NewerOlder