Skip to content

Instantly share code, notes, and snippets.

View pradeepradyumna's full-sized avatar
:octocat:
Focusing

Pradeep Pradyumna pradeepradyumna

:octocat:
Focusing
View GitHub Profile
@pradeepradyumna
pradeepradyumna / SpeechTester.py
Last active May 26, 2020 15:26
Speech Recognizer Python Script
import speech_recognition as sr
import playsound
from gtts import gTTS
def speak(text):
tts = gTTS(text=text, lang="en")
filename = "voice.mp3"
tts.save(filename)
print("playing..." + text)
I think you're right, all the time. I think you're beautiful. I think you're good.
I think you're right, but not always.
@pradeepradyumna
pradeepradyumna / AzureCLI To Get Repositories List
Last active May 28, 2021 06:46
Azure DevOps : Get list of repositories using Azure CLI
Step 1: Download Azure CLI here - https://docs.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest
Step 2: Add the Azure DevOps extension
az extension add --name azure-devops
Step 3: Login to DevOps.
az login
Step 4: Configure defaults
az devops configure --defaults organization=https://dev.azure.com/<ORGANIZATION_NAME> project=<PROJECT_NAME>