标准J2ME菜单

[不指定 2010/05/06 08:13 | by fubin ]
下载文件
这个文件只能在登入之后下载。请先 注册登入
    服务器换成了电信机房,拥有了多条线路(电信、网通、铁通、移动),访问速度会快很多。

Mistakes of the Masters

[不指定 2010/04/23 11:07 | by fubin ]
So many times you finish a house-building or renovation project thinking, "If only I knew when I started what I know now." It's the same with green construction projects, especially as new technologies and materials keep changing and being developed. If it's any consolation, when experts in the fields of energy-efficient and green building turn to doing their own houses, they often come away with lessons learned to carry forward to the next project.

太多次人们完成建房或则整修之后想:“早知如此何必当初呢!”。在环保项目同样存在这样的情况,尤其是在新技术和新材料不断被开发出来。在对自己的房子进行能效和绿色改造时,唯一值得欣慰的是我们有能为下次工程积累了一堂宝贵的课程。

Kelly Karmel, an architect and sustainable design and LEED consultant and founder of design balance LLC which offer sustainable design and LEED consultancy: "I had to redesign the plans for the house three times before I built it—and one was a complete redo. I was pretty happy with it, but then I broke my left leg, was on crutches for nine months, and completely changed my mind. I put a bedroom on the ground floor and widened the hallway and stairway. The handles are all lever-style. We don't have grab bars in the bathroom, but I configured things to be able to add them and made the kitchen easily modifiable. Believe me, I have a whole new appreciation for the Americans with Disabilities Act. I've come to feel that truly sustainable building needs to include aspects like accessibility more. I try to design for being able to live in a place long term—and not having to repair things constantly."

Kelly Karmel 建筑设计师和绿色建筑顾问是LLC设计者,他的LLC对绿色建筑设计影响非常大,他介绍到:“我必须重新修改我的计划三次,其中有一次还是完全重来。后来我的左腿断了以后,我拄了9个月拐杖,这是我完全改变了主意。我把卧室放到了1楼,并且加宽了楼道和楼梯。所有的把手全部改成了杠杆式。我们浴室里没有任何扶手.我在厨房加入了很多东西,使得它更加灵活,我相信我为全美国残疾人带来了新的建筑理念。我认为设计一个不需要经常改变,适合长久居住的居所是非常重要的!”

Betsy Pettit, FAIA, principal of Building Science Corporation and an architect with over 30 years' professional experience: "In 1996, we renovated an 1850 New England Greek Revival farmhouse and later regretted not using higher R-value insulation in the walls and roof. It's expensive to add more after the fact. That's why we always recommend that if you're replacing siding, you add as much at that time as you possibly can." Betsy Pettit and her husband and business partner Joseph Lstiburek have since renovated two additional houses, both with significantly higher R-value insulation.

Betsy Pettit,美国建筑师协会会员,建筑及科学协会负责人,一个有30年经验的建筑设计师,他的专业体会是:“在1996年,我们在返修一个英格兰文艺复兴时代的农庄,没有在墙壁和墙根使用高R值的材料。后来我们花费了很昂贵的代价才把他们添加进去。这就是为什么我们建议那些要返修墙壁的人,在开始一定要使用高R值的隔热材料”,Betsy Pettit和他丈夫画家Joseph Lstiburek已经在两座翻新的建筑中是到到了高R值的材料。

Linux/unix Shell CheatSheet

[不指定 2010/04/21 10:56 | by fubin ]
下载文件
这个文件只能在登入之后下载。请先 注册登入

Dock and Palm Trees, Tahiti

[雷阵雨 2010/04/20 14:15 | by fubin ]
点击在新窗口中浏览此图片
A dock juts out to a small palm island, surrounded by the jewel-blue waters of Tahiti. Tahiti is just one of 118 islands and atolls that make up French Polynesia, a semi-autonomous territory of France. With its claim here and on other Pacific territories, France is the second largest presence (after the United States) in the Pacific.

一个巴掌大的海岛码头,被浅蓝色的海水包围,这就是塔希提岛,塔希提岛是组成法属波利尼西亚的118个岛屿之一,一个半自治的法国领土。除了美国,法国是太平洋地区最大的领土拥有国了。

Ext.Template实例

[阴 2010/04/19 17:30 | by fubin ]
<script type="text/javascript">
Ext.onReady(function() {
  var cm = new Ext.grid.ColumnModel([{header: '编号',dataIndex: 'id'},
                                     {header: '性别',dataIndex: 'sex'},
                                     {header: '名称',dataIndex: 'name'},
                                     {header: '描述',dataIndex: 'descn'}]);
  //排序选项
  cm.defaultSortable = true;
  var data = [['9', 'male', 'name1', 'descn1'], ['2', 'male', 'name1', 'descn2'], ['3', 'male', 'name1', 'descn2']];
  var ds = new Ext.data.Store({
    proxy: new Ext.data.MemoryProxy(data),
    reader: new Ext.data.ArrayReader({}, [{name: 'id',mapping: 0},
                                          {name: 'sex',mapping: 1},
                                          {name: 'name',mapping: 2},
                                          {name: 'descn',mapping: 3}])
  });
  ds.load();
  
  var grid = new Ext.grid.GridPanel({
    ds: ds,
    cm: cm,
    anchor:'100% 60%'
  });  
  

   var p = new Ext.Panel({
       id: "detailPanel",
       title: '详细情况', //标题
       collapsible: true, //右上角上的那个收缩按钮,设为false则不显示
       anchor:'100% 40%',
       html: "请在上面网格中选择一行数据"//panel 主体中的内容,可以执行html代码
   });  
   
   // 定义详细信息的显示模板
   var bookTplMarkup = [
      '出版号: <a href="http://www.baidu.com/{ASIN}" target="_blank">{id}</a><br/>',
      '性别: {sex}<br/>',
      '名称: {name}<br/>',
      '描述: {descn}<br/>'
   ];
   var bookTpl = new Ext.Template(bookTplMarkup); //ExtJs 的模板组件    
   
   grid.getSelectionModel().on('rowselect', function(sm, rowIdx, r) {
       var detailPanel = Ext.getCmp('detailPanel');
       bookTpl.overwrite(detailPanel.body, r.data);
       Ext.MessageBox.alert("提示","您选择的出版号是:" + r.data.ASIN);
   });
  
   var window = new Ext.Window({
       title: 'Resize Me',
       width: 500,
       height:300,
       minWidth: 300,
       minHeight: 200,
       layout: 'anchor',
       plain:true,//true则主体背景透明,false则主体有小差别的背景色,默认为false
       bodyStyle:'padding:5px;',
       buttonAlign:'center',
       modal:true,//为模式窗口,后面的内容都不能操作,默认为false
       //closeAction:枚举值为:close(默认值),当点击关闭后,关闭window窗口 hide,关闭后,只是hidden窗口
       //constrain:true则强制此window控制在viewport,默认为false
       items:[grid,p]
   });

   window.show();
});
</script>
Tags:
问题现状:用Ext的EditorGridPanel保存修改后的数据的功能,可是每次提交的时候发现总是会把前几次的数据一起提交。

解决方法:在保存完更新数据后,刷新数据源的更改列表

ds.modified = [];
ds.reload();
Tags:

卡廷大屠杀

[不指定 2010/04/17 22:34 | by fubin ]
     今天看了《卡廷大屠杀》,电影从拍摄、技术应用、后期制作上来说没有任何新颖可言,只是在简单,直观地告诉人们一个事实,一个血淋淋的事实,无论多少人想办法都无法掩饰的事实。我不想站任何一方,在激励的政治思想冲突面前,我们都是那么微不足道。

   我觉得这部电影更多被渲染成政治目的,没有人去思考那个年代的背景,那个疯狂而又黑暗的年代,而现在更象是被兜售反苏思想,成为政治工具。大多数的时候我们总是被逼迫做这样的选择题:选择共产思想还是西方民主思想呢?

   我只是不希望大家别忘记了那些死去的人才是真实的,任何政治思想那都是一群人强加给另外一群人的想法,有什么值得为此大动肝火呢?!

Bangalore Hip Hop

[不指定 2010/04/16 15:52 | by fubin ]
点击在新窗口中浏览此图片

Homegrown hip hop bands are a new phenomenon in Bangalore, India. Low Rhyderz is the first hip hop band in the city that combines elements of Indian beats with hip hop rhythms to create a music that is unique. This photograph was taken when they were fooling around in a car mechanic shop. Obviously, the mechanic found the entire scene "interesting."

本地的Hip HOP手是印度班加罗尔的新元素,Low Rhyderz是这个城市第一个Hip Hop手他将印度音乐节奏加入到Hip Hop中,使得成为独一无二的表演。这个债片是他们在修车店门前闲耍时拍的,很显然修理工被他们的‘有趣的’表演吸引住了。

开源的文件图片管理库

[晴 2010/04/14 22:12 | by fubin ]
下载文件
这个文件只能在登入之后下载。请先 注册登入


来至于Maryland大学的作品,是编辑结构化图片的非常棒的工具,关键是它是完全开源的。
分页: 2/110 第一页 上页 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] 下页 最后页 [ 显示模式: 摘要 | 列表 ]