Category: Coding

应求写一个刷逼站直播在线人数的脚本/A simple script to get lots of viewers of live.bilibili.com

应求,就这样。 什么Queue啊都不用了,投入list的怀抱吧。 https://gist.github.com/cnbeining/6b2273d7e332f29193d0 #!/usr/bin/env python #coding:utf-8 # Author: Beining –<cnbeining#gmail.com> # Purpose: A simple script to get lots of viewers of Bilibili Live # Created: 08/11/2015 # Error report: http://www.cnbeining.com/?p=952… Read more »

ABPlayerHTML5-Py V1.09.9: 重构啦

这个东西上次更新是去年8月8日。 时隔一年,一看当初的东西,真是不忍直视。 思路是对的:只不过太难看了。   重写,这样感觉圆满一些。 遇见了一堆当初碰见的坑:因为当时注释太少,都忘记了。补上。 如果用浏览器跑弹幕,有且只有这个方案能跑:HTML5的video必须用真正的HTTP服务器供源。file://不成的。   从开始写到现在,出了一堆wrapper,主要是Danmaku2ASS的,播放核心mpv。 Biligrab也加了这个功能。但是我还是想把视频下到本地慢慢看:因为连通性。 这个东西的初衷是对接Biligrab:现在看起来,做到了。   https://github.com/cnbeining/ABPlayerHTML5-Py 已经不能直接贴一片code了,因为出了依赖:需要自取,建议更新。  

支付宝收款页面的替代,自动填写数据版

支付宝为了所谓的安全,禁止直接跳转,方法是检测到有非支付宝referer就302到https://shenghuo.alipay.com/send/payment/fill.htm 。 我们可以用B站的HTTPS跳转法,但是如果懒得弄证书什么的,这里给出一个不是很漂亮的方法: <html> <head> <title>正在跳转……</title> <meta http-equiv=”Content-Language” content=”zh-CN”> <meta HTTP-EQUIV=”Content-Type” CONTENT=”text/html; charset=gb2312″> </head> <body> <script> URL = “https://shenghuo.alipay.com/send/payment/fill.htm?optEmail={邮箱}&payAmount={钱数}&title={附言}” function lose_in_webkit(url) { location = “data:text/html,\<script>location='” + url + ‘&_=’ +… Read more »