This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Response> | |
| <Hangup reason="rejected"/> | |
| </Response> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Response> | |
| <Message dst="13039025082" src="14159413150"> | |
| Hi, Message from Plivo | |
| </Message> | |
| </Response> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Response> | |
| <Play loop="0">https://s3.amazonaws.com/plivocloud/music.mp3</Play> | |
| </Response> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <Response> | |
| <Enqueue waitUrl="http://s3.amazonaws.com/com.twilio.sounds.music/index.xml" waitUrlMethod="GET">support</Enqueue> | |
| </Response> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Response> | |
| <Speak></Speak> | |
| <Wait length="20" /> | |
| </Response> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8" ?> | |
| <Response> | |
| <GetDigits action='https://api.properati.com/AR/v3/mistery_shopper/extension' method='POST' numDigits='4' playBeep='true' timeout='10'> | |
| <Speak language='es-ES'>Bienvenido a P.P.N. S.A. Marque el n&#250;mero de interno</Speak> | |
| </GetDigits> | |
| <Wait length='5'/> | |
| </Response> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Response> | |
| <Dial> | |
| <User>sip:charlie151030230753@phone.plivo.com</User> | |
| </Dial> | |
| </Response> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Response> | |
| <Record action="http://requestb.in/1ck1j1y1" startOnDialAnswer="true" redirect="false" /> | |
| <Dial> | |
| <Number>13306807074</Number> | |
| </Dial> | |
| </Response> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Response> | |
| <Record callbackUrl="http://requestb.in/1b2uby11" callbackMethod="POST" redirect="false" recordSession="true" /> | |
| <Speak language="ru-RU" voice="WOMAN"> | |
| Здравствуйте, Это сообщение от Charlie. Машина за Nixon, приедет приблизительно в 10. Пожалуйста, будьте готовы к этому времени. Мы Вам позвоним еще раз когда 
 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| interval=5 # Sampling time in seconds | |
| volumename="/Volumes/My Passport for Mac/" | |
| total_size=$(diskutil cs info "$volumename" | grep -E "LV Size" | awk '{print $3}') | |
| while [ true ]; do | |
| first_size=$(diskutil cs info "$volumename" | grep -E "LV Bytes Converted" | awk '{print $4}') | |
| sleep $interval |