Skip to content

Instantly share code, notes, and snippets.

@ficapy
ficapy / VBA_replace.bas
Created December 20, 2013 11:12
建筑资料栋号递增批量打印PDF输出
Option Explicit
'建筑资料栋号递增批量打印PDF输出
Sub replace()
Const F1 As String = "工程名称" '要修改单元格左边相邻单元格包含的内容
Dim k As Integer
Dim sh As Worksheet
Dim myStr As String
Dim myStr2 As String
Dim myStr3 As String
@ficapy
ficapy / hshy_checkin.py
Last active April 20, 2024 15:50
练手python脚本,登陆Discuz论坛打卡签到
# -*- coding: utf-8 -*-
import requests
import hashlib
import re
username = '' ###账号###
password = ''###密码###
UA = "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) \
Chrome/27.0.1453.116 Safari/537.36"
headers = {
@ficapy
ficapy / RateLimited.py
Last active August 4, 2017 06:36
限制单位时间内函数执行次数
#https://gist.github.com/gregburek/1441055
#限制单位时间内函数执行次数
import time
from collections import deque
def RateLimited(minutes=1, limitNum=3):
status = deque([0] * limitNum, maxlen=limitNum)
def decorate(func):
def wrap(*args, **kwargs):
import argparse
foo1 = sum
foo2 = max
def main(test=None):
parser = argparse.ArgumentParser(description="http://www.v2ex.com/t/173206")
group = parser.add_mutually_exclusive_group()
group.add_argument("-foo1", action="append", type=int, default=[2])
group.add_argument("-foo2", nargs="+", type=int)
return foo2(parser.parse_args(test).foo2) if parser.parse_args(test).foo2 else foo1(parser.parse_args(test).foo1)
@ficapy
ficapy / remove-google-redirection.user.js
Created March 6, 2015 09:43
移出谷歌跳转脚本~~备份
// ==UserScript==
// @id remove-google-redirection
// @name Remove Google Redirection
// @namespace http://kodango.com
// @description Prohibit click-tracking, and prevent url redirection when clicks on the result links in Google search page.
// @author tuantuan <dangoakachan@gmail.com>
// @homepage http://kodango.com
// @version 1.1.0
// @include http*://www.google.*/
// @include http*://www.google.*/#hl=*
wget "https://bootstrap.pypa.io/get-pip.py"
python get-pip.py
sudo apt-get build-dep -y python-lxml (#该步骤会下载一百多M的依赖包安装)
pip install pyquery
亦或者直接安装python-lxml包
如果你不需要将pyquery安装到虚拟环境中,那么直接安装python-pyquery包是最简单的~~~
用上面的办法实在是因为各种测试网上类似的
sudo apt-get install libxml2-dev libxslt1-dev python-dev zlib1g-dev #诸如此类不给力才有此下策
#!/usr/bin/env python
# coding:utf-8
import logging
import requests
import json
_session = requests.Session()
# APT KEY
@ficapy
ficapy / primers.py
Last active August 29, 2015 14:18
心酸T^T
from functools import partial
import math
remove = lambda x, comp: not (x > comp and not x % comp)
def primerlist(n):
assert isinstance(n, int)
assert n >= 4
arr = range(2, n + 1)
@ficapy
ficapy / find_list_similar
Created May 7, 2015 06:20
列出2个相似的项目
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Author: Ficapy
# Create: '15/5/7'
#没人比我更蛋疼了吧
a = [1,2,3,2]
from itertools import permutations
llist = len(a)
x = [((n+1)/(llist-1) if not (n+1)%(llist-1) else (n+1)/(llist-1)+1,n+1) for n,i in enumerate(permutations(a,2)) if i[0]==i[1]]
@ficapy
ficapy / 0_reuse_code.js
Last active August 29, 2015 14:21
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console