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
<script type="text/javascript"> | |
!(function (t, e, r, n, s, a, o, c) { | |
t[s] || | |
((t.GlobalTrackerNamespace = t.GlobalTrackerNamespace || []), | |
t.GlobalTrackerNamespace.push(s), | |
t.GlobalTrackerNamespace.push('https://tracking.tekoapis.com'), | |
(t[s] = function () { | |
(t[s].q = t[s].q || []).push(arguments); | |
}), | |
(t[s].q = t[s].q || []), |
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
{ | |
"streams": [ | |
"nasa": { | |
"input-path": "/vtv/2019/8/22/Wlom4UaHZow-156644580070113567458091566453755598.mp4/master.m3u8", | |
servers: [ | |
"https://hls.mediacdn.vn" | |
] | |
} | |
] | |
} |
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
Babel==1.3 | |
Jinja2==2.7.3 | |
Mako==1.0.0 | |
MarkupSafe==0.23 | |
Pillow==2.5.1 | |
http://download.gna.org/pychart/PyChart-1.39.tar.gz#egg=PyChart | |
PyYAML==3.11 | |
Werkzeug==0.9.6 | |
argparse==1.2.1 | |
decorator==3.4.0 |
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
public IUserAuth UpdateUserAuth(IUserAuth existingUser, IUserAuth newUser) | |
{ | |
ValidateNewUser(newUser); | |
using (var db = dbFactory.Open()) | |
{ | |
AssertNoExistingUser(db, newUser, existingUser); | |
newUser.Id = existingUser.Id; | |
newUser.PasswordHash = existingUser.PasswordHash; |