Skip to content

Instantly share code, notes, and snippets.

View py563's full-sized avatar
:bowtie:

prajwal yashasvi py563

:bowtie:
View GitHub Profile
@py563
py563 / conf_iot_nec-0922.md
Last active January 30, 2023 11:40
Links References
@py563
py563 / morse.py
Created November 25, 2020 07:31
Text to Morse Code Conversion
class MorseCodeTranslator:
# Code copied from https://pythonise.com/categories/python/python-morse-code-translator
# Author Julian Nash --> https://github.com/Julian-Nash/python-morse-code-translator
# International morse code (sample)
morse = {
# Letters
"a": ".-",
"b": "-...",
"c": "-.-.",
@py563
py563 / keybase.md
Created May 3, 2020 07:30
keybase proof

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@py563
py563 / ABC_Learn_English_Series.md
Last active January 30, 2023 11:41
python scripts that download notes for ABC Learn English Series

Steps to be followed to run the script

  1. Python 3.5 or later is required (Programmers and Linux users please help your fellow blog readers).

  2. To check If python is installed or not on your system, please follow below steps

    • open terminal /command prompt,
    • type python3 --version or python --version and press enter.
    • The terminal window will display text in the format of _Python 3.6.7_, signifying that python is installed.
    • Skip the next step(4) and proceed to Step(5).