首页 > 2016年02月18日 > 全部分享
AngularJS 1.5.0-beta.2 and 1.4.8 have been released
AngularJS 1.5.0-beta.2 With AngularJS 1.5.0-beta.2, we’ve improved the performance and flexibility of Angular 1 while still maintaining reliability an
分类:Web开发   时间:2016-02-18 09:58:42    收藏:0  评论:0  赞:0  阅读:201
ios8 swift开发:显示变量的类名称
var ivar = [:] ivar.className // __NSDictionaryI var i = 1 i.className // error: 'Int' does not have a member named 'className' If you want to get the
分类:移动平台   时间:2016-02-18 09:58:32    收藏:0  评论:0  赞:0  阅读:180
Exploring the Angular 1.5 .component() method
Angular 1.5 introduced the .component() helper method, which is much simpler than the.directive() definition and advocates best practices and common d
分类:其他   时间:2016-02-18 09:58:22    收藏:0  评论:0  赞:0  阅读:237
atomic,nonatomic
atomic和nonatomic用来决定编译器生成的getter和setter是否为原子操作。 atomic 设置成员变量的@property属性时,默认为atomic,提供多线程安全。 在多线程环境下,原子操作是必要的,否则有可能引起错误的结果。加了atomic,setter函数会变成下面这样:
分类:其他   时间:2016-02-18 09:57:53    收藏:0  评论:0  赞:0  阅读:143
linux中的解压,压缩命令
tar命令 解包:tar zxvf FileName.tar 打包:tar czvf FileName.tar DirName gz命令 解压1:gunzip FileName.gz 解压2:gzip -d FileName.gz 压缩:gzip FileName .tar.gz 和 .tgz 解压
分类:系统服务   时间:2016-02-18 09:57:41    收藏:0  评论:0  赞:0  阅读:234
Git -- 简介
简介 很多人都知道,Linus在1991年创建了开源的Linux,从此,Linux系统不断发展,已经成为最大的服务器系统软件了。 Linus虽然创建了Linux,但Linux的壮大是靠全世界热心的志愿者参与的,这么多人在世界各地为Linux编写代码,那Linux的代码是如何管理的呢? 事实是,在20
分类:其他   时间:2016-02-18 09:57:31    收藏:0  评论:0  赞:0  阅读:239
mysql 查看所有存储过程
转载地址:http://zhuixue.iteye.com/blog/375353 查询数据库中的存储过程 方法一: select `name` from mysql.proc where db = 'your_db_name' and `type` = 'PROCEDURE' 方法二: show
分类:数据库技术   时间:2016-02-18 09:57:21    收藏:0  评论:0  赞:0  阅读:201
cocos2dx的runAction: 反复运行,多个动作连接运行,多个动作同一时候运行的实现
cocos2dx的 runAction,假设某个动作重复运行用cc.RepeatForever:create, 多个动作连接运行用cc.Sequence:create,多个动作同一时候运行用cc.Spawn:create. 反复运行某个动作cc.RepeatForever:create local
分类:其他   时间:2016-02-18 09:57:10    收藏:0  评论:0  赞:0  阅读:177
移动前端知识总结
meta基础知识 H5页面窗口自动调整到设备宽度,并禁止用户缩放页面 <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalab
分类:移动平台   时间:2016-02-18 09:57:01    收藏:0  评论:0  赞:0  阅读:360
SQL Server 2008 R2 主从数据库同步
一、准备工作: 主数据库服务器: OS:Windows Server 2008 R2 DB: SQL Server 2008 R2 Hostname : CXMasterDB IP: 192.168.1.224/24 dg: 192.168.1.1 DNS: 192.168.1.19 DNS: 20
分类:数据库技术   时间:2016-02-18 09:56:50    收藏:0  评论:0  赞:0  阅读:313
部署基于国际版Azure的SharePoint三层架构服务器场
前言 微软Azure国际版已经很普及了,这里没有用国内版(世纪互联),用的是国际版,当然是由于公司性质的缘故。这里一步步图文的方式,分享给大家创建Azure国际版的SharePoint三层架构的过程,并带给大家一些使用感受。 自己在使用的过程中,也发现一些问题,搜了很久也没有搞定,最后在MS cas
分类:其他   时间:2016-02-18 09:56:10    收藏:0  评论:0  赞:0  阅读:179
Centos配置国内yum源
1. Centos配置国内yum源 http://blog.chinaunix.net/uid-23683795-id-3477603.html 网易(163)yum源是国内最好的yum源之一 ,无论是速度还是软件版本,都非常的不错,将yum源设置为163yum,可以提升软件包安装和更新的速度,同时
分类:其他   时间:2016-02-18 09:56:00    收藏:0  评论:0  赞:0  阅读:137
UVaLive4043 UVa1411 Ants 巨人与鬼
题意:给出平面上n个白点n个黑点,要求两两配对,且配对所连线段没有交点。 法一:暴力 随机一个初始方案,枚举任意两条线段如果有交点就改一下。 效率其实挺好的。 法二:二分图最佳完美匹配 显然没有交点的方案是所有线段的长度和最小的方案,将边权构造为欧几里德距离即可,O(n4)的算法效率远不及法一,O(
分类:其他   时间:2016-02-18 09:55:50    收藏:0  评论:0  赞:0  阅读:476
python基础学习四
迭代器Iterators迭代器仅是一容器对象,它实现了迭代器协议。它有两个基本方法:next方法返回容器的下一个元素__iter__方法返回迭代器自身 生成器Generators 二分查找 def BinarySearch(a, target): low = 0 high = len(a) - 1
分类:编程语言   时间:2016-02-18 09:55:39    收藏:0  评论:0  赞:0  阅读:145
sqlserver错误2,error 40
打开配置管理器:开始-> sqlserver2014->配置工具->配置管理器 选择sqlserver服务,并将右侧箭头的指向右击设为启动就OK了
分类:数据库技术   时间:2016-02-18 09:55:19    收藏:0  评论:0  赞:0  阅读:255
openssl之EVP系列之1---算法封装
openssl之EVP系列之1---算法封装 ---依据openssl doc/crypto/EVP.pod翻译和自己的理解写成 (作者:DragonKing, Mail: wzhah@263.net ,公布于:http://openssl.126.com 之openssl专业论坛,版本号:open
分类:编程语言   时间:2016-02-18 09:54:39    收藏:0  评论:0  赞:0  阅读:143
bzoj1854 [Scoi2010]游戏
题目链接 第一眼就想到二分图匹配 1 #include<algorithm> 2 #include<iostream> 3 #include<cstdlib> 4 #include<cstring> 5 #include<cstdio> 6 #include<string> 7 #include<c
分类:其他   时间:2016-02-18 09:54:28    收藏:0  评论:0  赞:0  阅读:169
在iOS虚拟机上使CLPlacemark获取中文信息
-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations{ CLLocation *location = locations[0]; CLGeocoder *geocoder
分类:移动平台   时间:2016-02-18 09:54:08    收藏:0  评论:0  赞:0  阅读:438
瀑布流的实现
瀑布流的一种实现方式
分类:其他   时间:2016-02-18 09:53:58    收藏:0  评论:0  赞:0  阅读:159
转载:oracle用户创建及权限设置
权限: create session create table unlimited tablespace connect resource dba 例: #sqlplus /nolog SQL> conn / as sysdba; SQL>create user username identifie
分类:数据库技术   时间:2016-02-18 09:53:38    收藏:0  评论:0  赞:0  阅读:227
1289条   上一页 1 ... 54 55 56 57 58 ... 65 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!