Color Mapping any data on Japan map. You can use any data about states of japan you have.
| States | Data Label1 | Data Label2 | ... |
|---|---|---|---|
| State | Data | Data | ... |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ContentApp"> | |
| <Id>00000000-0000-0000-0000-000000000000</Id> | |
| <Version>1.5.0.0</Version> | |
| <ProviderName>e2d3.org</ProviderName> | |
| <DefaultLocale>en-US</DefaultLocale> | |
| <DisplayName DefaultValue="E2D3" /> | |
| <Description DefaultValue="Dynamic, interactive, and more interesting graphing from your Excel!" /> | |
| <IconUrl DefaultValue="http://e2d3.org/wp-content/uploads/2015/05/logo.png" /> | |
| <SupportUrl DefaultValue="http://www.e2d3.org/" /> |
| template: "hubot" | |
| settings: | |
| number_of_shards: 5 | |
| number_of_replicas: 0 | |
| analysis: | |
| filter: | |
| word_delimiter_preserved: | |
| type: word_delimiter | |
| preserve_original: true | |
| char_filter: |
| DOMAIN=example.com | |
| openssl req -new -newkey rsa:2048 -nodes -subj "/CN=$DOMAIN" -keyout $DOMAIN.key -out $DOMAIN.csr | |
| openssl x509 -req -days 3650 -in $DOMAIN.csr -signkey $DOMAIN.key -out $DOMAIN.crt |
| var fs = require('fs'); | |
| var https = require('https'); | |
| var express = require('express'); | |
| var bodyParser = require('body-parser'); | |
| var port = process.env.PORT || 3000; | |
| var keyFile = __dirname + '/certs/e2d3.key' | |
| var certFile = __dirname + '/certs/e2d3.crt' |
| private boolean hasNetIncome(FactTable factTable, QName qName, final String context) { | |
| return option(factTable, NetIncome, qName, context).map(e -> true) | |
| .orElseGet(() -> option(factTable, NetIncomeUS, qName, context).map(e -> true) | |
| .orElseGet(() -> option(factTable, ProfitAttributableToOwnersOfParentIFRS, qName, context).map(e -> true) | |
| .orElseGet(() -> option(factTable,BasicEarningsPerShareIFRS, qName, context).isPresent()))); | |
| } |
| public class Derived extends Base { | |
| public String a = "initial"; | |
| public String b; | |
| public static void main(String[] args) { | |
| System.out.println("a: " + new Derived().a); | |
| System.out.println("b: " + new Derived().b); | |
| } | |
| } |
| #!/bin/bash | |
| PROGRAM=`basename $0` | |
| MAILTO="[email protected]" | |
| MAILFROM=$USER@$HOSTNAME | |
| function sendmail { | |
| read -rd '' BODY | |
| /usr/sbin/sendmail -t << EOF | |
| To: $MAILTO |
| #!/bin/bash | |
| dupsh $@ <<EOF | |
| 10.101.10.12 | |
| 10.101.10.13 | |
| 10.101.10.15 | |
| 10.101.10.24 | |
| 10.101.10.28 | |
| EOF |
| #!/bin/bash | |
| ## XenServerVM用NISクライアント設定スクリプト | |
| ## xs-tools.isoを最初にマウントしておく | |
| if [ "$UID" != "0" ]; then | |
| echo "This script is for root user." | |
| exit 0 | |
| fi |