Retire deprecated micro app projects. (Repo, Codeship, S3) Improve our code structure, how do we layout/split our components and services? https://ind ...
分类:
其他好文 时间:
2020-06-09 10:06:09
阅读次数:
144
#### 1. 浏览器渲染机制 - 浏览器采用流式布局模型(`Flow Based Layout`) - 浏览器会把`HTML`解析成`DOM Tree`,解析`css`构建`render`树(将css代码解析成树形的数据结构,然后结合DOM合并成render树) - 有了`RenderTree`, ...
分类:
其他好文 时间:
2020-06-08 16:10:30
阅读次数:
73
一、静态布局(Static Layout)即传统Web设计,网页上的所有元素的尺寸一律使用px作为单位。 1、布局特点:不管浏览器尺寸具体是多少,网页布局始终按照最初写代码时的布局来显示。常规的pc的网站都是静态(定宽度)布局的,也就是设置了min-width,这样的话,如果小于这个宽度就会出现滚动 ...
分类:
其他好文 时间:
2020-06-07 15:16:01
阅读次数:
65
前一篇文章介绍了log4j2 扩展日志级别,支持将系统日志与业务处理日志拆分,现在介绍一下通过日志级别将系统日志与业务日志分类,要达到这个目的很容易,只需要配置一下log4j的xml文件: <?xml version="1.0" encoding="UTF-8"?> <configuration s ...
分类:
其他好文 时间:
2020-06-05 12:50:22
阅读次数:
90
报错:👇👇 The layout "activity_main" in layout has no declaration in the base layout folder; this can lead to crashes when the resource is queried in a ...
分类:
移动开发 时间:
2020-06-05 11:39:54
阅读次数:
188
MD04供需状况: 代码: *& * *& Report ZPPRTEST4 *& * *& *& * REPORT ZPPRTEST4. TYPE-POOLS: slis. DATA: gs_layout TYPE slis_layout_alv, gt_fieldcat TYPE slis_t_ ...
分类:
其他好文 时间:
2020-06-04 19:51:10
阅读次数:
169
绘制特殊图表时,希望横轴显示自定义内容(如年份)而非坐标值 可以使用如xticks实现 import matplotlib.pyplot as plt plt.figure(tight_layout = True) x = range(10) h = [10, 3, 4, 8, 2, 6, 5, 1 ...
分类:
其他好文 时间:
2020-06-04 19:44:17
阅读次数:
66
例子:左边ctrl和左边alt互换 Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout] "Scancode Map"=hex:00,00, ...
@{ Layout = null; } <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Login</title> <link href="~/css/fonts/Login.css" rel="styles ...
分类:
其他好文 时间:
2020-06-03 20:02:58
阅读次数:
62
LayoutInflater的作用类似于 findViewById(),不同点是LayoutInflater是用来找layout文件夹下的xml布局文件,并且实例化!而 findViewById()是找具体某一个xml下的具体 widget控件(如:Button,TextView等)。(0)她可以有 ...
分类:
移动开发 时间:
2020-06-03 17:26:34
阅读次数:
74