Skip to content

Instantly share code, notes, and snippets.

View invincible's full-sized avatar
🏠
Working from home

Sergey Pechenov invincible

🏠
Working from home
View GitHub Profile
@invincible
invincible / yandex-cloud-speechkit-tts-nodejs.js
Created December 28, 2020 21:17 — forked from antirek/yandex-cloud-speechkit-tts-nodejs.js
Yandex Cloud SpeechKit (TTS) Example on Node.js - Пример работы с API технологии синтеза речи Yandex Cloud SpeechKit
const fetch = require('node-fetch');
const api_key = 'API_KEY';
const { URLSearchParams } = require('url');
const fs = require('fs');
const params = new URLSearchParams();
const text = 'Добрый день, у нас новая акция! Пицца Добряк сегодня за полцены, закажите по телефону 222. Уже ждем вашего заказа :) '
params.append('text', text);
@invincible
invincible / index.html
Created November 12, 2012 17:07
A CodePen by Sergey. Test
<div id="test">test</div>
@invincible
invincible / index.html
Created November 12, 2012 17:05
A CodePen by Sergey.
<div>test</div>