Skip to content

Instantly share code, notes, and snippets.

View royninja's full-sized avatar
📚
Focusing

Sayan Roy royninja

📚
Focusing
View GitHub Profile
@tiandiduwuxiaoxiao
tiandiduwuxiaoxiao / jupyter.md
Last active October 25, 2023 18:26
install & uninstall jupyter

Install and uninstall jupyter

  1. Install jupyter
pip install jupyter
  • Launch jupyter
jupyter notebook
  1. Uninstall jupyter
@royninja
royninja / text2voice.vbs
Created February 28, 2017 06:18
this script will ask you to enter a message and it will deliver your text over voice
Dim message, sapi
message = InputBox("Text to Audio converter"+vbcrlf+"by whoami","Text to Audio")
Set sapi = CreateObject("sapi.spvoice")
sapi.Speak message