vue.js 单文件组件


1. 工具安装

1. 安装npm

npm全称为Node Package Manager 是一个机遇Node.js的包管理器, 也是整个Node.js 社区最流行、支持第三方模块最多的包管理器 npm -v

2. 由于网络原因,安装cnpm

npm install -g cnpm --registry=https://registry.npm.taobao.org

3. 安装vue-cli

cnpm install -g @vue/cli

4. 安装webpack

cnpm install -g webpack webpack 是 JavaScript 打包器(Module bundler)

5

Read more

python 多进程


可以参考廖雪峰的博客 https://www.liaoxuefeng.com/wiki/1016959663602400/1017628290184064

我自己在树莓派开发的例子

from django.shortcuts import HttpResponse
from common.pygpio import led, sound
from multiprocessing import Process


# Create your views here.
def robot(request):
    """ionum: int gpio的引脚,17表示红

Read more

解决树莓派找不到sqlite3 的问题


  • 问题描述

WARNING: The Python bz2 extension was not compiled. Missing the bzip2 lib?

WARNING: The Python readline extension was not compiled. Missing the GNU readline lib?

WARNING: The Python sqlite3 extension was not compiled. Missing the SQLite3 lib?

树莓派已经安装了sqlite3 ,但是用pyenv 安装完3.8.3 的python提示没有安装sq

Read more

django rest framework


1.安装

pip install djangorestframework
pip install markdown       # Markdown support for the browsable API.
pip install django-filter  # Filtering support
  • 修改settings 文件的INSTALLED_APPS
INSTALLED_APPS = [
    ...
    'rest_framework',
]
  • 添加路由
    urlpatterns = [
      ...
      url(r'^api-auth/',

Read more

记一次认真学习iptables(二)


  • 一台linux 服务器如果要实现路由器转发的功能,那么他就必须要有iptables 和 路由表的配合使用
  • 如果是过滤某些数据包(比如要丢弃这些包)使用的iptables 的filter表
    iptables -t filter -A OUTPUT -p udp -d 114.114.114.114 -j DROP
    # 以上的-t filter 默认可以不写,因为iptables 的默认表就是filter
    
  • linux 内核会记录路由转发的相关记录,去:192.168.1.1:1234 ---> www.baidu.com:80 ;回:www.baidu.com:80 --->192

Read more

linux 服务器监控客户端部署


# 下载地址
wget https://tool-box.oss-cn-hangzhou.aliyuncs.com/shell/monitor_client.sh
  • monitor_client.sh
#!/bin/bash

function omsa_install 
{
# install omsa (DELL 硬件监控)
  echo "#####开始安装OMSA####"
  echo "根据网络情况,此过程需要话比较长的时间"
  wget -q -O - http://linux.dell.com/repo/hardware/lates

Read more

visualsvn server + jenkins 迁移


1.软件下载

# VisualSVN-Server官方版本
https://www.visualsvn.com/server/download/
# VisualSVN-Server可破解版本
https://tool-box.oss-cn-hangzhou.aliyuncs.com/VisualSVN-Server-3.5.1-x64.msi
https://tool-box.oss-cn-hangzhou.aliyuncs.com/visualsvn.server-patch.exe
# jenkins 清华的源
https://mirrors.tuna.tsinghua.edu.cn/j

Read more