Skip to content

Instantly share code, notes, and snippets.

@zorrigas
zorrigas / TextToSpeech.txt
Created March 5, 2021 00:55 — forked from Yengas/TextToSpeech.txt
Text to Speech
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>
@zorrigas
zorrigas / Regiones.txt
Created February 11, 2018 01:06
Regiones de Chile 2018
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
@zorrigas
zorrigas / CaptureFaceBookReaction.html
Created November 15, 2016 19:44 — forked from adomrockie/CaptureFaceBookReaction.html
Counts Facebook Reactions with Token and display in web page.
<!--
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:
@zorrigas
zorrigas / index.html
Created November 15, 2016 19:44 — forked from anonymous/index.html
Capture FB Reactions count and show them on webpage
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My FB Reactions Page</title>
<style>
html {
box-sizing: border-box;
width: 100%;
<?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');