ファイル検索コマンド find /dir -name “*.txt” で、/dirディレクトリ以下の、名称が”〜.txt”となっているファイルを検索できる。 tsakaハック2016.03.01 285
google spread sheetをRubyでいじりたい google_driveをまずインストールして、とのことなのでインストールを試みる。 # gem install google_drive Building native extensions. This could t… Okuyaハック2016.03.01 395
brewでDockerをインストールする 最近、Dockerが流行っているのでインストールしてみます。 まずは、検索してみましょう。 $ brew search docker boot2docker docker-machine-parallels homebr… YY3ai2ui24ハック2016.03.01 301
iptablesで特定IPからのアクセスを拒否する iptables -I INPUT -s xxx.xxx.xxx.xxx -j DROP 再起動後も適用する場合 service iptables save 設定を解除する場合 iptables –line-numbe… 高瀬 裕介ハック2016.03.01 1,416
MacにHomebrewでPostgresをインストールしようとしたらエラーになった プロセスがいない > ps auxw | grep post initdbしようとするとエラーになる could not connect to server: No such file or directory I… @iwasakiハック2016.02.29 465
nginxで許可したIP以外はBasic認証をかける nginxの設定で以下のようにします。 location / { satisfy any; auth_basic “Basic Auth”; auth_basic_user_file /path/to/.htpasswd… alkoshikawaハック2016.02.29 1,880
javascriptで連想配列のソート JavaScriptで連想配列をソートするには以下のようにします $(function(){ //配列 var fruits = [ {name:”Apple”,amounts:200} ,{name:”Strawber… kensuke-iizukaハック2016.02.29 738
稼働しているEC2インスタンスのPublicIPを列挙(AWS CLI) aws ec2 describe-instances \ –filters “Name=instance-state-name,Values=running” \ –output json \ –query “Re… 駆け出し 太郎ハック2016.02.29 954
Selenium Webdriver (javascript)の参考サイト2 Selenium Webdriver (javascript)で使えるメソッドの一覧です。 http://selenium.googlecode.com/git/docs/api/javascript/ moritaniハック2016.02.29 203