其他-日排行
移动平台少不了跟二维码打交道,关于二维码,有篇好文章推荐目前我想实现一个功能,扫描二维码实现,当采用扫码app时转到软件市场下载,当采用已安装的指定app时自动登录,就想到了一个方案:以下载apk链接作为url并且后面接上登录使用的身份密钥,可是,这样的字符串好长啊!我们知道二维码只能针对文本进行编...
分类:其他 时间:2014-11-30 06:10:10 收藏:0 阅读:317
function [P, L, U] = plu(A) % The implementation of PLU Factorization % L is lower triangular and U is upper triangular % P is permutation matrix % Author: Zhenlin Du(Johnsondu) % Email: qlduzhlin@...
分类:其他 时间:2014-11-30 23:16:21 收藏:0 阅读:434
分类:其他 时间:2014-12-01 08:51:32 收藏:0 阅读:309
新建文件:velocity_implicit.vm 内容: #*?@implicitly?included?*# #*?@velocityproperties?path="velocity.properties"?runtime_root="../webapp/WEB-INF/vm"?*#...
分类:其他 时间:2014-12-01 12:57:53 收藏:0 阅读:1125
akka 并发编程框架  kafka 高吞吐量分布式消息系统 akka 是一个用 Scala 编写的库,用于简化编写容错的、高可伸缩性的 Java 和 Scala 的 Actor 模型应用。 Actor模型并非什么新鲜事物,它由Carl Hewitt于上世纪70年代早期提出,目的是为了解决分布式编程中一系列的编程问题。其特点如下: ...
分类:其他 时间:2014-12-01 17:36:02 收藏:0 阅读:700
1 #include 2 #define lson l,mid,id>1;10 num[id>1;26 build_tree(lson);27 build_tree(rson);28 num[id]=num[id>1;42 if(L...
分类:其他 时间:2014-12-01 19:06:22 收藏:0 阅读:292
/** * * { * "id": 2, * "title": "json title", * "config": { * "width": 34, * "height": 35 * }, * "data":...
分类:其他 时间:2014-12-02 18:42:24 收藏:0 阅读:254
系统:centos7_x86_64 1.下载预编译的二进制文件mmonit和monit ? ? ? http://mmonit.com/download/ 2.还需要安装一些库: # yum install glibc.i686 #? yum install libraries # yum install libpam.so.0 3.解...
分类:其他 时间:2014-12-02 20:55:06 收藏:0 阅读:649
http://poj.org/problem?id=1328贪心:题意:给定小岛的位置,问最小安装雷达数,雷达有一个半径,覆盖小岛。我竟然看错了题意,雷达都安装在x轴上,我竟然不知道。分析:以小岛做一个圆,圆与x轴有2个交点a,b在区间[a,b]选点的问题,就转换区间选点问题,在小白书1的153页,...
分类:其他 时间:2014-12-02 22:23:24 收藏:0 阅读:299
本文主要是分享自己在学习设计模式过程中的心得与记录,有什么不当之处,望各位有心关注的看官,给予指证与说明。本文主要讲述【外观模式】,望各位细细品读。【转载使用,请注明出处:http://blog.csdn.net/mahoking】...
分类:其他 时间:2014-12-02 22:37:15 收藏:0 阅读:312
INCLUDE OLE2INCL*ALV输出CALLFUNCTION'REUSE_ALV_GRID_DISPLAY'EXPORTINGI_CALLBACK_PROGRAM=SY-REPIDI_CALLBACK_PF_STATUS_SET='PF_STATUS_SET'I_CALLBACK_USER_...
分类:其他 时间:2014-12-03 12:12:35 收藏:0 阅读:275
一、先检查patch文件:# git apply --stat newpatch.patch 二、检查能否应用成功:# git apply --check  newpatch.patch 三、打补丁:# git am --signoff                        #git apply newpatch.path (使用-s或--signoff选项,可以commit...
分类:其他 时间:2014-12-03 12:30:56 收藏:0 阅读:768
Iptables将本机80端口的请求转发到8080端口iptables-tnat-APREROUTING-ptcp--dport80-jREDIRECT--to-ports8080如果需要本机也可以访问,则需要配置OUTPUT链:iptables-tnat-AOUTPUT-ptcp-d127.0.0.1--dport80-jREDIRECT--to-ports8080两机之间的端口转发将本机的81端口的请求全..
分类:其他 时间:2014-12-03 14:30:57 收藏:0 阅读:318
http://www.cnblogs.com/MorZe/archive/2012/08/01/2618710.htmlhttp://www.tuicool.com/articles/rYV3uuhttp://blog.csdn.net/knowledgeaaa/article/details/23...
分类:其他 时间:2014-12-03 18:24:06 收藏:0 阅读:164
1 sys/stat头文件中定义了stat、fstat、lstat函数2 struct stat 结构struct stat{ mode_t st_mode; ino_t st_ino; dev_t ...
分类:其他 时间:2014-12-03 18:40:36 收藏:0 阅读:251
关于这些该死的兔子的问题的源代码....#includeint main(){int n,a=1,b=1,c,i;scanf("%d",&n);for(i=2;i<=n;i++){ c=a+b; a=b; b=c;}printf("%d",c);return 0;}
分类:其他 时间:2014-12-03 18:51:36 收藏:0 阅读:308
说明     本例子主要简示了和时间相关的一些控件的用法,模拟了一个下载器。 运行结果 主要代码 @synthesize _labelInfo; @synthesize _textInfo; @synthesize _buttonDownload; @synthesize _processViewDownload; @synthesize _activityIndicatorDow...
分类:其他 时间:2014-12-03 19:20:04 收藏:0 阅读:236
转自:http://blog.csdn.net/zouxy09/article/details/8550952作者:zouxy09出处:http://blog.csdn.net/zouxy09注:下面有project网站的大部分都有paper和相应的code。Code一般是C/C++或者Matlab...
分类:其他 时间:2014-12-03 21:07:56 收藏:0 阅读:346
Combination SumCombination Sum Total Accepted: 25850 Total Submissions: 96391 My Submissions Question Solution Given a set of candidate numbers (C) an...
分类:其他 时间:2014-12-03 21:12:16 收藏:0 阅读:267
1 Samba简介   Samba是一个能让Linux系统应用Microsoft网络通讯协议的软件,而SMB是Server Message Block的缩写,即为服务器消息块 ,SMB主要是作为Microsoft的网络通讯协议,后来Samba将SMB通信协议应用到了Linux系统上,就形成了现在的Samba软件。后来微软又把 SMB 改名为 CIFS(Common Internet Fil...
分类:其他 时间:2014-12-03 23:24:06 收藏:0 阅读:376
120620720820921083372
上一页1667435下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!