码迷,mamicode.com
首页 >  
搜索关键字:push notification    ( 13107个结果
HTML5 Web socket和socket.io
what is websocketsTwo-way communication over ont TCP socket, a type of PUSH technology HTML5的新特性,用于双向推送消息(例如网页聊天,手机推送消息等) 原理:client利用regular http请求w.....
分类:Web程序   时间:2014-05-23 11:28:28    阅读次数:560
Java 进程
转自http://jiangshuiy.iteye.com/blog/1674235PS:今天做android助手项目的时候,发现adb push命令执行会卡死,最后发现不能用waitfor阻塞等待执行结果,而且cmd上print的内容是打在进程的error流而不是input流,所以搞了好一会儿,最...
分类:编程语言   时间:2014-05-23 10:33:25    阅读次数:562
用两个栈实现队列
题目描述:用两个栈来实现一个队列,完成队列的Push和Pop操作。队列中的元素为int类型。输入:每个输入文件包含一个测试样例。对于每个测试样例,第一行输入一个n(1=0)2. POP 从队列中pop一个数。输出:对应每个测试案例,打印所有pop操作中从队列pop中的数字。如果执行pop操作时,队列...
分类:其他好文   时间:2014-05-19 19:22:26    阅读次数:182
斯坦福iOS7公开课1-3笔记及纸牌Demo
1.MVC Model:模型 描述程序是什么,例如数据库操作之类的行文以及纸牌Demo里纸牌玩法都是写在Model这一层,通过Notification和KVO(后续文章会介绍)两种方式与Controller通讯。 Controller:控制层 程序的逻辑在这里组织,Controller负责M...
分类:移动开发   时间:2014-05-19 18:34:59    阅读次数:394
批处理脚本,git本地workspace一键推送到远端repo
1 @echo off 2 setlocal enabledelayedexpansion 3 git status||goto :eof 4 5 set "msg=quick push. %date% %time%" 6 if #%1==# (set /p "msg=commit messa...
分类:其他好文   时间:2014-05-19 15:14:16    阅读次数:402
Classic Abstract Data Types--C
本文内容来自《pointers on C》栈的接口/* Interface for a stack module */#define STACK_TYPE intvoid push(STACK_TYPE value);void pop(void);STACK_TYPE top(void);in...
分类:其他好文   时间:2014-05-18 20:37:48    阅读次数:509
应用获取root权限分析及总结
ROM授权root权限,主要技术点在哪里?如何实现?带着这些问题,边实验边分析,并将过程和犯的错误记录如下。1、rom支持root授权,需要包含su简单点说,就是rom中支持su指令;必须包含su可执行程序,对应的代码/system/su目录下代码; 编译生成su程序后,再将其push到/syste...
分类:其他好文   时间:2014-05-18 19:02:34    阅读次数:279
Android开发之通知栏Notification详解
Notification的用法  --- 状态栏通知 发送一个状态栏通知必须的两个类:          1. NotificationManager   --- 状态栏通知的管理类,负责发通知,清除通知等    NotificationManager : 是一个系统Service,必须通过 context.getSystemService(NOTIFICATION_SERVICE...
分类:移动开发   时间:2014-05-18 09:13:46    阅读次数:471
JS 引用
var arr1=[1,2,3,4];var arr2=arr1;arr2.push(5);console.log(arr1);//和arr2一样console.log(arr1==arr2);//trueconsole.log(arr1===arr2);//truefunction Cat(nam...
分类:Web程序   时间:2014-05-18 00:19:28    阅读次数:275
2003-view-Animation-push
介绍ViewFlipper ViewFlipper Simple ViewAnimator that will animate between two or more views that have been added to it. Only one child is shown at a time. If requested, can automatically flip betwee...
分类:其他好文   时间:2014-05-15 18:37:44    阅读次数:356
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!