yuu_nkjm blog
2014-09-13(Sat) [長年日記] 編集
[HTML5] ブラウザの履歴を操作したい
画面遷移なしに"window.location.href = URL"的なことをしたい,ajax使って通信しているときに進む,戻るボタンが使いたいときは,HTML5 History API (Session history and navigation)を使うのが良さそう. HTML5 History API を徹底的に試してみる | nacika's blog@技術ネタ多し
2014-09-14(Sun) [長年日記] 編集
[Kawa][Scheme] パラメータオブジェクト
SRFI 39: Parameter objectsのKawaの実装Kawa: Parameter objectsがバグってる?Kawa2.0でもこうなった.
(define radix
(make-parameter 10))
(radix) ;; → 10
(radix 2) ;; → 2
(radix) ;; → 2
(define (f n)
(number->string n (radix)))
(define prompt
(make-parameter
123
(lambda (x) x)))
(prompt) ;; → 123
(prompt "|") ;; →
(prompt) ;; → |
(f 10) ;; → 1010 (基数2で10を表記)
(parameterize ((radix 8)) (f 10)) ;; → 1010 (基数8に設定.でもそれが見えるのはbody以降)
(parameterize ((radix 8) (prompt (f 10))) (prompt)) ;; → 12 (これって1010になるはずじゃない?)
2014-09-15(Mon) [長年日記] 編集
2014-09-16(Tue) [長年日記] 編集
[Ruby][gem][bundler][Chef][Vagrant][openSUSE] はじめてのVagrant on Linux
Vagrant
使い込む元気はなさそうだけど,Vagrant+Chef-soloによるプロビジョニングデビュー. MAGCruise/MAGCruiseChefを動かすために頑張ってみる.
initialize': Malformed version number string virtualboxというエラーが出た
can't start my VM on Vagrant 1.5.1 · Issue #3195 · mitchellh/vagrantの通り'echo "1.1" > ~/.vagrant.d/setup_version'で解決した.
Chef-SoloでのSSLエラー
vagrant - chef-solo ssl warning when provisioning - Stack Overflowに掲載されているエラーが出たが,実害はなさそうなので,現状ではスルー.
Chefのインストール
GeoCode software.opensuse.org:などからrpmをダウンロードして,インストール.
zypper addrepo obs://devel:languages:ruby:extensions/openSUSE_13.1 "Ruby extensions" yast2 -i rubygem-chef yast2 -i virtualbox wget http://files.vagrantup.com/packages/a40522f5fabccb9ddabad03d836e120ff5d14093/vagrant_1.3.5_i686.rpm yast2 -i ./vagrant_1.3.5_i686.rpm wget http://download.opensuse.org/repositories/devel:/languages:/ruby:/extensions/openSUSE_13.1/x86_64/gecode-3.7.3-2.3.x86_64.rpm yast2 -i gecode-3.7.3-2.3.x86_64.rpm yast2 -i geocode-devel yast2 -i rubygem-openssl-nonblock yast2 -i libopenssl-devel yast2 -i ruby-build yast2 -i gnu-crypto yast2 -i rubygem-vagrant yast2 -i ruby19 yast2 -i ruby19-devel yast2 -i ruby19-devel-extra yast2 -i rubygem-eventmachine yast2 -i cpp47
関連ページ
2014-09-17(Wed) [長年日記] 編集
[Ruby][gem][bundler][Chef][Vagrant][Windows 8] はじめてのVagrant on Windows
SSL回りでエラー.
- ruby on rails - SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed - Stack Overflow
- エラー:OpenSSL::SSL::SSLError SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed - komiyakの通り道
$ ruby -ropenssl -e 'p OpenSSL::X509::DEFAULT_CERT_FILE'
"C:/Users/Luis/Code/luislavena/knap-build/var/knapsack/software/x64-windows/openssl/1.0.0l/ssl/cert.pem"
こんな絶対パスがハードコーディングされているなんて….
最終的にはWindows上でfork()がないよと言われて諦めた.
ログ
Ruby 2.0.0-p481 (x64) http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p481-x64.exe?direct DevKit-mingw64 For use with Ruby 2.0 (x64 – 64bits only) http://cdn.rubyinstaller.org/archives/devkits/DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe E:\root\home\local\Ruby200-x64\Devkit ruby dk.rb init ruby dk.rb install gem install bundler bundle install --path vendor/bundler gem install bundler bundle install --path vendor/bundler bundle ex berks vendor cookbooks bundle vagrant up ruby -ropenssl -e 'p OpenSSL::X509::DEFAULT_CERT_FILE' ruby -e 'knife ssl check -c /tmp/vagrant-chef-4/solo.rb' bundle exec knife ssl check -c /tmp/vagrant-chef-2/solo.rb
2014-09-18(Thu) [長年日記] 編集
[Aptana] Aptanaが起動できない
Aptanaを起動しようとしたら"java was started by returned exit code=13"というエラーが出た.Eclipseの時にもそんなことがあったので,jvmの位置を設定してみたが,それでも動作しない.このエラーは,aptanaが32bit版のjvmにしか対応していないということらしい.
Aptana Studioのインストールディレクトリ以下のAptanaStudio3.iniに以下を追記したところ,起動するようになった.
-vm
E:\hoge\hoge\jdk1.8.0-32bit\bin\javaw.exe
2014-09-24(Wed) [長年日記] 編集
[zypper][openSUSE] yastに登録しているレポジトリ
以下のレポジトリに見つからないときは,→のサービスを使う.software.opensuse.org: 検索
Databases (openSUSE_13.1) | http://download.opensuse.org/repositories/server:/database/openSUSE_13.1/ |
factory-repo-src-non-oss | http://download.opensuse.org/factory/repo/src-non-oss |
Python Modules (openSUSE_13.1) | http://download.opensuse.org/repositories/devel:/languages:/python/openSUSE_13.1/ |
factory-repo-src-oss | http://download.opensuse.org/factory/repo/src-oss |
openSUSE BuildService - Virtualization (VirtualBox) | http://download.opensuse.org/repositories/Virtualization/openSUSE_13.1/ |
Packman Repository | http://ftp.gwdg.de/pub/linux/packman/suse/openSUSE_13.1/ |
openSUSE-13.1-1.10 | hd:///?device=/dev/disk/by-id/scsi-1UFD_3.0_Silicon-Power8G-part2 |
factory-repo-debug | http://download.opensuse.org/factory/repo/debug |
openSUSE-13.1-Debug | http://download.opensuse.org/debug/distribution/13.1/repo/oss/ |
factory-repo-oss | http://download.opensuse.org/factory/repo/oss |
openSUSE-13.1-Update-Debug | http://download.opensuse.org/debug/update/13.1/ |
メインリポジトリ (非オープンソース) | http://download.opensuse.org/distribution/13.1/repo/non-oss/ |
openSUSE-13.1-Update-Debug-Non-Oss | http://download.opensuse.org/debug/update/13.1-non-oss/ |
factory-repo-non-oss | http://download.opensuse.org/factory/repo/non-oss |
openSUSE-13.1-Source | http://download.opensuse.org/source/distribution/13.1/repo/oss/ |
メインアップデートリポジトリ | http://download.opensuse.org/update/13.1/ |
更新リポジトリ (非オープンソース) | http://download.opensuse.org/update/13.1-non-oss/ |
ruby extensions | http://download.opensuse.org/repositories/devel:/languages:/ruby:/extensions/devel_languages_ruby_openSUSE_13.1/ |
2014-09-28(Sun) [長年日記] 編集
[openSUSE][Apache][.htaccess] Apache 2.4系でのアクセス制御の書き方
openSUSE 13.1でパッケージのアップデートをしたところ,apacheが2.4系になったようだ.それにともない,アクセス制御の書き方が変わった様だ.
Order deny,allow Deny from all Allow from 127.0.0.1
↑こう書いていたのを,↓こう書かなければいけないらしい.
Require ip 127.0.0.1
Order deny,allow Deny from all Allow from all
↑こう書いていたのを,↓こう書かなければいけないらしい.
Require all granted
人間とウェブの未来 - Apache 2.4系でのモダンなアクセス制御の書き方に詳しくまとまっている.