Windows 下安装 Memcached

官网上并未提供 Memcached 的 Windows 平台安装包,我们可以使用以下链接来下载,你需要根据自己的系统平台及需要的版本号点击对应的链接下载即可: 32位系统 1.2.5版本:http://static.runoob.com/do...

css hack

IE 11 (及以上..) _:-ms-fullscreen, :root .foo { property:value; } IE 10 及以上 _:-ms-lang(x), .foo { property:value; } or @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) ...

dialog flow js example

<html> <head> <title>API Example</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script src="https://cdn.jsdelivr.net/npm/j...

HTML5语音合成Speech Synthesis API简介

一、关于HTML5语音Web Speech API HTML5中和Web Speech相关的API实际上有两类,一类是“语音识别(Speech Recognition)”,另外一个就是“语音合成(Speech Synthesis)”,这两个名词听上去很高大上,实际上指的分别是...

windows上安装onlyoffice

首先下载onlyoffice documentserver的windows程序安装包,第一次安装后无法正常运行 1.安装其他依赖redis,erlang,rabbitmq 启用rabbitmq的web管理插件,进入rabbitmq安装目录/sbin rabbitmq-plugins.bat e...

js import

说明文档:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Statements/import dynamic-import polyfill:https://github.com/uupaa/dynamic-import-polyfill

通过Hardware Layer提升Android动画性能

当有人问我关于动画性能表现不佳问题的时候,我首先会询问他们是否使用了Hardware Layer层。 你的View可能在执行动画期间的每一帧都进行重绘,如果使用View Layer,可以避免重绘每一帧,因为View的渲染...

gradle配置国内镜像

使用阿里云国内镜像 对单个项目生效,在项目中的build.gradle修改内容 buildscript { repositories { maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' } ...

android studio环境配置

1.修改 .android 目录 添加 ANDROID_SDK_HOME 环境变量。 2.修改.AndroidStudio 目录 在andoid studio安装目录/bin/idea.properties中修改 idea.config.path=F:/.AndroidStudio/system idea.system.path=F...

修改iis上传文件大小限制

1. 在web.config文件修改 maxAllowedContentLength设置 <system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength="2000000000" /> ...