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
50 | |
10 | |
30 | |
5 | |
90 | |
20 | |
40 | |
2 | |
25 | |
10 |
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>hoge</title> | |
</head> | |
<body> | |
<div id="container" style="width: 100%; height: 400px"></div> | |
<script type='text/javascript' src='./js/jquery-1.4.4.min.js'></script> | |
<script type="text/javascript" src="./js/highcharts.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
.TH "and" 1 "Mon Nov 13 2017" "Version 2.6.0" "fish" \" -*- nroff -*- | |
.ad l | |
.nh | |
.SH NAME | |
\fBand\fP - conditionally execute a command | |
.PP | |
.SS "Synopsis" | |
.PP | |
.nf |
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
{ | |
"require": { | |
"php": ">=5.4", | |
"google/cloud-bigquery": "^0.2" | |
}, | |
"require-dev": { | |
"phpunit/phpunit": "~4" | |
} | |
} |
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
object HelloWorld { | |
def main(args: Array[String]) :Unit = { | |
println("hello, world") | |
} | |
} |
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
pdftotext "$1" - | tr " " "\n" | sort | uniq -ic | sort -gr |
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
#!/bin/sh | |
# This script shows file-size average | |
ls -lF | grep -v / | awk ' | |
{ sum += $5 } END { ave = 0; ave = sum / (NR-1) / 1024; if(ave < 1024) { printf("%3.2f%s\n", ave, "KB"); } else { ave /= 1024 ; printf("%3.2f%s\n", ave, "MB"); } } | |
' |
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
(defparameter *nodes* '((living-room (you are in the living-room. | |
a wizard is snoring loudly on the couch.)) | |
(garden (you are in a beautiful garden. | |
there is a well in front of you.)) | |
(attic (you are in the attic. | |
there is a giant welding torch in the corner.)))) | |
(defparameter *edges* '((living-room (garden west door) | |
(attic upstairs ladder)) | |
(garden (living-room east door)) |
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
case class Student(name: Option[String], age: Option[Int], grade: Option[Int]) | |
val list = List( | |
Some(Student(Some("Steve"), Some(15), Some(1))), | |
Some(Student(Some("Chad"), Some(16), Some(2))), | |
Some(Student(Some("Shigeru"), Some(40), Some(1))), | |
Some(Student(Some("Chloé"), Some(18), Some(3))) | |
) | |
println(list.flatMap(_.get.name)) |
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
case class Student(name: String, age: Int, grade: Int) | |
val list = List( | |
Student("Steve", 15, 1), | |
Student("Chad", 16, 2), | |
Student("Shigeru", 40, 1), | |
Student("Chloé", 18, 3) | |
) | |
val students = for { |
NewerOlder