This file contains hidden or 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
{ | |
"GENERAL": { | |
"active": true, | |
"comment": "A generic set of rules, to be applied regardless of the current phase", | |
"rules": { | |
"steps": { | |
"active": false, | |
"start_pattern": "DisplayProgressbar: (?<step>.+)", | |
"start_message": "Current step: %{step}" | |
}, |
This file contains hidden or 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
// Mixamo Animation downloadeer | |
// The following script make use of mixamo2 API to download all anims for a single character that you choose. | |
// The animations are saved with descriptive long names instead of the short ones used by default by mixamo UI. | |
// | |
// This script has been written by [email protected] and the author is not responsible of its usage | |
// | |
// How to use this script | |
// 1. Browse mixamo.com | |
// 2. Log in | |
// 3. Open JS console (F12 on chrome) |
This file contains hidden or 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
# CentOS-Base.repo | |
# | |
# The mirror system uses the connecting IP address of the client and the | |
# update status of each mirror to pick mirrors that are updated to and | |
# geographically close to the client. You should use this for CentOS updates | |
# unless you are manually picking other mirrors. | |
# | |
# If the mirrorlist= does not work for you, as a fall back you can try the | |
# remarked out baseurl= line instead. | |
# |
This file contains hidden or 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
From 40fcb6d6794bb21ea16353c13a265454b5b43603 Mon Sep 17 00:00:00 2001 | |
From: pw_prg_fengbo <[email protected]> | |
Date: Mon, 26 Feb 2018 14:36:13 +0800 | |
Subject: [PATCH] add -f option | |
--- | |
rinetd.8 | 3 +++ | |
rinetd.c | 16 ++++++++++++---- | |
2 files changed, 15 insertions(+), 4 deletions(-) |
This file contains hidden or 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
// ==UserScript== | |
// @name Feedbin skip image proxy | |
// @namespace recih | |
// @version 0.1 | |
// @description make feedbin load image faster | |
// @match https://feedbin.com/ | |
// @grant none | |
// @copyright 2014+, recih | |
// ==/UserScript== |
This file contains hidden or 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
start = S v:value S { return v; } | |
s = [ \t\r\n] | |
S = s* | |
SEP = S [,;]? S | |
name = c:[a-zA-Z0-9_]+ { return c.join(""); } | |
number = c:[0-9.+-]+ { return parseFloat(c.join("")); } | |
bool = s:('true' / 'false') { return s === 'true'; } | |
string = '"' s:([^"] / ('\\"' { return '"'}))* '"' { return s.join(""); } | |