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
| [Desktop Entry] | |
| Version=1.0 | |
| Type=Application | |
| Terminal=false | |
| StartupNotify=true | |
| Icon=/usr/local/rapidminer/resources/com/rapidminer/resources/rapidminer_frame_icon_128.png | |
| Name=RapidMiner | |
| Comment=Rapid miner | |
| Exec=/usr/local/rapidminer/scripts/RapidMinerGUI | |
| Categories=Development;IDE; |
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
| alias weka='weka -m 512m' |
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
| $ sudo apt-get install postgres postgres-client psotgresql-contrib |
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
| The following SSH command responded with a non-zero exit status. | |
| Vagrant assumes that this means the command failed! |
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
| CREATE TABLE countries ( | |
| country_code char(2) PRIMARY KEY, | |
| country_name text UNIQUE | |
| ); |
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
| CREATE OR REPLACE FUNCTION add_event(title text, starts timestamp, ends timestamp, venue text, postal varchar(9), country char(2) ) | |
| RETURNS boolean AS $$ | |
| DECLARE | |
| did_insert boolean := false; | |
| found_cont integer; | |
| the_venue_id integer; | |
| BEGIN | |
| SELECT venue_id INTO the_venue_id | |
| FROM venues v |
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
| $ sudo apt-get install build-essential libncurses5-dev openssl libssl-dev | |
| $ wget http://erlang.org/download/otp_src_R15B01.tar.gz | |
| $ tar zxvf otp_src_R15B01.tar.gz | |
| $ cd otp_src_R15B01 | |
| $ ./configure && make && sudo make install |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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
| # ggplot2 をベースにしたペアプロットのサンプル | |
| install.packages("GGally") | |
| library(GGally) | |
| airquality$Month <- as.factor(airquality$Month) | |
| airquality <- airquality[, colnames(airquality) != "Day"] | |
| ggpairs(na.omit(airquality), lower=list(continuous="smooth"), colour="Month", params=list(corSize=6,labelSize=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
| ICD10(except dot) | ICD10 | name | order | topcategory | |
|---|---|---|---|---|---|
| A00 | A00 | コレラ | 1 | 感染症および寄生虫症 | |
| A000 | A00.0 | コレラ菌によるコレラ | 1 | 感染症および寄生虫症 | |
| A001 | A00.1 | エルトールコレラ菌によるコレラ | 1 | 感染症および寄生虫症 | |
| A009 | A00.9 | コレラ,詳細不明 | 1 | 感染症および寄生虫症 | |
| A01 | A01 | 腸チフス及びパラチフス | 1 | 感染症および寄生虫症 | |
| A010 | A01.0 | 腸チフス | 1 | 感染症および寄生虫症 | |
| A011 | A01.1 | パラチフスA | 1 | 感染症および寄生虫症 | |
| A012 | A01.2 | パラチフスB | 1 | 感染症および寄生虫症 | |
| A013 | A01.3 | パラチフスC | 1 | 感染症および寄生虫症 |