tmp
Thursday, July 31, 2014
PhpStorm で Closure Linter の有効化
###install Closure Linter(MacPortsでも入れられるぽい? ```bash $ sudo easy_install http://closure-linter.googlecode.com/files/closure_linter-latest.tar.gz ``` ###setting PhpStorm 1. [Preferences...]を開く 2. [JavaScript]->[Code Quality Tools]->[Closure Linter] 3. [Enable]にチェック 4. [Closure Linter executable file]: /usr/local/bin/gjslint (gjslintの実行ファイル [Configuration file]: /Users/{$username}/bin/gjslint.conf (適当に空のファイルを作る 5. [OK] ###Configuration file このファイルを以下の様に修正するとオプションを設定できます ``` --strict --jsdoc ``` ##参考 * https://developers.google.com/closure/utilities/docs/linter_howto
Monday, July 28, 2014
hello go world
Go言語でhello worldを出すまで ##install MacPortsで(Homebrewやpkgからでも入れられる) ```bash sudo port install go ``` ###確認 ```bash $ go version go version go1.3 darwin/amd64 ``` ##hello.go作成 ```go package main import "fmt" func main() { fmt.Printf("hello, world\n") } ``` ##run ```bash $ go run hello.go hello, world ``` ##参考 *
*
*
コマンドプロンプトでIPアドレス制限
(ex ip:xxx.xxx.xxx.xxx, subnet mask=255.255.255.255) ###拒否リストに追加 ```bash c:\Windows\System32\inetsrv\appcmd set config /section:system.webServer/security/ipsecurity /+"[ipaddress='xxx.xxx.xxx.xxx',subnetMask='255.255.255.255',allowed='false']" ``` ###拒否リストから削除 ```bash c:\Windows\System32\inetsrv\appcmd set config /section:system.webServer/security/ipsecurity /-"[ipaddress='xxx.xxx.xxx.xxx',subnetMask='255.255.255.255',allowed='false']" ``` ##参考 *
Friday, July 4, 2014
ディレクトリ内をignore
```bash svn propset svn:ignore '*'
```
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)