python语法基础(8)_包

包的介绍 官网解释 Packages are a way of structuring Python’s module namespace by using “dotted module names” 包是一种通过使用‘.模块名’来组织python模块名称空间的方式。 具体的:包就是一个包含有__init__.py文件的文件夹,所以其实我们创建包的目的就是为了用文件夹将文件/模块组织起来 需要强调的是:   1. 在python3中,即使包下没有__init__.py文件,import 包仍然
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

Socket 套接字 和 粘包问题

一、Scoket 套接字 基于TCP协议的scoket tcp是基于链接的,必须先启动服务端,然后再启动客户端去链接服务端 scoket 简单版本 send和recv是相辅相成的,必须要配对使用。recv是跟内存要数据,至于数据来源你无需考虑。 注意send和recv: send发送的数据只能是二进制数据,recv只能填写数字,表示接收数据大小 (******) TCP特点会将数据量比较小的并且时间间隔比较短的数据一次性打包发送给对方 server端 import socket serv
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

Download HPE2-K43 Exam Cram to Make Your Success Guaranteed

Tired of doing the same job? Get your hands on HPE2-K43 exam It is the nature of the human being that he/she will get tired of doing the same task over and over, same is the case of the HPE ASE professionals. If you are an individual who is seeking
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

angularjs中使用锚点,angular路由导致锚点失效的两种解决方案

壹 ❀ 引 公司新项目开发中,首页要做个楼层导航效果(如下图),要求能点击图标对应跳到楼层即可,因为不需要跳转过度动画,也要求最好别用JQ,想着原生js操作dom计算top的兼容性,想着用锚点实现算了,结果一番波折,也是弄的我头大,所以这里就做个记录吧。 我们都知道锚点一般做法是通过a标签结合目标id来做,结果有趣的事情发生了,我在项目中写的锚点就是不生效。 <a href="#Top">click</a> <div id="Top"></div> 特意去写了个小demo验证了下,跳转也没问
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

Linux进程通信之mmap

mmap()函数: void *mmap(void* addr,size_t length,int port,int flags,int fd,off_t offset); 返回:成功:返回创建的映射区首地址;失败:MAP_FAILED 宏 参数: addr: 建立映射区的首地址,由linux内核决定。使用时直接传递NULL; length: 欲创建映射区的大小 port: 映射区权限PROT _READ、PROT_WRITE 、PROT _READ|PROTWRITE flags: 标志位参
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

Improve Score Better With HPE2-E55 Exam Cram

Tired of doing the same job? Get your hands on HPE2-E55 exam It is the nature of the human being that he/she will get tired of doing the same task over and over, same is the case of the HPE Sales Certified professionals. If you are an individual who
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

Python socket 粘包问题 报头

一 socket(套接字) 1.什么是socket:Socket是应用层与TCP/IP协议族通信的中间软件抽象层,它是一组接口。它把复杂的TCP/IP协议族隐藏在Socket接口后面,了socket以后,无需自己编写代码实现三次握手,四次挥手,ARP请求,打包数据等等,socket已经封装好了,只需要遵循socket的规定去编程,写出的程序自然就是遵循tcp/udp标准的。 2.基本语法: #客户端: #1.创建socket对象 client = socket.socket(
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

Avail HPE2-K44 Exam Cram Curated by HP Experts

Tired of doing the same job? Get your hands on HPE2-K44 exam It is the nature of the human being that he/she will get tired of doing the same task over and over, same is the case of the HPE ASE professionals. If you are an individual who is seeking
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

【Django】 Admin 管理工具

Admin -Django数据库可视化管理工具 概念:Django Admin 可以对Django后端数据库进行可视化管理。 Django 自动管理工具是 django.contrib 的一部分。你可以在项目的 settings.py 中的 INSTALLED_APPS 看到它: INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttype
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

四、CubeMX之配置RTC实现日历和闹钟实验

一、
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

Mybatis源码分析(第一章)------配置文件的解析(2)

书接上文 1.4 设置 settings 配置到 Configuration 中 settings 配置设置到 Configuration 对象中的过程源码分析如下:SqlSessionFactoryBean → SqlSessionBuilder → XMLConfigBuilder → settingsElement 1 private void settingsElement(Properties props) throws Exception { 2 // 设置 auto
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

一些非常好的技术学习网站

--------------------------------------------------------------- web安全类 --------------------------------------------------------------- http://www.storysec.com/security/websec/page/6 dvwa https://www.freebuf.com/articles/web/120747.html dvwa https://
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

The Best HPE2-K42 Exam Cram Ever - Pass Easily HPE2 K42 Exam

Tired of doing the same job? Get your hands on HPE2-K42 exam It is the nature of the human being that he/she will get tired of doing the same task over and over, same is the case of the professionals. If you are an individual who is seeking for the
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

初学矩阵树定理

前言 矩阵树定理,最基础的作用是用于求一张无向图中的生成树个数。 当然它还能扩展到有向图,以及有其他许多应用。 但我都不会。 相关定义 先给出最基础的矩阵树定理的几个相关定义: 度数矩阵: 第\(i\)行第\(i\)列位置上的值为节点\(i\)的度数,其余位置为\(0\)。 邻接矩阵: 第\(i\)行第\(j\)列的值在\(i\)与\(j\)有边相连时为\(1\),否则为\(0\)。 行列式: 用高斯消元把矩阵消得只剩左上-右下对角线右上方的这个三角形,然后左上-右下对角线上所有元素的乘积即为
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

Boost Your Career with HPE2-T34 Exam Cram Questions

Tired of doing the same job? Get your hands on HPE2-T34 exam It is the nature of the human being that he/she will get tired of doing the same task over and over, same is the case of the HP ASE professionals. If you are an individual who is seeking f
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

web端,qq互联以及微信登录接入流程(内嵌页面)总结

前言 实习过程中,我参与了web版相册管家的开发,负责登陆页面的前后端逻辑。 需要在登陆页接入QQ互联和微信扫码登陆,而且是用页面内嵌方式。回头来看其实两者都有文档指导,步骤清楚,并不复杂。但是第一次接触难免踩坑,在此梳理如下,方便今后开发参考。 QQ互联 开发文档 https://wiki.connect.qq.com/%E7%BD%91%E7%AB%99%E5%BA%94%E7%94%A8%E6%8E%A5%E5%85%A5%E6%B5%81%E7%A8%8B 应用申请 申请appid和a
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

慢速乘模板(支持负数与零

#include <iostream> #include <cstdio> #include <queue> #include <algorithm> #include <cmath> #include <cstring> #define inf 2147483647 #define N 1000010 #define p(a) putchar(a) #define For(i,a,b) for(long long i=a;i<=b;++i) //by war //201
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

测开之路七十六:linux变量和环境变量

变量 赋值 variable=0,访问 $var或${var} 参数 $n 用``引住的会先执行(~键) 位置参数 环境变量 /etc/profile:全局的环境变量 . bash_profile:用户的环境变量,在哪个用户的home下,就对哪个用户生效 ~/ .bashrc:用户的环境变量,在哪个用户的home下,就对哪个用户生效 export:导出变量,即用户在外面使用 source:修改环境变量后让变量文件生效 添加a到环境变量 也可以export其他的变量 在脚本中使用环境变量 管道
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

阿里面试实战题2----ReentrantLock里面lock和tryLock的区别

ReentrantLock ReentrantLock(轻量级锁)也可以叫对象锁,可重入锁,互斥锁。synchronized重量级锁,JDK前期的版本lock比synchronized更快,在JDK1.5之后synchronized引入了偏向锁,轻量级锁和重量级锁。以致两种锁性能旗鼓相当,看个人喜欢,本文主要介绍一下lock和tryLock的区别。 Lock VS TryLock 1 public void lock() { 2 sync.lock(); 3 } 4
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0

Python2和3字符编码的区别

Python2和3字符编码的区别 一.字符编码应用之Pyhton 1.1执行Python程序的三个阶段 test.py文件内容以gbk格式保存的,内容为: 阶段一:启动Python解释器 阶段二:Python解释器此时就是一个文本编辑器,负责打开文件test.py,即从硬盘中读取test.py的内容到内存中 此时,Python解释器会读取test.py的第一行内容,#coding:utf-8或#-*-coding:utf-8-*-,以此决定以什么编码格式将代码读入内存,这一行就是设定Pytho
分类: 其他 发布时间: 08-07 20:41 阅读次数: 0