Error in user YAML: (<unknown>): found character that cannot start any token while scanning for the next token at line 2 column 1
---
# Python 简介
@su27 and @menghan
----
高级
-
易学易读易维护
| /* jshint esversion: 6 */ | |
| // ==UserScript== | |
| // @name WSJ and Barrons Paywall Hack | |
| // @include https://*.wsj.com/* | |
| // @include https://*.barrons.com/* | |
| // @run-at document-end | |
| // @grant none | |
| // @version 2 | |
| // ==/UserScript== |
| <?php | |
| class UploadController extends ActiveController | |
| { | |
| public $documentPath = 'documents/'; | |
| public function verbs() | |
| { | |
| $verbs = parent::verbs(); | |
| $verbs[ "upload" ] = ['POST' ]; |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| <?php | |
| /* | |
| Author: icanc <i@icanc.net> | |
| */ | |
| function R( $Request='/',array $Router ){ | |
| $Response = array(); |
| ## Configure eth0 | |
| # | |
| # vi /etc/sysconfig/network-scripts/ifcfg-eth0 | |
| DEVICE="eth0" | |
| NM_CONTROLLED="yes" | |
| ONBOOT=yes | |
| HWADDR=A4:BA:DB:37:F1:04 | |
| TYPE=Ethernet | |
| BOOTPROTO=static |
| var ids = document.querySelectorAll(".member_id"); | |
| var names = document.querySelectorAll(".member_name"); | |
| var output = "", length = ids.length; | |
| for(var i=0; i<length; i++){ | |
| output += ids[i].innerHTML.slice(1,-1) + ":" + names[i].innerHTML + "\n"; | |
| } | |
| console.log(output); |