View .vimrc
This file contains 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
" フォント設定 | |
if has('win32') | |
" Windows用 | |
set guifont=MS_Gothic:h12:cSHIFTJIS | |
" 行間隔の設定 | |
set linespace=1 | |
" 一部のUCS文字の幅を自動計測して決める | |
if has('kaoriya') | |
set ambiwidth=auto | |
endif |
View SlackBinaryPost.java
This file contains 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 java.io.BufferedReader; | |
import java.io.DataOutputStream; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.io.UnsupportedEncodingException; | |
import java.net.HttpURLConnection; | |
import java.net.ProtocolException; | |
import java.net.URL; | |
import java.nio.charset.StandardCharsets; | |
import java.util.Calendar; |
View SeleniumTest.java
This file contains 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
// 指定のウィンドウサイズに変更 | |
int width = 480; | |
int height = 600; | |
driver.manage().window().setSize(new Dimension(width, height)); | |
// 最大化 | |
/* driver.manage().window().maximize(); */ | |
if (isFirefox) { | |
FirefoxProfile profile = new FirefoxProfile(); |
View spring_meta_table_clean.sh
This file contains 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
#!/bin/bash | |
# SQL情報 | |
PREFIX= | |
USER= | |
PASSWORD= | |
SCHEMA= | |
# 最終保存日 | |
DATE=`date '+%Y-%m-%d'` |
View server.js
This file contains 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
const http = require('http'); | |
const hostname = '127.0.0.1'; | |
const port = 3000; | |
var server = http.createServer(); | |
server.on('request', doRequest); | |
var fs = require('fs'); | |
function doRequest(req, res) { | |
var url = req.url; |
View Main.java
This file contains 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 java.util.function.Function; | |
import java.util.stream.Stream; | |
public class Main { | |
public static void main(String... args) { | |
// これまでのJavaのように書くと、こんな感じになります。 | |
Function<String, Integer> fullFunction = new Function<String, Integer>() { | |
@Override | |
public Integer apply(String arg) { | |
return Integer.parseInt(arg); |
View AzureService.java
This file contains 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 javax.net.ssl.HttpsURLConnection; | |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.io.OutputStreamWriter; | |
import java.net.HttpURLConnection; | |
import java.net.URL; | |
import java.net.URLEncoder; | |
import java.nio.charset.StandardCharsets; | |
import java.util.UUID; |
View asana_section_add_task.php
This file contains 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
<?php | |
$data = array('data' => array( | |
'memberships' => array(array('project' => $_POST['project'], 'section' => $_POST['section'])), | |
'name' => $_POST['word'], | |
'workspace' => $_POST['workspace'], | |
'notes' => $_POST['note'] | |
)); | |
$header = array( | |
'Content-Type: application/json', |
View cert_check.sh
This file contains 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
#!/bin/bash | |
IFS=$'\n' | |
for line in `/usr/bin/openssl x509 -noout -dates -in target.pem` | |
do | |
CHECK=`echo $line | cut -d '=' -f 2` | |
done | |
END_DATE=`date -d $CHECK +%s` |
View code.gs
This file contains 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
var spreadsheet = SpreadsheetApp.getActiveSpreadsheet(); | |
function doGet(e) { | |
if (e.parameter == undefined) { | |
throw new Error("固定パラメータなし"); | |
} | |
// 日付を取得 | |
var date = e.parameter.date; | |
OlderNewer