转自:http://www.ibm.com/developerworks/cn/opensource/os-cn-android-mmry-rcycl/index.html Android APP 的执行环境 Android 是一款基于 Linux 内核,面向移动终端的操作系统。为适应其作为移动平台 ...
分类:
移动开发 时间:
2017-06-21 13:57:27
阅读次数:
274
using System;using System.Collections.Generic;using System.Text;using Console = System.Console;using Microsoft.Data.Odbc;using System.Data;using Syste ...
分类:
数据库 时间:
2017-06-21 13:57:19
阅读次数:
247
--创建用户CREATE LOGIN 用户名 WITH PASSWORD=N'密码', DEFAULT_DATABASE=数据库名, CHECK_EXPIRATION=OFF, CHECK_POLICY=OFFEXEC sp_grantdbaccess N'用户名' --授权GRANT SELECT ...
分类:
数据库 时间:
2017-06-21 13:57:12
阅读次数:
361
微信官方已经开放微信小程序的官方文档和开发者工具。前两天都是在看相关的新闻来了解小程序该如何开发,这两天官方的文档出来之后,赶紧翻看了几眼,重点了解了一下文档中框架与组件这两个部分,然后根据简易教程,做了一个常规的todo app。 这个app基于微信小程序的平台,实现了todo app的常规功能, ...
分类:
微信 时间:
2017-06-21 13:57:03
阅读次数:
340
That transfer of information, from what we don’t know about the system to what we know, represents a change in entropy. Insight decreases the entropy ...
分类:
其他好文 时间:
2017-06-21 13:56:54
阅读次数:
136
WebVR和WebGL应用程序接口使得我们已经可以在浏览器上创建虚拟现实(VR)体验,但从工程化的角度而言,开发社区还需要更多方便强大的开发库来简化编程,Mozilla的 A-Frame 框架就是这样一个工具,提供了一个Web开发者所熟悉的标记语言来快速构建3D VR场景动画原型,而不需要编写过多的 ...
分类:
Web程序 时间:
2017-06-21 13:56:41
阅读次数:
427
Ctrl + Alt + S 进入setting --> System Settings 找到 "Project Opening"选项 选择第三项 "Comfirm window to open project in" ...
分类:
其他好文 时间:
2017-06-21 13:56:27
阅读次数:
215
0 说明 Mybatis使用 MyBatis-Spring 类库来集成spring框架 MyBatis-Spring官网 http://www.mybatis.org/spring/index.html MyBatis-Spring是一个MyBatis框架的子模块,可以提供和Spring框架的无缝集 ...
分类:
编程语言 时间:
2017-06-21 13:56:18
阅读次数:
183
@、css那些事儿 -- 第9章 反馈表单 自己编写了CSS,可是红框中的横线比下面的要粗。对比作者的代码,发现可能与上面标题h3的height和line-height有关,但是不知道具体是为什么? <!doctype html> <html lang="en"> <head> <meta char ...
分类:
Web程序 时间:
2017-06-21 13:56:10
阅读次数:
188
#python list''' 创建list有很多方法: 1.使用一对方括号创建一个空的list:[] 2.使用一对方括号,用','隔开里面的元素:[a, b, c], [a] 3.Using a list comprehension:[x for x in iterable] 4.Using th ...
分类:
编程语言 时间:
2017-06-21 13:56:01
阅读次数:
196
原文链接:ProtoBuf.js – Protocol Buffers的Javascript实现 在Javascript里比较常见的数据格式就是json,xml,但是这两种格式在数据传输方面有明显不足。而Protocol Buffers可以很好的解决这个问题,下面引用百科的对Protocol Buf ...
分类:
编程语言 时间:
2017-06-21 13:55:53
阅读次数:
270
http://localhost:8080/spring-oauth-server/m/dashboard?access_token=8194a1d7-2784-4a9e-a71b-25bebfc9ba0e 成功场景!!! 失败场景!!! ...
分类:
其他好文 时间:
2017-06-21 13:55:44
阅读次数:
145
Ref:https://onlinecourses.science.psu.edu/stat464/print/book/export/html/12 前面我们考虑的情况是:response是连续的,variable是离散的。举例:如果打算检查GPA的中位数是否与学生坐在教室的位置有关, 那么GPA ...
分类:
移动开发 时间:
2017-06-21 13:55:36
阅读次数:
212
方法1:用Math.round计算,这里返回的数字格式的. 1 2 3 4 float price=89.89; int itemNum=3; float totalPrice=price*itemNum; float num=(float)(Math.round(totalPrice*100)/1 ...
分类:
编程语言 时间:
2017-06-21 13:55:29
阅读次数:
107
以下为我编程期间遇到的错误并进行记录,起始时间2017-6-21 Exception happened during processing of request from ('127.0.0.1', 48039)Traceback (most recent call last): File "/op ...
分类:
编程语言 时间:
2017-06-21 13:55:23
阅读次数:
196
1 char* wchar2char(const wchar_t* _wsrc, char* _dest, size_t _destLen) 2 { 3 int iTextLen = WideCharToMultiByte(CP_ACP, 4 0, 5 _wsrc, 6 -1, 7 NULL, 8 ... ...
分类:
其他好文 时间:
2017-06-21 13:55:12
阅读次数:
173