ダXI
- Summary
RPGツクール2000で作成されたXIのクローンゲーム
- XI 系

![Amazon - ゲーム - PlayStation the Best XI[sai]JUMBO](http://images-jp.amazon.com/images/P/B00005OV6K.09.MZZZZZZZ.jpg)

- Reference
OKASHIN FACTORY - RPGツクール2000
http://www5f.biglobe.ne.jp/~okka/RPG2000.html
ゲーム - PSone Books XI(sai)
ゲーム - PlayStation the Best XI[sai]JUMBO
ゲーム - XIゴ(サイゴ)
- Summary
RPGツクール2000で作成されたXIのクローンゲーム
- XI 系

![Amazon - ゲーム - PlayStation the Best XI[sai]JUMBO](http://images-jp.amazon.com/images/P/B00005OV6K.09.MZZZZZZZ.jpg)

- Reference
OKASHIN FACTORY - RPGツクール2000
http://www5f.biglobe.ne.jp/~okka/RPG2000.html
ゲーム - PSone Books XI(sai)
ゲーム - PlayStation the Best XI[sai]JUMBO
ゲーム - XIゴ(サイゴ)
- Summary



- Reference
LOADED Studio - Blip & Blop - Balls of Steel -
http://www.loaded-studio.com/blip&blop.php
- Reference
XEvil
http://www.xevil.com/
Fullgames.sk - XEvil
http://www.fullgames.sk/hra.asp?id=813
- Summary
インクリメンタル検索が可能な辞書.
- Reference
ObjectGraph Dictionary
http://www.objectgraph.com/dictionary/
- via
www.textfile.org - 2005-01-27
http://www.hyuki.com/tf/200501#i20050127133812
- Source
JavaScript::Bookmarklet Blog - 2005-01-26 - nofollow属性のリンクを強調より
javascript:( function(){ var links=document.getElementsByTagName('a'); for(i=0;i<links.length;i){ var theLink=links[i]; if(theLink.getAttribute('rel')=='nofollow'){ theLink.style.backgroundColor='red'; theLink.style.color='white'; theLink.style.fontWeight='bold'; theLink.style.textDecoration='none'; } } } )();
- Summary
head 要素の profile 属性を次のように記述
<head profile="http://purl.org/net/ns/metaprof">
- Summary
Button Maker[2004-03-27-2] のようなボタンを作成するツール
- Reference
http://www.lucazappa.com/brilliantMaker/buttonImage.php
- via
www.textfile.org - 2005-01-26
http://www.hyuki.com/tf/200501#i20050126174203
- Wikipedia へのリンクプラグイン [2005-11-27]改良
### Wikipedia へのリンクプラグイン # usage: {{wikipedia('word','country')}} sub wikipedia { my $default = 'ja'; my ($str,$country) = @_; if (!defined($country)){ $country = $default; } my $prefix = qq(http://$country.wikipedia.org/wiki); my $enc = Jcode->new($str)->utf8; $enc =~ s/([^0-9a-z_ ])/'%'.unpack('H2', $1)/gei; $enc =~ s/\s/+/g; return qq(<a href="$prefix/$enc" title="Wikipedia ($country) - $str">Wikipedia - $str</a>); }
### Wikipedia へのリンクプラグイン # usage: {{wikipedia('word')}} sub wikipedia { my ($str) = @_; my $prefix = q(http://ja.wikipedia.org/wiki); my $enc = Jcode->new($str)->utf8; $enc =~ s/([^0-9a-z_ ])/'%'.unpack('H2', $1)/gei; $enc =~ s/\s/+/g; return qq(<a href="$prefix/$enc" title="Wikipedia - $str">Wikipedia - $str</a>); }