Installing smstools on Raspberry Pi3 Running Debian/Ubuntu

Package index update: sudo apt-get update Installing necessary packages: sudo apt-get install build-essential manpages-dev Creating di...

Read More

Defining Mobile Operators in Python Without Using Regular Expressions

def get_operator(phone): phone = str(phone) operator_code = phone[2:5] if operator_code in ['039', '067', '068', '096', '097', '098']…

Read More

Mobile Operator Codes of Ukraine in 2020 and Regular Expressions for Them

Read More

Installing Asterisk 11.25 on Ubuntu 14.04

Periodically, I need to install and configure Asterisk. I'm a bit tired of having to remember the entire sequence of actions and searching for all t…

Read More

Get Telegram Notifications for Missed Calls in Queue

Introduction I needed a way to receive Telegram notifications about missed calls in Asterisk. Since no working solution was available, I created m…

Read More