なんだろうなぁ。と気になっていたが、特にベンチマークなどで数値比較した結果を見ていないので気のせいかとも思っていた。
しかし、電源関係の設定をいじろうとしてその項目を目にしたとき、50%になっていたのに気がついた。
なぜ50%になってしまったのかは不明だ。
少し自分で驚いたのは、このVAIO Type Zの性能を体でおぼえていたこと。
性能の差を数値でなく感覚で捉えたのだからすごいなぁと。
人間の感覚っておもしろい。
| カテゴリ別目次ページ | 新着記事 | 気軽にコメント下さい |
//--
//-- Augmented methods for the JavaScript
//-- Number(), Array(), String() and Date() objects
//--
// Clamp a number to a range
Number.prototype.clamp = function(min,max)
{
var c = this;
if(c < min)
c = min;
if(c > max)
c = max;
return c;
};
// Add indexOf function if browser does not support it
if(!Array.indexOf) {
Array.prototype.indexOf = function(item,from)
{
if(!from)
from = 0;
for(var i=from; i<this.length; i++) {
if(this[i] === item)
return i;
}
return -1;
};}
// Find an entry in a given field of the members of an array
Array.prototype.findByField = function(field,value)
{
for(var t=0; t<this.length; t++) {
if(this[t][field] == value)
return t;
}
return null;
};
// Find an entry in an array. Returns the array index or null
// @Deprecated: Use indexOf instead
Array.prototype.find = function(item)
{
var i = this.indexOf(item);
return i == -1 ? null : i;
};
var ontagclick = function(e) {
if (!e) var e = window.event;
var tag = this.getAttribute("tag");
var t=store.getTiddler(title);
if (!t || !t.tags) return;
if (t.tags.find(tag)==null)
{t.tags.push(tag)
if (logmode=="true"){addcomment(t,tag);}}
else
{t.tags.splice(t.tags.find(tag),1)};
// story.saveTiddler(title);
store.saveTiddler(t.title, t.title, t.text, t.modifier,
t.modified, t.tags, t.fields, true, t.created);
story.refreshTiddler(title,null,true);
return false;
};
<<monkeyTagger source:"Status">><<monkeyTagger source:"Context">>を挿入しておきたい。
<<newTiddler text:{{store.getTiddlerText("GTDTemplete")}}>>
<<monkeyTagger source:"Status">><<monkeyTagger source:"Context">>を書いておく。
アクションが完了してチェックボックスにチェックを入れたら
自動でReminder表示一覧から消える
<<reminder day:30 leadtime:10 title:勤務表提出 >>となる。これを「上司に勤務表提出」という名前のTiddlerに記述しておく。
<<reminder day:30 leadtime:10 title:[_]勤務表提出 >>
<<reminder day:30 leadtime:10 title:[_(上司に勤務表提出|Done)]勤務表提出 >>とする。
<<showReminders leadtime:1>>によって表示された、チェックボックス付きのReminderにチェックを入れると、
<<showReminders leadtime:1 tag:"!Done">>これで、"Done"のタグが付いていないReminderが表示される。
$ jar xvf autopager_.jar2.
$ jar cf autopager.jar content/ locale/ skin/4.

| 日 | 月 | 火 | 水 | 木 | 金 | 土 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 | 20 | 21 |
| 22 | 23 | 24 | 25 | 26 | 27 | 28 |
| 29 | 30 |