hseoy / joke-teller

It tells you programming jokes using the text-to-speech API(VoiceRSS). HTML, SCSS and Vanilla Javascript were used.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Joke Teller

It tells you programming jokes using the text-to-speech API(VoiceRSS). HTML, SCSS and Vanilla Javascript were used.

If you want to run this project, you must modify tellMe() function in js/script.js. Get VoiceRSS API key and add it to tellMe() function.

function tellMe(joke) {
  VoiceRSS.speech({
    key: "<YOUR API KEY>", // This line needs to be modified
    src: joke,
    hl: "en-us",
    r: 0,
    c: "mp3",
    f: "44KHZ_16bit_stereo",
    ssml: false,
  });
}

Desktop Preview

About

It tells you programming jokes using the text-to-speech API(VoiceRSS). HTML, SCSS and Vanilla Javascript were used.


Languages

Language:CSS 39.9%Language:SCSS 26.7%Language:JavaScript 20.8%Language:HTML 12.6%