This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user www-data; | |
worker_processes 4; | |
pid /run/nginx.pid; | |
events { | |
worker_connections 768; | |
# multi_accept on; | |
} | |
http { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Useso take over Google | |
Plugin URI: http://www.brunoxu.com/useso-take-over-google.html | |
Description: 用360前端公共库Useso接管Google字体库和Google公共库,无需设置,插件安装激活后即刻生效。 | |
Author: Bruno Xu | |
Author URI: http://www.brunoxu.com/ | |
Version: 1.6.4 | |
License: GNU General Public License v2 or later | |
License URI: http://www.gnu.org/licenses/gpl-2.0.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
white-space: pre; | |
font-family: monospace; | |
background-color: #002b36; | |
color: #ddd; | |
} | |
a{ | |
color: green; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script> | |
<script type="text/javascript"> | |
$(document).ready(function(){ | |
if ($("#toc").length == 0){ | |
console.log('#toc not found.'); | |
return 1; | |
} | |
$("h2,h3,h4,h5,h6").each(function(i,item){ | |
var tag = $(item).get(0).localName; | |
$(item).attr("id","toc"+i); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-moz-document domain("baidu.com") { | |
#u1, | |
#ftCon, | |
#form input, | |
#form span | |
{display: none;} | |
#form::after { | |
font-family: "BlinkMacSystemFont", "Segoe UI", sans-serif; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ua = (function(){ | |
var ua = {}; | |
var navigator = window.navigator; | |
var platforms = [ | |
{ property: 'platform', regex: /iPhone/i, identity: 'iPhone' }, | |
{ property: 'platform', regex: /iPod/i, identity: 'iPod' }, | |
{ property: 'userAgent', regex: /iPad/i, identity: 'iPad' }, | |
{ property: 'userAgent', regex: /Blackberry/i, identity: 'Blackberry' }, | |
{ property: 'userAgent', regex: /Android/i, identity: 'Android' }, | |
{ property: 'platform', regex: /Mac/i, identity: 'Mac' }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
命令行版本的有道词典,调用有道翻译的 API 实现 | |
用法一: | |
% python youdao.py search | |
原文: search | |
发音: sɜːtʃ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-moz-document regexp("https://doc.rust-lang.org/reference.*") { | |
#TOC{ | |
position: fixed; | |
left: 0; | |
top: 0; | |
overflow: scroll; | |
overflow-x: hidden; | |
height: 100vh; | |
max-width: 30vw; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body {font-family: "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif; } | |
#Search div { | |
background-image:none!important; | |
border-image-repeat:repeat; | |
border-image-slice:27 27 27 50; | |
border-image-source:url(https://v2ex.com/static/img/[email protected]); | |
border-image-width:27px 27px 27px 50px; | |
width:auto!important; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Objectify(object): | |
def __init__(self, data): | |
""" data maybe one dict or list """ | |
self.data = data | |
def __getitem__(self, item): | |
_data = object.__getattribute__(self, 'data') | |
return _data[item] | |
def __getattribute__(self, item): |