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
| #define _CRT_SECURE_NO_WARNINGS | |
| #include <iostream> | |
| #include <fstream> | |
| #include <string> | |
| #include <iomanip> | |
| using namespace std; | |
| struct DATA{ | |
| int record, quantity; | |
| char name[80]; |
| #include <iostream> | |
| #include <math.h> | |
| #include <iomanip> | |
| using namespace std; | |
| int main(){ | |
| int digits; | |
| cout << "Enter the number of digits (taken from 2, 4, 6, 8): "; | |
| cin >> digits; |
| import re, requests, subprocess, os | |
| """ | |
| Download CCleaner and extracting | |
| Tips: make 7z within PATH environment | |
| 2014/04/22 | |
| Inndy | |
| """ |
| ''' | |
| Establish a socket connection through an HTTP proxy. | |
| Author: Fredrik Østrem <frx.apps@gmail.com> | |
| License: | |
| This code can be used, modified and distributed freely, as long as it is this note containing the original | |
| author, the source and this license, is put along with the source code. | |
| ''' |
| #!/usr/bin/env python2 | |
| """ | |
| Author: takeshix <takeshix@adversec.com> | |
| PoC code for CVE-2014-0160. Original PoC by Jared Stafford (jspenguin@jspenguin.org). | |
| Supportes all versions of TLS and has STARTTLS support for SMTP,POP3,IMAP,FTP and XMPP. | |
| """ | |
| import sys,struct,socket | |
| from argparse import ArgumentParser |
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
| #!/usr/bin/python | |
| import sys #for cmd line argv | |
| #take command line args as the input string | |
| input_string = sys.argv | |
| #remove the program name from the argv list | |
| input_string.pop(0) | |
| #convert to google friendly url (with + replacing spaces) |