码迷,mamicode.com
首页 > 2014年11月28日 > 全部分享
Transformerless dc/dc converter produces bipolar outputs
The conventional way to produce dual (positive and negative) outputs from a single positive input is to use a transformer. Although such designs are r...
分类:其他好文   时间:2014-11-28 14:08:17    阅读次数:145
iOS:新特性展示
+ (void)choseRootVC{ NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; NSString *saveVersion = [defaults objectForKey:@"CFBundle...
分类:移动开发   时间:2014-11-28 14:05:21    阅读次数:145
CodeSmith自己动手写模板
CodeSmith学习笔记------1.新建一个Code Smith Generator Template(C sharp)2.一些常见标签的解释:①外部变量:表示定义一个string类型的外部变量,在需要在生成的时候才输入,此属性有默认值,也可以由用户在右下角的属性栏里修改属性的值。还有Opti...
分类:其他好文   时间:2014-11-28 14:05:21    阅读次数:276
java判断一个数是否为素数[转]
http://blog.csdn.net/lwcumt/article/details/8027586importjava.util.Scanner;//质数又称素数,是指在一个大于1的自然数中,除了1和此整数自身外,不能被其他自然数整除的数publicclassPrimeNumber{public...
分类:编程语言   时间:2014-11-28 14:05:10    阅读次数:187
角色转变
已经不是学生了 对于刚刚走出校园的我来说 哪怕是写一个小工具 不再仅仅是功能的完成 需要考虑到用户的可用性 当处理大批量文件时 程序可能会出现的问题 还有程序处理的效率 当谨记this.SetStyle(ControlStyles.AllPaintingInWmPaint,true);//解决闪烁t...
分类:其他好文   时间:2014-11-28 14:07:34    阅读次数:139
MATLAB/Octave warning: mx_el_eq: automatic broadcasting operation applied 错误分析
在进行对一个mXn的矩阵与mX1的矩阵进行==比较时,原意是想让mXn的矩阵的每一行分别与mX1的矩阵每一行进行比较,得到的结果虽然是对的,但会报一个warning: mx_el_eq: automatic broadcasting operation applied 。强迫症得治!如下图:出现这一...
分类:移动开发   时间:2014-11-28 14:07:24    阅读次数:425
Jquery 遍历 Object
1.jquery 遍历对象 New Document 用户名 密码 2.jQuery遍历数组 New Document ------------此部分同1中的body部分-------...
分类:Web程序   时间:2014-11-28 14:04:38    阅读次数:520
Constant-on-time buck-boost regulator converts a positive input to a negative output
Buck regulators find wide application as step-down regulators for converting large positive input voltages into a smaller positive output voltages.Fig...
分类:其他好文   时间:2014-11-28 14:05:24    阅读次数:269
测试边界值(上点、内点、离点)
上点:就是指得边界上得点,开区间的话,上点就是在域外,闭区间得话,上点就是在域内。离点:指得就是离上点最近得点,如果是开区间,那么离点就在域内,如果是闭区间,那么离点就在域外。内点:域内得任意点都是内点。实例: (6,15] 上点:6 15 离点:7 16
分类:其他好文   时间:2014-11-28 14:04:56    阅读次数:295
C# 全局唯一标识符 (GUID)
一 C# 全局唯一标识符 (GUID)Represents a globally unique identifier (GUID).To browse the .NET Framework source code for this type, see theReference Source.Name...
分类:Windows程序   时间:2014-11-28 14:04:06    阅读次数:349
如何让自动化测试报告内容更丰富<Python>
简述 使用selenium webdriver + Python做自动化测试,执行完成后要生成测试报告,Python我们使用的HTMLtestrunner 进行生成,但是默认提供的生成报告内容,并不能满足我们的需求,怎么才能让测试报告数据更清晰,内容更丰富呢。对于一些人来说,可能已经重写了报告生成方...
分类:编程语言   时间:2014-11-28 14:06:03    阅读次数:663
ffmpeg常用基本命令(转)
【FFmpeg】FFmpeg常用基本命令1.分离视频音频流ffmpeg -i input_file -vcodec copy -an output_file_video //分离视频流ffmpeg -i input_file -acodec copy -vn output_file_audio .....
分类:其他好文   时间:2014-11-28 14:04:52    阅读次数:134
jQuery笔记
1、jQuery - 添加元素我们将学习用于添加新内容的四个 jQuery 方法:append() - 在被选元素的结尾插入内容prepend() - 在被选元素的开头插入内容after() - 在被选元素之后插入内容before() - 在被选元素之前插入内容解析:append方法和after方法...
分类:Web程序   时间:2014-11-28 14:05:42    阅读次数:190
Wide-range voltage regulator automatically selects operating mode
The circuit inFigure 1delivers programming voltages to an EEPROM under the control of an external DAC (not shown). You can replace the DAC with a pote...
分类:其他好文   时间:2014-11-28 14:03:59    阅读次数:223
C#winform中TrackBar的使用
1.手动设置高度(宽):把AutoSize属性设为false 2.重要的事件:Scroll事件和和ValueChanged事件
分类:Windows程序   时间:2014-11-28 14:03:31    阅读次数:776
Win8下安装MAC OS
参考:win7下安装OSX10.8及XCODE4.5http://cleris.diandian.com/VB-Mountain-Lion1,本机环境:win8 64位, 8G内存。2,安装virtualbox:3,安装virtualbox扩展:4,安装完后打开virtualbox,然后创建虚拟机:...
分类:Windows程序   时间:2014-11-28 14:04:21    阅读次数:250
黑马程序员-学习日记 面向对象(构造函数专题篇)
class Father{ Father(int a) { System.out.println("father run"); }}class Son extends Father{ Son() { Super(2); System....
分类:其他好文   时间:2014-11-28 14:04:49    阅读次数:104
1567条   上一页 1 ... 59 60 61 62 63 64 65 ... 93 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!