- Name:岡田 旭(okada akira)
- Twitter:akira1908jp
pi@raspberrypi ~ $ bonnie++ -d ~/ -n 256:1024:1024:16 Writing a byte at a time...done Writing intelligently...done Rewriting...done Reading a byte at a time...done Reading intelligently...done start 'em...done...done...done...done...done... Create files in sequential order...done. Stat files in sequential order...done.
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
| FROM debian | |
| MAINTAINER akira1908jp <[email protected]> | |
| RUN apt-get upgrade -y | |
| RUN apt-get update -y | |
| RUN apt-get install curl git -y | |
| RUN apt-get clean | |
| ENTRYPOINT curl -L http://is.gd/plenvsetup | bash | |
| ENTRYPOINT . ~/.bash_profile |
php道場オンライン#1
試験テスト https://appear.in/php-dojo Bluetoothヘッドフォンノイズがのる
弟子のレベルの見極めこと
php 5.4以上 Builtinserver
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
| Date.prototype.addHours= function(h){ | |
| this.setHours(this.getHours()+h); | |
| return this; | |
| } | |
| Date.prototype.addMinitues= function(m){ | |
| this.setHours(this.getMinitues()+m); | |
| return this; | |
| } |
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
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1/jquery-ui.min.js"></script> | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1/i18n/jquery.ui.datepicker-ja.min.js"></script> | |
| <link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/ui-lightness/jquery-ui.css" rel="stylesheet" /> |
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 lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>delegate demo</title> | |
| <style> | |
| p { | |
| background: yellow; | |
| font-weight: bold; | |
| cursor: pointer; |
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 pickerOption = (function(){ | |
| var _format = 'yy-mm-dd' | |
| ,_min = (function () { | |
| return getDate(min_year, min_month, min_day); | |
| })(), | |
| _max = (function () { | |
| return getDate(max_year, max_month, max_day); | |
| })(); | |
| function getDate(year, month, day) { |
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 web_service ( | |
| service_url varchar(255), | |
| singin_id varchar(255), | |
| password varchar(125), | |
| primary key(service_url) | |
| ) | |
| ; |