memo.xight.org

01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

2006-07-14 Fri

NcFTP の使い方

- Summary

get -R filename 再帰的に取得
get -f filename 強制的に上書き

カテゴリ: [Linux][stub]

EVERY EXTEND EXTRA - Every Extend の続編が PSPで発売

- Refernce
3分ゲーコンテストで優勝した Every Extend[2004-05-10-1] の続編.
Amazon - EVERY EXTEND EXTRA エブリ エクステンド エクストラ: ゲーム

- Reference
Every Extend Extra Official Web
http://www.everyextendextra.com/

3分ゲーコンテスト
http://3punge.com/

EVERY EXTEND EXTRA エブリ エクステンド エクストラ: ゲーム

- via
窓の杜 - 【NEWS】フリーソフトが原案のPSPゲーム「Every Extend Extra」のPC用体験版が公開
http://www.forest.impress.co.jp/article/2006/07/14/everyextendextra.html

カテゴリ: [Game]

Firefox の検索ボックスでインクリメンタルサーチ

- Reference
Creating MozSearch plugins - MDC
http://developer.mozilla.org/ja/docs/Creating_MozSearch_plugins

2nd life - Firefox 2.0 Beta 1 で Rails のドキュメントをインクリメンタルサーチ
http://d.hatena.ne.jp/secondlife/20060713/1152790054

カテゴリ: [Firefox]

JavaScriptでリストをスクロール

- Summary
livedoor knowledge の質問がスクロールしている部分について.
gimmick.js を読んでみた.

function scrollTips(id, interval) {
	var tips = document.getElementById(id);
	removeWithoutElement(tips);
	var height = getPixcelValue(tips.style["height"]);
	var beforeLast = tips.childNodes.length - 1;
	var orgScrollTop = tips.scrollTop;
	if (orgScrollTop == (height * beforeLast)) {
		while (--beforeLast >= 0) {
			tips.appendChild(tips.removeChild(tips.firstChild));
		}
		orgScrollTop = 0;
		tips.scrollTop = 0;
	}
	var i = 1;
	var scrollDelay = window.setInterval(
		function() {
			tips.scrollTop = orgScrollTop + i;
			if (++i > height) {
				clearInterval(scrollDelay);
				scrollDelay = 0;
			}
		}
	, interval);
}
 
function removeWithoutElement(node) {
	var child = node.firstChild;
	while (child) {
		var nextSibling = child.nextSibling;
		if (child.nodeType != 1) {
			node.removeChild(child);
		}
		child = nextSibling;
	}
}
 
function getPixcelValue(pixcel) {
	var px = pixcel.indexOf("px");
	return (px == -1) ? pixcel: pixcel.substring(0, px);
}


<html>
	<head>
		<style>
			.tips {
				line-height: 125%;
				height: 65px;
				overflow:hidden;
			}
		</style>
	</head>
	<body>
		<div id="tipsList" style="float:right;width:153px;height:65px;overflow:hidden;">
			<div class="tips"><a href="#">1件目のコンテンツです。</a></div>
			<div class="tips"><a href="#">2件目のコンテンツです。</a></div>
			<div class="tips"><a href="#">3件目のコンテンツです。</a></div>
			<div class="tips"><a href="#">4件目のコンテンツです。</a></div>
			<div class="tips"><a href="#">5件目のコンテンツです。</a></div>
		</div>
		<script type="text/javascript">
			window.setInterval("scrollTips('tipsList', 15)", 2000);
		</script>
	</body>
</html>


- Reference
livedoor knowledge
http://knowledge.livedoor.com/

カテゴリ: [JavaScript]

todo.sh - ターミナルでToDo管理

- Summary


- Reference
Todo.txt - Task tracking for command line lovers
http://todotxt.com/

- via
MYCOMジャーナル - ターミナルでTODO管理 - todo.sh 1.6
http://journal.mycom.co.jp/news/2006/07/05/345.html

phpspot開発日誌 - 2006-07-14 - ターミナルでTODO管理する:todo.sh
http://phpspot.org/blog/archives/2006/07/todotodosh.html

カテゴリ: [Software][Linux]

GTD Style Wiki - Wiki + GTD

- Reference
GTD Style Wiki
http://www.geocities.jp/wikistyle/gtd/
LifeHackLife: GTD Style Wiki
http://blogstyle.seesaa.net/article/20136709.html

- via
オレンジニュース - 2006-07-13
http://secure.ddo.jp/~kaku/tdiary/20060713.html#p09

カテゴリ: [Wiki]

Automatic Magazine Layout - PHPで画像を雑誌風に自動レイアウトするクラス

- Reference
A List Apart - 2006-07-11 - Automatic Magazine Layout
http://www.alistapart.com/articles/magazinelayout

- via
phpspot開発日誌 - 2006-07-14 - PHPで画像を雑誌風に自動レイアウトするクラス
http://phpspot.org/blog/archives/2006/07/php_50.html

カテゴリ: [PHP]
2006-07 / 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

Color Reference

ChangeLogを検索
携帯電話からアクセス!

カテゴリ

最近の話題

リンク

過去ログ

Google

QR Code

Since
2002-11-28
Update
2008-02-20 21:23
Copyright © 2005 xight.org All Rights Reserved.