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
0 | 綾鷹 | 点呼ー | null | null | |
---|---|---|---|---|---|
1 | 灰猫 | 1 | null | null | |
2 | 眠兎 | 2 | null | null | |
3 | 紫葵 | 3 | null | null | |
4 | H.H. | ポン | null | null | |
0 | 綾鷹 | くそwwww | null | null | |
3 | 紫葵 | www | null | null | |
0 | 綾鷹 | では始めたいと思います! | null | null | |
1 | 灰猫 | はいー88888888888 | null | null | |
3 | 紫葵 | ほーい(・ω・)ノ | null | null |
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
cmd 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>4group - Masato Fujimori</title> | |
<style media="screen"> | |
body{ | |
width:100%; | |
} | |
#map_canvas{ |
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
/* marker[0]~[4] infowindow[0] は for 文で回したというのに…! */ | |
google.maps.event.addListener(marker[0], 'click', function() { | |
infowindow[0].open(map,marker[0]); | |
}); | |
google.maps.event.addListener(marker[1], 'click', function() { | |
infowindow[1].open(map,marker[1]); | |
}); | |
google.maps.event.addListener(marker[2], 'click', function() { | |
infowindow[2].open(map,marker[2]); |
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
//mecab | |
var Mecab = require('mecab-async'); | |
var mecab = new Mecab(); | |
//fileread | |
var LineReader = require('./LineReader.js'); | |
var reader = new LineReader('./tweets.txt'); | |
//child_process | |
var child_process = require('child_process'); | |
//main |
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
while(reader.next()){ //ファイル読み込み、同期・非同期かんけいない | |
mecab.parse(reader.line,function(err,result){ //mecabかませる部分 | |
if(result!==undefined) | |
console.log(result[0][1]+','+result[0][7]); | |
}); | |
} |
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
<?php | |
function preg_match_br(){ | |
/* initialize */ | |
$result = NULL; | |
/* back reference (group) */ | |
preg_match ( '/sample_(reg)_exp/u' , $subject , $matches_array ); | |
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
<?php | |
function any_method(){ | |
/* back reference (group) */ | |
preg_match ( '/sample_(reg)_exp/u' , $subject , $matches_array ); | |
/* extract (group) */ | |
if ( isset( $matches_array[ 1 ] ) ) { | |
$result = $matches_array[ 1 ]; |
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
一般住民がシステムを利用する時、デジタルデバイスで閲覧するだけでなく印刷・保存することが想定される。その場合、Googleマップデータの |
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
//燃料、弾薬、鋼材、ボーキの時給理論値 | |
var resourceSet = [ | |
//鎮守府正面海域 | |
[-32,120,0,0], | |
[-56,200,60,0], | |
[54,34,120,0], | |
[-31.2,72,0,0], | |
[111.67,133.33,13.33,13.33], | |
[-24,-24,0,120], | |
[-42,0,50,30], |