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
-- show running queries (pre 9.2) | |
SELECT procpid, age(clock_timestamp(), query_start), usename, current_query | |
FROM pg_stat_activity | |
WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' | |
ORDER BY query_start desc; | |
-- show running queries (9.2) | |
SELECT pid, age(clock_timestamp(), query_start), usename, query | |
FROM pg_stat_activity | |
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' |
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
[ | |
{ | |
"name": "1000 dvr", | |
"type": "single", | |
"group": "storage", | |
"addon_codes": ["1000-dvr"], | |
"price": 699, | |
"description": "1000 dvr storage", | |
"replaces": ["basic-dvr"] | |
} |
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
(require 'package) | |
(setq package-archives | |
'(("gnu" . "https://elpa.gnu.org/packages/") | |
("melpa-stb" . "https://stable.melpa.org/packages/") | |
("melpa" . "https://melpa.org/packages/")) | |
tls-checktrust t | |
tls-program '("gnutls-cli --x509cafile %t -p %p %h") | |
gnutls-verify-error t) | |
(package-initialize) |
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
category | id | path | |
---|---|---|---|
league | 9524337 | /watch/xxx | |
match | 16218622 | /watch/yyy |
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
league_id | matches_excluded | |
---|---|---|
16092084 | 16092623 16092636 | |
191260 | ||
7900709 | 16222396 |
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
{ | |
"$": { | |
"href": "" | |
}, | |
"account": { | |
"$": { | |
"href": "https://fubotv.recurly.com/v2/accounts/5bdb2049913ba56461567485" | |
} | |
}, | |
"address": { |
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
{ | |
"$": { | |
"href": "" | |
}, | |
"account": { | |
"$": { | |
"href": "https://fubotv.recurly.com/v2/accounts/5bda406979b087753eb32f5b" | |
} | |
}, | |
"address": { |
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
;;;; XIAOLEI'S .emacs file | |
(setq user-full-name "Xiaolei liu") | |
(setq user-mail-address "[email protected]") | |
(add-to-list 'load-path "~/.emacs.d/vendor") | |
(require 'package) | |
(add-to-list 'package-archives | |
'("melpa" . "http://melpa.org/packages/") t) | |
(package-initialize) |