码迷,mamicode.com
首页 > 2015年10月13日 > 全部分享
NodeJS学习笔记
分类:Web程序   时间:2015-10-13 21:05:48    阅读次数:183
Java控制台实现计算器[面向对象思想-02]
import java.util.*;public class Test01{// 测试类 public static void main(String [] args){ finalTest(); } public static void finalTest(){ ...
分类:编程语言   时间:2015-10-13 21:04:58    阅读次数:194
objective-c常用数学方法
1、 三角函数 double sin (double);正弦 double cos (double);余弦 double tan (double);正切 2 、反三角函数 double asin (double); 结果介于[-PI/2, PI/2] double acos (doubl...
分类:其他好文   时间:2015-10-13 21:04:27    阅读次数:187
[LeetCode]24. Search Insert Position插入位置
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or...
分类:其他好文   时间:2015-10-13 21:05:16    阅读次数:125
iOS 8 定位失败问题
首先plist定义两个string:NSLocationWhenInUseUsageDescriptionNSLocationAlwaysUsageDescription然后调用[self.locationManager requestWhenInUseAuthorization]或者[self.l...
分类:移动开发   时间:2015-10-13 21:04:55    阅读次数:217
Android 4.2 Wifi Display 之 Settings 源码分析
System Server是Android系统的核心,他在Dalvik虚拟机启动后立即开始初始化和运行http://blog.csdn.net/sadamoo/article/details/27665149最近在学习Android 4.4上面的WifiDisplay(Miracast)相关的模块,...
分类:移动开发   时间:2015-10-13 21:04:58    阅读次数:499
java web 手动部署项目步骤
java Web 手动部署项目步骤1 在tomcat下面的webapps下面建立需要部署的文件夹(eg:demo);2 在demo下建立 WEB-INF WETA-INF src 文件夹;3 在src下建立新的servlet.java文件4 在WEB-INF下面建立classes和web.xml文....
分类:编程语言   时间:2015-10-13 21:03:43    阅读次数:259
python列表和分片
str = "0123456789"print("打印第0个元素:" ,str[0])print("负数表示倒数第N个元素,-1表示倒数第一个元素:" ,str[-1])print("分片操作,str[start:end], start会包含在结果中而end却不会:" ,str[1:5])print...
分类:编程语言   时间:2015-10-13 21:04:01    阅读次数:236
Lessons Learned from Developing a Data Product
Lessons Learned from Developing a Data ProductFor an assignment I was asked to develop a visual ‘data product’ that informed decisions on video game r...
分类:其他好文   时间:2015-10-13 21:06:12    阅读次数:249
[题解+总结]20151013搜索
1、前言 互测题第二弹——来自YMDragon的搜索。一大堆以前正式比赛的题目,什么CTSC,HNOI和NOI云云,某些题实在不好吐槽。。。把搜索出在考场上还出得这么丧病。2、match 比赛来源:BZOJ 3139 /HNOI 2013链接:3、game 智慧珠游戏来源:BZOJ 1501 / ....
分类:其他好文   时间:2015-10-13 21:05:29    阅读次数:208
ios短信和电话--参考
调用打电话功能[[UIApplicationsharedApplication] openURL:[NSURL URLWithString:@"tel://10086"]];调用发短信功能[[UIApplication sharedApplication]openURL:[NSURL URLWith...
分类:移动开发   时间:2015-10-13 21:03:19    阅读次数:190
从ACM会议分析我国计算机科学近十年发展情况
从ACM会议分析我国计算机科学近十年发展情况来源:《中国计算机学会通讯》2015年第10期《专栏》作者:陈 钢2006年,承蒙李国杰院士推荐,《中国计算机学会通讯》发表了我的一篇文章“从ACM会议论文数量看差距”。该文就中国大陆学者在ACM会议上论文发表情况,将中国计算机科学同国际水平进行了比较和分...
分类:其他好文   时间:2015-10-13 21:04:41    阅读次数:772
uva 202 Repeating Decimals
题意:输入整数a和b,(0 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 8 int vis[3005]; 9 10 int main(){11 int a,b;12 while(cin>>...
分类:其他好文   时间:2015-10-13 21:05:09    阅读次数:201
ServletContext保存访问量
ServletContext application = this.getServletContext(); Integer count = (Integer)application.getAttribute("count"); if(count == null) { count = 1; } el...
分类:其他好文   时间:2015-10-13 21:02:11    阅读次数:141
spring的懒加载
在spring的IOC容器中,可以通过设置来设置是否为懒加载模式,懒加载的意思就是说是否在spring容器加载的时候将bean加载到容器中。在没有设置的情况下,默认是false的,就是说不使用懒加载模式。当设置为false(或者没有设置的时候)tomcat启动的时候出现的是: Initializin...
分类:编程语言   时间:2015-10-13 21:03:54    阅读次数:255
uitableviewcell 自适应大小 参考
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {// 列宽CGFloat contentWidth = self.tableView.frame.size....
分类:其他好文   时间:2015-10-13 21:02:22    阅读次数:251
sql递归查询子级
WITH T(emp_no, name, dept_no, the_level, path,path1,manager_id) AS( SELECT emp_no, name, dept_no ,1 AS the_level ,'\'||name path ...
分类:数据库   时间:2015-10-13 21:04:12    阅读次数:163
1330条   上一页 1 ... 9 10 11 12 13 14 15 ... 79 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!