`
weimou66
  • 浏览: 1246981 次
文章分类
社区版块
存档分类
最新评论
文章列表
国内常用的两款: SmartID S10 Read Only Reader, MIFARE NFC门禁 SmartTOUCH SB10 Read Only Reader, MIFARE NFC + 指纹门禁 参考:http://www.hidglobal.com/documents/smartid_configuration.pdf SmartTOUCH SB10竖框型指纹读卡器(只读)
开发工具入门 用户界面入门 定制用户界面组件 触摸屏编程 手势 Qt 动画 HTML 5开发 多媒体开发 数据存储 - 数据库,文件系统 网络连接 GPS(GPS位置,地图集成) 重力感应,加速度 蓝牙 PIM(通讯录,日历,短信,邮件) 应用/系统集成(事件,菜单?,系统设置) 移植: Qt Flash Android HTML 5 企业开发: 推送 安全(加密) 报表(饼图,组图等) NDK主页:文档,API说明,例子代码 选择 右上角的Native SDK ,选择 1)Documentation 2)Sam ...
新浪微博 下载:官方下载(OTA,点击链接 客户端) , BlackBerry App World 搜索新浪 说明:中文说明@berrycn.com 电话号码归属地显示工具 UD Caller 下载:官方下载(非OTA) 说明:中文说明@berrycn.com 提示:1) 菜单里面 免费注册 2)设置 来电显示方式 和 呼叫显示方式 改为 自定义显示,X/Y坐标分别设置都为100,否则来电归属地显示被手机屏幕上面其他内容挡住了。 ======================================================== 软件名称:iSpeech Ca ...
在NDK 开发工具中运行Run Configuration在PlayBook emulator中运行,报错如下: "Downloading and starting the application..." has encountered a problem. Unable to determine returned PID from launch. 可能的一个原因: NDK 2.0创建项目的时候,缺省的目标是Device-Debug。Build出来的binary code是arm的,不是x86的,自然不能运行在x86 CPU的PlayBook emulator ...
办法1: 办法2: 这个办法在PlayBook vmware虚拟机里面不工作。 Settings -> About -> Network
第一步,环境准备: 安装:Ubuntu 11.10 安装:如果没有安装 gcc,可以安装g++,里面有gcc, make等 $ sudo apt-get install g++ 第二步, 下载PlayBook NDKfor Linux 第三步, 安装很简单了 $ ./installer-bbndk-2.0.0-linux-7971-201202171813-201202181253.bin Preparing to install... Extracting the JRE from the installer archive... Unpacking the J ...
ZOJ题目分类 初学者题: 1001 1037 1048 1049 1051 1067 1115 1151 1201 1205 1216 1240 1241 1242 1251 1292 1331 1334 1337 1338 1350 1365 1382 1383 1394 1402 1405 1414 1494 1514 1622 1715 1730 1755 1760 1763 1796 1813 1879 1889 1904 1915 1949 2001 2022 2099 2104 2108 2172 2176 2201 2208 2321 ...
#include<algorithm> #include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> using namespace std; int a[100][100]; int MaxSum(int n, int *a) { int sum = 0, b = 0; for(int i=1; i<=n; i++) { if(b > 0) b += a[i]; else b = a[i]; ...
前些天为了排查我们程序中不知道是库里面还是我们自己调用了assert断言,导致我们程序死亡。想通过hook拦截到调用这个函数的调用者,偶然间想起proload(预加载),小试牛刀使用如下代码 #include <syscall.h> #include <stdio.h> #include <sys/types.h> #include <unistd.h> void abort(void) { printf("****************my abort, getpid():%u\n", __FILE__, ...
1.系统必须已经ROOT 2. 安装Root Explorer管理软件 3.必须退出Coin Dozer游戏 第一步:打开Root Explorer,在软件的目录/data/data/com.leftover.coindozer/shared_prefs/找到com.leftover.coindozer.xml文件 第二步:长按com.leftover.coindozer.xml文件,在弹出的菜单中选择Open In Text Editor(以文本方式编辑) 第三步:从代码的最底部找到<int name="total_coins" value="50 ...
Description Sudoku is a very simple task. A square table with 9 rows and 9 columns is divided to 9 smaller squares 3x3 as shown on the Figure. In some of the cells are written decimal digits from 1 to 9. The other cells are empty. The goal is to fill the empty cells with decimal digits from ...
——题记,针对Computer Science领域的一些主要类型人才的工作评论 计算机科学家做的是基本就是解决通过建立模型解决模型理论问题,或实际问题的理论模型。数学不好基本没的说了,别干这一行了,很少能成的,我觉得。不 ...
一、查看需求 安装软件包: sudo apt-get install php5 sudo apt-get install php5-gd(图形库,不是必须) sudo apt-get install mysql-serversudo apt-get install php5-mysql(安装MYSQL扩展) 二、安装wordpress 下载最新的wordpress:http://wordpress.org/latest.z ...
劳资六年前开始搞ACM啊!!!!!!!!!! 从此踏上了尼玛不归路啊!!!!!!!!!!!! 谁特么跟劳资讲算法是程序设计的核心啊!!!!!! 尼玛除了面试题就没见过用算法的地方啊!!!!!! 谁再跟劳资讲 ...
Description 在一个给定形状的棋盘(形状可能是不规则的)上面摆放棋子,棋子没有区别。要求摆放时任意的两个棋子不能放在棋盘中的同一行或者同一列,请编程求解对于给定形状和大小的棋盘,摆放k个棋子的所有可行的摆放方案C。 Input 输入含有多组测试数据。 每组数据的第一行是两个正整数,n k,用一个空格隔开,表示了将在一个n*n的矩阵内描述棋盘,以及摆放棋子的数目。 n <= 8 , k <= n 当为-1 -1时表示输入结束。 随后的n行描述了棋盘的形状:每行有n个字符,其中 # 表示棋盘区域, . 表示空白区域(数据保证不出现多余的空白行或者空白 ...
Global site tag (gtag.js) - Google Analytics