BigBlueButton, The Tales Within

It’s been almost a year since my journey with BigBlueButton started. From the very first days of trying to get it up and running using the install script to now, the days of sleeping at night with every BigBlueButton API Endpoint in my mind.

English Part of Speech Tagger

English Part of Speech Tagger is a Python 3 program that reads a text from an input file and tags it with the correct part of speech.

This program uses NTLK ( Natural Language Toolkit ) library for python which can be easily installed using pip ( Python Package Manager ).

The script reads the file line by line and outputs each line in a file followed by its tagged part of speech.

The source code is available in a repository in my GitHub.

Word Puzzle Solver

Word Puzzle Solver is a Python 3 program that gets a bunch of letters and generates all possible combinations then checks it with a dictionary and outputs all the valid words so it can be used to solve every word puzzle.

The dictionary is in a text file and can be modified by replacing it with another dictionary and the minimum and desired length is easily adjustable.

The main target of this program was a telegram bot which is available through the link below.
https://t.me/KalameBot

The source code is available in a repository in my GitHub.