最后更新时间: 2014.1.19 | 点击 这里 前往店铺
我是出来折腾创业了, 但不是开淘宝店啊... 淘宝店哪里有这么好开!! 根本养不活自己的好吗!!
- 因为工作原因, 需要对淘宝卖家工具进行测试, 所以开了店铺
- 因为开了店铺以后需要往店里填充点宝贝才能测试, 所以做了分销
- 因为自己是个吃货, 所以挑了零食的分销, 给自己买点便宜零食吃
- 既然可以给自己买, 不如搞个亲友团, 给大家提供点便宜零食也不错的感觉, 乐于助人嘛
| // ==UserScript== | |
| // @name unblock cnbeta | |
| // @namespace http://cnbeta.com/ | |
| // @downloadURL https://gist.github.com/whusnoopy/489c77059457c00c7b75/raw/unblock_cnbeta.user.js | |
| // @version 0.3 | |
| // @description force pc version on cnbeta during rss readers | |
| // | |
| // @match *://m.cnbeta.com/* | |
| // | |
| // @copyright 2017+, Snoopy |
| #! /usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import subprocess | |
| import re | |
| ntfs_pattern = re.compile(r'File System Personality: NTFS') | |
| ntfs_device_node = re.compile(r'.*Device Node:.*') | |
| device_dict = {} |
最后更新时间: 2014.1.19 | 点击 这里 前往店铺
我是出来折腾创业了, 但不是开淘宝店啊... 淘宝店哪里有这么好开!! 根本养不活自己的好吗!!
| var parser = document.createElement('a'); | |
| parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
| parser.protocol; // => "http:" | |
| parser.hostname; // => "example.com" | |
| parser.port; // => "3000" | |
| parser.pathname; // => "/pathname/" | |
| parser.search; // => "?search=test" | |
| parser.hash; // => "#hash" | |
| parser.host; // => "example.com:3000" |