MTRX | ماتریکس

Description
Advertising
We recommend to visit
Roxman
Roxman
13,339,135 @developer

Sharing my thoughts, discussing my projects, and traveling the world.

Contact: @borz

Last updated 1 week, 2 days ago

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

Last updated 1 day, 2 hours 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 5 months, 2 weeks ago

8 months, 3 weeks ago


Print time and date in #linux

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

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

```


MTRX

8 months, 3 weeks ago

پایتون ?

تمرین ‌ ?

@jaragheh_py

8 months, 3 weeks ago


Encoding and Decoding with #python

```
import base64

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

```


MTRX

8 months, 3 weeks ago


Getting the registrar information of a domain in #linux

whois domain.com | grep Registrar


MTRX

8 months, 3 weeks ago


Running terminal commands with #python

```
import os

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

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



MTRX

8 months, 3 weeks ago


Delete the second line from a file with #linux command

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


MTRX

8 months, 4 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

8 months, 4 weeks ago


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

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


MTRX

9 months ago


Detect os with #python

```
import platform

print(platform.system())
```



MTRX

We recommend to visit
Roxman
Roxman
13,339,135 @developer

Sharing my thoughts, discussing my projects, and traveling the world.

Contact: @borz

Last updated 1 week, 2 days ago

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

Last updated 1 day, 2 hours 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 5 months, 2 weeks ago