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
| //以下、choiceフィールドの例 | |
| //読み取り専用にする | |
| $("select[Title='列名']").attr("disabled", "disabled"); | |
| //読み取り専用を解除したい場合 | |
| $("select[title='列名']").removeAttr("disabled"); |
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
| 【GitHubから、サーバーにデプロイするとき、deploy keyの設定が必要】 | |
| # サーバ側でやること | |
| 1) GitHubのリポジトリにアクセスするための公開鍵・秘密鍵を生成 | |
| ssh-keygen -t rsa -C [email protected] | |
| # GitHub側でやること | |
| 1) 対象のリポジトリのページへ移動 | |
| 2) Settingsへ移動 | |
| 3) Deploy keysへ移動 |
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 -y install mysql-server-5.5 php5-mysql apache2 php5 |
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
| http://lab.raqda.com/vagrant/getting-started/provisioning.html |
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
| 新しくインストールするたびに、下記コマンドで容量確認してみる | |
| `df -m -T >> ./outputs/df.txt` |
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
| Windowsにおける解凍したソースへのCLでのパスの通し方(この場合はgradle) | |
| *注意点は【cmd】であること | |
| > set GRADLE_HOME=C:\applications\gradle | |
| > set PATH=%GRADLE_HOME%\bin;%PATH% | |
| > gradle -v | |
| http://www.atmarkit.co.jp/ait/articles/1403/14/news034.html |
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
| 『qpstudy 2014.04 ミドルウェア設計の勘所』より | |
| http://www.slideshare.net/nekoruri/4-33705917 | |
| ●Java : Tomcat, Glassfish, Jetty | |
| ●Ruby : Unicorn, Puma, Phusion Passenger | |
| ●PHP : mod_php5, php-fpm | |
| ●Perl : Starman, Twiggy, mod_perl |
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
| C10K(同時接続数の爆発)問題 | |
| ・何も考えないApache(prefork設定)では無理 | |
| ・nginxやApache event_mpmの検討 | |
| ・非同期モデル(node.js)なら・・? | |
| ・静的データは別ドメインのWebサーバ |
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
| 「本当は楽しいインターネット」より | |
| http://www.slideshare.net/yuyarin/ss-39061287 | |
| ==【各4層の役目】 | |
| ●アプリケーション層 : HTTP, SMTP, SSH : アプリケーションのための制御するよ! | |
| ●トランスポート層 : TCP, UDP : データの信頼性保証してやんよ! |
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
| ■ MVCには『クライアント寄り』と『サーバー寄り』のがある! | |
| == クライアント寄り:【 MVC 】 | |
| - SPA、ネイティブアプリ | |
| - 画面 → コントローラー → モデル → ビュー → 画面 |
OlderNewer