Skip to content

Instantly share code, notes, and snippets.

View jakubka's full-sized avatar

Jakub Kadlubiec jakubka

  • Pipedrive
  • Prague, Czech Republic
View GitHub Profile
@jakubka
jakubka / chlastbot-twiml.xml
Created March 22, 2020 23:22
chlastbot-twiml.xml
<Response>
<script/>
<Say voice="alice">A product is available! Go get it.</Say>
</Response>
// funkce, ktera vygeneruje 7 datumu (ode dneska vcetne)
function generateDates() {
const dates = [];
const currentDate = new Date();
for (let i = 0; i < 7; i++) {
const date = new Date(currentDate);
date.setDate(date.getDate() + i);