Go on Graph API Explorer.
Select the FQL Query
option, and write this type of request:
SELECT message_count FROM thread WHERE thread_id = 729596603755180
{
"data": [
root@toto:~# echo -n 0000000000000000 | xxd -g 0 | |
0000000: 30303030303030303030303030303030 0000000000000000 | |
root@toto:~# echo -n 1234567890 | openssl aes-128-cbc -e -K 30303030303030303030303030303030 -iv 00000000000000000000000000000000 | md5sum | |
aa8301604be724a92e1f223e14caea68 - | |
root@toto:~# python2 -c 'import sys, Crypto.Cipher.AES as A; sys.stdout.write(A.new("0"*16, A.MODE_CBC, "\0"*16).encrypt("1234567890\6\6\6\6\6\6"))' | md5sum | |
aa8301604be724a92e1f223e14caea68 - |
Toa = { | |
"(=^..^=)": 128568, | |
"(=^.^=)": 128568, | |
"(N)": 128078, | |
"(Y)": 128077, | |
"(]:{": 128115, | |
"(n)": 128078, | |
"(y)": 128077, | |
"-<@%": 128029, | |
"-_-": 128529, |
Go on Graph API Explorer.
Select the FQL Query
option, and write this type of request:
SELECT message_count FROM thread WHERE thread_id = 729596603755180
{
"data": [
#> python send_email.py
#> python server.py
Serving HTTP on 0.0.0.0 port 8000 ...
*************
Host: my-server.com:8000
Connection: Keep-alive
(function(){ | |
EpitechDoodle = EpitechDoodle || {}; | |
$.ajax({ | |
"url": window.location.origin + window.location.pathname + "?format=json", | |
dataType: "json" | |
}).success(function(data){ | |
var fields = { | |
"type": "date", | |
"levels": 3, | |
"title": data.title, |
from random import uniform | |
from math import fabs | |
from sys import argv | |
interface = len(argv) > 1 | |
if interface: | |
import turtle | |
N = 100000000 | |
ran = 1.5 |
#!/usr/bin/env python3 | |
__author__ = "Maigret Aurelien" | |
""" | |
$> python3 task.py | |
| pos x y | north | east | south | west | nomove | proba | stddev | probabilities | |
| --------- | ------- | ------ | ------- | ------ | -------- | ------- | -------- | --------------- | |
| 7 (0,0) | 0 | 1/4 | 1/6 | 0 | 7/12 | 0.090 | 0.003 | 0.090 0.087 0.094 0.085 0.088 0.090 0.091 0.093 | |
| 8 (0,1) | 0 | 1/4 | 1/6 | 1/4 | 1/3 | 0.046 | 0.002 | 0.047 0.047 0.043 0.047 0.044 0.047 0.050 0.047 |
input { | |
stdin { | |
} | |
} | |
filter { | |
mutate { | |
replace => { | |
"type" => "nginx-error" | |
} |
<!DOCTYPE> | |
<html> | |
<head> | |
<title>Test</title> | |
<style> | |
body { width: 200px; margin: 0 auto; } | |
.hide { display: none; } | |
#parent { height: 400px; overflow: auto; border: 1px solid #eee; margin-top: 30px; text-align: center; } | |
</style> | |
</head> |
<!DOCTYPE> | |
<html> | |
<head> | |
<title>CSV</title> | |
</head> | |
<body> | |
<script type="text/javascript"> | |
(function(){ | |
function objectToCSV(content, separator) { | |
var str = '' |