首页 > 其他
按键精灵与人工智能
按键精灵是一款模拟鼠标键盘动作的软件。通过制作脚本,可以让按键精灵代替双手,自动执行一系列鼠标键盘动作。 人工智能(Artificial Intelligence),英文缩写为AI。它是研究、开发用于模拟、延伸和扩展人的智能的理论、方法、技术及应用系统的一门新的技术科学。 人工智能是计算机科学的一个...
分类:其他   时间:2014-02-05 00:11:21    收藏:0  评论:0  赞:0  阅读:664
java class.forname
new 要装载class 再实例化对象 但是class.forname只会装载class执行class的静态方法,然后通过newinstance实例化对象。这样不就是golang里面的interface么。
分类:其他   时间:2014-02-05 00:10:31    收藏:0  评论:0  赞:0  阅读:382
YeeLink
http://www.yeelink.net/
分类:其他   时间:2014-02-05 00:09:41    收藏:0  评论:0  赞:0  阅读:393
转载几篇
转载:http://www.cnblogs.com/codefish/p/3537645.htmlhttp://www.cnblogs.com/skywang12345/p/3498995.htmlhttp://www.cnblogs.com/yilou/p/3537428.htmlhttp://w...
分类:其他   时间:2014-02-05 00:06:21    收藏:0  评论:0  赞:0  阅读:416
maven 相关命令
#ubuntu下maven的配置#maven(/etc/prpfile)export M2_HOME=/home/lbt/soft/mavenexport PATH=$PATH:$M2_HOME/binexport MAVEN_OPTS="-Xms256m -Xmx512m"#相关命令mvn cle...
分类:其他   时间:2014-02-05 00:05:31    收藏:0  评论:0  赞:0  阅读:413
如果这辈子做了开发.那我一定会坚持下面去的.
还是要做安卓先把生活加力解决了. public void dail(View view){ EditText et = (EditText) findViewById(R.id.edittext_phone); String number = et.getText().toString().trim...
分类:其他   时间:2014-02-05 00:03:51    收藏:0  评论:0  赞:0  阅读:430
HDOJ 1242
纠结1242很久了,查了题解才发现要优先队列才能成功http://blog.chinaunix.net/uid-21712186-id-1818266.html使人开窍之文章优先队列,已经不算是FIFO的队列了,而是一种以优先级(可以是值的大小等等)进行动态插入数值的一种“伪队列”,其中优先队列是用...
分类:其他   时间:2014-02-05 00:03:01    收藏:0  评论:0  赞:0  阅读:523
c指针
#include #include //关于指针的指针,赋值以及其意义 //指针:包括指针所指向的内存区,还有指针本身所占据的内存区。 [重要 ] int main() { printf("a=8\n\n"); int a=8;//定义一个int型变量a,假设其在内存中的地址是1000 printf...
分类:其他   时间:2014-02-04 23:58:01    收藏:0  评论:0  赞:0  阅读:557
坑爹JDK8,可怜的XP
如题:看看这个:http://stackoverflow.com/questions/20965564/installing-jdk8-on-windows-xp-advapi32-dll-error?lq=1https://jdk8.java.net/jdk8_supported_platform...
分类:其他   时间:2014-02-04 23:55:31    收藏:0  评论:0  赞:0  阅读:590
boost.asio与boost.log同时使用导致socket不能正常收发数据
现象:1。 没有使用boost.log前能正常收发数据2。加入boost.log后async_connect没有回调fix过程:1. gdb调试发现程序block在pthread_timed_wait.死锁? 使用helgrind没有检查出异常.2. 难道是内存错误? valgrind的memche...
分类:其他   时间:2014-02-04 23:54:41    收藏:0  评论:0  赞:0  阅读:649
jxta 2.8x启动了
http://chaupal.github.io/
分类:其他   时间:2014-02-04 23:53:51    收藏:0  评论:0  赞:0  阅读:613
POJ 1742 coins (dp)
题目大意是给出一些面值的硬币和数量。问在1-m中能凑出多少种钱。设 dp[i+1][j] 为前i种凑成j元第i种最多剩下多少。1. dp[i+1][j] = mi ( dp[i][j]>=0) 前i-1种已经能凑成j了2.dp[i+1][j] = -1 ( j 2 #include 3 #inclu...
分类:其他   时间:2014-02-04 23:48:01    收藏:0  评论:0  赞:0  阅读:610
游戏 slider
using UnityEngine;using System.Collections;public class La : MonoBehaviour { float verticalValue=0f; float horizontalValue=0.0f; // Use this for initi...
分类:其他   时间:2014-02-04 23:46:21    收藏:0  评论:0  赞:0  阅读:660
c#判断特殊字符?
var chars = string.Join(string.Empty, Enumerable.Range(0, char.MaxValue + 1).Select(c => (char)c).Where(c => char.IsSymbol(c) || char.IsPunctuation(c)...
分类:其他   时间:2014-02-04 23:45:31    收藏:0  评论:0  赞:0  阅读:654
【wikioi】1296 营业额统计
题目链接:http://www.wikioi.com/problem/1296/算法:Splay这是非常经典的一道题目,用Splay树来维护营业额,每天的最小波动值就等于 min{树根-树根的前驱, 树根的后继-树根)所以用Splay来维护PS: 本题数据有问题,所以当空行时,值为0代码:#incl...
分类:其他   时间:2014-02-04 23:44:41    收藏:0  评论:0  赞:0  阅读:691
游戏 tabpanel
using UnityEngine;using System.Collections;public class La : MonoBehaviour { private int select; private string[] barResource; private bool selectTogg...
分类:其他   时间:2014-02-04 23:43:51    收藏:0  评论:0  赞:0  阅读:593
English 好的报纸
1. 初级阶段 英语沙龙: ( 有中英文对照 ) www.es123.com2. 高级阶段 China daily: ( 带有官方色彩 ) www.chinadaily.com.cn3. econnomist ( 经济人报 ) www.econnomist.com
分类:其他   时间:2014-02-04 23:43:01    收藏:0  评论:0  赞:0  阅读:451
网购返利巧淘吧
推荐网购网店:巧淘吧,返利模式网 购不容错过,网址:http://url.cn/VsaNc7 ,让你从网购中过得利润,花少钱买自己想要的商品。
分类:其他   时间:2014-02-04 23:42:11    收藏:0  评论:0  赞:0  阅读:404
二分查找求最大数最小数
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication10{ class Program { static void Main(str...
分类:其他   时间:2014-02-04 23:41:21    收藏:0  评论:0  赞:0  阅读:585
[Leetcode]-- Remove Nth Node From End of List
Given a linked list, remove thenthnode from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. After removi...
分类:其他   时间:2014-02-04 23:40:31    收藏:0  评论:0  赞:0  阅读:480
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!