Tech C**P
15 subscribers
161 photos
9 videos
59 files
304 links
مدرس و برنامه نویس پایتون و لینوکس @alirezastack
Download Telegram
By Telegram filtering users are looking for alternative messaging applications. One the well known applications for tech savvy guys is Slack it is filtered but not in a way Telegram is filtered. You can call API without any proxy or socks server. The app itself is filtered, but when you login for the first time by using a proxy server, you do not need socks server anymore as you are logged in all the times.

One of the Slack developer kit for Python is python-slackclient. Installtion is easy as pie:

pip install slackclient

When you get your bot token, all thing you need to do to send a message to a channel is:

from slackclient import SlackClient

slack_token = "xoxp-YOUR-TOKEN"
sc = SlackClient(slack_token)

sc.api_call(
"chat.postMessage",
channel="#python",
text="Hello from Python! 🎉"
)

#python is the name of your channel. For more information go to link below:
- http://slackapi.github.io/python-slackclient/

#python #slack #python_slackclient #im #telegram
What is CDN?

CDN is short for content delivery network. A content delivery network (CDN) is a system of distributed servers (network) that deliver pages and other Web content to a user, based on the geographic locations of the user, the origin of the webpage and the content delivery server.

This service is effective in speeding the delivery of content of websites with high traffic and websites that have global reach. The closer the CDN server is to the user geographically, the faster the content will be delivered to the user. CDNs also provide protection from large surges in traffic.


What are the benefits of using a CDN?

- Improving website load times
- Reducing bandwidth costs
- Increasing content availability and redundancy
- Improving website security


Telegram is an example of those services that use CDN in order to serve public channels media to end users with faster pace.

#cdn #content_delivery_network #telegram
Enable workmode in Telegram:

open settings in telegram desktop and without clicking anywhere type workmode a dialog will open to confirm that want it to be enabled. After telegram restart you willl have a new bar above chat accounts -> Hide muted chats click on it to hide muted chats from the left pane.

Spread your love for m2sh :)

#telegram #trick #fun #workmode #work_mode