FreeRDP是一个Remote Desktop Protocol(协议)的一个实现,遵循Apache开源协议,支持3D功能,并有较高刷新率,也支持RemoteFX,H264编解码,用户管理,音频以及外设重定向等功能。
分类:
其他好文 时间:
2019-03-19 16:32:52
阅读次数:
247
Android的四大组件:activity(活动)1、一个activity通常是一个独立的屏幕。2、activity通过intent通讯。3、在Androidmanifest.xml声明即可识别执行。注意该文件还可以注册某些权限:如访问互联网。service(服务)、1、定义:用于后台完成用户指定的 ...
分类:
移动开发 时间:
2019-03-19 10:43:53
阅读次数:
265
VUE实现双向数据绑定的原理就是利用了 Object.defineProperty() 这个方法重新定义了对象获取属性值(get)和设置属性值(set)的操作来实现的。先看个例子 大家应该都见过Object.defineProperty() ,只是可能个别同志会感觉比较陌生。 根据MDN web d ...
分类:
其他好文 时间:
2019-03-18 18:30:16
阅读次数:
184
websocket是什么不做介绍。开发环境:jdk1.8,win7_64旗舰版,idea 1、初始化一个springboot项目 2、加入websocket依赖 <!-- springboot的websocket依赖 --> <dependency> <groupId>org.springframe ...
分类:
编程语言 时间:
2019-03-18 16:52:44
阅读次数:
150
【LibVLC core LibVLC error handle】 功能文档 ◆ libvlc_clearerr() 清除当前线程的LibVLC错误状态。 这是可选的。默认情况下,错误状态会在发生新错误时自动覆盖,并在线程退出时销毁。 libvlc_errmsg() 针对调用线程中的最后一个LibV ...
分类:
其他好文 时间:
2019-03-18 01:44:25
阅读次数:
208
1 安装react-redux: npm install --save react-redux 2.之前使用redux的store.subscribe监听 store的状态改变,通过store.getState函数获取store的状态值;并且需要划分ui组件和聪明组件,着实很麻烦,引入react-r ...
分类:
其他好文 时间:
2019-03-17 19:51:29
阅读次数:
215
CS 659 Image ProcessingHomework #3Covering Lectures 7, 8, 9 and Reading Material HW3RNOTES: Submit only the homework “solution” (do not include these ...
分类:
其他好文 时间:
2019-03-17 19:47:22
阅读次数:
169
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/P ...
分类:
其他好文 时间:
2019-03-15 17:38:21
阅读次数:
113
class Solution(object): def divide(self, dividend, divisor): """ :type dividend: int :type divisor: int :rtype: int """ ispositive = True ... ...
分类:
其他好文 时间:
2019-03-14 17:58:34
阅读次数:
160