CSS 中文开发手册 方向 | direction (Writing Modes) - CSS 中文开发手册 directionCSS属性设置文本,表格列和水平溢出的方向。使用rtl表示从右到左(如希伯来语或阿拉伯语)写的语言,以及ltr表示从左到右写的语言(如英语和大多数其他语言)。请注意,文本方... ...
分类:
Web程序 时间:
2020-06-30 22:50:37
阅读次数:
89
Nginx线上部署多个Vue项目(路径区分) nginx 多静态文件部署。 我个人博客项目占用了nginx根路径,而我只有一个域名,也不准备用二级域名了, 所以就直接用路径区分开。 一个域名,只部署一个静态文件服务,那很简单,只用把打包后文件放上去就行。 多个Vue项目主要就是路径问题,静态js文件 ...
分类:
其他好文 时间:
2020-06-30 19:04:20
阅读次数:
206
Sub 提取红色正确答案选项() Selection.HomeKey wdStory Selection.Find.ClearFormatting Selection.Find.Font.Color = wdColorRed Selection.Find.Replacement.ClearForma ...
分类:
编程语言 时间:
2020-06-30 12:48:07
阅读次数:
132
题目上说有备份的好习惯,扫描目录得到www.zip 几个重要php文件内容: index.php 1 <?php 2 include 'class.php'; 3 $select = $_GET['select']; 4 $res=unserialize(@$select); 5 ?> 代码第4行u ...
分类:
Web程序 时间:
2020-06-30 12:45:43
阅读次数:
78
BOOL FreeMyResource(UINT uResouceName,char *szResourceType,char *szFileName) { HRSRC hRsrc = ::FindResource(NULL,MAKEINRESOURCE(uResouceName),szResour ...
1104 Sum of Number Segments (20分) Given a sequence of positive numbers, a segment is defined to be a consecutive subsequence. For example, given the s ...
分类:
其他好文 时间:
2020-06-30 00:44:09
阅读次数:
60
/** * @description 将图片的base64 转变成Blob形式 * */ function dataURLtoBlob(dataurl) { let arr = dataurl.split(',') let mime = arr[0].match(/:(.*?);/)[1] let ...
分类:
其他好文 时间:
2020-06-29 22:53:33
阅读次数:
82
修改sitemap.json文件 "global": { "webviewParameter": { "titleNView": { "autoBackButton": true, "backgroundColor": "#f7f7f7",//导航栏背景色 "titleColor": "#00000 ...
分类:
移动开发 时间:
2020-06-27 21:40:37
阅读次数:
173
1、SEE:https://elasticsearch.cn/article/32 2、倒排词典的索引需要常驻内存,无法 GC,需要监控 data node 上 segment memory 增长趋势。 3、各类缓存,field cache, filter cache, indexing cache ...
分类:
其他好文 时间:
2020-06-26 10:56:28
阅读次数:
70
CHM 的使用 ConcurrentHashMap 是 J.U.C 包里面提供的一个线程安全并且高效的 HashMap,所以 ConcurrentHashMap 在并发编程的场景中使用的频率比较高,那么这一节课我们就从 ConcurrentHashMap 的使用上以及源码层面来分析 Concurre ...
分类:
其他好文 时间:
2020-06-26 10:23:36
阅读次数:
46