码迷,mamicode.com
首页 >  
搜索关键字:figure    ( 2425个结果
4.9 html5新增
html5新增内容: 语义化结构标签: section:更偏于划分区域。( 网页的外围结构...更类似与div)article:更偏向于内容的展示 header:网页头部或者是内容块头部footer:网页的顶部或者内容快的底部nav:导航区域main:主体区域(ie不兼容) figure:代表一个独 ...
分类:Web程序   时间:2020-04-11 00:22:32    阅读次数:103
RxJava2+Retrofit2+RxLifecycle3+OkHttp3网络请求封装(动态演示)
入职公司后,公司要求组件化开发,经过讨论后我将网络请求框架单独进行了封装,不过当时框架里将常用的 util 和 ui 均放入到了共同的 Common 包下,导致里面部分代码耦合,后来为了降低耦合性又将 Common 拆分为了lib_common和lib_ui,但是 lib_ui 依赖了 lib_common,还是导致部分代码耦合,最新一期为了降低组件之间的耦合性,所以单独将 lib_common 中的网络请求单独拆分,并且我又做了新的封装和完善,总之网络框架经过3次大的改造后,使用已经非常稳定了。
分类:编程语言   时间:2020-04-10 00:16:47    阅读次数:93
springboot项目打成jar包如何远程debugg
1、在项目里加 <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <jvmArguments> -Xdebug ...
分类:编程语言   时间:2020-04-09 12:49:30    阅读次数:161
杯具啊404页面!
<!doctype html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <title>HTTP 404 - SegmentFault</title> <meta name="viewport" content="width=device-w ...
分类:其他好文   时间:2020-04-08 16:19:42    阅读次数:79
数据同步利器syncthing
有了私服当然就得备份数据了,手机照片,工作目录,经典电影之类的,DT时代数据无价。 syncthing Syncthing is a continuous file synchronization program. It synchronizes files between two or more ...
分类:其他好文   时间:2020-04-07 22:42:29    阅读次数:332
[LeetCode] 53. Maximum SubArray
Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum. Example: Inpu ...
分类:其他好文   时间:2020-04-06 11:37:02    阅读次数:81
python matplotlib 中ax.legend()用法解释
ax.legend()作用:在图上标明一个图例,用于说明每条曲线的文字显示 import matplotlib.pyplot as plt import numpy as np x = np.arange(10) fig = plt.figure() ax = plt.subplot(111) fo ...
分类:编程语言   时间:2020-04-05 22:17:33    阅读次数:545
fig,ax = plt.subplots()
fig,ax = plt.subplots()等价于:fig = plt.figure()ax = fig.add_subplot(1,1,1)fig, ax = plt.subplots(1,3),其中参数1和3分别代表子图的行数和列数,一共有 1x3 个子图像。函数返回一个figure图像和子图 ...
分类:其他好文   时间:2020-04-05 22:01:14    阅读次数:99
6.ASP.NET Core中的Main方法
在这篇文章中,我将带领大家详细学习ASP.NET Core 中的Main方法。在这篇文章中,我将向大家详细介绍下面几个问题:ASP.NET Core Main方法的重要性为什么我们在ASP.NET Core中会有一个Main方法?当你运行一个ASP.NET Core应用程序的时候,背后发生了什么?为... ...
分类:Web程序   时间:2020-04-05 13:41:05    阅读次数:80
ubuntu+vscode+C++ debug
0.点击Vscode左边的debug按钮,进入debug模式,但是一开始里面没有Configuration文件。add Configuration,之后选择C++,VScode会在工作路径下自动生成一个.vscode文件夹。 1.c_cpp_properties.json 打开vscode控制台,输 ...
分类:编程语言   时间:2020-04-03 19:51:28    阅读次数:71
2425条   上一页 1 ... 21 22 23 24 25 ... 243 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!