Index:
Test using redmine_favourite_projects version 0.7.
| #!/bin/sh | |
| # time zone | |
| timedatectl set-timezone Asia/Taipei | |
| # user configure | |
| mkdir -p /root/.ssh |
| var webduino = require('webduino-js'); | |
| var board = new webduino.WebArduino('xxxx'); | |
| var dht; | |
| board.on('ready', function() { | |
| dht = new webduino.module.Dht(board, board.getDigitalPin(10)); | |
| dht.read(function(e) { | |
| var temperature = dht.temperature; | |
| var humidity = dht.humidity; | |
| }, 1000); | |
| }); |
| --- Day changed Sun Aug 21 2016 | |
| 00:05 <@chihchun> coscupbot: are you online? | |
| 00:06 < coscupbot> (chihchun) yes, I think you are. | |
| 00:06 <@chihchun> chusiang: https://gitter.im/COSCUP/coscup2016 | |
| 00:18 < hashman> test | |
| 00:19 < hashman> test | |
| 00:21 < hashman> test | |
| 00:33 < wens> 哇... unconf竟然有 runtime PM... 會不會太硬啊 | |
| 00:41 < chusiang> coscupbot: 戳戳 ~~ | |
| 00:44 < coscupbot> (chusiang) chusiang pong. |
| --- Day changed Sat Aug 20 2016 | |
| 01:06 < barneybook_mac> 應該都睡了吧 | |
| 02:57 < chusiang> test ~ test ~~ | |
| 02:57 < chusiang> 給所有還在趕進度的工作人員拍拍手 … (繼續忙了) | |
| 05:41 < Vdragon> 大家早安0w0/ | |
| 06:51 < Heero_Yuy> 早安 | |
| 07:12 < hashman> morning | |
| 07:23 < fntsrlike> Ping | |
| 07:36 < Vdragon> 太早到惹,被請去 MOS 吹冷氣QQ | |
| 07:39 < Heero_Yuy> … |
| BEGIN { | |
| } | |
| { | |
| split($0, token, " "); | |
| remoteIp = token[1]; | |
| httpStauts = token[9]; | |
| # time | |
| split($0, timequote, "["); |
| // ==UserScript== | |
| // @name railwayTicketFormAutoField | |
| // @namespace http://railway.hinet.net/ctno1.htm | |
| // @description Change some element on login page | |
| // @include http://*railway.hinet.net/ctno1.htm | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js | |
| // ==/UserScript== | |
| var personalId = 'A123456789'; // 身份正字號 |
| // ==UserScript== | |
| // @name 8comicLinkGrabber | |
| // @namespace zeroplex.tw | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js | |
| // @include http://new.comicvip.com/show/cool-* | |
| // @version 1 | |
| // @grant none | |
| // ==/UserScript== | |
| // ==UserScript== | |
| // @name CorrectRuten | |
| // @namespace http://www.ruten.com.tw | |
| // @description Change some element on login page | |
| // @include https://*.ruten.com.tw/user/login.htm* | |
| // @include http://member.stage2.ruten.com.tw/user/login.htm* | |
| // ==/UserScript== | |
| // Change logo |
Index:
Test using redmine_favourite_projects version 0.7.
| /** | |
| * Compare if two array are totally the same | |
| * | |
| * @return bool | |
| */ | |
| function isArraySameRecursively($o, $c){ | |
| if(count(array_diff_assoc($o, $c)) > 0){ | |
| return false; | |
| } |