02 2008 档案
JS(2008-02-27)
摘要:/*************************************Functions as Objects******************************/ //define a Function object var funObj = new Function("alert('aaa');"); funObj(); //assign to another va... 阅读全文
posted @ 2008-02-27 19:18 IT Person 阅读(299) 评论(0) 推荐(0)
SSIS(2008-02-27)
摘要:################################ Package Installation Wizard ############################# installing your SSIS project onto a new server. ################################ Business Intelligence ... 阅读全文
posted @ 2008-02-27 18:31 IT Person 阅读(521) 评论(0) 推荐(0)
SSIS(2008-02-25)
摘要:################################# Architecture: ########################################## The SSIS Service is a Windows service that is installed when you install the SSIS component of SQL Server... 阅读全文
posted @ 2008-02-25 18:02 IT Person 阅读(996) 评论(0) 推荐(0)
Ruby(2008-02-19)
摘要:########################## Singletons and other Constructors ################## class MyLogger private_class_method:new @@logger = nil def MyLogger.create @@logger = new unless @@logger @@l... 阅读全文
posted @ 2008-02-19 21:20 IT Person 阅读(294) 评论(0) 推荐(0)
Ruby(2008-02-17)
摘要:############################### Class ############################## class Song def initialize(name, artist, duration) @name = name @artist = artist @duration = duration end end #initializ... 阅读全文
posted @ 2008-02-17 14:50 IT Person 阅读(321) 评论(0) 推荐(0)
Ruby(2008-02-16)
摘要:############################ Block ####################### def call_block puts "start of method" yield yield puts "end of method" end call_block {puts "in the block"} def call_block yield("hel... 阅读全文
posted @ 2008-02-16 22:19 IT Person 阅读(216) 评论(0) 推荐(0)
背景设置
摘要:背景颜色: background-color:#000000 背景图片: background-image:url(03.jpg) 背景图片的重复: background-repeat:repeat-y; 背景图片的位置: background-position:bottom right; 固定背景图片: background-attachment:fix; 阅读全文
posted @ 2008-02-16 13:20 IT Person 阅读(230) 评论(0) 推荐(0)
图片效果
摘要:图片边框: border-style:dotted,dashed border-color:blue border-width:2px border-left border-right 图片缩放: width:50% height:50px 意义:相对父元素的宽度 图片对齐: text-align:center vertical-align 阅读全文
posted @ 2008-02-13 21:41 IT Person 阅读(164) 评论(0) 推荐(0)
文字效果
摘要:字体: font-family:黑体,"Times New Roman" 意义为:如果有黑体就用黑体,否则用后面的字体,如果都没有用浏览器默认字体。 文字大小: font-size:0.5(in,cm,mm,pt,pc) 文字颜色: color:blue 文字粗细: font-weight:600(lighter,bold) 斜体: font-style:italic 英文字母大小写: text-... 阅读全文
posted @ 2008-02-13 21:31 IT Person 阅读(166) 评论(0) 推荐(0)
Div+Css视频学习笔记
摘要:1.段落里面(p标签)不能嵌套div. 2.Css:层叠式样式档,同一个标签可以用多个样式修饰。 3.css种类:内联式,嵌入式,外部,输入。 内联: aaaaaaaaaaa 缺点:复用性差。 嵌入: 好处:可以控制整个网页的某些标签。 外部: 输入: 在css文件中或者style标签中使用@import url(demo.css); 4.样式规则选择器: html选择器,类选择器,id选择... 阅读全文
posted @ 2008-02-12 23:13 IT Person 阅读(419) 评论(0) 推荐(0)
国际:2008年值得学习的五种Java技术
摘要:Carlos Perez(著名的Java技术人员)最近发表了他认为值得在2008学习五种的JAVA技术,它们是: OSGi(基于Java的动态模型规范) 注:OSGi(Open Service Gateway Initiative)指OSGi Alliance组织制定的一个基于Java语言的服务(业务)规范——OSGi服务平台(Service Platform)。 该规范和核心部分是一个框架 ,其... 阅读全文
posted @ 2008-02-12 20:23 IT Person 阅读(239) 评论(0) 推荐(0)
Ruby(2008-02-10)
摘要:############################# Array And Hash ####################### #array with three elements a = [1, 'ca', 3.14] #access the first element puts(a[0]) #set the third element(nil means nothing) a[2... 阅读全文
posted @ 2008-02-10 20:53 IT Person 阅读(297) 评论(0) 推荐(0)
Ruby(2008-02-07)
摘要:#first program #function defination def say_goodnight(name) result = "Good night, #{name}" return result end #function invoke puts say_goodnight('Pa') #capitalize method def say_goodnight(name) ... 阅读全文
posted @ 2008-02-07 18:06 IT Person 阅读(187) 评论(0) 推荐(0)