php是最好的语言

nginx实现反向代理网站并且替换网站内容

在原来nginx基础上新增ngx_http_substitutions_filter_module(http://www.cnblogs.com/dudu/p/nginx-subs_filter.html)模块和replace-filter-nginx-module(http://www.360doc.com/content/17/0611/23/597197_661995547.shtml)模块 replace-filter-nginx-module相关函数知识http://www.cnblo
作者:xTao 分类:LNMP 浏览:2945 评论:0

django解决跨域问题

https://blog.csdn.net/larger5/article/details/81265339
作者:xTao 分类:LNMP 浏览:2320 评论:0

python3实现英文关键词提取算法之RAKE

他山之石算法讲解https://blog.csdn.net/qq_29003925/article/details/80943689(    本文的计算分数有点不一样 大部分过程一样的)#!/usr/bin/python3.6 # coding: utf-8 # Implementation of RAKE - Rapid Automtic Keyword Exr
作者:xTao 分类:LNMP 浏览:3148 评论:0

mac下使用python把pdf转图片

需要安装一些库和包自己安装去(可以运行起来,根据错误来安装)import io from wand.image import Image from wand.color import Color from PyPDF2 import PdfFileReader, PdfFileWriter memo = {} def getPdfReader(
作者:xTao 分类:LNMP 浏览:2497 评论:0

余弦相似度

https://blog.csdn.net/u012160689/article/details/15341303
作者:xTao 分类:LNMP 浏览:2401 评论:0

python3梯度下降法实现

#原理https://www.jianshu.com/p/c7e642877b0e import numpy as np import sys # Size of the points dataset. m = 20 # Points x-coordinate and dummy value (x0, x
作者:xTao 分类:LNMP 浏览:2360 评论:0