-
Xshell 5/6 官方原版下载,提供注册码
文件说明:所有文件均是从官网下载上传,请放心使用。 文件列表如下:直达地址 注册说明: 1、下载对应的版本 2、修改hosts [crayon-607c66261444281688…
-
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-607c662614c9…
-
小破站杂货店
2019-11-29更新:因特殊原因,杂货店暂时关闭 直达地址 xiaolee杂货 商品列表 1、hostloc邀请码(¥5):邀请码->hostloc邀请码 —…
-
【转载】云尚发卡接入当面付后支付页面出现500错误的解决方法
接入云尚发卡系统后,支付宝当面付付款页面,出现“该网页无法正常运作”的空白页面,有以下原因: 1、配置错误; 2、应用没上线; 3、如果确认以上两项配置无误,则有可能是window…
-
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&#…
-
获取Gdrive分享连接下载地址方法
实现方法说明: 1、获取分享地址(所有人可查看),会得到如下类型地址: https://drive.google.com/open?id=XXX 2、打开此地址会出现查看页面,查看…
-
#收集# logo在线制作网址收集
1、在线logo生成(免费) https://hatchful.shopify.com/ 暂时只知道这一个,效果还可以,主要是免费!!! 其他的欢迎补充!
-
ffmpeg切片常用命令
1、转码(如果需要)
1ffmpeg -i 1.mkv -acodec copy -vcodec copy 1.mp42、mp4-> ts
1ffmpeg -y -i 1.mp4 -vcodec copy -acodec copy -vbsf h264_mp4toannexb 1.ts…