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
{ | |
"in_connections": { | |
"dtrip_fermate_anag": { | |
"type": "local_file", | |
"filename": "/Users/justin/ct/fdsdata/qb/dtrip_fermate_anag.jsonl" | |
}, | |
"dtrip_fermate": { | |
"type": "local_file", | |
"filename": "/Users/justin/ct/fdsdata/qb/dtrip_fermate.jsonl" | |
}, |
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
{ | |
"in_connections": { | |
"dtrip_fermate_anag": { | |
"type": "local_file", | |
"filename": "/Users/wenshuaihou/code/ct-data/fds/dtrip_fermate_anag.jsonl" | |
}, | |
"dtrip_fermate": { | |
"type": "local_file", | |
"filename": "/Users/wenshuaihou/code/ct-data/fds/small/dtrip_fermate.jsonl" | |
}, |
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
""" | |
generator are not thread safe, two or more thread accessing the same generator | |
causes an error: | |
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
""" | |
generator are not thread safe, two or more thread accessing the same generator | |
causes an error: | |
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 functools import wraps | |
import pickle | |
import sys | |
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 from functools import wraps | |
2 import pickle | |
3 import sys | |
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
from functools import wraps | |
import pickle | |
import sys | |
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
def foo(x): | |
def bar(): | |
return x**2 | |
return bar |
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
#!/usr/bin/env python | |
# encoding: utf-8 | |
import joblib as jl |
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 <stdio.h> | |
#include <string.h> | |
int main(void) { | |
char buff[15]; | |
int passed = 0; | |
printf("Pleaes enter your password \n" ) ; | |
gets(buff) ; | |
// equal strings return 0 |
NewerOlder