小李笔记
-
forsaken-mail 临时邮箱系统搭建
1、下载程序文件,forsaken-mail系统开源地址 2、进入安装目录,编译安装(需安装nodejs,点此查看安装方法,请安装版本 v6.10.0) [crayon-647f3…
-
linux平台下安装nodejs
1、下载nodejs对应版本,最新版 、历史版本在此下载 2、解压并移动到想要的目录
1tar -xvf node-linux-x64.tar.xz3、建立软连接,变为全局 […
-
windows平台下将nginx配置为服务
这里需要用到开源软件一个软件:Windows Service Wrapper ,可通过此链接到github官方地址下载发布的版本。 1、将下载的WinSW.NET4.exe(我这里…
-
cloudflare cname接入
前几天申请的cf-partner终于申请通过了,搭建了一个相关的面板Cloudflare-CNAME-Setup 面板地址: 无效 有需求的朋友可以用它来进行相关设置 这里需要注意…
-
myeclipse2014下载地址
下载地址: http://ipan.xiaolee.net/down/4.view
-
linux添加开机启动脚本
场景:需要开机启动nginx(通过编译安装) 实现: 1、编写自启动脚本
123456#!/bin/sh#chkconfig: 2345 80 90#description:auto start# nginx/root/nginx.sh相关说明: 脚本第一行 “#!/bin/…
-
centos安装php7
1、安装rpm源(适用于centos7)
12rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpmrpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpmcentos6使用下面的命令: [crayon-647f3c6aacf7…
-
小破站杂货店
2019-11-29更新:因特殊原因,杂货店暂时关闭 直达地址 xiaolee杂货 商品列表 1、hostloc邀请码(¥5):邀请码->hostloc邀请码 —…
-
hostloc自动刷积分脚本
自己模仿着写了一个hostloc自动访问坛友空间,涨积分的小工具:
1234567891011121314151617181920212223242526272829#!/usr/bin/env python3# -*- coding: utf-8 -*-import requestsimport randomimport timeaccount={'id':'pwd'}url='https://www.hostloc.com/member.php?mod=logging&action=login&loginsubmit=yes&infloat=yes&lssubmit=yes&inajax=1'def loopacc(account):for user,password in account.items():yield {'username': user,'password': password}while 1:t = 86400for acc in loopacc(account):try:s=requests.session()s.post(url,data=acc,verify=False)for x in range(1,25):uurl='https://www.hostloc.com/space-uid-{}.html'.format(random.randint(1,2000))s.get(uurl,verify=False)except Exception as e:t = 3600time.sleep(t)1、account={ ‘id&#…
-
#收集# logo在线制作网址收集
1、在线logo生成(免费) https://hatchful.shopify.com/ 暂时只知道这一个,效果还可以,主要是免费!!! 其他的欢迎补充!