I hereby claim:
- I am isayme on github.
- I am isayme (https://keybase.io/isayme) on keybase.
- I have a public key whose fingerprint is 1423 B54A 7C03 A38F 1B39 2167 10EE 8329 90BC 2A8A
To claim this, I am signing this object:
/* | |
* request 背后也是用的 form-data. 符合浏览器的 window.FromData 规范生产 body 及 header 信息. | |
* smfile 需要是 stream, 从而判定为文件. | |
* 另: formstream 应该也可以, 但没有测试过. | |
*/ | |
const fs = require('fs') | |
const axios = require('axios') | |
const request = require('request-promise') | |
const FormData = require('form-data') |
// ==UserScript== | |
// @name 电影天堂(dy2018.com) | |
// @version 0.1.2 | |
// @description 修正下载链接 | |
// @author iSayme | |
// @namespace https://github.com/isayme | |
// @homepage https://github.com/isayme | |
// @icon https://www.dy2018.com/favicon.ico | |
// @include https://www.dy2018.com/* | |
// @run-at document-end |
I hereby claim:
To claim this, I am signing this object:
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <unistd.h> | |
#include <fcntl.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <netinet/in.h> | |
#include <netdb.h> |
// ==UserScript== | |
// @name noGoogleRedirect | |
// @namespace http://www.onefloweroneworld.com | |
// @description 禁止点击Google搜索结果的跳转. | |
// @include http://www.google.com/search?* | |
// @include https://www.google.com/search?* | |
// @version 0.1 | |
// @author iSayme <[email protected]> | |
// @run-at document-end | |
// @grant none |
// ==UserScript== | |
// @name SongTasteDownload | |
// @namespace http://www.onefloweroneworld.com | |
// @description 自动解析SongTaste歌曲URL,点击即可下载~ | |
// @include http://www.songtaste.com/song/* | |
// @include http://songtaste.com/song/* | |
// @include http://www.songtaste.com/playmusic.php?song_id=* | |
// @include http://songtaste.com/playmusic.php?song_id=* | |
// @version 0.1 | |
// @author iSayme |
// Backbone.js 1.1.2 | |
// (c) 2010-2014 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors | |
// Backbone may be freely distributed under the MIT license. | |
// For all details and documentation: | |
// http://backbonejs.org | |
// 典型自执行函数格式: | |
// (funtion(root, factory) { | |
// // do stuff here |
*, *:before, *.after { | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
margin: 0; | |
padding: 0; | |
} | |
.bg-black { background-color: #333333; } | |
.bg-white { background-color: #f6f6f6; } |
$black: #333333; | |
$white: #f6f6f6; | |
$gray: #aaaaaa; | |
$silver: #dddddd; | |
$red: #e54d42; | |
$green: #1abc9c; | |
$yellow: #FFDC00; | |
$blue: #3498db; | |
$navy: #34495e; |
body { | |
background: url(/img/bg.jpg) no-repeat center center fixed; | |
-webkit-background-size: cover; | |
-moz-background-size: cover; | |
-o-background-size: cover; | |
background-size: cover; | |
} |