Archive for 2007

« Previous PageNext Page »

[mysql] get top 10

16 August 2007

if you need top 10 rows from table ordered by point, you should use

SELECT * FROM table ORDER BY point LIMIT 10

No Comments »

[javascript] no compatibility of getElementById

10 August 2007

In IE, getElementById aquires element from name and id.
In firefox, getElementById aquires element from only id.

No Comments »

pooping

9 August 2007

pooping.jpg

No Comments »

[css] difference between id and class

7 August 2007

id must be unique in a page. id is used by stylesheet, javascript and link tag.
We can specify an id using #.

class don’t need to be unique.
class is only used by stylesheet.

No Comments »

angry

7 August 2007

070807_11530001.jpg

No Comments »

smiling?

6 August 2007

smiling.jpg

No Comments »

in a swaddling clothe

5 August 2007

ryusuke.jpg

No Comments »

Yawning

3 August 2007

img_2508.JPG

No Comments »

My son was born at July 24th 2007

24 July 2007

img_2500.JPG

weight: 3146g
blood type: B+

2 Comments »

[java] How to increase runtime heap memory

20 July 2007

“mx” option can increase runtime heap memory.
If you need 256MB heap memory, command is

% java -Xmx256m ex.test.MainClass

No Comments »

« Previous PageNext Page »