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]): |
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
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
on run {input, parameters} | |
tell application "iTerm" | |
activate | |
create window with default profile | |
set mySession to (current session of current tab of current window) | |
tell mySession | |
write text "echo yoyo" | |
repeat while is processing of mySession is true | |
delay 1 |
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
title |
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
default_platform(:ios) | |
platform :ios do | |
desc "test" | |
lane :testlane do | |
sh("ls") | |
end |
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
for c in {000..255}; do echo -n "\e[38;5;${c}m $c" ; [ $(($c%16)) -eq 15 ] && echo;done;echo |
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
let humans = new Array() | |
humans.push({ | |
name: "yoyo", | |
age: 26 | |
}) | |
humans.push({ | |
name: "test", | |
age: 55 | |
}) | |
humans.push({ |
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
console.log('<yo#ooooo>'.replace(/#/g, 'eh')) |
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
console.log('<yo#ooooo>'.replace(/#/g, 'eh')) |
OlderNewer