废话不多说,直接上干货。本文主要解决如何通过媒体查询适配所有iphone刘海屏。 html: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=dev ...
分类:
移动开发 时间:
2021-01-27 13:02:14
阅读次数:
0
点击录屏,报错:“getDisplayMedia” of undefined,无法调用浏览器原生api,获取不了屏幕流 vue webpack.dev.conf.js 中配置项修改 host: 'localhost', ...
分类:
其他好文 时间:
2021-01-26 12:28:03
阅读次数:
0
Given an increasing sequence S of N integers, the median is the number at the middle position. For example, the median of S1 = { 11, 12, 13, 14 } is 1 ...
分类:
其他好文 时间:
2021-01-21 10:52:05
阅读次数:
0
原文标题:Async/Await 原文链接:https://os.phil-opp.com/async-await/#multitasking 公众号: Rust 碎碎念 翻译 by: Praying 在本文中我们将讨论协作式多任务(cooperative multitasking)和 Rust 中 ...
分类:
其他好文 时间:
2021-01-18 10:53:06
阅读次数:
0
闲来无事,将天梯赛的代码进行了整理,po到了github上,留作纪念 库中包括l1的绝大部分代码(只有064无,大模拟太狗了)以及l2的大部分代码 网址:https://github.com/Acediameow/GPLT ...
分类:
其他好文 时间:
2021-01-16 11:51:52
阅读次数:
0
此篇博客主要记录使用递归求解的树相关的算法题。 一、二叉树的最大深度 104. 给定一个二叉树,找出其最大深度。 (easy) 2021-01-13 二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。 说明: 叶子节点是指没有子节点的节点。 示例:给定二叉树 [3,9,20,null,null ...
分类:
其他好文 时间:
2021-01-15 12:07:22
阅读次数:
0
爬取电影网站 movie.py import scrapyfrom MyProjectDianying.items import MyprojectdianyingItemclass MovieSpider(scrapy.Spider): name = 'movie' # allowed_domai ...
分类:
编程语言 时间:
2021-01-14 11:19:48
阅读次数:
0
高耦合场景下,Trip.com如何做支付设计与落地 原创 Ryann Liu 携程技术 2020-09-17 ...
分类:
其他好文 时间:
2021-01-12 11:16:19
阅读次数:
0
引入 : 2.1信息存储 【P24】 最小的可寻址内存单元——字节 虚拟内存 进制之间的转换,基数乘除法。一个十六进制数可以写作四位二进制 【P27】 字长决定虚拟空间地址的最大大小 称某某程序是“X位程序”,其实区别是在于该程序是如何编译的,而非其运行的机器类型。 机器,可移植性的爱恨情仇。 【P ...
分类:
其他好文 时间:
2021-01-05 11:18:27
阅读次数:
0
1.代码实现 package main import ( "fmt" "github.com/gomodule/redigo/redis" ) var pool *redis.Pool; func init(){ pool = &redis.Pool{ MaxIdle: 8, MaxActive:0 ...
分类:
其他好文 时间:
2021-01-01 12:17:32
阅读次数:
0