摘要: 代码随想录 阅读全文
posted @ 2023-01-30 11:20 公众号海哥python 阅读(18) 评论(0) 推荐(0) 编辑
摘要: github牛人 github牛人:github牛人 devops项目管理 一站式研发管理平台及云原生开发工具:coding 第三方认证系统 帮助企业和开发者构建标准化的用户身份体系:authing it资料 it小王子:https://www.itwangzi.cn/hdkf/go/page/4 阅读全文
posted @ 2023-01-12 10:13 公众号海哥python 阅读(24) 评论(0) 推荐(0) 编辑
摘要: python基础 python-cookbook: https://python3-cookbook.readthedocs.io/zh_CN/latest/c01/p13_sort_list_of_dicts_by_key.html python进阶 python文档 中文文档 grpc教程 gr 阅读全文
posted @ 2023-01-11 15:40 公众号海哥python 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 一、golang基础 李文周的博客:https://www.liwenzhou.com/ 视频教程:https://link.juejin.cn/?target=https%3A%2F%2Fwww.bilibili.com%2Fvideo%2FBV16E411H7og%3Fp%3D1 go语言中文网 阅读全文
posted @ 2023-01-10 09:46 公众号海哥python 阅读(170) 评论(0) 推荐(0) 编辑
摘要: Python好用的三方库 Python使用environs库来更好地定义环境变量 https://www.cnblogs.com/lianhaifeng/p/13842823.html 使用typing库类型注解让Python代码更易读 https://www.cnblogs.com/lianhai 阅读全文
posted @ 2020-10-19 20:29 公众号海哥python 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 掘金2023年度人气创作者打榜中,快来帮我打榜吧~ https://activity.juejin.cn/rank/2023/writer/395479917269997?utm_campaign=annual_2023&utm_medium=self_web_share&utm_source=暴走 阅读全文
posted @ 2023-12-27 18:32 公众号海哥python 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 这期我们来聊聊和class建立有关的魔术方法。 __init_subclass__魔术方法 __in 阅读全文
posted @ 2023-10-10 18:45 公众号海哥python 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 大家好,我是暴走の海鸽~ 本期整理了几个基础python防坑小常识,希望对大家有所帮助。 1. ty 阅读全文
posted @ 2023-10-09 13:58 公众号海哥python 阅读(547) 评论(0) 推荐(1) 编辑
摘要: import nmap scanner = nmap.PortScanner() target = '192.168.8.121' scanner.scan(target, arguments='-p-') for host in scanner.all_hosts(): print(host) i 阅读全文
posted @ 2023-04-23 17:44 公众号海哥python 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 方案一: 1,首先修改网卡物理配置文件,没有这个文件的话新建一个或者从已有的环境上拷贝一份过来按照要求进行修改 vi /etc/udev/rules.d/70-persistent-net.rules SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", A 阅读全文
posted @ 2023-04-23 16:36 公众号海哥python 阅读(162) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash xrandr -s 0 --output DSI-1 xrandr -s 0 --output HDMI-1 xrandr --fb 1024x600 --output DSI-1 --mode 1024x600 --panning 0x0* xrandr --output 阅读全文
posted @ 2023-03-13 16:04 公众号海哥python 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 为了用其__str__方法表示关系的目标,你可以在序列化器中使用StringRelatedField。 # model: class Post(models.Model): # ... def __str__(self): return f"{self.date_published} - {self 阅读全文
posted @ 2023-03-13 13:49 公众号海哥python 阅读(108) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash xrandr -s 0 --output DSI-1 xrandr -s 0 --output HDMI-1 xrandr --fb 1024x600 --output DSI-1 --mode 1024x600 --panning 0x0* xrandr --output 阅读全文
posted @ 2023-02-22 16:22 公众号海哥python 阅读(93) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- import socket import fcntl import struct def get_ip_address(ifname): s = socket.socket(socket.AF_INET, s 阅读全文
posted @ 2023-02-13 14:29 公众号海哥python 阅读(47) 评论(0) 推荐(0) 编辑
摘要: MySQL是一个流行的关系型数据库管理系统,为了保证MySQL的性能和稳定性,有一些最佳实践可以遵循: 正确配置内存:MySQL需要大量的内存来缓存数据和查询结果,确保MySQL有足够的内存是非常重要的。 合理设置数据目录:确保MySQL数据目录位于快速的存储介质上,例如SSD,可以大大提高MySQ 阅读全文
posted @ 2023-02-10 11:44 公众号海哥python 阅读(62) 评论(0) 推荐(0) 编辑