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 measurements | |
> insert "param\"" hello=1 | |
> show measurements | |
name: measurements | |
name | |
---- | |
"param"" |
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
SELECT * FROM "\"param\"\"" WHERE time > 1400000100000000000 ORDER BY time ASC LIMIT 25 |
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
{ | |
"fields": { | |
"recording_msid": "4269ddbc-9241-46da-935d-4fa9e0f7f371", | |
"track_name": "Immigrant Song 0", | |
"recording_mbid": "2cfad207-3f55-4aec-8120-86cf66e34d59", | |
"release_msid": null, | |
"tags": "", | |
"release_mbid": "", | |
"artist_mbids": "", | |
"release_name": "", |
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 measurements | |
name: measurements | |
name | |
---- | |
"param"" | |
"test" | |
"testuserplsignore" |
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
platform linux2 -- Python 2.7.12, pytest-2.9.1, py-1.4.33, pluggy-0.3.1 | |
rootdir: /code/listenbrainz, inifile: pytest.ini | |
plugins: cov-2.2.1 | |
collected 33 items | |
db/tests/test_lastfm_session.py .. | |
db/tests/test_lastfm_token.py ..... | |
db/tests/test_lastfm_user.py ... | |
db/tests/test_user.py .. | |
webserver/test/test_utils.py . |
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
import threading | |
import time | |
def hello(): | |
while True: | |
print("Hello") | |
time.sleep(4) | |
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
1 | |
3 3 1 | |
1 2 | |
2 3 | |
1 3 | |
1 2 |
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
>>> import ujson | |
>>> ujson.loads(ujson.dumps('https://metabrainz.org')) | |
u'https://metabrainz.org' | |
>>> ujson.dumps('https://metabrainz.org') | |
'"https:\\/\\/metabrainz.org"' | |
>>> |
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
>>> import ujson | |
>>> import json | |
>>> ujson.dumps("https://metabrainz.org") | |
'"https:\\/\\/metabrainz.org"' | |
>>> json.dumps("https://metabrainz.org") | |
'"https://metabrainz.org"' |
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
#include <bits/stdc++.h> | |
using namespace std; | |
typedef long long ll; | |
const ll inf = 1e18; | |
ll dist[3][3][100100]; | |
struct state { | |
int u, a, b; | |
ll d; | |
state(int x, int y, int z, ll p) { |