bitbucketをubuntu上で設定

Mar 11, 2012
AD:

bitbucketを使ってソースは管理しているのですが、下記のようにubuntuで設定しました。

上記ができたら、id_rsa.pubを下記のページからあげて認証は終了
https://bitbucket.org/account/#ssh-keys

Bad owner or permissions

下記のようなエラーがでました。
sshの設定によりますが、パーミッションの設定を変更で解決しました。

Twitter: 0 | Facebook: 0 | Google Plus: 0 | Hatena: 4 | Pocket: 2 | Total: 6 | Feedly: 0

vimにnginxのconfを色付け

Feb 22, 2012
AD:

http://www.vim.org/scripts/script.php?script_id=1886
上記のサイトからnginxのSyntaxをDLしてくる

こんな感じです。

で完了

Twitter: 0 | Facebook: 0 | Google Plus: 0 | Hatena: 0 | Pocket: 0 | Total: 0 | Feedly: 0

PostgresSQL9.1.2の設定 in CentOS5.7

Feb 21, 2012
AD:

基本設定部分

[php]
$ vi /var/lib/pgsql/9.1/data/postgresql.conf
#listen_addresses = ‘localhost’

listen_addresses = ‘*’
#port = 5432

port = 5432

ログの名前
log_filename = ‘postgresql-%Y-%m-%d_%H%M.log’
ログのローテーション
log_rotation_age = 1d
ログのサイズ
log_rotation_size = 2MB
同名のファイルが存在する時は上書きする。ローテーション用。
log_truncate_on_rotation = on
ログのレベル
log_min_error_statement = error
[/php]

ログの細かい内容はこちらを参照してください。
http://lets.postgresql.jp/documents/technical/log_setting

セキュリティ設定部分

[php]
$ vi /var/lib/pgsql/9.1/data/pg_hba.conf
ローカル接続の許可
local all all peer
外部からの接続の設定
host all all 123.123.123.123/32(接続元のIP) password
[/php]

Twitter: 0 | Facebook: 0 | Google Plus: 0 | Hatena: 0 | Pocket: 0 | Total: 0 | Feedly: 0

lessで@importしたらcacheが残って変更が反映されない件

Feb 13, 2012
AD:

WordPressのRoots Themeの中でlessが使われているのですが、ちょっとトラブったのでそのメモです。

問題は、lessの@importしたらcacheが残って変更が反映されない

それで、調べると同じような問題に起きている人がいる模様。
https://github.com/cloudhead/less.js/issues/47

解決方法

結局、下記のスクリプト追加して解決できました。
[php]
[/php]

ちなみに、bootstrap.lessの中はこんな感じです。

[php]
// CSS Reset
@import “reset.less”;

// Core variables and mixins
@import “variables.less”; // Modify this for custom colors, font-sizes, etc
@import “mixins.less”;

// Grid system and page structure
@import “scaffolding.less”;
@import “grid.less”;
@import “layouts.less”;
[/php]

Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 1 | Pocket: 1 | Total: 2 | Feedly: 0

CentOS5.7にPostgresSQL9.1.2をyumでインストール

Feb 13, 2012
AD:

Postgresのサイトからrpmを取得
http://yum.postgresql.org/reporpms/

インストール

[php]
$ wget http://yum.postgresql.org/9.1/redhat/rhel-5-i386/pgdg-centos91-9.1-4.noarch.rpm
$ rpm -ivh pgdg-centos91-9.1-4.noarch.rpm
$ vi /etc/yum.repos.d/CentOS-Base.repo
[base]の中に下記のコメントを追加
exclude=postgresql*
[update]の中に下記のコメントを追加
exclude=postgresql*
$ yum -y install postgresql-server
Installed:
postgresql91-server.i386 0:9.1.2-1PGDG.rhel5
Dependency Installed:
postgresql91.i386 0:9.1.2-1PGDG.rhel5 postgresql91-libs.i386 0:9.1.2-1PGDG.rhel5
[/php]

初期設定

[php]
$ chkconfig postgresql-9.1 on
DBの初期化
$ service postgresql-9.1 initdb
データベースを初期化中: mkdir: ディレクトリ `/var/lib/pgsql/9.1/data/pg_log’ を作成できません: ファイルが存在します
$ rm -rf /var/lib/pgsql/9.1/data/pg_log/
$ service postgresql-9.1 initdb
データベースを初期化中: [ OK ]
$ service postgresql-9.1.2 start
postgresql-9.1 サービスを開始中: [ OK ]
$ su – postgres
$ psql -V
psql (PostgreSQL) 9.1.2
[/php]

設定関連

[php]
基本関係
$ vi /var/lib/pgsql/9.1/data/postgresql.conf
セキュリティ関係
$ vi /var/lib/pgsql/9.1/data/pg_hba.conf
[/php]

Twitter: 0 | Facebook: 0 | Google Plus: 0 | Hatena: 0 | Pocket: 0 | Total: 0 | Feedly: 0

Ubuntuにlessをインストール&設定

Feb 11, 2012
AD:

最近、WordpressのRoots Themeを触っているのですが、その中でlessが使われていたのでそのメモ

lesscの場所を確認

コマンドを入力させやすくしておく

: Could not find RubyGem less と出てエラー

調べてみると、sudoでインストールしたので、lesscのコマンドもsudoで実行しないといけないらしい。。。

既に、Rubyの開発環境はrvmで導入済みの状態です。

せっかくなので、Roots Themeのlessでのcssを書き出しもメモしておきます。

ちなみに、上のRoots Themeは、標準では、css/の中にあるcssを読み込むんですが、下記のやり方だとlessの中に書き出されます。

上記のコマンドを試したけどダメだったので、./inc/roots-actions.phpを書き換えました。

Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 1 | Pocket: 0 | Total: 1 | Feedly: 0

CentOS6.2にOpenssh 5.9p1をインストール時にRPM ビルドエラー:

Feb 6, 2012
AD:

参考サイト:SSHサーバー構築(OpenSSH)

下記のエラーがでたので、必要なパッケージをインストール

(More…)

Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 1 | Pocket: 2 | Total: 3 | Feedly: 0

My friend is a Magic teacher

Oct 24, 2011
AD:

My friend is a Magic teacher

Card magic
I have an interesting friend, he is a Magic teacher in Sydney. He also has a business providing Magic Lessons in Sydney. I saw some of his card tricks. He is great, I really enjoyed it and was surprised by his technique!!

If you are interested in Magic and you want to be a Magician or you want to learn Magic, you can contact him.
His name is Michael.
HP:Learn Card Tricks | Magic Courses | Magic Classes & Lessons

友達はマジシャンの先生ン

Card magic
以前、Wordpressのイベントで出会った友人は実はマジシャンという事実を今日しりました。
さっそく彼のマジックを観してもらいました。
かなりの腕前で、びっくりしました。プライベートでマジックを教える先生もしているようです。
もし興味があるようであれば、連絡してみてください。

▼連絡先
名前:マイケル
HP:Learn Card Tricks | Magic Courses | Magic Classes & Lessons

Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 0 | Pocket: 0 | Total: 0 | Feedly: 0

Finally I found the headphones(Philips SHE8005) for the HTC DesireHD in Australia

Sep 10, 2011
AD:

Finally I have found the headphones for the HTC DesireHD in Australia

Finally I found the headphones for the HTC DesireHD.
I have tried some headphones for my phone but today I found the right headphones!!

It is Philips SHE8005.

Philips SHE8005 In-Ear Headset for Mobile Phones
Price:$51.03
Maker:Philips
Category:Accessory
Product Type:PHONE_ACCESSORY
Model:SHE8005/10
Amount:1
Detail:In-line remote for volume and call control, Ultra-soft silicone caps sit comfortably in your ears Extra 3.5 mm plug for Nokia, Sony Ericsson, Samsung Angled Acoustic Pipe channels directional and precise sound A 1.2 m long cable that is ideal for outdoor use Sensitive and sleek mic for picking up your voice clearly
by 通販最速検索 at 2011/09/10

It was very hard to find right headphones for the HTC DesireHD because it often doesn’t work (some functions of the product). For example I bought iLuv iEA15. It could use with a microphone and It could use calling by switch but it could not control music and volume. So when I went to electrical goods shops I always looked for headsets. Finally I found it today.

Now I can control music(with VLC App) and phone with Philips SHE8005 and sound is nice but I think it is not clear sound(Just a little).
I am strongly recommended if you look for headphones for HTC with Android phone!!

ついに見つけた HTC DesireHD のイヤホン

やっと今日、HTC DesireHDにあったイヤホンを見つけました。
以前からいろいろと物色はしていたのですが、今日ついに、フル機能が使えて、安くて、音質もいいものを見つけることができました。

購入したヘッドセットPhilips SHE8005

PHILIPS ヘッドセット 密閉ダイナミック型 ヘッドフォン ブラック SHE8005/10
新品最安価格:¥ 3,618 (2店出品)
売上ランク:48834位
レビュー平均:5.05.0点 (1人がレビュー投稿)
5.05.0点 良いですねえ
発売日:2011-07-15
メーカー:Philips
カテゴリー:付属品
プロダクトタイプ:PHONE_ACCESSORY
モデル:SHE8005/10
数量:1
付属電池:0
by 通販最速検索 at 2011/09/10

Philips SHE8005だと、マイク、電話の着信&切る、音楽の再生&停止&スキップ&音声コントロールができます。
しかも、価格が$35でした。(ちかくに、BingLee)
音も問題ありませんが、すこしだけこもって聞こえます。
(こもっているのは全然気にならない程度です、比較に使したのはこちらのPHILIPS イヤフォン SHE9700-A
これはかなりおすすめです。

Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 0 | Pocket: 0 | Total: 0 | Feedly: 0

No route matches “/rails/info/properties Rails3+passenger-3.0.7

Jul 27, 2011
AD:

passengerとapacheでRailsのテスト環境を作成して最後に下記のエラー
[php]No route matches “/rails/info/properties[/php]

対処法

railsの環境設定をapacheのconfに書き込んでやるとあっさり解決できました。
[php]RailsEnv development[/php]

Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 0 | Pocket: 0 | Total: 0 | Feedly: 0

Search Keyword

Meta

face Ayumi Mizoshiri
WEB developer

FacebookPage

Popular Posts

Sorry. No data so far.

ARCHIVES