忙的一塌糊涂
作者:泡泡糖 日期:2008-04-30
糖糖爬爬爬
作者:子香 日期:2008-04-21
今天又是下了一天的雨,晚上回来糖糖又尿漂漂啦,呵呵。不过小家伙现在一放到床上就很兴奋,像个小青蛙那样跳啊跳爬呀爬。记得7个多月的时候,他还是不会爬,放到床上就哭给你看,肚皮贴到床上,手脚并用也挪不动一步,而他奶奶也是他一哭就受不了赶紧抱起来了,为了给糖糖好好练爬,我们三个人给他帮忙,一个在前面哄着一个在后面推动腿一个在前面拉着手,刚开始很难,每次都是以哭结束,让我们很泄气,不过在我的坚持下每天一有空就给他练习,结果好像不知道什么时候他就会爬了,现在尤其喜欢大的空间,虽然爬的还不是很快,但姿势算比较标准,呵呵,所以不要爬宝宝不会爬,要给他机会练习,多点耐心和毅力,学习会很快的,糖糖也就用了半个月的时间就会了哦!
Flash动画
Flash动画
宝宝拍手视频
作者:子香 日期:2008-04-20
新手学车日记之预备知识
作者:泡泡糖 日期:2008-04-19
与朱院长达成口头协议:朱院长教我开车,我教他计算机
双赢的哦
今天周六,午饭后就催促朱院长开始学车第一课,开的是单位的金杯面包车,在门前的空道上,朱院长先大体讲解了一下驾驶位置的几个功能,方向盘、刹车、离合器、油门。院长把车倒到直行线上就换我的了。怀着无比紧张的心情,经过反复的练习后,终于学会了离合、挂档、踩油门、刹车等基本操作。剩下的就是经常练习了,还是蛮有成就感滴。
附新浪网的《新车驾车操作指南》地址:http://auto.sina.com.cn/z/xsjcchaozuo/index.shtml
双赢的哦今天周六,午饭后就催促朱院长开始学车第一课,开的是单位的金杯面包车,在门前的空道上,朱院长先大体讲解了一下驾驶位置的几个功能,方向盘、刹车、离合器、油门。院长把车倒到直行线上就换我的了。怀着无比紧张的心情,经过反复的练习后,终于学会了离合、挂档、踩油门、刹车等基本操作。剩下的就是经常练习了,还是蛮有成就感滴。
附新浪网的《新车驾车操作指南》地址:http://auto.sina.com.cn/z/xsjcchaozuo/index.shtml
Tags: 学车
北京工作日志之出行路线
作者:泡泡糖 日期:2008-04-19
来北京有一周时间了,到现在还没分出东西南北来。
工作地点有两处,一处在五环边,一处在三环边。
五环边的在国防大学校园外,先总结一些在北京的出行路线,不至于出门被拐卖掉
从国防大学到北京西站、北京站的公交路线:
1、从国防大学出发,乘坐817路下行(国防大学-玉泉路口南),在紫竹桥南换乘437路下行(颐和园新建宫门-北京西站),抵达北京西站. 约17.79公里。
2、从国防大学出发,乘坐375路下行(韩家川-西直门),在颐和园路东口换乘319路(北京西站-西苑),抵达北京西站. 约25.88公里。
工作地点有两处,一处在五环边,一处在三环边。五环边的在国防大学校园外,先总结一些在北京的出行路线,不至于出门被拐卖掉

从国防大学到北京西站、北京站的公交路线:
1、从国防大学出发,乘坐817路下行(国防大学-玉泉路口南),在紫竹桥南换乘437路下行(颐和园新建宫门-北京西站),抵达北京西站. 约17.79公里。
2、从国防大学出发,乘坐375路下行(韩家川-西直门),在颐和园路东口换乘319路(北京西站-西苑),抵达北京西站. 约25.88公里。
bbmao推出有奖搜索游戏
作者:泡泡糖 日期:2008-04-18
漂亮的小日历程序
作者:泡泡糖 日期:2008-04-15
Crack the development of China private enterpris
作者:泡泡糖 日期:2008-04-15
China's private scientific and technological Foundation Deputy Secretary-General
Beijing Chinese Entrepreneur management, executive vice president of the Academy of Science
Yuan qingpeng
Generally speaking, private enterprises are grow from small to large and from weak to strong and gradually develop. In the ever-changing market circumstances, successful entrepreneurs enterprises do not see how, but by how long, "left", is king. According years extensive research shows that: the development of enterprises is the border. On private enterprises, a good grasp of the four major border. That the legal borders, organizational boundaries, resources, borders and entrepreneurs psychological borders.
Beijing Chinese Entrepreneur management, executive vice president of the Academy of Science
Yuan qingpeng
Generally speaking, private enterprises are grow from small to large and from weak to strong and gradually develop. In the ever-changing market circumstances, successful entrepreneurs enterprises do not see how, but by how long, "left", is king. According years extensive research shows that: the development of enterprises is the border. On private enterprises, a good grasp of the four major border. That the legal borders, organizational boundaries, resources, borders and entrepreneurs psychological borders.
Tags: The four border
全角转半角代码
作者:泡泡糖 日期:2008-04-12
一、用JS把全角转换成半角(不能转换标点符号)
<input type="text" size="10" maxlength="10"
onkeyup="javascript:var t = ''; with(this.value) { for (var i = 0; i < length; i++) t += (65296 <= charCodeAt(i) && charCodeAt(i) <= 65305) ? String.fromCharCode(charCodeAt(i) - 65248) : charAt(i); } this.value = t;"
/>
<br>
<input type="text" size="10" maxlength="10"
onkeyup="javascript:var t = ''; with(this.value) { for (var i = 0; i < length; i++) t += (65296 <= charCodeAt(i) && charCodeAt(i) <= 65305) ? String.fromCharCode(charCodeAt(i) - 65248) : charAt(i); } this.value = t;"
/>
<br>
DeepInXp 精简版下IIS的错误种种
作者:泡泡糖 日期:2008-04-10
具体错误如下:
Server Application Error
The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Please contact the server administrator for assistance.
Server Application Error
The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Please contact the server administrator for assistance.
Tags: DeepInXp



HTML代码







