E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
internals
《CPython
Internals
》读后感
一、为什么选择这本书?Python是本人工作中最常用的开发语言,为了加深对Python的理解,更好的掌握Python这门语言,所以想对Python解释器有所了解,看看是怎么使用C语言来实现Python的,以期达到对Python语言的掌握达到精通的程度,。关于Python解释器的书不多——AnthonyShaw写的《CPythonInternals》,陈儒写的《Python源码剖析》。因为《CPyt
·
2025-01-27 17:34
python
《CPython
Internals
》阅读笔记:p360-p377
《CPythonInternals》学习第20天,p360-p377总结,总计18页。一、技术总结1.seaborn可视化工具。2.dtrace(1)安装sudoapt-getinstallsystemtap-sdt-dev(2)编译./configure--with-dtracemakecleanmake3.snakeviz适用于cProfile的可视化工具。二、英语总结(生词:0)无。关于英语
·
2025-01-26 16:31
python
《CPython
Internals
》阅读笔记:p336-p352
《CPythonInternals》学习第17天,p336-p352总结,总计17页。一、技术总结1.GDBGDB是GNUDbugger的缩写。(1)安装sudoaptinstallgdb(2)创建.gdbinit文件touch~/.gdbinitvim~/.gdbinit(3)配置.gdbinit文件add-auto-load-safe-path/project/cpython注:1./proj
codists
·
2025-01-24 08:47
读书笔记
python
《CPython
Internals
》阅读笔记:p336-p352
《CPythonInternals》学习第17天,p336-p352总结,总计17页。一、技术总结1.GDBGDB是GNUDbugger的缩写。(1)安装sudoaptinstallgdb(2)创建.gdbinit文件touch~/.gdbinitvim~/.gdbinit(3)配置.gdbinit文件add-auto-load-safe-path/project/cpython注:1./proj
·
2025-01-24 02:38
python
《CPython
Internals
》阅读笔记:p285-p328
《CPythonInternals》学习第15天,p285-p328总结,总计44页。一、技术总结1.shallowcomparisonp285,InObjectsobject.c,thebaseimplementationoftheobjecttypeiswritteninpureCcode.Therearesomeconcreteimplementationsofbasiclogic,like
codists
·
2025-01-23 11:49
读书笔记
python
《CPython
Internals
》阅读笔记:p250-p284
《CPythonInternals》学习第14天,250-p284总结,总计25页。一、技术总结介于我觉得作者写得乱七八糟的,读完我已经不想说话了,所以今日无技术总结。二、英语总结(生词:2)1.spawn(1)spawn:来自于词根expandere。(2)expandere:ex-(“out”)+pandere(“tospread”)spawn原来的意思是“spreadingoutoffish
codists
·
2025-01-23 11:19
读书笔记
python
《CPython
Internals
》阅读笔记:p221-p231
《CPythonInternals》学习第12天,p221-p231总结,总计11页。一、技术总结无。二、英语总结(生词:2)1.atatimeidiom.separately(单独地)inthespecifiedgroups(一次)。示例:(1)Icanonlydoonethingatatim(我一次只能做一件事)。(2)Wecarriedtheboxestwoatatimeupthestair
codists
·
2025-01-23 11:49
笔记
《CPython
Internals
》阅读笔记:p152-p176
《CPythonInternals》学习第10天,p152-p176总结,总计25页。一、技术总结1.addinganitemtoalistmy_list=[]my_list.append(obj)上面的代码涉及两个指令:LOAD_FAST,LIST_APPEND。整章看下来这有这点算是可以记的了,其它的只感觉作者在零零碎碎的罗列内容。二、英语总结(生词:1)无。关于英语的注解同步更新汇总到htt
codists
·
2025-01-23 11:48
读书笔记
python
《CPython
Internals
》阅读笔记:p1-p19
《CPythonInternals》学习第1天,p1-p19总结,总计19页。一、技术总结无。二、英语总结(生词:2)1.humblevshumbled(1)humble:humus(“earth”)adj.字面意思是“ontheground”,后面引申为“lowlyinkind,state,condition(卑微)”,“notproudthatyouareimportant(谦卑)”。(2)h
codists
·
2025-01-23 11:18
笔记
《CPython
Internals
》阅读笔记:p329-p335
《CPythonInternals》学习第16天,p329-p335总结,总计7页。一、技术总结1.debuggingp331,Therearetwotypesofdebugger,consoleandvisual——作者将debugger分为两类:(1)console:lldb(MAC系统使用),GDB(Linux系统使用))。(2)visual:VisualStudioDebugger,CLi
codists
·
2025-01-23 10:13
读书笔记
python
《CPython
Internals
》阅读笔记:p329-p335
《CPythonInternals》学习第16天,p329-p335总结,总计7页。一、技术总结1.debuggingp331,Therearetwotypesofdebugger,consoleandvisual——作者将debugger分为两类:(1)console:lldb(MAC系统使用),GDB(Linux系统使用))。(2)visual:VisualStudioDebugger,CLi
·
2025-01-23 05:27
python
《CPython
Internals
》阅读笔记:p285-p328
《CPythonInternals》学习第15天,p285-p328总结,总计44页。一、技术总结1.shallowcomparisonp285,InObjectsobject.c,thebaseimplementationoftheobjecttypeiswritteninpureCcode.Therearesomeconcreteimplementationsofbasiclogic,like
·
2025-01-21 22:53
python
《CPython
Internals
》阅读笔记:p177-p220
《CPythonInternals》学习第11天,p177-p220总结,总计44页。一、技术总结1.memoryallocationinC(1)staticmemeoryallocationMemoryrequirementsarecalculatedatcompiletimeandallocatedbytheexecutablewhenitstarts.(2)automaticmemeorya
codists
·
2025-01-20 18:04
读书笔记
python
《CPython
Internals
》阅读笔记:p250-p284
《CPythonInternals》学习第14天,250-p284总结,总计25页。一、技术总结介于我觉得作者写得乱七八糟的,读完我已经不想说话了,所以今日无技术总结。二、英语总结(生词:2)1.spawn(1)spawn:来自于词根expandere。(2)expandere:ex-("out")+pandere("tospread")spawn原来的意思是“spreadingoutoffish
·
2025-01-20 18:03
python
《CPython
Internals
》阅读笔记:p232-p249
《CPythonInternals》学习第13天,p232-p249总结,总计18页。一、技术总结无。二、英语总结(生词:1)1.overhead(1)overhead:over-("above")+head(“toppart,uppermostsection”)overhead的字面意思是:abovethehead,后来演变成"representthingssituatedaboveormeta
·
2025-01-20 03:13
python
Flink 使用 Kafka 作为数据源时遇到了偏移量提交失败的问题
57.069[KafkaFetcherforSource:CustomSource->Map->Filter(1/1)#2]ERRORorg.apache.kafka.clients.consumer.
internals
.ConsumerCoordinator
java我跟你拼了
·
2025-01-18 23:19
异常笔记
flink
kafka
大数据
《CPython
Internals
》阅读笔记:p221-p231
《CPythonInternals》学习第12天,p221-p231总结,总计11页。一、技术总结无。二、英语总结(生词:2)1.atatimeidiom.separately(单独地)inthespecifiedgroups(一次)。示例:(1)Icanonlydoonethingatatim(我一次只能做一件事)。(2)Wecarriedtheboxestwoatatimeupthestair
·
2025-01-18 05:10
python
《CPython
Internals
》阅读笔记:p1-p19
《CPythonInternals》学习第1天,p1-p19总结,总计19页。一、技术总结无。二、英语总结(生词:2)1.humblevshumbled(1)humble:humus(“earth”)adj.字面意思是“ontheground”,后面引申为“lowlyinkind,state,condition(卑微)”,"notproudthatyouareimportant(谦卑)"。(2)h
·
2025-01-18 01:33
python
《CPython
Internals
》阅读笔记:p76-p95
《CPythonInternals》学习第5天,p76-p95总结,总计20页。一、技术总结无。二、英语总结(生词:1)1.checkvi/vt.toexamsthtoensureitiscorrect,true,oringoodcondition.示例:(1)AfterI'dfinishedthetest,Icheckedmyanswersformistakes.这种用法比较常见。(2)Unli
·
2025-01-17 05:39
python
《CPython
Internals
》阅读笔记:p61-p75
《CPythonInternals》学习第4天,p61-p75总结,总计15页。一、技术总结1.编译器类型(1)self-hostedcompilerSelf-hostedcompilersarecompilerswritteninthelanguagetheycompile,suchastheGocompiler.Thisisdonebyaprocessknownasbootstrapping.
·
2025-01-17 05:09
python
《CPython
Internals
》阅读笔记:p43-p60
《CPythonInternals》学习第3天,p43-p60总结,总计18页。一、技术总结1.编译所需要的packagesudoaptinstall-ybuild-essentiallibssl-devzlib1g-devlibncurses5-dev\libncursesw5-devlibreadline-devlibsqlite3-devlibgdbm-dev\libdb5.3-devlib
·
2025-01-17 05:38
python
《CPython
Internals
》阅读笔记:p177-p220
《CPythonInternals》学习第11天,p177-p220总结,总计44页。一、技术总结1.memoryallocationinC(1)staticmemeoryallocationMemoryrequirementsarecalculatedatcompiletimeandallocatedbytheexecutablewhenitstarts.(2)automaticmemeorya
·
2025-01-17 04:23
python
《CPython
Internals
》阅读笔记:p151-p151
《CPythonInternals》学习第9天,p151-p1510总结,总计1页。一、技术总结无。二、英语总结(生词:1)1.marshal(1)marshalingMarshallingormarshaling(USspelling)istheprocessoftransformingthememoryrepresentationofanobjectintoadataformsuitablef
·
2025-01-16 18:14
python
《CPython
Internals
》阅读笔记:p118-p150
《CPythonInternals》学习第8天,p118-p150总结,总计33页。一、技术总结补充一些本人整理的关于Context-FreeGrammar(CFG)的知识。1.symbol(符号)Amathematicalsymbolisafigureoracombinationoffiguresthatisusedtorepresentamathematicalobject(符号是一个数字或数
·
2025-01-16 18:09
python
《CPython
Internals
》阅读笔记:p97-p117
《CPythonInternals》学习第7天,p97-p117总结,总计21页。一、技术总结1.词法分析(lexicalanalysis)根据《Compilers-Principles,Techniques,andTools》(《编译原理》第2版)第5页:Thefirstphaseofacompileriscalledlexicalanalysisorscanning.Thelexcicalan
·
2025-01-16 18:03
python
《CPython
Internals
》阅读笔记:p96-p96
《CPythonInternals》学习第6天,p96-p96总结,总计1页。一、技术总结1.parser-tokenizerp92,Creatingaconcretesyntaxtreeusingaparser-tokenizer,orlexer.p96,CPythonhasaparser-tokenizermodule,writteninC.当做这在92页提到parser-tokenizer的
·
2025-01-16 18:01
python
解决浏览器自动将http网址转https
删除浏览器自动使用https的方式在浏览器地址栏输入:chrome://net-
internals
/#hstsPS:如果是edge浏览器可输入:edge://net-
internals
/#hsts在Deletedomainsecuritypolicies
柳絮吹成雪
·
2024-09-08 08:31
http
https
网络协议
This site can’t provide a secure connection localhost sent an invalid response.
stepstosolve:1.gotochrome://net-
internals
/#hsts2.UnderDeletedomainsecuritypolicies,fillinlocalhostandclickDelete
880露露088
·
2024-08-27 19:57
工具
Chrome 开发者工具 net-
internals
使用场景介绍
chrome://net-
internals
/#events是Chrome浏览器提供的一个内置工具,用于监视和调试网络请求和事件。
·
2024-02-11 18:23
DNS域名查询过程
域名转IP在命令行中通过nslookup+域名可以查看域名解析到ip也可以在Chrome浏览器中chrome://net-
internals
/?#dns去输入域
YF-SOD
·
2024-02-05 23:23
计算机网络知识
DNS解析过程详情
域名转IP或IP转域名命令
查看操作系统域名缓存
域名查询过程中的递归和迭代查询
禁止http请求自动跳转到https--解决网站使用了HSTS的问题
https://www.cnblogs.com/weiqinl/p/14552906.html解决办法1.在浏览器中输入:chrome://net-
internals
/#hsts2.找到模块:Deletedomainsecuritypolicies
疯癫的老码农
·
2024-02-05 20:48
网络结构
操作系统
http
https
网络协议
<第五章>Node 学习笔记 |>HTTP知识填充<|
在Chrome浏览器chrome://net-
internals
/#dns(1.2)如果浏览器没有找到自身的DNS缓存或之前的缓存已失效,那么浏览器会搜索操作系统自身的DNS缓存。
熊明才
·
2024-01-28 06:04
node.js
海康GB28181接入SRS服务器,实现低延迟直播
一、SRS学习及在Linux部署官网地址:SRS(SimpleRealtimeServer)|SRS官网讲的非常详细了,包括视频教程以及如何使用chrome://webrtc-
internals
/进行调试
roouzenn
·
2024-01-22 06:45
服务器
linux
浅谈Flink架构及拓扑图
本文参考文章如下:https://wuchong.me/blog/2016/05/03/flink-
internals
-overview/https://wuchong.me/blog/2016/05/
杨林伟
·
2024-01-19 18:49
#
BMS项目实战记录
#
Flink
flink
架构
大数据
.NET(C#)
Internals
: .NET Framework中已使用的设计模式
——适合有一定设计模式基础和.NET基础的人阅读。写在前面“设计模式”我一向是敬而远之的态度,不会去写这方面的文章,原因有二:第一,要想写好设计模式的文章太难,需要笔者丰富的经验;第二,没有深厚的功底写出的设计模式文章容易误导他人。自认没有深厚的功底,但我不会为了设计模式而设计模式。我想大部分人对设计模式的理解是不够深刻的,不然应用自如,特别是初学者!所有研究高质量的源码或框架是我们学习实践设计模
z59d8m6e40
·
2024-01-18 22:53
Chrome 解决: 您目前无法访问 因为此网站使用了 HSTS。网络错误和攻击通常是暂时的,因此,此网页稍后可能会恢复正常。
chrome://net-
internals
/#hstshttps://blog.csdn.net/u010164190/article/details/105263254在Chrome地址栏中输入:chrome
musk
·
2024-01-12 12:21
Postgres 中文周报:PostgreSQL 2023 热门回顾
热门博文《ThePostgreSQL14
Internals
》图书
HashData酷克数据
·
2024-01-11 23:29
postgresql
数据库
postgresql_
internals
-14 学习笔记(五)Buffer Cache
新年的第一篇博客~一、BufferCache简介1.主要用途调和内存(ns级)与磁盘(ms级)间的速度差异。pg不仅用自己的buffercache,也用oscache,所以它使用了“双缓存”,这也是很多文档推荐shared_buffer参数只设为内存25%(通常不超过16G)的原因。2.os参数shmall #单个共享内存段的最大大小(字节为单位)shmmax #服务器上所有进程可以使用的
Hehuyi_In
·
2024-01-11 09:52
PostgreSQL
内存
性能
postgresql
internal
学习笔记
buffer
cache
高速缓存
Switchhosts软件的使用
4.chrome://net-
internals
/#dns使用这个清理缓存,如果不行,修改完ho
Mint6
·
2023-12-25 12:04
软件安装与使用
软件
Switchhosts
Charles 代理谷歌浏览器
设置设置代理根证书安装到受信任根证书颁发机构charles设置代理端口和window设置的端口一致如8888,proxy->proxySettings问题您目前无法访问因为此网站使用了HSTS在谷歌浏览器访问chrome://net-
internals
iiaythi
·
2023-12-21 07:25
其他
charles
解决浏览器自动将http跳转至https导致无法访问的问题
以下只针对Chrome浏览器方法一:1.地址栏中输入chrome://net-
internals
/#hsts。2.在Deletedomain中输入项目的域名,并Delete(删除)。
TonyH2002
·
2023-12-19 07:54
http
https
网络协议
谷歌浏览器升级http强转https解决
mac电脑有点卡,重启以后,谷歌浏览器默认升级后续访问公司http网址,自动跳转为https网址,导致进入不了平台网上找了很多方案都是,地址栏中输入【chrome://net-
internals
/#hsts
璐哈路哈呦
·
2023-12-15 16:09
问题解决
http
网络协议
网络
mac
http强转https
谷歌浏览器
Chrome浏览器中访问http会自动跳转https下,导致请求和文件不能正常访问
网上查了很多解决方案,例如清楚缓存等等其他方法,都不能解决该问题例如:地址栏输入:chrome://net-
internals
/#hsts找到底部Deletedomainsecuritypolicies
名难取aaa
·
2023-12-14 21:21
bug
http
chrome
https
feign.FeignException$InternalServerError: [500] during [GET]
UserOpenfig#queryByUserId(Integer)]:[{"timestamp":"2023-11-09T11:39:16.890+00:00","status":500,"error":"
InternalS
衍余未了
·
2023-12-04 01:01
开发语言
spring
boot
Java 并发编程笔记:如何使用 ForkJoinPool 以及原理
转自http://blog.dyngr.com/blog/2016/09/15/java-forkjoinpool-
internals
/前言Java1.7引入了一种新的并发框架——Fork/JoinFramework
george_george
·
2023-12-01 14:46
DNS解析
打开chrome://net-
internals
/#dns,能清dns缓存,我发现http1.1不好用,http1.1支持keep-alive,所以你清了dns,但是socket还在,修改hosts文件不能即时生效原因在此
TT宁
·
2023-11-26 04:01
This is likely a Vue
internals
bug.
项目背景项目用的是vue3+vite+elementplus的Pc项目问题描述本地环境一切正常,构建后。偶发下面的报错。然后页面就不可以用了。当前页面刷新一下后,操作,就不会报错。后续发现,是点击另外一个页面,再点击该页面就会必现此报错。原因分析&&解决1.查看了别人的解决方案,应该是调用了未渲染的dom;可以使用v-show代替v-if,试了对这边管用。2.el-table,如下代码a.b.c方
TE-茶叶蛋
·
2023-11-22 17:13
vue.js
bug
javascript
Vue3 源码解读系列(十四)——内置组件
isTeleport:true,//组件创建和更新process(nl,n2,container,anchor,parentComponent,parentSuspense,isSVG,optimized,
internals
Jackson_Mseven
·
2023-11-22 01:34
Vue
javascript
前端
vue.js
SQL Server2008存储结构之堆表、行溢出
sys.system_
internals
_allocation_units系统视图中的列first_iam_page指向管理特定分区中堆的分配空间的一系列IAM页的第一页。
weixin_34392435
·
2023-11-21 17:46
数据库
SQL Server2008存储结构之堆表、行溢出 、页结构、记录结构
sys.system_
internals
_allocation_units系统视图中的列first_iam_page指向管理特定分区中堆的分配空间的一系列IAM页的第一页。
wangjunhe
·
2023-11-21 17:44
MSSQL
sql
server
存储
allocation
sqlserver
null
table
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他