AD:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#Vagrantfileの再読み込み(一度落ちるから気をつけて) $ vagrant reload #VMの状況の確認 $ vagrant status #まだつかったことないけど、一時的な停止 $ vagrant suspend #suspendからの復帰 vagrant resume #シャットダウン $ vagrant halt #立ち上げ $ vagrant up # 自分のBoxを作れます。これでデザイナーさんなりにboxをあげて共有してあげてください。便利!! $ vagrant package # We can then restore it with the same command we used to set up our virtual machine in the first place. $ vagrant box add # delete our virtual machine $ vagrant destroy |
こんな使い方もあります
たとえば、Chefなり、berkshelfなりを使っていたら、下記のようなパラメータを入れることも可能です。
upしてから、reload –provisionなどをやっていたのを1度で済ませます。
Twitter: 0 | Facebook: 0 | Google Plus: 0 | Hatena: 31 | Pocket: 33 | Total: 64 | Feedly: 0
AD:
最近開発に、Netbeans6.7を使っているんですがDBのER図を提出しなくていけなくなったので、プラグインを探していて、NetBeans UML® Projectからプラグインを発見したので、そのメモです。
JDKのダウンロードとインストール
まずぼくのNetbeans6.7は、JAVAの環境がJREで動いているので、インストールできないとのこと
なので、JDKをインストール
http://java.sun.com/javase/ja/6/download.html
からJDK6をダウンロードします。
さっそくインストロール
netbeans.confの書き換え
ファイルの場所は、C:Program FilesNetBeans 6.7etcnetbeans.conf
下記の内容で書き換えました。
|
netbeans_jdkhome="C:Program FilesJavajre6"  ↓ #netbeans_jdkhome="C:Program FilesJavajre6" 追加 netbeans_jdkhome="C:Program FilesJavajdk1.6.0_14 |
画面
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
AD:
I’m looking for my job in Sydney. Because I will live in Sydney on this summer.
And my fiancee is Australian so we will live in Sydney.
I am the manager of systems.
At present, my job is managing our servers (about 20 servers in total).
And I make CMS & portal sites. I also make programming documents.
My IT skills:
。ヲI can manage Linux and Unix servers.
。ヲI can use PHP, Javascript, html, css.
。ヲI can use Photoshop,Illustrater,.Flash,Premia.
。ヲI can manage and design web sites & systems.
So I checked about my job’s keywords in SEEK.
Date Base
Oracle |
1854 |
Mysql |
348 |
DB2 |
191 |
SQLServer |
21 |
Postgres |
12 |
Programming
.NET |
1467 |
Java |
1331 |
PHP |
965 |
Javascript |
804 |
Ajax |
430 |
Perl |
279 |
Python |
113 |
Ruby |
67 |
Framework for PHP
PHP Zend Framework |
94 |
PHP CakePHP |
20 |
PHP symfony |
5 |
OS
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
AD:
symfonyの設定
|
$ mkdir localhost <span> ← ディレクトリの作成</span> $ cd localhost/ |
プレロジェクトを作成していきます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
$ symfony init-project project_name <span> ← プロジェクトの作成</span> >> dir+ /home/hogehoge/localhost/config >> file+ /home/hogehoge/localhost/config/schema.yml >> file+ /home/hogehoge/localhost/config/databases.yml >> file+ /home/hogehoge/localhost/config/rsync_exclude.txt >> file+ /home/hogehoge/localhost/config/properties.ini >> file+ /home/hogehoge/localhost/c.../ProjectConfiguration.class.php >> file+ /home/hogehoge/localhost/config/propel.ini >> dir+ /home/hogehoge/localhost/doc >> dir+ /home/hogehoge/localhost/log >> dir+ /home/hogehoge/localhost/web >> file+ /home/hogehoge/localhost/web/robots.txt >> dir+ /home/hogehoge/localhost/web/js >> file+ /home/hogehoge/localhost/web/.htaccess >> dir+ /home/hogehoge/localhost/web/uploads >> dir+ /home/hogehoge/localhost/web/uploads/assets ・ ・ $ symfony init-app myproject <span> ← アプリの指定の作成</span> |
Apacheの設定
|
# vi /etc/httpd/conf/httpd.conf <span> ← Apacheの設定</span> <virtualhost> ServerName localhost DocumentRoot "/home/hogehoge/localhost/web" DirectoryIndex index.php Alias /sf "/usr/share/pear/data/symfony/web/sf" #permit rewrite <directory> AllowOverride All </directory><directory> allow from all </directory></virtualhost> |
Apacheの再起動で、設定した画面にアクセスして下記の画面がでると設定完了
Twitter: 0 | Facebook: 0 | Google Plus: 0 | Hatena: 0 | Pocket: 0 | Total: 0 | Feedly: 0
AD:
今開発中のシステムの開発方法を明記しておきます。
PHPで開発しております。
- フレームワーク
- symfony まだまだ使いこなせていない
- テンプレートエンジン
- Smarty
ドキュメント、まだまだ知らないことがたくさんあります。
- データベースのコネクション
- PDO
はじめはやっかいだったが、今はないともう離れられない。
- テスト
- PHPUnit
まだ開発途中なので、これから検証してみる感じです。
- OS
- CentOS 5 final
- データベース
- MySQL 5.0.45
phpMyAdminとかで管理してるけど、あんまりセキュリティ上あんまりよくないとかで使ってない人が多いのを最近よく聞く。
- エディタ
- Emacs 22.1
Meadowは重いのがなぁ。。。早くなる方法ないのかな
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
AD:
今日生まれて初めてPythonを触りました。
classの勉強のためにPythonからRubyを触るといいと、友人から言われたので触り始めました。
Rubyはその友人が触っていて悔しいし、オーストラリアでは結構Pythonも主流という理由で選びました。
Python 1日目
環境
CentOS 5.1
Python 2.4
メモ
名前の由来は、英国BBS放送の「モンティパイソン」からです。
コメントは#
|
#my first python. print "Hello Python" |
文の区切り文字は、セミコロン(;)
|
print "Hello Python"; print "How are you?" |
ブロックの範囲をインテンドで決めてるようです。
phpとか
|
if(a Pythonは <pre>def foo(a): if a 日本語表示 エンコードをしていないとエラーがでる # coding: エンコーディング名 <pre> # coding: Shift_JIS # coding: EUC-JP |
実行方法
|
python /home/www/test.py Hello Python |
Twitter: 0 | Facebook: 0 | Google Plus: 0 | Hatena: 0 | Pocket: 0 | Total: 0 | Feedly: 0
AD:
RPM によってインストールされたもの
|
$ rpm -q パッケージ名 |
Mysqlの確認方法
|
$ rpm -q mysql mysql-5.0.45-7.el5 |
httpdの確認方法
|
rpm -q httpd httpd-2.2.3-11.el5.centos |
CentOSのバージョンの確認方法
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
AD:
プログラムを外注や、他人にお願いする際ですが、画面遷移を作るように心がけています。
その際によく忘れることがあるので、メモしておきます。
input typeのbuttonの設定です。
|
<input type="button" value=" 確認画面へいく " onClick="location.href='次の画面のURL'"> |
上記の設定で、ボタンにリンクを指定することができます。
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
AD:
I will go to OPEN SOURCE CONFERENCE 2008 Kansai.
I will attend these classes.
First day:2008/07/18
Second day:2008/07/19
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