Quickly see your local weather right in your terminal, no browser required.
Stay tuned on your preferred social media: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #INFNOVATech #INFNOVACommunity #LearnCreateInnovate #TerminalThoughts #CodeTerminal #TechTips #Technology #Innovation #Programming #Coding #Developers #Makers #IoT #Robotics #EthiopiaTech #AfricanTech #TechInAfrica
Stay tuned on your preferred social media: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #INFNOVATech #INFNOVACommunity #LearnCreateInnovate #TerminalThoughts #CodeTerminal #TechTips #Technology #Innovation #Programming #Coding #Developers #Makers #IoT #Robotics #EthiopiaTech #AfricanTech #TechInAfrica
🔥4
Code Terminal Git Tips
Made a commit too soon? No worries.
Use git reset --soft HEAD~1 to undo your last commit without losing your code.
Stay in control code smart.
Stay tuned on your preferred social media: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips @github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
Made a commit too soon? No worries.
Use git reset --soft HEAD~1 to undo your last commit without losing your code.
Stay in control code smart.
Stay tuned on your preferred social media: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips @github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
❤1👍1
Turn Any Image into Stunning Grayscale with Just 3 Lines of Python!
from PIL import Image
img = Image.open("your_image.jpg").convert("L")
img.save("gray_image.jpg")
Instantly transform your images to grayscale using Python’s powerful Pillow library
Stay tuned with INFNOVA: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips #github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
from PIL import Image
img = Image.open("your_image.jpg").convert("L")
img.save("gray_image.jpg")
Instantly transform your images to grayscale using Python’s powerful Pillow library
Stay tuned with INFNOVA: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips #github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
❤4
Count the number of words in any text file in just one line.
Use in: Python script / Terminal / Colab
Code:
print(len(open("file.txt").read().split()))
Stay tuned with INFNOVA: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips #github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
Use in: Python script / Terminal / Colab
Code:
print(len(open("file.txt").read().split()))
Stay tuned with INFNOVA: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips #github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
🔥3
Generate a strong random password instantly no need to Google one!
import random; print(''.join(random.choices('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%', k=12)))
connect with INFNOVA: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips #github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
import random; print(''.join(random.choices('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%', k=12)))
connect with INFNOVA: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips #github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
👍2🔥2❤1
Quickly locate files by name or type.
Fast and efficient file searching, right from your terminal.
find . -name "*.pdf"
connect with INFNOVA: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips #github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
Fast and efficient file searching, right from your terminal.
find . -name "*.pdf"
connect with INFNOVA: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips #github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
👍2