Tiny Core Linux 安装配置

Tiny Core Linux是一个mini Linux操作系统,基于 BusyBox和FLTK提供基本功能。 其发行版本在11M-16M 官网上也提供Plus版本也只有106M。它很精致。

2020-09-01 · 4 分钟

dhclient error while loading shared libraries libdns-export.so.1102

环境: - cenos7(X86\_64) - 问题: 网站显示无法链接数据库,重启后发现无法链接服务器,通过管理端登录服务器 /var/log/messages显示 - 修复: 需要root权限 - 其他 查找过程及问题: 1. 由于前一阵刚好在服务器上增加了防火墙相关配置,所以当时开始一直判断是防火墙设置问题。关闭…

2020-08-25 · 1 分钟

python excel文件中指定字段是否相等

工作需要检查相关excel数据信息, 查询一个表格中的指定位置编号,检查相关多个个相关表格中指定位置编号是否相同。 - windows10 - python3.7 + openpyxl + xlrd - 目录结构 - 文件内容 - 参考表格 reference.xlsx | A | | --- | | CODE-…

2020-08-24 · 2 分钟

LeetCode – Count Univalue Subtrees

Given a binary tree, count the number of uni-value subtrees. A Uni-value subtree means all nodes of the subtree have the same value. Example : - 创建判断相同值子树方法…

2020-08-19 · 2 分钟

出色管理者如何帮助团队成员解决问题

这篇文章Don’t solve problems if you want to be a great manager

2020-08-12 · 2 分钟

伙伴系统分配物理页后如何转换成为虚拟地址

极客时间 | 内核态内存映射:如何找到正确的会议室? 一道课后问题

2020-08-11 · 13 分钟

文件时间信息

文件时间信息一般包含,文件创建时间,文件修改时间,文件访问时间。 Unix/Linux 文件修改时间有两个一个是Modify Time 文件内容修改/ Change Time:文件权限状态/权限, 根据不同的文件系统,文件时间信息属性会有一些差别。Unix/Linux在挂载文件系统的时候会设置相关文件时间属性相关参数。

2020-07-30 · 2 分钟

python修改excel文档相关日期信息

工作需要修改excel文件创建内容时间(excel属性非文件属性)和上次修改时间, 用python写了一个脚本处理了一下。 - windows10 - python3.7 + openpyxl Openpyxl Doc python 修改文件的创建时间、修改时间、访问时间 pythondoc-os.utime In…

2020-07-29 · 2 分钟

LeetCode-Construct Binary Tree from Preorder and Inorder Traversal

Given preorder and inorder traversal of a tree, construct the binary tree. Note: You may assume that duplicates do not exist in the tree. For example, given…

2020-07-28 · 2 分钟

LeetCode-Lowest Common Ancestor of a Binary Tree Solution

Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. According to the definition of LCA on Wikipedia: “The lowest common…

2020-07-28 · 1 分钟