- ★ 不能删,MIUI系统核心组件
- ◉ 不能删,Android系统核心组件
标记 | 应用 | 包名 |
---|
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; |
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; |
/** | |
* Baidu V2 2014-12-06 | |
*/ | |
li{list-sytle:none;} |
/** | |
* Baidu V2 2014-12-06 | |
*/ | |
@import url("http://necolas.github.io/normalize.css/3.0.2/normalize.css") | |
li{list-style:none;} | |
input{padding:0;border:none;} | |
p{margin:0;} | |
.bold{font-weight:bold;} | |
.header{font-family:arial;font-size:13px;position:relative;} | |
.header ul{position:absolute;right:10px;} |
from random import randint | |
rn = [randint(0, 255) for _ in range(14)] | |
rn[1] = 0xE7 | |
rn[5] = 0x03 | |
arg2 = [0xc, 6] | |
arg3 = [3, 0xf3] | |
for i in range(2): |
import http.server | |
import cgi | |
import base64 | |
import json | |
from urllib.parse import urlparse, parse_qs | |
class CustomServerHandler(http.server.BaseHTTPRequestHandler): | |
def do_HEAD(self): |