Skip to content

Instantly share code, notes, and snippets.

View ajinux's full-sized avatar
🎯
Focusing

Ajithkumar sekar ajinux

🎯
Focusing
View GitHub Profile
@ajinux
ajinux / mac-setup-redis.md
Created June 10, 2020 10:56 — forked from tomysmile/mac-setup-redis.md
Brew install Redis on Mac

type below:

brew update
brew install redis

To have launchd start redis now and restart at login:

brew services start redis
@ajinux
ajinux / README.md
Created June 8, 2016 12:01 — forked from hofmannsven/README.md
My simply Git Cheatsheet
import speech_recognition
import pyttsx
speech_engine = pyttsx.init('sapi5') # see http://pyttsx.readthedocs.org/en/latest/engine.html#pyttsx.init
speech_engine.setProperty('rate', 150)
def speak(text):
speech_engine.say(text)
speech_engine.runAndWait()