搜索结果
查询Tags标签: through,共有 20条记录-
chimney, funnel, exhaust
chimney烟囱 (油灯的)玻璃灯罩 a narrow opening in tall rocks or cliffs that you can climb upIf someone smokes like a chimney, they smoke a lot of cigarettes or tobacco. funnel漏斗 metal chimney on a steam-engine [蒸汽机], ship, etc, through which smoke…
2022/5/29 23:19:45 人评论 次浏览 -
redis缓存策略
缓存技术下图左侧为客户端直接调用存储层的架构,右侧为比较典型的缓存层+存储层架构。 收益: ①加速读写:因为缓存通常都是全内存的,而存储层通常读写性能不够强悍(例如MySQL),通过缓存的使用可以有效地加速读写,优化用户体验。 ②降低后端负载:帮助后端减少访问…
2022/3/30 19:19:52 人评论 次浏览 -
Ransim go through
Ransim go through# connection process with E2T cmd/ransim/ransim.go -> main()pkg/manager/manager.go -> Run() -> Start() -> startE2Agents()pkg/e2agent/agents/agents.go -> Start()pkg/e2agent/agent.go -> Start()pkg/controller/connection…
2022/1/23 6:05:30 人评论 次浏览 -
14.8 实践项目Excel 到 CSV 的转换程序
作为实践,编程完成下列任务。Excel 到 CSV 的转换程序 Excel 可以将电子表格保存为 CSV 文件,只要点几下鼠标,但如果有几百个 Excel文件要转换为 CSV,就需要点击几小时。利用第 12 章的 openpyxl 模块,编程读取当前工作目录中的所有 Excel 文件,并输出为CSV 文件。 …
2021/12/29 11:08:30 人评论 次浏览 -
14.8 实践项目Excel 到 CSV 的转换程序
作为实践,编程完成下列任务。Excel 到 CSV 的转换程序 Excel 可以将电子表格保存为 CSV 文件,只要点几下鼠标,但如果有几百个 Excel文件要转换为 CSV,就需要点击几小时。利用第 12 章的 openpyxl 模块,编程读取当前工作目录中的所有 Excel 文件,并输出为CSV 文件。 …
2021/12/29 11:08:30 人评论 次浏览 -
计算机缓存Cache
Cache写机制在L1缓存中,又有一个叫做Cache line的东西。为了提升处理速度,CPU每次处理都是读取一个Cache line大小的数据。缓存分成两种,一种是指令缓存,一种是数据缓存 Cache line:cpu重一级缓存读取数据的最小单位,由数据总线决定。例如:一台电脑的数据总线是64位…
2021/11/25 6:11:16 人评论 次浏览 -
计算机缓存Cache
Cache写机制在L1缓存中,又有一个叫做Cache line的东西。为了提升处理速度,CPU每次处理都是读取一个Cache line大小的数据。缓存分成两种,一种是指令缓存,一种是数据缓存 Cache line:cpu重一级缓存读取数据的最小单位,由数据总线决定。例如:一台电脑的数据总线是64位…
2021/11/25 6:11:16 人评论 次浏览 -
口语day1
Success in Life 链接 When you talk about success, what can you say? Success means different things for different people. Some may equate it with fame, some with wealth and still some with accomplishments.equate it with (把...等同于), regard ... as ..…
2021/11/14 6:13:06 人评论 次浏览 -
口语day1
Success in Life 链接 When you talk about success, what can you say? Success means different things for different people. Some may equate it with fame, some with wealth and still some with accomplishments.equate it with (把...等同于), regard ... as ..…
2021/11/14 6:13:06 人评论 次浏览 -
linux进入mysql数据库报ERROR 2002 (HY000): Can‘t connect to local MySQL server through socket ‘/tmp/mysql.s
报错 :ERROR 2002 (HY000): Can’t connect to local MySQL server through socket ‘/tmp/mysql.sock’ (2) 解决方法:指定mysql.sock文件 有的可能要指定一下地址 加上 -h ip即可, 我这里可能是因为配置文件里指定的地址是0.0.0.0 [mysqluser@VM-8-3-centos mysql]$ …
2021/9/29 19:12:43 人评论 次浏览 -
linux进入mysql数据库报ERROR 2002 (HY000): Can‘t connect to local MySQL server through socket ‘/tmp/mysql.s
报错 :ERROR 2002 (HY000): Can’t connect to local MySQL server through socket ‘/tmp/mysql.sock’ (2) 解决方法:指定mysql.sock文件 有的可能要指定一下地址 加上 -h ip即可, 我这里可能是因为配置文件里指定的地址是0.0.0.0 [mysqluser@VM-8-3-centos mysql]$ …
2021/9/29 19:12:43 人评论 次浏览 -
攻防世界-music-新手练习-pdf
题目给出了一个PDF文件,打开看一看pdf最常见的隐写方法就是在图片下方隐藏flag,那么怎么将PDF中的图片移开呢。首先需要使用一个PDF编辑器(这里我用的是福昕),找到编辑框中的添加文本 然后使用鼠标选中图片,移开即可 flag:flag{security_through_obscurity}
2021/9/20 6:06:42 人评论 次浏览 -
攻防世界-music-新手练习-pdf
题目给出了一个PDF文件,打开看一看pdf最常见的隐写方法就是在图片下方隐藏flag,那么怎么将PDF中的图片移开呢。首先需要使用一个PDF编辑器(这里我用的是福昕),找到编辑框中的添加文本 然后使用鼠标选中图片,移开即可 flag:flag{security_through_obscurity}
2021/9/20 6:06:42 人评论 次浏览 -
burpsuit抓包Python requests请求 https
Home Python Requests and Burp Suite Problem: When I am conducting a pentest, I commonly write python scripts to use the requests module and need to proxy them through Burp. I have been using the "Easy way out," but there are problems with do…
2021/9/16 11:04:49 人评论 次浏览 -
burpsuit抓包Python requests请求 https
Home Python Requests and Burp Suite Problem: When I am conducting a pentest, I commonly write python scripts to use the requests module and need to proxy them through Burp. I have been using the "Easy way out," but there are problems with do…
2021/9/16 11:04:49 人评论 次浏览