MTRX | ماتریکس

Description
Advertising
We recommend to visit
Roxman
Roxman
14,570,603 @developer

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

Contact: @borz

Last updated 6 days, 20 hours ago

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

Last updated 2 months, 2 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 4 months ago

7 months ago


Print time and date in #linux

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

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

```


MTRX

7 months, 1 week ago

پایتون ?

تمرین ‌ ?

@jaragheh_py

7 months, 1 week ago


Encoding and Decoding with #python

```
import base64

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

```


MTRX

7 months, 1 week ago


Getting the registrar information of a domain in #linux

whois domain.com | grep Registrar


MTRX

7 months, 1 week ago


Running terminal commands with #python

```
import os

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

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



MTRX

7 months, 1 week ago


Delete the second line from a file with #linux command

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


MTRX

7 months, 1 week 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

7 months, 1 week ago


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

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


MTRX

7 months, 1 week ago


Detect os with #python

```
import platform

print(platform.system())
```



MTRX

We recommend to visit
Roxman
Roxman
14,570,603 @developer

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

Contact: @borz

Last updated 6 days, 20 hours ago

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

Last updated 2 months, 2 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 4 months ago