For more information, you can read a related blog post on this topic
You can now simply do:
# (turn on full debian repo; turn on ssh)
# be root
sudo suFor more information, you can read a related blog post on this topic
You can now simply do:
# (turn on full debian repo; turn on ssh)
# be root
sudo su| OPENSSL = openssl | |
| DAYS = -days 3652 | |
| CADAYS = -days 3652 | |
| REQ = $(OPENSSL) req | |
| CA = $(OPENSSL) ca | |
| VERIFY = $(OPENSSL) verify | |
| X509 = $(OPENSSL) x509 | |
| # must be absolute path | |
| CATOP = $(PWD)/ca |
| <a href="home.php">Regresar</a><br/> | |
| <?php | |
| validar($_POST['user'], $_POST['respuesta'], $_POST['x']); | |
| function validar($usuario, $r, $x) | |
| { | |
| $lista = getUser($usuario); | |
| if($lista) | |
| { |
| #!/usr/bin/python | |
| # crf.py (by Graham Neubig) | |
| # This script trains conditional random fields (CRFs) | |
| # stdin: A corpus of WORD_POS WORD_POS WORD_POS sentences | |
| # stdout: Feature vectors for emission and transition properties | |
| from collections import defaultdict | |
| from math import log, exp | |
| import sys |
#Non-mathematical Introductions
#Videos
| AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; | |
| [manager GET:@"https://hogehoge.api.com/user" | |
| parameters:@{ @"user_id":@"hoge" } | |
| success:^(AFHTTPRequestOperation *operation, id responseObject) { | |
| NSLog(@"res:%@", responseObject); | |
| } | |
| failure:^(AFHTTPRequestOperation *operation, NSError *error) { | |
| NSLog(@"error:%@", error); | |
| }]; |