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
{ | |
"id": "a20c7a5a-4a22-4f7d-b84a-d419c8e4a27b", | |
"version": "2.0", | |
"name": "yahoo auction blacklist addition", | |
"url": "https://auctions.yahoo.co.jp", | |
"tests": [{ | |
"id": "e260d3b4-af49-4154-b75b-a452eca761b6", | |
"name": "配列で一括登録", | |
"commands": [{ | |
"id": "021a10f6-7e8c-4bf2-bb25-bf8faa8918ab", |
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
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>HTML Previewer</title> | |
<meta name="description" content="テキストエリアに入力した HTML を即座にプレビュー表示します。HTML entered in the textarea is previewed quickly."> | |
<meta name="author" content="Mtk Fujiu.jp"> | |
</head> | |
<body> | |
<textarea id="value" style="width:100%;height:200px;"><span style="white-space:pre;">Enter HTML here |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>chart.js sample 2 fujiu.jp</title> | |
</head> | |
<body> | |
<canvas id="myChart"></canvas> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.4.0/Chart.min.js"></script> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>chart.js sample 1 fujiu.jp</title> | |
</head> | |
<body> | |
<canvas id="myChart"></canvas> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.4.0/Chart.min.js"></script> |
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
#!/usr/bin/bash | |
tmp=/tmp/$$ | |
function getLocation() { | |
curl -I --silent $1 | while read line | |
do | |
if [[ "$line" =~ ^HTTP ]]; then | |
echo $line > $tmp-status | |
fi |
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
Form MainForm { | |
X = 0; | |
Y = 0; | |
Width = 300; | |
Height = 200; | |
EditBox Ebox { | |
X &= ^.X; | |
Y &= ^.Y; | |
Width &= ^.Width; |
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
/* | |
* #カレンダープログラミング プチコンテスト 2014 | |
* Transact-SQL | |
* SQL Server 2008 R2用 | |
* | |
* WEEKDAY関数が使えなかったので言語設定に依存してます | |
* 日本語環境のみ | |
* IF @@LANGUAGE!='日本語' RETURN | |
* | |
* 実行中に日付が変わっても日付が変わる前の月のカレンダーを表示するはず |