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
Reverse engineered flash application @ http://www.oddcast.com/home/demos/tts/tts_example.php | |
1 = name string | |
2 = voice int | |
3 = lang int | |
4 = engine int | |
5 = fx_type string | |
6 = fx_level int | |
<engineID>{engine}</engineID><voiceID>{voice}</voiceID><langID>{lang}</langID><ext>mp3</ext> |
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
XV de Arica y Parinacota | |
I de Tarapacá | |
II de Antofagasta | |
III de Atacama | |
IV de Coquimbo | |
V de Valparaíso | |
RM Metropolitana de Santiago | |
VI del Libertador General Bernardo O'Higgins | |
VII del Maule | |
VIII del Bío Bío |
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
<!-- | |
How to use: | |
1.Create a facebook application here https://developers.facebook.com/apps/ | |
- Open https://developers.facebook.com/tools/explorer , select your Application , select your FB Page, and copy access token : | |
This is called as the short lived access token, and will be valid for 30min or 1 hour | |
- Then open https://graph.facebook.com/oauth/ac...=<app_secret>&fb_exchange_token=<short_token> (replace the values correctly) . | |
This will give out another access token. Copy that token correctly from the response. It will be something like: | |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>My FB Reactions Page</title> | |
<style> | |
html { | |
box-sizing: border-box; | |
width: 100%; |
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
<?php | |
header("Connection: close"); // not sure we need this one | |
header("Content-Encoding: none"); | |
include ("config.php"); | |
use Carbon\Carbon; | |
ignore_user_abort( true ); | |
set_time_limit(0); | |
register_shutdown_function('shutdown'); |