码迷,mamicode.com
首页 > 其他好文
node常用网址
七天学会 node jshttp:/nodejs入门http://nqdeng.github.io/7-days-nodejs/https://github.com/cnodejs/nodeclub/wiki
分类:其他好文   时间:2015-04-17 19:56:44    阅读次数:94
Absolute positioning
The programmer specifies the position and the size of each widget in pixels. When you use absolute positioning, we have to understand the following li...
分类:其他好文   时间:2015-04-17 19:56:23    阅读次数:184
实现图片旋转木马3D浏览效果
CSS3 transform实现图片旋转木马3D浏览效果 CSS3 transform实现图片旋转木马3D浏览效果实例页面 ...
分类:其他好文   时间:2015-04-17 19:54:23    阅读次数:141
hdu 4432 第37届ACM/ICPC天津现场赛B题
题目大意就是找出n的约数,然后把约数在m进制下展开,各个数位的每一位平方求和,然后按m进制输出。模拟即可 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 using namespace st...
分类:其他好文   时间:2015-04-17 19:52:51    阅读次数:112
类和方法而调用
一.类的调用1.代码package 四则运算;public class a { public static void main(String[] args) { // TODO Auto-generated method stub Yunsuan a=new Yunsuan(); int i;...
分类:其他好文   时间:2015-04-17 19:53:40    阅读次数:119
大话存储学习笔记(1)
一、存储历史 二、计算机IO 1.什么叫IO I表示in,对于CPU来说,从内存中取数据;O表示out,CPU运算完后将数据发送至内存 同理,对于磁盘来说,将数据写入磁盘表示in,将输入从磁盘读出来叫out 2.总线 PCI总线:一种南桥与外设连接的总线技术 PCI总线特点:中断共享,即不同设备使用...
分类:其他好文   时间:2015-04-17 19:53:47    阅读次数:135
Position详解---转
position
分类:其他好文   时间:2015-04-17 19:53:33    阅读次数:114
约瑟夫问题合集
swustoj 142猴子报数(0142)Time limit(ms): 1000Memory limit(kb): 65535Submission: 1338Accepted: 830问题描述:n个猴子围坐一圈并按照顺时针方向从1到n编号,从第s个猴子开始进行1到m的报数,报数到第m的猴子退出报数...
分类:其他好文   时间:2015-04-17 19:51:15    阅读次数:112
Emitting signals
Objects created from aQtCore.QObjectcan emit signals. In the following example we will see how we can emit custom signals.#!/usr/bin/python# -*- codin...
分类:其他好文   时间:2015-04-17 19:49:15    阅读次数:117
Microsoft Dynamics CRM MVP
MVP一个响亮的名称,不是Kobe Bryant不是LeBron Raymone James这是 Microsoft Dynamics CRM MVP求证Link:http://mvp.microsoft.com/zh-cn/mvp/Earson%20Zhao-5001333很开心写这篇Blog,从...
分类:其他好文   时间:2015-04-17 19:50:47    阅读次数:121
CentOS 6.4 部署saltstack master/minion
实验环境:salt-master: 10.65.253.121 slatm-3738salt-monion1: 10.65.253.125 slats1-4739salt-monion2: 10.65.253.139 slats2-5740Saltstack master.安装epel yum源[r...
分类:其他好文   时间:2015-04-17 19:48:43    阅读次数:172
领域模型、贫血模型、充血模型概念总结
领域模型领域模型是对领域内的概念类或现实世界中对象的可视化表示。又称概念模型、领域对象模型、分析对象模型。它专注于分析问题领域本身,发掘重要的业务领域概念,并建立业务领域概念之间的关系。业务对象模型(也叫领域模型 domain model)是描述业务用例实现的对象模型。它是对业务角色和业务实体之间应...
分类:其他好文   时间:2015-04-17 19:48:28    阅读次数:113
Events
All GUI applications are event-driven. Events are generated mainly by the user of an application. But they can be generated by other means as well: e....
分类:其他好文   时间:2015-04-17 19:47:28    阅读次数:137
CentOS7 声卡异常
rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpm sudo yum --enable...
分类:其他好文   时间:2015-04-17 19:48:07    阅读次数:185
Bootstrap基础(八):图片
Bootstrap图片在本章中,将学习 Bootstrap 对图片的支持。Bootstrap 提供了三个可对图片应用简单样式的 class:.img-rounded:添加border-radius:6px来获得图片圆角。.img-circle:添加border-radius:500px来让整个图片变...
分类:其他好文   时间:2015-04-17 19:47:46    阅读次数:91
QtGui.QGridLayout
The most universal layout class is the grid layout. This layout divides the space into rows and columns. To create a grid layout, we use theQtGui.QGri...
分类:其他好文   时间:2015-04-17 19:49:04    阅读次数:188
实现X*N
#include using namespace std;double foo(int n,double x) { if(1==n) { return x; } else { if(n%2==0) return foo(n/2,x*x); else return...
分类:其他好文   时间:2015-04-17 19:47:36    阅读次数:126
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!