ハイクオリティー 無料WordPressテーマ20選

Template タグ: No Comments »

hatena ハイクオリティー 無料WordPressテーマ20選
 ハイクオリティー 無料WordPressテーマ20選
facebook ハイクオリティー 無料WordPressテーマ20選
google buzz ハイクオリティー 無料WordPressテーマ20選
yahoo ハイクオリティー 無料WordPressテーマ20選
livedoor ハイクオリティー 無料WordPressテーマ20選
 ハイクオリティー 無料WordPressテーマ20選
friendfeed ハイクオリティー 無料WordPressテーマ20選

wordpress無料テンプレート20選です。さて、ここも変えますか。

1.Gallery Theme

wp27theme08 ハイクオリティー 無料WordPressテーマ20選

2.Milano Theme

wp27theme06 ハイクオリティー 無料WordPressテーマ20選

3.Grid Focus Theme

wp27theme11 ハイクオリティー 無料WordPressテーマ20選

4.The Unstandard Theme

wp27theme05 ハイクオリティー 無料WordPressテーマ20選

5.Portfolio WPESP Theme

wp27theme20 ハイクオリティー 無料WordPressテーマ20選

via 20 High Quality Free WordPress 2.7 Themes

emacsをrails仕様にカスタマイズ2

RoR タグ: 1 Comment »

hatena emacsをrails仕様にカスタマイズ2
 emacsをrails仕様にカスタマイズ2
facebook emacsをrails仕様にカスタマイズ2
google buzz emacsをrails仕様にカスタマイズ2
yahoo emacsをrails仕様にカスタマイズ2
livedoor emacsをrails仕様にカスタマイズ2
 emacsをrails仕様にカスタマイズ2
friendfeed emacsをrails仕様にカスタマイズ2

手元にmac環境しかありませんのでmacで話を進めます。
まずはCarbon Emacsをダウンロード
次にrinariをダウンロード
gitコマンドを入れてない人は
Macの人はmac portsをインストールしてください

sudo port install git-core +gitweb +svn

GUIが良い人はporticusからでもgitを入れてください。
さて、gitのインストールがすんでいる人はrinariとrhtml-mode(erbのハイライト)をインストールします。
インストールする場所は何処でも良いのですがここではホームディレクトリ以下の~/.emacs.d/にインストールします

cd ~/.emacs.d
git clone git://github.com/eschulte/rinari.git
cd rinari
git submodule init
git submodule update
cd ~/.emacs.d
git clone git://github.com/eschulte/rhtml.git

rinariにはsnippetが入っていないのでyasnippetRails snippetsをインストールします。
yasnippetのダウンロードページにはyasnippet-bundleとyasnippetがありますが
今回はyasnippet-0.5.10.tar.bz2をダウンロード

cd ~/.emacs.d
curl -O http://yasnippet.googlecode.com/files/yasnippet-0.5.10.tar.bz2
tar jxf yasnippet-0.5.10.tar.bz2
cd yasnippet-0.5.10
mv * ../
cd ../
rm -rf yasnippet-0.5.10
rm yasnippet-0.5.10.tar.bz2
cd ~/.emacs.d/snippets
git clone git://github.com/eschulte/yasnippets-rails.git

これでrailsの開発環境が整いましたが、linum(行番号表示機能)とelscreen(タブ機能)を追加します

cd ~/.emacs.d/
curl -O http://stud4.tuwien.ac.at/~e0225855/linum/linum.el
curl -O ftp://ftp.morishima.net:21//pub/morishima.net/naoto/ElScreen/elscreen-1.4.6.tar.gz
tar xzvf elscreen-1.4.6.tar.gz
mv ~/.emacs.d/elscreen-1.4.6/elscreen.el ~/.emacs.d/
rm -rf ~/.emacs.d/elscreen-1.4.6
rm ~/.emacs.d/elscreen-1.4.6.tar.gz

次に.emacsの設定に移ります。

cd ~/
vi .emacs

なんでviなんだって話だと思うんですが、emacsにまだなれてなくて。。

;;; utf8
(set-language-environment "Japanese")
(set-terminal-coding-system 'utf-8)
(set-keyboard-coding-system 'utf-8)
(set-buffer-file-coding-system 'utf-8)
(setq default-buffer-file-coding-system 'utf-8)

;;; base setting
(setq line-number-mode t) ;;カーソル行番号表示
(setq inhibit-startup-message t) ;;スタートアップメッセージ非表示
(setq-default tab-width 4) ;;tab4文字
(setq make-backup-files nil) ;;バックアップファイルを作らない
(setq visible-bell t) ;;警告音無し
(setq frame-title-format "%b") ;;タイトルにファイル名表示
(display-time) ;;時計表示
(auto-compression-mode t) ;;日本語info文字化け防止
(global-hl-line-mode) ;;行ハイライト
(tool-bar-mode nil) ;;ツールバー非表示
(show-paren-mode 1) ;;対応括弧ハイライト

;;; color
(setq initial-frame-alist
(append (list
 '(width . 120) ;;フレームの幅
 '(height . 40) ;;フレームの高さ
 '(top . 0) ;;Y 表示位置
 '(left . 340) ;;X 表示位置
)
initial-frame-alist))
(setq default-frame-alist initial-frame-alist)
(set-frame-parameter nil 'alpha 90 ) ;;windowの透明度設定

;;; theme-monokai
(custom-set-faces
 '(default ((t (:stipple nil :background "#272822" :foreground "#F8F8F2" :inverse-video nil :box nil :strike-through nil icon surprised emacsをrails仕様にカスタマイズ2 verline nil :underline nil :slant normal :weight normal :height 98 :width normal :family "outline-consolas"))))
 '(cursor ((t (:background "#F8F8F2" :foreground "#272822"))))
 '(font-lock-comment-face ((((class color) (min-colors 88) (background dark)) (:foreground "#75715E"))))
 '(font-lock-function-name-face ((((class color) (min-colors 88) (background dark)) (:foreground "#A6E22E"))))
 '(font-lock-keyword-face ((((class color) (min-colors 88) (background dark)) (:foreground "#F92672"))))
 '(font-lock-preprocessor-face ((t (:inherit font-lock-builtin-face :foreground "#66d9ef"))))
 '(font-lock-string-face ((((class color) (min-colors 88) (background dark)) (:foreground "#E6DB74"))))
 '(font-lock-type-face ((((class color) (min-colors 88) (background dark)) (:foreground "#66d9ef"))))
 '(font-lock-variable-name-face ((((class color) (min-colors 88) (background dark)) (:foreground "#FD971F"))))
 '(region ((((class color) (min-colors 88) (background dark)) (:background "#49483E"))))
 '(show-paren-match ((((class color) (background dark)) (:background "#3E3D32"))))
 '(variable-pitch ((t (:family "DejaVu Sans")))))

(setq load-path
(append
(list
(expand-file-name "~/.emacs.d/")
)
load-path))

;; Interactively Do Things (highly recommended, but not strictly required)
(require 'ido)
(ido-mode t)

;; Rinari
(add-to-list 'load-path "~/.emacs.d/rinari")
(require 'rinari)

;;; rhtml-mode
(add-to-list 'load-path "~/.emacs.d/rhtml")
(require 'rhtml-mode)
(add-hook 'rhtml-mode-hook
(lambda () (rinari-launch)))

;;; yasnippet
(require 'yasnippet)
(yas/initialize)
(yas/load-directory "~/.emacs.d/snippets/rails-snippets")

;;; line-number
(require 'linum)
(global-linum-mode t)
(setq linum-format "%5d")

;;; elscreen
(require 'elscreen)
;; PrefixキーをC-zに割り当て
(if window-system
 (define-key elscreen-map "\C-z" 'iconify-or-deiconify-frame)
  (define-key elscreen-map "\C-z" 'suspend-emacs))

エラーが出るようであればpluginのパスを環境に合わせて変えてみてください。
emacsを立ち上げて
emacs emacsをrails仕様にカスタマイズ2
こんな画面になれば成功です。
C-c ; wでmongrel起動
C-c C-cでmongrel終了
その他キーバインドはまた次の機会にでも書きたいと思います。
間違い等がありましたら教えて頂けると助かります。

emacsをrails仕様にカスタマイズ

RoR タグ: No Comments »

hatena emacsをrails仕様にカスタマイズ
 emacsをrails仕様にカスタマイズ
facebook emacsをrails仕様にカスタマイズ
google buzz emacsをrails仕様にカスタマイズ
yahoo emacsをrails仕様にカスタマイズ
livedoor emacsをrails仕様にカスタマイズ
 emacsをrails仕様にカスタマイズ
friendfeed emacsをrails仕様にカスタマイズ

さて、日々の開発はtextmateで行っているのですが、何となくemacsくらい使えないとだめかなぁと思い立ちCarbon Emacsをダウンロード
emacsはC++のコーディングにしか使った事なく、ほとんど使い方がわからなかったのですが、rinariを使うとかなりイケテルとの事でなんとなく入れてみました。
emacs emacsをrails仕様にカスタマイズ
textmateでも使っているmonokaiというテーマのパクリです。
.emacs.elにでも貼付けてください。

(custom-set-faces
'(default ((t (:stipple nil :background "#272822" :foreground "#F8F8F2" :inverse-video nil :box nil :strike-through nil icon surprised emacsをrails仕様にカスタマイズ verline nil :underline nil :slant normal :weight normal :height 98 :width normal :family "outline-consolas"))))
'(cursor ((t (:background "#F8F8F2" :foreground "#272822"))))
'(font-lock-comment-face ((((class color) (min-colors 88) (background dark)) (:foreground "#75715E"))))
'(font-lock-function-name-face ((((class color) (min-colors 88) (background dark)) (:foreground "#A6E22E"))))
'(font-lock-keyword-face ((((class color) (min-colors 88) (background dark)) (:foreground "#F92672"))))
'(font-lock-preprocessor-face ((t (:inherit font-lock-builtin-face :foreground "#66d9ef"))))
'(font-lock-string-face ((((class color) (min-colors 88) (background dark)) (:foreground "#E6DB74"))))
'(font-lock-type-face ((((class color) (min-colors 88) (background dark)) (:foreground "#66d9ef"))))
'(font-lock-variable-name-face ((((class color) (min-colors 88) (background dark)) (:foreground "#FD971F"))))
'(region ((((class color) (min-colors 88) (background dark)) (:background "#49483E"))))
'(show-paren-match ((((class color) (background dark)) (:background "#3E3D32"))))
'(variable-pitch ((t (:family "DejaVu Sans")))))

テーマは下記ページからの引用です。
I get so tired of searching for programming editor color schemes
いやあああつかいやすいわあああああ!
textmateとはまた違う操作感。textmateを使ってなかったら100%こちらを使うでしょうね!
ということでrails用にって何をって話で以下のplugin?とか入れてます。
ido
rinari
yasnippet+rails-snippets(スニペット)
linum(行表示)
elscreen(tab表示)
ruby-block(対応ブロック表示)
を使っています。反応があれば、emacs.elとpluginの設定でも次回書きますか。
あぁ。emacsよくわかってないので小汚くても良ければですが。

emacsをrails仕様にカスタマイズ2へ続く

背景ジェネレーター10選+α

Draft  No Comments »

hatena 背景ジェネレーター10選+α
 背景ジェネレーター10選+α
facebook 背景ジェネレーター10選+α
google buzz 背景ジェネレーター10選+α
yahoo 背景ジェネレーター10選+α
livedoor 背景ジェネレーター10選+α
 背景ジェネレーター10選+α
friendfeed 背景ジェネレーター10選+α

背景パターンを作成してくれるサイトです。リンク元のサイトにはロゴ作成やcss作成などその他有益な情報も掲載されています。

1.Pattern Cooler

patterncooler 背景ジェネレーター10選+α

2.Stripe Mania

stripemania 背景ジェネレーター10選+α

3.Dotted Background Generator

dottedbackground 背景ジェネレーター10選+α

4.Tartan Maker

tartanmaker 背景ジェネレーター10選+α

5.Striped Backgrounds

stripedbackgrounds 背景ジェネレーター10選+α

Read the rest of this entry »

jQueryでcoolなexposeエフェクト

JavaScript タグ: , No Comments »

hatena jQueryでcoolなexposeエフェクト
 jQueryでcoolなexposeエフェクト
facebook jQueryでcoolなexposeエフェクト
google buzz jQueryでcoolなexposeエフェクト
yahoo jQueryでcoolなexposeエフェクト
livedoor jQueryでcoolなexposeエフェクト
 jQueryでcoolなexposeエフェクト
friendfeed jQueryでcoolなexposeエフェクト

なにかしらのアテンションを操作性を崩さず与えたいという機会は多々あるかと思います。
jquery.exposeを使う事によりユーザーを直感的に導く事が出来ます。
jquery expose1 jQueryでcoolなexposeエフェクト
デモではフォームにフォーカスすると下記図のようになります。
jquery expose2 jQueryでcoolなexposeエフェクト
入力ミス等のエラーを出力する場合にも有効そうですね。
カスタマイズも容易で使い勝手が良いです。

site jquery.expose 1.0.1

レイアウトのきれいなサイト30選

Draft  No Comments »

hatena レイアウトのきれいなサイト30選
 レイアウトのきれいなサイト30選
facebook レイアウトのきれいなサイト30選
google buzz レイアウトのきれいなサイト30選
yahoo レイアウトのきれいなサイト30選
livedoor レイアウトのきれいなサイト30選
 レイアウトのきれいなサイト30選
friendfeed レイアウトのきれいなサイト30選

どれもお手本になるきれいなレイアウトです。

1.Portfolio project

07 01 porffolio project レイアウトのきれいなサイト30選

2.Panda Sofa

07 07 pandasofa レイアウトのきれいなサイト30選

3.Eye For Art

07 05 eyeforart レイアウトのきれいなサイト30選

4.iThink

07 14 ithink レイアウトのきれいなサイト30選

5.Pastorant Restaurant

07 16 pastorant レイアウトのきれいなサイト30選

その他は以下の引用元からどうぞ

via 30 Inspiring Web Design Layouts from deviantART

フリー背景ダウロードサイト PATTERN8

Template タグ: No Comments »

hatena フリー背景ダウロードサイト PATTERN8
 フリー背景ダウロードサイト PATTERN8
facebook フリー背景ダウロードサイト PATTERN8
google buzz フリー背景ダウロードサイト PATTERN8
yahoo フリー背景ダウロードサイト PATTERN8
livedoor フリー背景ダウロードサイト PATTERN8
 フリー背景ダウロードサイト PATTERN8
friendfeed フリー背景ダウロードサイト PATTERN8

背景の連続パターンをdownloadできるサイトのご紹介。
奇麗な背景が90種類近くあります。こういう背景って色々使えますよね。
商用利用も可との事ですが、規約を再度ご確認ください。

pattern8 フリー背景ダウロードサイト PATTERN8

site PATTERN8

jQuery フォーム拡張プラグイン15+

JavaScript タグ: No Comments »

hatena jQuery フォーム拡張プラグイン15+
 jQuery フォーム拡張プラグイン15+
facebook jQuery フォーム拡張プラグイン15+
google buzz jQuery フォーム拡張プラグイン15+
yahoo jQuery フォーム拡張プラグイン15+
livedoor jQuery フォーム拡張プラグイン15+
 jQuery フォーム拡張プラグイン15+
friendfeed jQuery フォーム拡張プラグイン15+

1.QuickSelect

quickselect jQuery フォーム拡張プラグイン15+

2.SexyCombo

sexycombo jQuery フォーム拡張プラグイン15+

3.prettyCheckboxes

prettycheckboxes jQuery フォーム拡張プラグイン15+

4.jQuery Date Range Selector

daterangeselector jQuery フォーム拡張プラグイン15+

5.jQuery Date Picker

datepicker jQuery フォーム拡張プラグイン15+

その他は以下の引用元からどうぞ

via 15+ Excellent jQuery Plugins To Enhance HTML Forms

美しいDrupalテーマ25選

Template タグ: No Comments »

hatena 美しいDrupalテーマ25選
 美しいDrupalテーマ25選
facebook 美しいDrupalテーマ25選
google buzz 美しいDrupalテーマ25選
yahoo 美しいDrupalテーマ25選
livedoor 美しいDrupalテーマ25選
 美しいDrupalテーマ25選
friendfeed 美しいDrupalテーマ25選

Drupalのテーマをご紹介。私はblog作成はwordpressサイト作成はdrupalを使っているのですが、drupalはホントよく出来ています。モジュールもたくさんあり、小中規模のCMSとしてはNo1ではないでしょうか。Modxも好きですが。

Acquia Marina

acquia marina 美しいDrupalテーマ25選
ver6対応

Chrysalis

colourise 美しいDrupalテーマ25選
ver6対応

Dark Elegance

darkelegance 美しいDrupalテーマ25選
ver6対応

Color Paper

colorpaper 美しいDrupalテーマ25選
ver6対応

Absynthe

absynthe 美しいDrupalテーマ25選
ver6対応

Read the rest of this entry »

jQuery テクニック18選

JavaScript タグ: No Comments »

hatena jQuery テクニック18選
 jQuery テクニック18選
facebook jQuery テクニック18選
google buzz jQuery テクニック18選
yahoo jQuery テクニック18選
livedoor jQuery テクニック18選
 jQuery テクニック18選
friendfeed jQuery テクニック18選

いざJQueryを使おうとする時にあれ、なんだっけとなる事がしばしば。という事でjQueryメモ。

1.jQuery tabs

jquery tabs jQuery テクニック18選

2.jQuery cycle

jquery cycle jQuery テクニック18選

3.Coda Bubble

coda bubble jQuery テクニック18選

4.jQuery Zoom

jquery zoom jQuery テクニック18選

5.Flip Box

flipbox jQuery テクニック18選

Read the rest of this entry »

WP Theme & Icons by N.Design Studio
Entries RSS Comments RSS