gitbook的book.json配置

{ “title”:”xxx”, “description”: “xxx中文版”, “language”: “zh”, “pluginsConfig”: { “fontSettings”: { “th…

Qt pro文件配置dll和lib动态库的方法

#------------------------------------------------- # # Project created by QtCreator 2017-12-02T18:29…

微信小程序开发知识点

主页面跳转子页面的方式 方式一:子页面会被unload,资源被回收,每次重新加载 itemClick:function(){ wx.navigateTo({url:"../…

进程管理命令

地址空间: (1)线性地址 (2)物理地址 MMU:Memory Management Unit,CPU中的一个芯片,负责进程页面和页框之间的转换 TLB:Translation Lookaside…

rpm和yum

rpm管理软件包 rpm命令: rpm: 数据库:/var/lib/rpm rpmbuild: 安装、查询、卸载、升级、校验、数据库的重建、验证数据包…

myconfig of st3 & vs code

# sublime { "color_scheme": "Packages/Color Scheme - Default/Breakers.tmTheme&quo…

shell读取文件固定的几行

#!/bin/bash # declare -i num=0 while read do ((num++)) if [ $num -ge 5 -a $num -le 10 ]; the…

进程扇和进程链的实现

#include "io.h" //进程链 int main(int argc, char const *argv[]) { pid_t pid; int i =…

nginx配置php-fpm

server { listen 80; server_name localhost; index index.html index.php; root /var/www…

Python 爬虫163Music

# _*_ coding: utf-8 _*_ __author__ = 'xxx@qq.com' __date__ = '2017/10/23 20:19' im…