MTRX | ماتریکس

Description
Advertising
We recommend to visit

Telegram stands for freedom and privacy and has many easy to use features.

Last updated 1 month, 3 weeks ago

Official Graph Messenger (Telegraph) Channel

Download from Google Play Store:
https://play.google.com/store/apps/details?id=ir.ilmili.telegraph

Donation:
https://graphmessenger.com/donate

Last updated 3 months, 1 week ago

This channel is managed by the Telegram team to inform users about updates related to auctions for usernames and other items on the Telegram platform.

Last updated 2 years ago

6 months, 2 weeks ago


Print time and date in #linux

```
date +"%d-%m-%y" # 07-11-09

date "+%T" # 00:02:12

```


MTRX

6 months, 2 weeks ago

پایتون ?

تمرین ‌ ?

@jaragheh_py

6 months, 2 weeks ago


Encoding and Decoding with #python

```
import base64

print(base64.b64encode(b'your string'))
print(base64.b64decode('your encoded string'))

```


MTRX

6 months, 2 weeks ago


Getting the registrar information of a domain in #linux

whois domain.com | grep Registrar


MTRX

6 months, 2 weeks ago


Running terminal commands with #python

```
import os

# in Linux ?
os.system('ls')

# in Windows
os.system('dir')
```



MTRX

6 months, 2 weeks ago


Delete the second line from a file with #linux command

sed \-i '2d' file.txt ‌


MTRX

6 months, 3 weeks ago


Convert image to black & white with #python

```
from PIL import Image

Img = Image.open('a.png')
Img.convert('1').save('b.png')

```


Requirement:

pip3 install pillow


MTRX

6 months, 3 weeks ago


Upload file to the free cloud and get the download link in #linux

curl \-F '[email protected]' 0x0.st


MTRX

6 months, 3 weeks ago


Detect os with #python

```
import platform

print(platform.system())
```



MTRX

We recommend to visit

Telegram stands for freedom and privacy and has many easy to use features.

Last updated 1 month, 3 weeks ago

Official Graph Messenger (Telegraph) Channel

Download from Google Play Store:
https://play.google.com/store/apps/details?id=ir.ilmili.telegraph

Donation:
https://graphmessenger.com/donate

Last updated 3 months, 1 week ago

This channel is managed by the Telegram team to inform users about updates related to auctions for usernames and other items on the Telegram platform.

Last updated 2 years ago