文章列表
 
您正在查看 "默认分类" 分类下的文章

2010-11-25 21:53

据报道,近日一份关于微软向美国专利商标局提交的Kinect专利申请被公开。通过这项专利我们可以进一步了解这款体感外设的工作原理。

这份专利申请提交于2009年2月23日,被形容为可以手势键盘(gesture keyboarding)。意思就是说,Kinect摄像头可以捕捉到用户的手势动作,再把这些手势语言转换成游戏控制。

具体来说,Kinect借助PrimeSense软件和摄像头侦测、捕捉用户手势动作,然后再将捕捉到的影像与本身内部存有的人体模型相对照。每一个符合内部已存人体模型的物体就会被创造成相关的骨骼模型,系统再将该模型转换成虚拟角色,该角色通过识别该人体骨骼模型的关键部位进行动作触发。

在虚拟骨骼模型的帮助下,系统可识别人体的25个关键部位。

微软通过对33DV systems公司的收购得到了后者的摄像头识别技术,并在此基础上加入了识别人体站立/坐姿的新技术。

Kinect将在11月上市,单独销售149.99美元,绑定Arcade版Xbox 360后的售价为299美元。

微软Kinect专利曝光:深入了解体感识别

骨骼模型

微软Kinect专利曝光:深入了解体感识别

微软Kinect专利曝光:深入了解体感识别

微软Kinect专利曝光:深入了解体感识别

微软Kinect专利曝光:深入了解体感识别

内部系统组成

微软Kinect专利曝光:深入了解体感识别

内部系统组成

微软Kinect专利曝光:深入了解体感识别

内部系统组成

易尚互联,免费建站,100套精美模板任您选择,为您提高企业形象!
官方网址: http://www.ogw.cn企业QQ: 800019019
官方交流QQ: 56277249
企业热线: 027-88860600
富士康跳楼门专题:http://www.ogw.cn/o/fsktlsj/index.html
2010
年南非世界杯专题:http://2010.ogw.cn

 
2010-06-09 14:09
首先 下载:
 
2010-06-01 16:38

这几天做了一个项目,大量用到了JSP与 servlet之间的传值,所以总结了一下

JSP与 servlet之间的传值有两种情况:JSP -> servlet, servlet -> JSP。
通过对象 request和 session (不考虑 application)完成传值。

一、JSP -> servlet
JSP页面有3种方法向 servlet传值: form表单、URL 、其他

<!-- JSP page -->
...
<%......
session.setAttribute(
"testSession","Hello session");
reqeust.setAttribute(
"testRequest","Hello request");
%>
<a href="JspServlet?action=toServlet">click me</a>
<form action="JspServlet?action=toServlet" method="post" name="form">
<input name="username" type="test" />
<input type="submit" value="submit">
</form>
...


1、对于该JSP页面 form表单的内容,如 <input>标签,在 servlet可用 request.getParameter("username");获取。
2、URL:比如这里的 <a>标签的 href属性与 <form>标签的 action属性的值 "JspServlet?action=toServlet",在 servlet同样用 request.getParameter("action")获取;所要注意的是这里的 url 要和 servlet在web.xml里的 <url-pattern>标签的路径所对应。这部分后面会提到。
3、java片段代码,servlet只能接到 session.setAttribute("testSession","Hello session")的内容,而接不到 request的内容。在 servlet里用 request.getSession().getAttribute("testSession")获取 session内容。

二、Servlet
1、关于 servlet,首先要提到它在 web.xml里的注册内容,如

<servlet-name>JspServlet1</servlet-name>
<servlet-class>com.demo.JspServletDemo</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>JspServlet1</servlet-name>
<url-pattern>/JspServlet</url-pattern>
</servlet-mapping>

<servlet-name>JspServlet2</servlet-name>
<servlet-class>com.demo.JspServletDemo</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>JspServlet2</servlet-name>
<url-pattern>/admin/JspServlet</url-pattern>
</servlet-mapping>


假如 project name 是 jsp2servlet,则该 project根目录的 Context是 /jsp2servlet,在地址栏里显示是 http://localhost:8080/jsp2servlet/
在 project 根目录下有 admin目录,对应的 Context是/admin/jsp2servlet,在地址栏里显示是
http://localhost:8080/jsp2servlet/admin
在这两个目录下的 jsp 都想转到 com.demo.JspServletDemo类做处理,这时的 url需要在 web.xml注册两次。
1)在
http://localhost:8080/jsp2servlet/ 目录下的 jsp 页面 JspServlet1,url应写为 "JspServlet"
2)在
http://localhost:8080/jsp2servlet/admin/ 目录下的 jsp 页面访问 JspServlet2,url应写为 "admin/JspServlet"

2、在 servlet直接用 request对象,得到发送来的请求内容;用 request.getSession(),得到 session对象,从而得到会话内容。

这里的 request.getSession()的参数为 boolean 类型,该方法意思可理解为:

session可以认为是每一个IE进程对应一个会话(新开一个IE进程就可以对应两个会话的),getSession都是返回当前用户的会话对象,参数的区别在于:
参数为true (默认),则如果“当前用户的会话对象”为空(第一次访问时)则创建一个新的会话对象返回;
参数为false,则如果“当前用户的会话对象”为空,则返回 null (即不自动创建会话对象)。

利用这个方法可以判断 session是否过期,如下:

if(request.getSession(false)==null)
System.out.println(
"Session has been invalidated!");
else
System.out.println(
"Session is active!");

三、Servlet -> JSP
从 servlet转到 jsp不外乎两种方法,重定向 和 url转发

1、重定向 ( Redirect):是路径的跳转,内容和 url都改变。不允许带 request参数( session参数可以),即不允许在 servlet里给 request对象使用setAttribute方法传给下一页面。在 servlet里使用 response.sendRedirect(url) 方法。注意这里的 url前不带斜线 /,如 response.sendRedirect(”test.jsp“)

2、url转发 ( Forward):是页面的跳转,页面内容发生改变,url不变。可以带 request和 session参数。在 servlet里使用 getServletConfig().getServletContext().getRequestDispatcher(url).forward(request, response)。而这里的 url前需要带斜线 /,如getServletConfig().getServletContext().getRequestDispatcher(”/test.jsp“).forward(request, response)

 
2009-12-24 16:18

晶振尺寸较多,为了查找资料方便,特整理一下:

A、直插封装(Through-Hole)

1、 HC-51/U 0.455 - 4.5 MHz 18.4 x 9.3 x 19.7




2、HC-33/U 0.455 - 4.5 MHz 18.4 x 9.3 x 19.7




3、HC-49/U 1 - 150 MHz 11.2 x 4.7 x 13.6




4、HC-49/U-S 3.2 - 70 MHz 11.2 x 4.7 x 3.6




5、CSA-310 3.5 - 4 MHz Ø 3.2 x 10.5




6、CSA-309 4 - 70 MHz Ø 3.2 x 9.0




7、UM-1 1 - 200 MHz 7.0 x 2.2 x 8.0




8、UM-5 10 - 200 MHz 7.0 x 2.2 x 6.0




B、贴片封装(SMD)1、HC-49/MJ 1 - 150 MHz 13.8/17.1 x 11.5 x 5.4




2、UM-1/MJ 1 - 200 MHz 7.9 x 3.5 x 8.2/12.5




3、UM-5/MJ 10 - 200 MHz 7.9 x 3.5 x 6.2/10.5




4、SM-49 3.2 - 66 MHz 12.9 x 4.7 x 4.0




5、SM-49-4 3.5 - 66 MHz 13.0 x 4.7 x 5.0




6、SM-49-F 3.5 - 60 MHz 12.5 x 5.85 x 3.0




7、MM-39SL 3.579 - 70 MHz 12.5 x 4.6 x 3.7




8、CPX-25 3.5 - 30 MHz 11.6 x 5.5 x 2.0




9、CPX-20 3.5 - 60 MHz 11.0 x 5.0 x 3.8




10、CPX-84 10 - 80 MHz 8.0 x 4.5 x 1.6




11、 CPX-02 8 - 100 MHz 8.0 x 4.5 x 1.8




12、CPX-75GN 9.8 - 100 MHz 7.0 x 5.0 x 1.6




13、CPX-75GN2 9.8 - 100 MHz 7.0 x 5.0 x 1.6




14、CPX-75GT 12.8 - 100 MHz 7.0 x 5.0 x 1.1




15、CPX-75GT2 12.8 - 100 MHz 7.0 x 5.0 x 1.1




16、CPX-49S 8 - 150 MHz 7.5 x 5.0 x 1.5




17、CPX-63GA 10 - 100 MHz 6.0 x 3.5 x 1.1




18、 CPX-63GB 10 - 100 MHz 6.0 x 3.5 x 1.1




19、CPX-49SM 8 - 150 MHz 6.0 x 3.5 x 1.2




20、CPX-49SP 8 - 45 MHz 5.0 x 3.2 x 0.8




21、CPX-53GA 8 - 50 MHz 5.0 x 3.2 x 0.8




22、CPX-53GB 8 - 50 MHz 5.0 x 3.2 x 1.2




23、 CPX-42 12 - 40 MHz 4.0 x 2.5 x 0.8




24、CPX-32 13 - 54 MHz 3.2 x 2.5 x 0.7




25、 CPX-22 16 - 40 MHz 2.5 x 2.0 x 0.45






C、时钟晶振(Clockcrystals (kHz-Crystals))

1、TC-38 32.768 kHz Ø 3.0 x 8.2




2、TC-26 32.768 kHz Ø 2.1 x 6.2




3、 TC-26 Funkuhrquarz 77.5 kHz Ø 2.1 x 6.2




4、TC-15 32.768 kHz Ø 1.5 x 5.1




5、MM-25S 30 - 150 kHz 8.0 x 3.8 x 2.5




6、MM-20SS 32.768 kHz 8.0 x 3.8 x 2.5




7、 MM-11B 32.768 kHz 6.9 x 1.4 x 1.3




8、TSM-250 77.5 - 120 kHz Ø 2.0 x 6.1/9.1




9、 TSM-26B 32.768 kHz Ø 2.0 x 6.1/9.1




10、TSM-26BJ 32.768 kHz 2.95 x 2.3 x 6.5/9.0




11、SM-14J 32.768 kHz 5.05/6.88 x 1.57 x 1.65




12、CMJ-206 32.768 kHz 6.0/8.3 x 2.5 x 2.1




13、 CMJ-145 32.768 kHz 3.7/6.9 x 1.8 x 1.65




14、CM-519 32.768 kHz 4.9 x 1.8 x 1.0




15、CM-415 32.768 kHz 4.1 x 1.5 x 0.9




16、CM-315 32.768 kHz 3.2 x 1.5 x 0.9




17、CT-3215 32.768 kHz 3.2 x 1.5 x 0.75


下图分别是:直插49U、圆柱3*8、直插49S、贴片49S;

 
2009-12-24 15:29

固定电阻常用的封装模型为“AXIAL”系列的,包括“AXIAL-0.3”、“AXIAL-0.4”“AXIAL-0.5”、

“AXIAL-0.6”、“AXIAL-0.7”、“AXIAL-0.8”、“AXIAL-0.9”和“AXIAL-1.0”等,其后缀的数字

表示封装模型中两个焊盘的间距,单位为“英寸”(1英寸=1000mil=2.54cm)。 贴片电阻封装模型

0805指的是80mil*50mil的。

无极性电容的封装模型为RAD系列,例如“RAD-0.1”“RAD-0.2”“RAD-0.3”“RAD-0.4”等,其后缀的数字表示封装

模型中两个焊盘间的距离,单位为“英寸”。电解电容的封装模型为RB系列,例如从“RB-.2/.4”

到“RB-.5/.10”,其后缀的第一个数字表示封装模型中两个焊盘间的距离,第二个数字表示电容外形

的尺寸,单位为“英寸”。

“钽贴片电解电容有黑色或灰色标志的一头是正极,另外一头是负极。对于铝贴片电解电容就和普通直插电解电容一样,有杠杠的那端为负极。”

   在网上查到这么一句话,可算是把板子上的钽电解全部平反了!

   之前在复位电路总是不正常,查来查去,是复位的钽电解极性接反了!

   以往用贴片电解大都就是对付钽电解电容,隐约在意识里知道画杠的一边是接高电位,就没有太注意其极性的表示方法。给医疗组的一哥们问起来:“它不跟普通电 解电容一样么?普通电解画白道子的一端是‘负’极啊?再或者它应该和贴片二极管一样吧?二极管也是画白道子的那头是‘负’极诶!”——歪着头一想也是!极 性的标识方法也应该有个‘统一’的原则吧?于是在此后焊的板子里所有的钽电解都掉了个头……

   终究是以有电容的地方电平被拉得特别低这一现象,标志着我对电解电容极性的表示方法完全混乱。

   真服了这种‘下贱’的表示方法,同样是电解电容,钽电解虽然昂贵一点,也不能搞特殊啊!

无极性电容以0805、0603两类封装最为常见;

0805具体尺寸:2.0×1.25×0.5

1206具体尺寸:3.0×1.50×0.5

贴片电容以钽电容为多,根据其耐压不同,又可分为A、B、C、D四个系列,具体分类如下:

类型 封装形式 耐压

A 3216 10V

B 3528 16V

C 6032 25V

D 7343 35V

贴片钽电容的封装是分为A型(3216),B型(3528), C型(6032), D型(7343),E型(7845)。

-------------------------------------

贴片电容正负极区分

一种是常见的钽电容,为长方体形状,有“-”标记的一端为正;

另外还有一种银色的表贴电容,想来应该是铝电解。 上面为圆形,下面为方形,在光驱电路板上很常见。 这种电容则是有“-”标记的一端为负。

发光二极管:颜色有红、黄、绿、蓝之分,亮度分普亮、高亮、超亮三个等级,常用的封装形式有三类:0805、1206、1210

二极管:根据所承受电流的的限度,封装形式大致分为两类,小电流型(如1N4148)封装为1206,大电流型(如IN4007)暂没有具体封装形式,只能给出具体尺寸:5.5 X 3 X 0.5

电容:可分为无极性和有极性两类:

无极性电容下述两类封装最为常见,即0805、0603;

有极性电容也就是我们平时所称的电解电容,一般我们平时用的最多的为铝电解电容,由于其电解 质为铝,所以其温度稳定性以及精度都不是很高,而贴片元件由于其紧贴电路版,所以要求温度稳定性要高,所以贴片电容以钽电容为多,根据其耐压不同,贴片电 容又可分为A、B、C、D四个系列,具体分类如下:

类型      封装形式   耐压

A          3216      10V

B          3528      16V

C          6032      25V

D          7343      35V

贴片钽电容的封装是分为A型(3216),B型(3528), C型(6032), D型(7343),E型(7845)。有斜角的是表示正极,(小三角的表示正极?不知道!)

拨码开关、晶振:等在市场都可以找到不同规格的贴片封装,其性能价格会根据他们的引脚镀层、标称频率以及段位相关联。

电阻:和无极性电容相仿,最为常见的有0805、0603两类,不同的是,她可以以排阻的身份出现,四位、八位都有,具体封装样式可参照MD16仿真版,也可以到设计所内部PCB库查询。

注:

A\B\C\D四类型的封装形式则为其具体尺寸,标注形式为L X S X H

1210具体尺寸与电解电容B类3528类型相同

0805具体尺寸:2.0 X 1.25 X 0.5

1206具体尺寸:3.0 X 1.5 0X 0.5

------------------------------------------------------

电容电阻外形尺寸与封装的对应关系是:

0402=1.0x0.5

0603=1.6x0.8

0805=2.0x1.2

1206=3.2x1.6

1210=3.2x2.5

1812=4.5x3.2

2225=5.6x6.5

注:

A\B\C\D四类型的封装形式则为其具体尺寸,标注形式为L X S X H

1210具体尺寸与电解电容B类3528类型相同

0805具体尺寸:2.0 X 1.25 X 0.5

1206具体尺寸:3.0 X 1.5 0X 0.5

--------------------------------------------------------

1.电阻电容的封装形式如何选择,有没有什么原则?比如,同样是104的电容有0603、0805的封装,同样是10uF电容有3216,0805,3528等封装形式,选择哪种封装形式比较合适呢?

我看到的电路里常用电阻电容封装:

电容:

0.01uF可能的封装有0603、0805

10uF的封装有3216、3528、0805

100uF的有7343

320pF封装:0603或0805

电阻:

4.7K、10k、330、33既有0603又有0805封装。

请问怎么选择这些封装?

答:

贴片的封装主要有:0201 1/20W 0402 1/16W 0603 1/10W 0805 1/8W 1206 1/4W

电容电阻外形尺寸与封装的对应关系是: 0402=1.0x0.5 0603=1.6x0.8 0805=2.0x1.2 1206=3.2x1.6 1210=3.2x2.5 1812=4.5x3.2 2225=5.6x6.5

电容本身的大小与封装形式无关,封装与标称功率有关。它的长和宽一般是用毫米表示的。但是型号是采用的英寸的表示方法。

选 择合适的封装第一要看你的PCB空间,是不是可以放下这个器件。一般来说,封装大的器件会比较便宜,小封装的器件因为加工进度要高一点,有可能会贵一点, 然后封装大的电容耐压值会比封装小的同容量电容耐压值高,这些都是要根据你实际的需要来选择的,另外,小封装的元器件对贴装要求会高一点,比如 SMT机器的精度。如手机里面的电路板,因为空间有限,工作电压低,就可以选用0402的电阻和电容,而大容量的钽电容就多为3216等等大的封装

1.   电阻封装尺寸与功率关系,通常来说:

      0201 1/20W

      0402 1/16W

      0603 1/10W

      0805 1/8W

     1206 1/4W

2.电容电阻外形尺寸与封装的对应关系是:

      0402=1.0x0.5

      0603=1.6x0.8

      0805=2.0x1.2

      1206=3.2x1.6

      1210=3.2x2.5

      1812=4.5x3.2

      2225=5.6x6.5

  

3.   贴片电阻的封装与尺寸如下表:   

英制

(mil) 公制

(mm) 长(L)

(mm) 宽(W)

(mm) 高(t)

(mm) a

(mm) b

(mm)

0201 0603 0.60±0.05 0.30±0.05 0.23±0.05 0.10±0.05 0.15±0.05

0402 1005 1.00±0.10 0.50±0.10 0.30±0.10 0.20±0.10 0.25±0.10

0603 1608 1.60±0.15 0.80±0.15 0.40±0.10 0.30±0.20 0.30±0.20

0805 2012 2.00±0.20 1.25±0.15 0.50±0.10 0.40±0.20 0.40±0.20

1206 3216 3.20±0.20 1.60±0.15 0.55±0.10 0.50±0.20 0.50±0.20

1210 3225 3.20±0.20 2.50±0.20 0.55±0.10 0.50±0.20 0.50±0.20

1812 4832 4.50±0.20 3.20±0.20 0.55±0.10 0.50±0.20 0.50±0.20

2010 5025 5.00±0.20 2.50±0.20 0.55±0.10 0.60±0.20 0.60±0.20

2512 6432 6.40±0.20 3.20±0.20 0.55±0.10 0.60±0.20 0.60±0.20

   4. 贴片电阻基本结构 :

   

5.贴片电阻分类:

    贴片电阻分为以下几大类:

   

类型 参考国巨的分类

常规系列厚膜贴片电阻

General purpose General purpose, 0201 - 0805

General purpose, 1206 - 2512

高精度高稳定性贴片电阻

High precision - high stability High precision - high stability, 0201 - 0603

High precision - high stability, 0805 - 1210

High precision - high stability, 2010 - 2512

常规系列薄膜贴片电阻

General purpose thin film General purpose thin film, 0201-2512

低阻值贴片电阻

Low ohmic Low ohmic, 0402 - 1206

Low ohmic, 2010 - 2512

贴片电阻阵列

Arrays Arrays, convex and concave

贴片电流传感器

SMD current sensors Current Sensors - Low TCR

贴片网络电阻器

Network Network, T-type and L-type

贴片电容封装尺寸:毫米(英寸)

封装

(L) 长度

公制(毫米)

英制(英寸)

(W) 宽度

公制(毫米)

英制(英寸)

(t) 端点

公制(毫米)

英制(英寸)

0201

0.60 ± 0.03

(0.024 ± 0.001)

0.30 ± 0.03

(0.011 ± 0.001)

0.15 ± 0.05

(0.006 ± 0.002)

0402

(1005)

1.00 ± 0.10

(0.040 ± 0.004)

0.50 ± 0.10

(0.020 ± 0.004)

0.25 ± 0.15

(0.010 ± 0.006)

0603

(1608)

1.60 ± 0.15

(0.063 ± 0.006)

0.81 ± 0.15

(0.032 ± 0.006)

0.35 ± 0.15

(0.014 ± 0.006)

0805

(2012)

2.01 ± 0.20

(0.079 ± 0.008)

1.25 ± 0.20

(0.049 ± 0.008)

0.50 ± 0.25

(0.020 ± 0.010)

1206

(3216)

3.20 ± 0.20

(0.126 ± 0.008)

1.60 ± 0.20

(0.063 ± 0.008)

0.50 ± 0.25

(0.020 ± 0.010)

1210

(3225)

3.20 ± 0.20

(0.126 ± 0.008)

2.50 ± 0.20

(0.098 ± 0.008)

0.50 ± 0.25

(0.020 ± 0.010)

1812

(4532)

4.50 ± 0.30

(0.177 ± 0.012)

3.20 ± 0.20

(0.126 ± 0.008)

0.61 ± 0.36

(0.024 ± 0.014)

1825

(4564)

4.50 ± 0.30

(0.177 ± 0.012)

6.40 ± 0.40

(0.252 ± 0.016)

0.61 ± 0.36

(0.024 ± 0.014)

2225

(5764)

5.72 ± 0.25

(0.225 ± 0.010)

6.40 ± 0.40

(0.252 ± 0.016)

0.64 ± 0.39

(0.025 ± 0.015)

国内贴片电阻的命名方法:

1、5%精度的命名:RS-05K102JT

2、1%精度的命名:RS-05K1002FT

R -表示电阻

S -表示功率0402是1/16W、0603是1/10W、0805是1/8W、1206是1/4W、 1210是1/3W、1812是1/2W、2010是3/4W、2512是1W。

05 -表示尺寸(英寸):02表示0402、03表示0603、05表示0805、06表示1206、1210表示1210、1812表示1812、10表示1210、12表示2512。

K -表示温度系数为100PPM,

102-5%精度阻值表示法:前两位表示有效数字,第三位表示有多少个零,基本单位是Ω,102=10000Ω=1KΩ。1002是1%阻值表示法:前三位表示有效数字,第四位表示有多少个零,基本单位是Ω,1002=100000Ω=10KΩ。

J -表示精度为5%、F-表示精度为1%。

T -表示编带包装

1:0402(1/16W)      2:0603(1/10W)      3:0805(1/8W)   4:1206(1/4W)       5:1210(1/3W)       6:2010(1/2W)      7:2512(1W)

内贴片电阻的命名方法:

1、5%精度的命名:RS-05K102JT   

2、1%精度的命名:RS-05K1002FT

R     -表示电阻

S     -表示功率0402是1/16W、0603是1/10W、0805是1/8W、1206是1/4W、     1210是1/3W、1812是1/2W、2010是3/4W、2512是1W。

05    -表示尺寸(英寸):02表示0402、03表示0603、05表示0805、06表示1206、1210表示1210、1812表示1812、10表示1210、12表示2512。

K     -表示温度系数为100PPM,

102-5%精度阻值表示法:前两位表示有效数字,第三位表示有多少个零,基本单位是Ω,102=1000Ω=1KΩ。1002是1%阻值表示法:前三位表示有效数字,第四位表示有多少个零,基本单位是Ω,1002=10000Ω=10KΩ。

J     -表示精度为5%、F-表示精度为1%。

T     -表示编带包装

1、贴片电阻的阻值表示与贴片电容容值表示都是数字与“R”组合表示的。譬如:3ohm用3R0表示,10ohm用100表示,100ohm用101表示,也就是说“R”表示点“.”的意思,而101后面个位数的“1”表示的是带有1个0,例如102表示10000。

2、电阻上的数字和字母表示的就是阻值,R002就表示0.002ohm,180表示的就是18ohm.

3、怎样区分贴片的电阻与电容,由于电阻上面有白色的字体表示,所以除端角外背景颜色应该是黑色的,而电容上就没有字体表示,也不会有黑色的颜色,因为有黑色的话容易让人产生误会电容被氧化。

读出四块数据,乘给出数据,相加

贴片电阻的命名

贴片电阻阻值误差精度有±1%、±2%、±5%、±10%精度,常规用的最多的是±1%和±5%,

±5%精度的常规是用三位数来表示例 例512,前面两位是有效数字,第三位数2表示有多少个零,基本单位是Ω,这样就是5100欧,1000Ω=1KΩ,1000000Ω=1MΩ

为了区分±5%,±1%的电阻,于是±1%的电阻常规多数用4位数来表示 ,

这样前三位是表示有效数字,第四位表示有多少个零4531也就是4530Ω,也就等于4.53KΩ

 
2009-12-13 20:20

原文链接:http://qzone.qq.com/blog/66514941-1244603016

非常有用啊,觉得好就给个BIG SMILE
  世界名校“硕博论文”地址集
  Harvard University - Hollis Catalog
  http://lms01.harvard.edu/F/TYIK6 ... ART38RP67TQV-09421?
  Australian Digital Theses Program
  http://adt.caul.edu.au
  M.I.T. Theses and E-Theses Online
  https://dspace.mit.edu/handle/1721.1/7582
  http://library.mit.edu/F?func=find-b-0
  Cornell University Library
  http://dspace.library.cornell.edu/handle/1813/39/browse-date
  University of Notre Dame
  http://etd.nd.edu/ETD-db/ETD-browse/browse
世界名校“硕博论文”地址集,大浪淘沙。
  Harvard University - Hollis Catalog
http://lms01.harvard.edu/F/TYIK6... ART38RP67TQV-09421?

Australian Digital Theses Program
http://adt.caul.edu.au

M.I.T. Theses and E-Theses Online
https://dspace.mit.edu/handle/1721.1/7582
http://library.mit.edu/F?func=find-b-0

Cornell University Library
http://dspace.library.cornell.edu/handle/1813/39/browse-date

University of Notre Dame
http://etd.nd.edu/ETD-db/ETD-browse/browse

Unersity of Pretoria, New Zealand
http://upetd.up.ac.za/ETD-db/ETD-browse/browse

Theses & Dissertations written in Chinesse (Big5)
http://etd.lib.nsysu.edu.tw/ETD-... rowse_by=department

Vanderbilt University
http://etd.library.vanderbilt.edu/ETD-db/ETD-browse/browse

Eindenburg University
http://www.era.lib.ed.ac.uk/browse-title

Simon Fraser University
http://ir.lib.sfu.ca/browse-title

Digital Journal and ETDs
http://umi.com/products_umi/digitalcommons/

British Library
http://sherpa.bl.uk/view/subjects/
The European Library
http://www.theeuropeanlibrary.org/portal/index.html

Ohio LINK ETDs Search
http://search.ohiolink.edu/etd/

Case Western Reserve University
http://www.case.edu/provost/gradstudies/etd/

Boston College
http://dissertations.bc.edu/

University of Nebraska
http://digitalcommons.unl.edu/dissertations/

University of Maryland
https://drum.umd.edu/dspace/browse-date

University of Connecticut
http://digitalcommons.uconn.edu/dissertations/

Texas A&M University
http://txspace.tamu.edu/browse-date

Nortwestern University
http://www.at.northwestern.edu/etd/

North Carolina State University
http://www.lib.ncsu.edu/ETD-db/ETD-browse/browse

Georgia Institute of Technology
http://etd.gatech.edu/ETD-db/ETD-browse/browse?first_letter=all;browse_by=department

The George Washington University
http://etd-gw.wrlc.org/ETD-browse/browse

NCSU Library
http://www.lib.ncsu.edu/ETD-db/ETD-browse/browse

University of the Free State
http://etd.uovs.ac.za/cgi-bin/ETD-browse/browse

Florida State University
http://etd.lib.fsu.edu/ETD-db/ETD-browse/browse?first_letter=all

Universiy of Western Michigan
http://etd.wmich.edu/ETD-db/ETD-search/search

Digital Media Library
https://ritdml.rit.edu/dspace/handle/1850/921

University of South Africa
http://etd.unisa.ac.za/ETD-db/ETD-browse/browse

NDLTD
http://docs.ndltd.org:8080/dspace/browse-title

Caltech
http://etd.caltech.edu/ETD-db/ETD-browse/browse?first_letter=all

Virginia Polytechnic Institute
http://scholar.lib.vt.edu/theses/browse/

East Tennese State University
http://etd2004.etsu.edu/etdops.html

Georgia Institute of Technology
http://etd.gatech.edu/ETD-db/ETD-browse/browse?first_letter=A

Georgia State University
http://etd.gsu.edu/ETD-db/ETD-browse/browse?first_letter=all

Wake Forest University
http://etd.wfu.edu/ETD-db/ETD-browse/browse

University of Monitoba
https://mspace.lib.umanitoba.ca/dspace/browse-title

UNB e-Repositories
http://quartet.cs.unb.ca:8080/dspace/browse-title

University of Pitsburg
http://etd.library.pitt.edu/ETD-db/ETD-search/browse

University of Tennessee
http://diglib.lib.utk.edu/cgi/b/... d-bib&page=dept

Texas Digital Library
http://repositories.tdl.org/browse-title

University of Victoria
https://dspace.library.uvic.ca:8443/dspace/browse-title

Texas Tech University
http://etd.lib.ttu.edu/ETD-db/ETD-browse/browse?first_letter=all;browse_by=department

NTNU
http://www.lib.ndhu.edu.tw/ETD-d... se?first_letter=all

University of Johannesberg
http://etd.rau.ac.za/ETD-db/ETD-browse/browse

Texas A&M University
http://txspace.tamu.edu/browse-title

East Tenesse State University
http://etd-review.etsu.edu/ETD-db/ETD-browse/browse

Theses Canada Portal
http://collectionscanada.ca/thesescanada/index-e.html

University of Waterloo
http://etheses.uwaterloo.ca/

Networked Digital Library
http://zippo.vtls.com/cgi-bin/ndltd/chameleon

University of Helsinki
http://ethesis.helsinki.fi/english.html

Caltech Libraries
http://etd.caltech.edu/ETD-db/ETD-search/search

Virginia Tech: Electronic Thesis and Dissertation Library
http://scholar.lib.vt.edu/theses/browse/

University of Florida
http://www.uflib.ufl.edu/etddept.html

Brigham Young University
http://etd.byu.edu/collection.html

Canada Portal Theses
http://amicus.collectionscanada.... =18&l=0&v=1

Pennsylvania State University
http://etda.libraries.psu.edu/ETD-db/ETD-search/search

University of Ohio LINK
http://search.ohiolink.edu/etd/
Western Michigan University
http://etd.wmich.edu/theses/browse/

West Virginia University
https://eidr.wvu.edu/eidr/newsearchform.eIDR

Rhodes University
http://eprints.ru.ac.za/perl/search/simple

Florida State University
http://etd.fiu.edu/ETD-db/ETD-search/search

Wake Forest University
http://etd.wfu.edu/ETD-db/ETD-search/search

University of Pretoria
http://upetd.up.ac.za/ETD-db/ETD-search/search

Virginia Commonwealth University
http://etd.vcu.edu/ETD-db/ETD-search/search

George Washington University
http://etd-gw.wrlc.org/ETD-db/ETD-search/search

Rhodes eResearch Repository
http://www.eprints.ru.ac.za

North Carolina State University
http://www.lib.ncsu.edu/etd

The Humanities Clearinghouse
http://www.etext.lib.virginia.edu/ETD

Worcester Polytechnic Institute
http://wpi.edu/Pubs/ETD/browse/by_department/b.html

University of North Texas
http://www.library.unt.edu/theses

Louisiana State University
http://etd.lsu.edu/cgi-bin/ETD-browse/browse

Florida State University
http://www.etds.fsu.edu

University of Kentucky
http://www.uky.edu/ETD

University of Saskatchewan
http://www.library.usask.ca/etd

UNC School of Library Science Electronic
http://www.etd.ils.unc.edu/dspace

University of Maine
http://www.library.umaine.edu/theses

Duquesne University Library
http://www.library.duq.edu/etd

University of Virginia
http://www.viva.lib.virginia.edu/etd

Vanderbilt University
http://etd.library.vanderbilt.edu/ETD-db

University of South Africa
http://www.unisa.ac.za/Default.a... amp;ContentID=15350

University of Pittsburgh
http://www.pitt.edu/~graduate/etd

Williams College
http://www.williams.edu/library/theses

Universitatsbibliothek Munchen (Germany)
http://edoc.ub.uni-muenchen.de/perl/advsearch

University of Florida
http://uf.aleph.fcla.edu/F/?func... ;local_base=ufu_etd

University of New Orleans
http://etd.uno.edu/

University of Pretoria
http://upetd.up.ac.za/

University of Puerto Rico
http://grad.uprm.edu/tesisdigitales.htm

UW Electronic Thesis Database
http://etheses.uwaterloo.ca/

Uppsala Universitiet
http://publications.uu.se/theses/

Virginia Commonwealth University
http://etd.vcu.edu/ETD-db/ETD-search/search

Worcester Polytechnic Institute
http://www.wpi.edu/ETD-db/ETD-search/search

Yale University Library
http://ymtdl.med.yale.edu/ETD-db/ETD-search/search

The George Washington University
http://etd-gw.wrlc.org/ETD-db/ETD-search/search

The Pennsylvania State University’s
http://etda.libraries.psu.edu/ETD-db/ETD-search/search

North Carolina State University
http://www.lib.ncsu.edu/ETD-db/ETD-search/search

The New Jersey Institute of Technology’s
http://www.library.njit.edu/etd/index.cfm

Naval Postgraduate School Theses
http://library.nps.navy.mil/uhtbin/webcat

University of Mississippi Rowland Medical Library
http://library.umsmed.edu/free-e_res.htm#Journals

University of Groningen (Nedherland)
http://dissertations.ub.rug.nl/faculties/

NEXUS Data System
http://star.nrf.ac.za/scripts/st... s.txt?action=-oKdpb

Association of African Universities
http://www.aau.org/datad/database/login.php


University of Rochester
https://urresearch.rochester.edu/handle/1802/536/browse-title

HKUST Library Hong Kong
http://ustlib.ust.hk/search/ddis... 1%2C2754%2CB/browse

Dissertation Abstracts Online
http://library.dialog.com/bluesheets/html/bl0035.html#XT

Digital Library and ETDs Archives
http://scholar.lib.vt.edu/theses/browse/by_department/

Deakin University
http://tux.lib.deakin.edu.au/adt-VDU/public/

South Western Medical Center
http://www4.utsouthwestern.edu/l... amp;sortBy=dc.Title

Philosophy Dissertations Full Text
https://webspace.utexas.edu/deve... /dissertations.html

Universitat Dorpat (German)
http://www.utlib.ee/ekollekt/vanadisser/

Euroscience Veterinary Publisher
http://217.149.198.77/RIS/RISWEB.CGI#TOPOFREFLIST

The University of Auckland
(Dissertations in Statistics Education)
http://www.stat.auckland.ac.nz/~... s/dissertations.php

Horwitz Consulting PhD Data
http://www.phddata.org/process?action=newsearch

British Library
http://sherpa.bl.uk/view/subjects/

佐治亚理工学院博士、硕士论文
http://etd.gatech.edu/ETD-db/ETD-browse/browse?first_letter=A

The European Library
http://www.theeuropeanlibrary.org/portal/index.html

The Guide for Electronic Theses and Dissertations
http://etdguide.org/content/default.htm

Networked Digital Library of Theses and Dissertations
http://tennessee.cc.vt.edu/~lming/cgi-bin/ODL/nm-ui/members/

Tesi online (Commercial)
http://www.tesionline.com/intl/theses-list.jsp?hl=en

加州大学的免费文献仓库  

http://repositories.cdlib.org/escholarship

 
2009-11-27 17:38

整合前准备:动易目录为根目录,bbs文件夹下放置论坛源文件,blog文件夹下放置Oblog源文件。

                            一定要确保单独运行各系统正常

操作步骤一:

1、下载各个系统,并使之顺利运行。动易为网站根目录,动网在bbs文件夹内,Oblog在blog文件夹内。本地访问地址分别为:动易 http://127.0.0.1 动网 http://127.0.0.1/bbs Oblog http://127.0.0.1/blog (如果启用了域名,则这里为域名)

2、同步各个系统的数据,可以使用动易的数据同步程序。下载动易程序后,可以在“动易通行证——PDO_API统一接口数据同步程序”中找到,具体使用请参考使用说明。同步数据库顺序可以这样:动网数据库——动易数据库同步;Oblog数据库——动易数据库同步;动易数据库——动网数据库同步;动易数据库—— Oblog数据库同步。同步后,请进入Oblog后台,生成用户目录和相关文件

3、修改整合接口:

动易:API目录里,修改API_Config.asp为,

Const API_Enable = True
Const API_Key = "zdg1980"
Const API_Urls = "博客@@http://127.0.0.1/blog/api/API_Response.asp|论坛@@http://127.0.0.1/bbs/dv_dpo.asp"  

动网:bbsdv_dpo目录里,修改Api_Config.asp为,

Const DvApi_Enable = True
Const DvApi_SysKey = "zdg1980"
Const DvApi_Urls = "http://127.0.0.1/blog/api/API_Response.asp|http://127.0.0.1/api/API_Response.asp"

Oblog:blogAPI目录里,修改Api_Config.asp为,

Const API_Enable = True  
Const oblog_Key = "zdg1980"
Const strTargetUrls = "http://127.0.0.1/bbs/dv_dpo.asp|http://127.0.0.1/api/API_Response.asp"  

操作步骤二:

1、修改动易系统下的JS文件:JS/checklogin.js

找到下面代码处进行修改,第189行起

原文件待修改代码开始处:

$('UserLogin').innerHTML = tempstr;

            if(alogin==0)

{

   var ifrm1 = document.createElement("IFRAME"); ----------这里是要开始修改处

修改后代码:

if(alogin==0)
{
      var myAPIUrls = getAPIUrls(root,username,userpass)
     for (var i=0; i<myAPIUrls.length; i++){     
      var ifrm1 = document.createElement("IFRAME");
      ifrm1.src = myAPIUrls[i];
      ifrm1.height = "1";
      ifrm1.width = "1";
      ifrm1.frameborder= "0";
      document.body.insertBefore(ifrm1);
      }
                alogin = 1;
            }

function getAPIUrls(root,username,userpass){


        var iUrls = root.item(0).getElementsByTagName("apiurl");
        for (var i=0; i<iUrls.length; i++){
            strTempHTML += iUrls.item(i).text + "?syskey=" + syskey + iName + iPass + savecookie + "|";
        }
    }
       var strTempHTML = strTempHTML.substr(0, strTempHTML.length-1);
       var strTempHTML = strTempHTML.split("|");
       return strTempHTML;
}

或者在这里下载修改好的文件:点击下载   

         -------- (此文件适用于SW6.6版本,并向下兼容,动易程序新版本将会修正这个问题)

2、修改动网文件 login.asp

找到下面代码处进行修改 第210-231行

       '系统整合

       '-----------------------------------------------------------------

       If DvApi_Enable Then

              Response.Write DvApi_SaveCookie

              Response.Flush   ------------------------------!!!这是出现错误的地方!!!

       End If

       '-----------------------------------------------------------------

       TempStr = Replace(TempStr,"{$ray_logininfo}","")

       TempStr = Replace(TempStr,"{$comeurl}",comeurl)

       TempStr = Replace(TempStr,"{$comeurlinfo}",comeurlname)

       TempStr = Replace(TempStr,"{$forumname}",Dvbbs.Forum_Info(0))

       Session.Contents.Remove("xcount")

       If Not ajaxPro And DvApi_Enable Then'ajax

              Response.Write TempStr

       ElseIf Not ajaxPro And Not DvApi_Enable Then

              Response.Redirect(comeurl)

       Else

              Response.Cookies("count")=""'o(清空ajax里写入的cookies)

              strString(comeurl&"@@@@1")'o

       End If

修改后代码(将以上代码替换成以下代码即可):(其实就是将Response.Flush换了个位置而已)

       '系统整合

       '-----------------------------------------------------------------

       If DvApi_Enable Then

              Response.Write DvApi_SaveCookie

       End If

       '-----------------------------------------------------------------

       TempStr = Replace(TempStr,"{$ray_logininfo}","")

       TempStr = Replace(TempStr,"{$comeurl}",comeurl)

       TempStr = Replace(TempStr,"{$comeurlinfo}",comeurlname)

       TempStr = Replace(TempStr,"{$forumname}",Dvbbs.Forum_Info(0))

       Session.Contents.Remove("xcount")

       If Not ajaxPro And DvApi_Enable Then'ajax

              Response.Write TempStr

       ElseIf Not ajaxPro And Not DvApi_Enable Then

              Response.Redirect(comeurl)

       Else

              Response.Cookies("count")=""'o(清空ajax里写入的cookies)

              strString(comeurl&"@@@@1")'o

       End If

       Response.Flush

至此,已经完成整合操作

      

         -------- 发源处:http://bbs.powereasy.net/dispbbs.asp?boardid=67&Id=411591

大家来看一下这个整合!!!!!!!!!!!!!!!!!!

与动网整合后,从动网注册可通用,从论坛登录或从动易登录,动易会出现服务器不响应错误.从动易修改用户资料,会出现动网这边不响应,情况如下:
    整合后从论坛注册、登录都没问题,但登录后动易这边一直显示“载入中。。。。”,如果进入user/index.asp,用户已经登录了,但在修改信息后提交,则出现:
Microsoft VBScript 运行时错误 错误 ’800a0009’
下标越界: ’[number: 1]’
\USER\../API/API_Function.asp,行 288
退出登录时则出现:
HTTP 500 - 内部服务器错误
Internet Explorer
如果直接从动易这边登录,会出现服务器不响应,注册则出现“内部服务器错误”。
原因分析:因为整合的操作过程并不是很复杂,主要是对动易的API_Config.asp这个文件进行配置设置,经过对客户的这个文件进行查看,发现他的设置是这样的:
Const API_Enable = True
Const API_Key = "bybook"
Const API_Urls = "http://xxxxxx/bbs/dv_dpo.asp"      
Const API_Timeout = 10000
’以下请勿修改
Dim arrAPIUrls
arrAPIUrls = Split(API_Urls,"|")
%>
从这里就可以看出问题是出在 Const API_Urls=http://xxxxxx/bbs/dv_dpo.asp 这行上
解决方法:
Const API_Enable = True
Const API_Key = "bybook"
Const API_Urls = "论坛@@http://www.bybook.com.cn/bbs/dv_dpo.asp"      
Const API_Timeout = 10000
’以下请勿修改
Dim arrAPIUrls
arrAPIUrls = Split(API_Urls,"|")
%>
问题得到解决。
现象说明:在整合操作过程中,我们往往会忽略一些细节上的操作,对于本例中的出错地方的设置,其实在这个API_Config.asp文件里的上面部分就有详细的说明,我们应该仔细阅读下那些可能会被疏忽文字说明:
               通行接口开关:API_Enable = True(启用) 或者 False(禁用)
            ’安 全 密 钥 :API_Key 用户自定义的字符串,整合系统中所
            ’       有程序的密钥必须一致。
            ’远程系统配置:每个远程系统均包含两个部分,第一部分是该
           ’       系统的名称,第二部分为接口文件的URL;名称
            ’       和URL之间用"@@"分隔,多个远程系统之间用
            ’       "|"分隔。
           ’超 时 设 置 :超时时间用于远程请求,这里的超时时间只是
           ’       一个基数,并非实际等待时间。默认设置为10
            ’       秒,表示DNS解析和建立连接超时时间10秒、
           ’       发送和接收数据超时时间为20秒。用户可以根
           ’       据自己的情况设定。通常在同一服务器可以设
           ’       置短一些,跨域名跨服务器设置长一些。

 
2009-11-12 10:19

 
2009-10-21 22:17

好网站(转)

1)http://www.circuitsage.com/
   模拟电路不错的站点,目录有A/D Design/Bandgap Design/Filter Design/Impedance Matching/Inductor Design/LNA Design/PLL Design/Transceiver Design/Transmission Line Design。不过更新较慢。
2)http://www.aicdesign.org/scnotes.html
   熟悉模拟电路的都知道Allen的那本《CMOS Analog Circuit Design》,这里提供了他写的资料,很适合培训用。还有一些关于PLL方面的资料。
3)http://elec-engr.okstate.edu/hutchen/classnotes/
     俄克拉何马州立大学的网页,东西有点杂,ppt居多,适合培训。
4)http://www2.cic.org.tw/training/index.html
台湾晶片系???中心网页。大多介绍EDA工具的使用。
5)http://asp5.6to23.com/microcore/7_download/download.html
   微芯设计在线,介绍EDA工具居多。
6)http://users.ece.gatech.edu/~rincon/classes/ece4430/ece4430.htm
对CMOS technology系统的介绍,约40章节。
7)http://www.stanford.edu/class/ee214/handouts/
   Standford的课程资料,值得一看

二) 论文查询
   2.台湾硕博论文咨询网 dtkrf 123456
三) 在线资源

fpga pld eda 专业论坛
综合电子论坛
中国集成电路设计平台开发网论坛
ChinaBCB
Tcl/Tk中文网论坛
班级论坛

xilinx software manual
ise 6.3i doc


systemc
systemverilog
EDA Industry Working Groups


activestate
Perl 程式語言
Perl Cookbook
http://www.tcl.tk/
Tcl 語言
tcl/tk中文网


RESOURCES ONLINE
How to Write an Operating System
Structure and Interpretation of Computer Programs
The Scheme Programming Language, 2nd Edition


Win32ASM Community messageboard


博客园
CSDN blog
blogchina
yourblog


电子元件
中国元器件在线
广东电子商贸网--电子技术资料


亚马逊
第二书店
china-pub
当当
新蛋


浙大acm
奇迹文库
词霸搜索


千龙网络硬盘
蜂巢网络硬盘
ChinaMofile网络硬盘
雅虎公文包


中国教育报


Computer Architecture:
Architecture of the AMD 64-bit core from Chip Architect
http://research.sun.com/async/ Sun asynchronous design home page
MIT Computer Systems Architecture Homepage-Free Course
MIT OpenCourseware Page for EE and CS
What every Computer Scientist should know about Floating Poing Arithmetic
http://www.cs.berkeley.edu/~pattrsn/152F97/index_lectures.html
UWMadison Computer Architecture Qualifiers
Readings In Instruction Level Parallelism
http://www.jilp.org/Journal of Instruction Level Parallelism
http://www.simplescalar.com/ The Simplescalar Simulator
Installation log for Simplescalar3.0 on RHLinux 7.2 taken from Adinarayan's webpage
Installation log for Simplescalar 3.0 on Redhat Linux 9.0 on a x86 machine

Verilog & Digital design:
Introduction to Verilog: Chapter 11 from ASICs book
ASIC the book by M.J. Sebastian Smith
Links supporting the book and other info about ASICs
http://parmita.com/ Lots of information on Verilog and Digital Design with papers by Cliff Cummings
http://www.sutherland-hdl.com/other_hdl_sites.htm List of Verilog related links
Introduction to VHDL
http://www.opencores.org/ Various Open Cores-Complete and Under Development
http://www.edacafe.com/
http://hdlplanet.tripod.com/synthesis/synthesis.html HDL Planet's Synthesis page
http://www.snug-universal.org/Synopsis Users Group-SNUG
http://www.systemc.org/ SystemC website
A very good presentation on the use of SystemC at SNUG
Deep Submicron Delay Effects
Introduction to Mixed signal design from Lalith Narayan's webpage
Circuit Analysis
Using Reconf Computing to take advantage of 0.13u technology
Easy DDR Memory Interface in Low Cost FPGAs-Web Presentation
Logic Design class at Stanford
Logic Design class at Rice university-http://www.owlnet.rice.edu/~elec326/Notes.html
Lot of Links on Hardware Design from Sumit Gupta's home page
http://www.fpgajournal.com/
White Papers at silicon.com
ARS Technica-http://arstechnica.com/paedia/
Wishbone FAQ-http://www.silicore.net/wishfaq.htm

http://www.beyondlogic.org/Lots of Links on common transmission protocols and detailed descriptions

Xilinx ISE 6.2i documentation
Xilinx documentation website


VLSI:
http://turquoise.wpi.edu/webcourse/links.htmlMisc links to introductory material on VLSI Design
http://turquoise.wpi.edu/webcourse/toc.html An online course in VLSI Design
http://turquoise.wpi.edu/cds/ Cadence Tutorial
http://www.vlsitechnology.org/ Information on designing a Standard Cell Library
Britney's guide to Semiconductor Technology
Semiconductor manufacturing technology
SPICE Handbook of 50 circuits

Parallel Computing:
http://www.llnl.gov/computing/tutorials/parallel_comp/ Introduction to Parallel Computing
http://www.jics.utk.edu/parallel.html Parallel Computing Resources on the web
http://lib-www.lanl.gov/numerical/index.html Free Books-Numerical recipes in C, Fortran and Fortran90
Top 500 Computers - http://www.top500.org


Linux and Operating Systems:

C / C++:
http://www.nist.gov/dads/Dictionary of Algorithms and Data Structures
http://ciips.ee.uwa.edu.au/~morris/Year2/PLDS210/ds_ToC.html A Course in Data Structures
http://www.cs.cf.ac.uk/Dave/C/CE.html C Programming on Unix
http://www.cplusplus.com/doc/tutorial/ A brief C++ tuorial
C++ Pitfalls from Mark Allen Weiss' website
C++ class notes and misc at UH - http://www2.cs.uh.edu/~svenkat/cosc1320/

Perl:

Personal:
ISKCON temple at Houston-http://www.iskconhouston.org
http://www.uh.edu/ University of Houston
http://www.uh.edu/giso Graduate Indian Students Organization at UH
50 Chess games for beginners
Houston ABC Jamcams Check these out before leaving home or office if you are in Houston
http://www.tcfb.com/freetechbooks/index.html Free Technical Books
http://www.intelinfo.com/free_computer_books.htmlMisc free books and reference material
http://www.katinkahesselink.net/kr/index.htm Jiddu Krishnamurti-Quotes and Stories
http://claymore.engineer.gvsu.edu/~jackh/books/plcs/
Dhruvaraj's free Computer books
Lots of other free books by popular authors-Poems, short stories, novels, plays and misc
Genobyte-http://www.genobyte.com/
Lalith Narayan's website. Great links and an interesting blog


本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/qinxi/archive/2005/01/22/264282.aspx

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/qinxi/archive/2005/01/22/264282.aspx

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/qinxi/archive/2005/01/22/264282.aspx

 
2009-09-11 14:31
51
227
龙的传人
52
232
萤火虫一号
53
234
龙腾
54
244
日照黄山
55
245
机遇队
56
249
起步
57
250
清硕
58
251
MARS
59
253
西安科技大学队
60
255
创新先锋
61
258
浙江欧泰电子上海研发部
62
261
ZTM
63
267
工大之盟
64
268
碧波湖队
65
271
生物电子
66
284
梦想队
67
298
思达创新团队
68
299
乐星
69
301
芯睿超人
70
320
襄樊学院
71
329
航天电工
72
331
许小峰
73
333
Planet
74
336
优利科
75
340
For dream
76
344
cjmsea
77
346
Skywalker
78
353
Make Robots
79
355
怪才高科
80
358
金布尔队
81
366
美芯
82
372
追求卓越
83
380
鹰之队
84
399-2
传感器实验室
85
404
中原星
86
410-2
单晶力工作室
87
415
河池学院电子三队
88
418
阳光之下
89
425
liya
90
428
奇趣创新电子设计小组
91
434
电信1
92
442
走遍天下
93
443
贝玛
94
445
LGL
95
453
Double X
96
454
北斗芯
97
456
Filma
98
458
江丽电子
99
463
恒颖设计
100
468
雷霆战队
注:上表按照参赛报名编号排序。

 
   
 
 
文章分类
 
 
Pcb(8)
 
 
Job(2)
 
Fpga(4)
 
 
 
 
Lsvm(1)
 
 
 
 
Eda(3)
 
 
 
 
 
 
 
 
 
 
   
 
文章存档
 
     
 
最新文章评论
  

先谢过LZ 问题解决了 之前还以为是显卡驱动的问题 我的电脑是小Y独显+集显的 想问LZ
 

[表情]
 

短距离无线通信简介视频:http://v.youku.com/v_show/id_XMzA5NTg4ODk2.html UTC1212
 

回复ycz_yanzone:没关系
 

太感谢了,最近用Altium designer画电路板总是死机,郁闷死了。得你指点茅塞顿开啊。
   
帮助中心 | 空间客服 | 投诉中心 | 空间协议
©2012 Baidu