1、next
2、I agree
3、I agree
4、默认next
5、第一框设置为3ds Max的根目录,第二框设置为3ds Max根目录下的plugins目录
6、默认next
7、默认next
8、默认next
9、等待安装完,然后next
10、Finish
11、到此安装成功...
分类:
其他好文 时间:
2015-02-25 00:46:01
阅读次数:
250
自己总结的Mac中配置Java,Android,Maven,Hosts等环境变量的方法。工具类文章,按需观看...
分类:
移动开发 时间:
2015-02-25 00:46:09
阅读次数:
180
年前,我发了一篇关于最近我通过在线教育网站学习It技能的文章。我十分的赞同在线教育这种模式,也分析了在线教育与线下教育关于培训技能之间的利弊。很多网友和我谈论在线教育的时候一直强调“在线教育会不会没有学习气氛”诸如此类的话题。那么我们今天就来谈论一下没有学习气氛这个本身就是伪命题的话题。 那么先让....
分类:
其他好文 时间:
2015-02-25 00:44:27
阅读次数:
220
在这个系列的文章里,我将尝试一步一步开发一套功能完备的在线客服系统,并最终将其开源在 Git 上,欢迎关注。鉴于水平限制,难免有所疏漏,欢迎批评指正。文章将分为几个部分 一、需求分析及技术方案初步选型 二、技术方案选型,验证 三、底层框架设计,开发 四、服务器设计开发 五、客户端设计开发 ...
分类:
其他好文 时间:
2015-02-25 00:44:38
阅读次数:
215
B. Drazil and His Happy Friendstime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputDrazil has many f...
分类:
移动开发 时间:
2015-02-25 00:45:44
阅读次数:
283
//CodeForces 404A 1 #include "iostream" 2 #include "cstdio" 3 #include "cstring" 4 #include "algorithm" 5 using namespace std; 6 char mat[310][310]; 7...
分类:
其他好文 时间:
2015-02-25 00:45:17
阅读次数:
338
感谢:http://vfleaking.blog.163.com/blog/static/174807634201311011201627/http://hzwer.com/5250.html好吧,收获两点: 1、带修改,其实就是暴力,只是将同一块的查询再按照时间顺序排,这样就能减少在修改操作上“....
分类:
其他好文 时间:
2015-02-25 00:44:55
阅读次数:
227
1 /opt/tomcat/bin/shutdown.sh2 sleep 53 ps aux|grep "apache-tomcat-7.0.1" |grep -v "grep" |grep "java" |awk '{print $2}' |xargs kill -94 rm -f /opt/to...
分类:
其他好文 时间:
2015-02-25 00:43:55
阅读次数:
250
出于无聊, 打算从头实现一遍RSA算法第一步, 大素数生成Java的BigInteger里, 有个现成的方法 public static BigInteger probablePrime(int bitLength, Random rnd) { bitLength是期望生成的素数的二进制位数, .....
分类:
编程语言 时间:
2015-02-25 00:42:20
阅读次数:
290
//CodeForces 407B 1 #include "iostream" 2 #include "cstdio" 3 #include "cstring" 4 #include "algorithm" 5 using namespace std; 6 const __int64 mod = 1...
分类:
其他好文 时间:
2015-02-25 00:44:34
阅读次数:
140
//CodeForces 404B 1 #include "iostream" 2 #include "cstdio" 3 #include "cstring" 4 #include "algorithm" 5 using namespace std; 6 const __int64 N = 1e6...
分类:
其他好文 时间:
2015-02-25 00:43:16
阅读次数:
204
//CodeForces 407A 1 #include "iostream" 2 #include "cstdio" 3 #include "cstring" 4 #include "algorithm" 5 using namespace std; 6 int square[1010]; 7 s...
分类:
其他好文 时间:
2015-02-25 00:42:55
阅读次数:
261
C++之高精度算法注意:本文转载自http://blog.sina.com.cn/s/blog_4fdb102b010087ng.html,十分感谢原作者:忍者前言:由于计算机运算是有模运算,数据范围的表示有一定限制,如整型int(C++中int 与long相同)表达范围是(-2^31~2^31-1...
分类:
编程语言 时间:
2015-02-25 00:42:51
阅读次数:
234
//CodeForces 408A 1 #include "iostream" 2 #include "cstdio" 3 #include "cstring" 4 #include "algorithm" 5 using namespace std; 6 int n, k[110], tmp, r...
分类:
其他好文 时间:
2015-02-25 00:42:23
阅读次数:
178
Word Ladder II解题记录
分类:
其他好文 时间:
2015-02-25 00:42:19
阅读次数:
255
1、操作系统为程序和用户提供了一定的服务。1、用户界面2、程序执行3、I/O操作4、文件系统操作5、通信。在许多情况下一个进程需要与另一个进程交换信息。这种通信有两种方式。一种是发生在同一台计算机运行的两个进程之间,另外一种是运行在由网络连接起来的不同的计算机上的进程之间。6、错误检测7、资源分配8...
分类:
其他好文 时间:
2015-02-25 00:43:41
阅读次数:
174
在所有的服务器编程当中,定时任务永远是一个不可或缺的需求。最直接的需求就是,每天凌晨0点0分的时候总是有一大堆的各种精力重置。怎么来设计这个接口呢,想了几个方案:每秒触发每分钟触发每整点触发每天触发每个月触发oh no!不靠谱啊,如果这接口真设计成这样,得有多烂,灵光一现,unix下的crontab...
分类:
其他好文 时间:
2015-02-25 00:41:51
阅读次数:
201