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
city_code | prefecture | city | pop | age | working_age_pop | daytime_pop | |
---|---|---|---|---|---|---|---|
1100 | 北海道 | 札幌市 | 1952356 | 46.4 | 1235516 | 1959740 | |
1202 | 北海道 | 函館市 | 265979 | 52.7 | 152154 | 273408 | |
1203 | 北海道 | 小樽市 | 121924 | 56.5 | 65317 | 124293 | |
1204 | 北海道 | 旭川市 | 339605 | 51.9 | 191423 | 341732 | |
1205 | 北海道 | 室蘭市 | 88564 | 52.5 | 49005 | 96865 | |
1206 | 北海道 | 釧路市 | 174742 | 51.4 | 101909 | 175733 | |
1207 | 北海道 | 帯広市 | 169327 | 47.6 | 103890 | 175954 | |
1208 | 北海道 | 北見市 | 121226 | 50.9 | 70781 | 121080 | |
1209 | 北海道 | 夕張市 | 8843 | 64.4 | 4045 | 9104 |
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
city_code | prefecture | city | |
---|---|---|---|
1000 | 北海道 | 北海道 | |
1100 | 北海道 | 札幌市 | |
1101 | 北海道 | 中央区 | |
1102 | 北海道 | 北区 | |
1103 | 北海道 | 東区 | |
1104 | 北海道 | 白石区 | |
1105 | 北海道 | 豊平区 | |
1106 | 北海道 | 南区 | |
1107 | 北海道 | 西区 |
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
Coursera | |
coursera.com * | |
_ 1st-party script | |
_ cloudfront.net * |
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
;;; sequential-command.el --- Many commands into one command | |
;; Copyright (C) 2009 rubikitch | |
;; Author: rubikitch <[email protected]> | |
;; Keywords: convenience, lisp | |
;; Copyright (c) 2015 Takahiro Noda | |
;; Version: 1.3.1 | |
;; URL: https://gist.github.com/tnoda/49797ef440b7a2166986 |
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
(ns tnoda.iwami | |
(:gen-class) | |
(:import (org.bukkit.craftbukkit Main)) | |
(:require [clojure.tools.nrepl.server :as nrepl-server])) | |
(defonce server (atom nil)) | |
(defn- nrepl-host | |
[] | |
(or (System/getenv "NREPL_HOST") "127.0.0.1")) |
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
(ns tnoda.eat.croquettes | |
(:import (org.openqa.selenium By) | |
(org.openqa.selenium.firefox FirefoxDriver) | |
(org.openqa.selenium.interactions Actions))) | |
(defn -main | |
"Eats more than one thousand pieces of croquettes" | |
[& args] | |
(let [driver (doto (FirefoxDriver.) | |
(.get "http://vnctst.tir.jp/op0012-4/")) |
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
$ ./configure --with-x --with-x-toolkit=no --prefix=/opt/emacs | |
Configured for `x86_64-unknown-linux-gnu'. | |
Where should the build process find the source code? . | |
What compiler should emacs be built with? gcc -std=gnu99 -g3 -O2 | |
Should Emacs use the GNU version of malloc? yes | |
(Using Doug Lea's new malloc from the GNU C Library.) | |
Should Emacs use a relocating allocator for buffers? no | |
Should Emacs use mmap(2) for buffer allocation? no |
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
(let [N (read-line) | |
digits (map #(Character/digit % 10) N) | |
m3 (rem (apply + digits) 3) | |
m5 (rem (last digits) 5) | |
answer (cond | |
(and (zero? m3) (zero? m5)) "Fizz Buzz" | |
(zero? m3) "Fizz" | |
(zero? m5) "Buzz" | |
:else N)] | |
(println answer)) |
NewerOlder