1. 如何实现浏览器title中的小图标 我们需要借鉴link标签 Link标签的标签属性有哪些? rel type href Rel 是当前页面和url之间的关系 rel=”stylesheet” Type 是资源文件的mime类型 .html文件mime类型是text/html 图片的mime类 ...
分类:
其他好文 时间:
2018-09-28 20:52:25
阅读次数:
183
1如何实现浏览器title中的小图标? 我们需要借鉴link标签 Link标签的标签属性有哪些? rel type href Rel 是当前页面和url之间的关系 rel=”stylesheet” Type 是资源文件的mime类型 .html文件mime类型是text/html 图片的mime类型 ...
分类:
其他好文 时间:
2018-09-28 20:44:44
阅读次数:
149
1 {'title': '坚果小吃零食组合装好吃的\n美食\n休闲食品孕妇成人款散装混合一箱', 'deal': '1910', 'image': '//g-search1.alicdn.com/img/bao/uploaded/i4/imgextra/i4/123456239/TB2CqDhqgZ ...
分类:
其他好文 时间:
2018-09-28 14:39:16
阅读次数:
192
原文地址:http://blog.csdn.net/zyplus/article/details/6672775 转自:https://www.cnblogs.com/x_wukong/p/4009709.html 主要这句话 :Obj.wait(),与Obj.notify()必须要与synchro ...
分类:
编程语言 时间:
2018-09-27 22:16:57
阅读次数:
227
一、IO模型介绍 为了更好地了解IO模型,我们需要事先回顾下: 同步:一件事情做完再做另一件事情 异步:同时做多件事情 阻塞:sleep、input、join、shutdown、get、acquire、wait accept、recv、recvfrom 非阻塞:strblocking(False) ...
分类:
编程语言 时间:
2018-09-27 19:14:41
阅读次数:
251
自己实现阻塞队列的话可以采用Object下的wait和notify方法,也可以使用Lock锁提供的Condition来实现,本文就是自己手撸的一个简单的阻塞队列,部分借鉴了JDK的源码。Ps:最近看面经的时候发现字节跳动的面试官特别喜欢让面试者手写阻塞队列,希望本文能对大家有帮助。个人手撸如有错误还 ...
分类:
其他好文 时间:
2018-09-27 17:00:38
阅读次数:
160
来自:https://github.com/IntelRealSense/librealsense/issues/1231 import pyrealsense2 as rs pipeline = rs.pipeline() pipe_profile = pipeline.start() frame ...
分类:
编程语言 时间:
2018-09-26 21:39:33
阅读次数:
762
+ 尝试3次连接数据库 python import time import random from threading import Thread,Event def connect_db(e): count = 0 while count ...
分类:
数据库 时间:
2018-09-26 21:34:13
阅读次数:
230
Words cashier # 收银员 a cashier counts money 收钱 custodian # 清洁工 a custodian cleans buildings 打扫清洁 mechanic # 机械师 a mechanic repairs cars 修车 receptionist ...
分类:
其他好文 时间:
2018-09-26 01:16:29
阅读次数:
164