Base URL: http://translate.google.com/translate_tts
It converts written words into audio. It accepts GET
requests.
q
The query string to convert to audio
tl
Translation language, for example, ar
for Arabic, or en-us
for English
Base URL: http://translate.google.com/translate_tts
It converts written words into audio. It accepts GET
requests.
q
The query string to convert to audio
tl
Translation language, for example, ar
for Arabic, or en-us
for English
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Upload your files</title> | |
</head> | |
<body> | |
<form enctype="multipart/form-data" action="upload.php" method="POST"> | |
<p>Upload your file</p> | |
<input type="file" name="uploaded_file"></input><br /> | |
<input type="submit" value="Upload"></input> |
SLibEntryRef __thiscall SFileSystem__FindInArchive(SFileSystem *this, int index, const char *str) | |
{ | |
SLibEntryRef result; // qax@3 | |
char name_offset; // ST13_1@14 | |
const char *name; // ST18_4@14 | |
unsigned __int8 name_length; // ST12_1@14 | |
SFileSystem *self; // [sp+0h] [bp-14h]@1 | |
int cmp; // [sp+8h] [bp-Ch]@14 | |
SLibEntryHead *lib_entry; // [sp+Ch] [bp-8h]@13 | |
SLibEntryRef *ref; // [sp+Ch] [bp-8h]@14 |
This difference file has been created by IDA Pro | |
swine.exe | |
0012F735: 30 33 | |
0012F736: 32 36 | |
0012F737: 34 36 | |
0012F741: 32 39 | |
0012F742: 38 32 | |
0012F747: 32 38 | |
0012F748: 34 30 |
-- Wireshark LUA script to handle Gamespy Packets | |
trivial_proto = Proto("gamespy","Gamespy Protocol") | |
-- XOR Cipher: | |
local tab = { -- tab[i][j] = xor(i-1, j-1) | |
{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, }, | |
{1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, }, | |
{2, 3, 0, 1, 6, 7, 4, 5, 10, 11, 8, 9, 14, 15, 12, 13, }, | |
{3, 2, 1, 0, 7, 6, 5, 4, 11, 10, 9, 8, 15, 14, 13, 12, }, | |
{4, 5, 6, 7, 0, 1, 2, 3, 12, 13, 14, 15, 8, 9, 10, 11, }, | |
{5, 4, 7, 6, 1, 0, 3, 2, 13, 12, 15, 14, 9, 8, 11, 10, }, |
This repo's location has changed.
In August 2007 a hacker found a way to expose the PHP source code on facebook.com. He retrieved two files and then emailed them to me, and I wrote about the issue:
http://techcrunch.com/2007/08/11/facebook-source-code-leaked/
It became a big deal:
http://www.techmeme.com/070812/p1#a070812p1
The two files are index.php (the homepage) and search.php (the search page)
####################################################### | |
## | |
## Wake.ps1, v1.0, 2013 | |
## | |
## Adapted by Ammaar Limbada | |
## Original Author: Matthijs ten Seldam, Microsoft (see: http://blogs.technet.com/matthts) | |
## | |
####################################################### | |
<# |
Provided that you already have a file or stream segmenter generating your .m3u8 playlist and .ts segment files (such as the ffmpeg 'hls' muxer), this little node server will serve up those files to an HLS compatible client (e.g. Safari). If you're using node for your streaming app already, this obviates the need to serve the HLS stream from a separate web server.
loosely based on https://gist.github.com/bnerd/2011232
// loosely based on https://gist.github.com/bnerd/2011232
// requires node.js >= v0.10.0
// assumes that HLS segmenter filename base is 'out'
// and that the HLS playlist and .ts files are in the current directory