python 通关sleep函数等待到明天再执行def waitToTomorrow(): """Wait to tommorow 00:00 am""" tomorrow = datetime.datetime.replace(datetime.datetime.now……继续阅读 » 水墨上仙 4年前 (2020-11-25) 2362浏览 2570个赞
有些JS是可以后加载的,如果一直等待JS加载完成可能非常影响网页上的其它功能实现,比如计数器一类的,jQuery可以对JS进行动态加载。方法1:$.getscript("test.js");方法2:function loadjs(file){ var head = $('head').remo……继续阅读 » 水墨上仙 4年前 (2020-11-25) 1225浏览 2636个赞
JavaScript随机打乱数组function Shuffle(o) { for(var j, x, i = o.length; i; j = parseInt(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x); return o;};使用方法var testArray = ……继续阅读 » 水墨上仙 4年前 (2020-11-18) 2028浏览 297个赞
503 : HTTP Error 503……继续阅读 » 开心洋葱 4年前 (2020-11-17) 2698浏览 0评论858个赞
### 首先登陆mysql shell$ mysql -u root -h 127.0.0.1 -p$密码输入### 查看mysql中现在执行的 所有线程mysql>show processlist; 线程id 登陆用户 主机 ……继续阅读 » 开心洋葱 4年前 (2020-11-16) 1697浏览 0评论1563个赞
Python遍历字符串中的每一个字符直接用for 语句#遍历字符串a = 'asd'for q in a: print(q)# 输出结果为asd ……继续阅读 » 水墨上仙 4年前 (2020-11-16) 2560浏览 1879个赞
python旋转图片的代码# rotate an image counter-clockwise using the PIL image library# free from: http://www.pythonware.com/products/pil/index.htm# make sure to install PIL after your……继续阅读 » 水墨上仙 4年前 (2020-11-16) 2229浏览 1201个赞
python 计算字符串长度,一个中文算两个字符,先转换成utf8,然后通过计算utf8的长度和len函数取得的长度,进行对比即可知道字符串内中文字符的数量,自然就可以计算出字符串的长度了。来源:http://www.75271.comvalue=u'脚本12'length = len(value)utf8_length = ……继续阅读 » 水墨上仙 4年前 (2020-11-16) 3024浏览 911个赞
python从网络端口读取文本数据# To test it with netcat, start the script and execute:# # echo "Hello, cat." | ncat.exe 127.0.0.1 12345#import socketHOST = 'localhos……继续阅读 » 水墨上仙 4年前 (2020-11-16) 1855浏览 2297个赞
windows下通过批处理获得本机mac地址@ECHO OFF:: Check OS versionIF NOT "%OS%"=="Windows_NT" GOTO SyntaxSETLOCAL:: Check command line argumentsIF NOT "%~2"……继续阅读 » 水墨上仙 4年前 (2020-11-16) 2408浏览 775个赞
转自:http://blog.csdn.net/marising/article/details/6551692在很久以前,我写了一个系列,Python和C和C++的交互,如下http://blog.csdn.net/marising/archive/2008/08/28/2845339.aspx目的是解决Python和C/C++的互操作性的问题,假如……继续阅读 » 水墨上仙 4年前 (2020-11-16) 1709浏览 2290个赞
回文,亦称回环,是正读反读都能读通的句子,亦有将文字排列成圆圈者,是一种修辞方式和文字游戏。下面的代码用于检测一个字符串是否是回文/**检测回文串: * 先判断该字符的第一个和最后一个字符是否相等。如果相等,检查第二个字符和倒数第二个字符 * 是否相等。这个过程继续进行,直到出现不配陪的情况或者字符串的所有字符都检验完了。当字 ……继续阅读 » 水墨上仙 4年前 (2020-11-16) 2656浏览 2925个赞
python显示生日是星期几# find the day of the week of a given date# Python will trap impossible dates like (1900, 2, 29)# tested with Python24 vegaseat 01aug2005from datetime i……继续阅读 » 水墨上仙 4年前 (2020-11-16) 1500浏览 462个赞
python比较两段文本的不同之处# find the difference between two texts# tested with Python24 vegaseat 6/2/2005import difflibtext1 = """The World's Shortest Books:……继续阅读 » 水墨上仙 4年前 (2020-11-16) 1988浏览 2033个赞
C++通过递归进行回文判断#include using namespace std; //将一整数逆序后放入一数组中(要求递归实现) int IsRound(char *str,int len) { if(*str==*(str+len-1)) return IsRound(str+1,len-2); if(le……继续阅读 » 水墨上仙 4年前 (2020-11-16) 1733浏览 1584个赞
python获取一组汉字拼音的首字母来源:http://wangwei007.blog.51cto.com/68019/983289作者:lover007#!/usr/bin/env python # -*- coding: utf-8 -*- def multi_get_letter(str_input): if ……继续阅读 » 水墨上仙 4年前 (2020-11-13) 1219浏览 756个赞
python监控本机cpu的利用百分比情况import wmiimport timec = wmi.WMI()while True: for cpu in c.Win32_Processor(): timestamp = time.strftime('%a, %d %b %Y %H:%M:%S',……继续阅读 » 水墨上仙 4年前 (2020-11-13) 2988浏览 2056个赞
python自动连接ssh的代码#!/usr/bin/python#-*- coding:utf-8 -*-import sys, time, ostry: import pexpectexcept ImportError: print """ You must insta……继续阅读 » 水墨上仙 4年前 (2020-11-13) 1928浏览 2486个赞
下面这段代码意思是,如果b为None则c等于a,否则c=b,用python写起来就容易多了a=100b=50c=a if b is None else bprint(c)#输出结果为50,这段代码相当于if b is None: c = aelse: c = b ……继续阅读 » 水墨上仙 4年前 (2020-11-13) 2396浏览 715个赞
想sqlite插入一条记录后,马上获得自动生成的id编号的方法connection=sqlite3.connect(':memory:')cursor=connection.cursor()cursor.execute('''CREATE TABLE foo (id integer primary ……继续阅读 » 水墨上仙 4年前 (2020-11-13) 1925浏览 1431个赞
微信抽奖签到墙源码,年会,某宝买的源码–已经配置完成了,源码没问题,可直接用蓝奏云下载地址:问题1、浏览器版本不兼容问题,在首页文件里面把注释去掉就好了问题2、签到跳转主页问题,原因:未绑定公众号。解决办法:1、绑定公众号,要企业认证的那种;2、看置顶楼层,提供有解决办法。问题3、各种代码报错问题。解决办法:重新安装,检查是否设置错误即……继续阅读 » 开心洋葱 4年前 (2020-11-09) 3122浏览 13评论1667个赞
DSShop v3.0.2 单用户TP5框架B2C开源商城源码源码介绍DSShop商城系统是一套完善的B2C(单用户商城)解决方案。系统pc端后台使用国内优秀开源框架THinkPHP,基于PHP+MySQL开发,采用B/S架构,wap端使用vue.js构造,依据6年电商经验打造出的一套开源的B2C电子商务系统。DSShop商城系统技术评价1、B/S架构……继续阅读 » 开心洋葱 4年前 (2020-11-09) 2228浏览 0评论2608个赞
多端B2C单用户整站源码,支持PC+H5+小程序,支持小程序直播,丰富的营销功能源码仅供学习研究,商业用途请支持正版!本地环境:nginx+php7.2+mysql5.6(其他环境自行测试)测试截图:下载地址: 解压密码:关注公众号 回复:解压密码……继续阅读 » 开心洋葱 4年前 (2020-11-09) 2862浏览 0评论657个赞
JavaScript判断浏览器是否是IEvar isMSIE = /*@cc_on!@*/0;if (isMSIE) { // do IE-specific things} else { // do non IE-specific things} ……继续阅读 » 水墨上仙 4年前 (2020-11-06) 2821浏览 1169个赞
JavaScript不要在for循环语句里使用计算表达式和函数//慢for(var i = 0; i < my_array.length; i++)//也很慢for(var i = 0; i < myMethod(); i++)//快var length = my_array.length;for(var i = 0; ……继续阅读 » 水墨上仙 4年前 (2020-11-06) 1810浏览 525个赞
一段简单的js代码,让浏览器自动点击按钮<script type="text/javascript"> function init(){ document.getElementById('button1').click(); } onl……继续阅读 » 水墨上仙 4年前 (2020-11-06) 2668浏览 176个赞