摘要:
一、Python3 搭建简易HTTP服务器 python -m http.server 浏览器访问:http://localhost:8000 Python3 cgiserver python -m http.server --cgi 8080 二、Python 2 搭建简易HTTP服务器 pyth 阅读全文
摘要:
一,下载 vdi文件https://mikrotik.com/download Cloud Hosted Routerhttps://download.mikrotik.com/routeros/6.42.6/chr-6.42.6.vdi 二,新建虚拟机Virtualbox 新建 Other Lin 阅读全文
摘要:
git branch日期排序 vi ~/.gitconfig [alias]lb = !"for k in `git branch -a|perl -pe s/^..//`;do echo `git show --pretty=format:\"%Cgreen%ci %Cblue%cr%Creset 阅读全文
摘要:
35岁了,还记得当年的梦想吗? 最近有个正能量朋友,聊到吸引力法则,我早上也刚好在温习《世界上最伟大的推销员》,记得大二时暑假有个朋友给了好多励志方面的光盘,其中有陈安之的,当时看的时候是意气风发,若干年后,还可以勇无直前吗? 还在努力拼博吗?还在全力以赴吗? 感谢第一位朋友,让我重新开始整理自己, 阅读全文
摘要:
coap 插件: 百度搜索firefox coap也能找到该插件https://addons.mozilla.org/zh-CN/firefox/addon/copper-270430/在firefox浏览器中打开上述网址,如果提示不支持,则需要下载firefox老版本:Firefox全历史版本下载 阅读全文
摘要:
先对目标盘sdb做好处理,分区,格式化,挂载等操作sudo fdisk /dev/sdb1fdisk常用命令如下,m是帮助,n创建新分区,d删除分区,w保存退出。分好区后,对sdb1进行格式化和挂载:sudo mkfs.ext3 /dev/sdb1 sudo mount /dev/sdb1 /mnt 阅读全文
摘要:
选择相应行按:shift + tab 其它常用快捷键: CTRL + P 根据文件名打开文件,以及显示最近打开的文件 双击文件名固定文件 右键左侧导航栏文件夹 可以使用在文件夹中查找功能 阅读全文
摘要:
:set ic 永久生效 vi ~/.vimrc set ic 阅读全文
摘要:
1. 安装sudo apt-get install tftp-hpa tftpd-hpa 2. 建立目录sudo mkdir /tftpboot sudo chmod 0777 /tftpbootsudo touch test1.txt 3. 配置sudo vi /etc/default/tftpd 阅读全文
摘要:
https://pan.baidu.com/s/14tQdE9CPe55P5m9rGm5ekw 阅读全文
摘要:
一,连接无加密无线网络zhang:sudo ip link set wlan0 up sudo iwlist wlan0 scan #扫描周围SSID sudo iw dev wlan0 connect zhang sudo dhclient wlan0 二,连接WPA/WPA2加密无线网络zhan 阅读全文
摘要:
参考: https://my.oschina.net/u/223340/blog/382895 http://lua-users.org/wiki/SaveTableToFile https://stackoverflow.com/questions/36834786/how-to-save-a-t 阅读全文
摘要:
大量记录的时候,用EXCEL排序处理比较费劲,EXCEL程序动不动就无响应了,用pands完美解决。 ref:https://33sticks.com/python-for-business-identifying-duplicate-data/ 阅读全文
摘要:
在cmd下执行powershell进入shell模式: 变量定义:$i = 10 $a = ifconfig | findstr "192" Windows下的命令都可以执行如: 1、设置执行策略: Dos窗口下执行powershell进入shell模式后执行Set-ExecutionPolicy 阅读全文
摘要:
下载最新的geckodriver即可 v0.17.0 Releases · mozilla/geckodriver · GitHubhttps://github.com/mozilla/geckodriver/releases 参考: python - WebDriverException : Mi 阅读全文