I hereby claim:
- I am nikuyoshi on github.
- I am nikuyoshi (https://keybase.io/nikuyoshi) on keybase.
- I have a public key ASB8EcpfIhKl1H7wYflx1j9bIZ1JFqE18tt2ORPeE06mGAo
To claim this, I am signing this object:
TASK [debug] ************************************************************************************************************************************************************************************************************************************************************************************************** | |
ok: [localhost] => { | |
"instance_path_list": [ | |
"/var/log/instance_1/log", | |
"/var/log/instance_2/log", | |
"/var/log/instance_3/log", | |
"/var/log/instance_4/log" | |
] | |
} |
I hereby claim:
To claim this, I am signing this object:
curl http://hoge.com -o /dev/null | |
# 何度も実行する場合 | |
# 参考: http://stackoverflow.com/questions/1289026/syntax-for-a-single-line-bash-infinite-while-loop | |
while true; do curl http://hoge.com -o /dev/null; sleep 1; done |
public class AAA{ | |
public void main(){ | |
String str = new String(Files.readAllBytes(Paths.get("fuga.txt"))); | |
} | |
} |
#!/bin/sh | |
####################################################### | |
# | |
# Precondition: Complete executing the following command | |
# ssh-keygen -t rsa | |
# | |
# How to use: | |
# sh ssh-auto-auth.sh {user name}@{IP address} | |
# |
convert -delay 20 -loop 0 IMG_*.jpg hoge.gif |
function setMyGoogleCalendar(){ | |
var gmailThread = specifyMailFromFeelcycle(); | |
var lessonList = parsePlainBody(gmailThread); | |
createGoogleCalendarEvent(lessonList); | |
removeGoogleCalendarEvent(lessonList); | |
} | |
function specifyMailFromFeelcycle(){ | |
var gmailThreads = GmailApp.search("from:[email protected] FEELCYCLE ご予約登録"); | |
// Get the registering threads |
three.jsを使い始めたので、お試しでメッシュ状の球体を表現してみました。
$primaryGroup = [adsi]"LDAP://CN=group1,OU=ou1,dc=hoge,dc=local" | |
$primaryGroup.GetInfoEx(@("primaryGroupToken"), 0) | |
$primaryGroupToken = $primaryGroup.Get("primaryGroupToken"); | |
$user = [adsi]("LDAP://CN=user1,OU=ou1,dc=hoge,dc=local") | |
$user.Put("primaryGroupId", $primaryGroupToken) | |
$user.SetInfo() |