Posts

Ultimate Hyderabad to Gokarna Road Trip: Murudeshwar, Jog Falls, and Beyond

Image
Introduction           Gokarna is a beautiful beach town in Karnataka, India. It is known for its laid-back atmosphere, beautiful temples, stunning beaches, and delicious seafood.T he history of Gokarna goes back to the times of Ravana and Shiva.  It is believed to be the place where Lord Shiva is said to have meditated in the form of the "Atmalinga" (a divine lingam). The Mahabaleshwar Temple, dedicated to Lord Shiva, is one of the holiest sites in Gokarna and has historical and religious importance. The best time to visit the destination is from October to March.      The biggest dream of my life is about to begin. A road trip on bike.From childhood I always dreamed about travelling on bike, visiting new places, meeting people and now finally the day has come. Gokarna is about 660km from where I stay Madhapur( Hyderabad). My Journey Begins..( From Charminar to the Coast) Day 1 (Hyderabad - Gokarna) :  I started my journe...

To-Do-list

You can visit the following link to see the todo list project code link: https://github.com/Rajesh-Maradana/to-dol-ist

random_password_generator using python and pyqt5

import random as r import string as s import sys from PyQt5.QtWidgets import * def random_generate():     l_password=[]     len_passwd,dailog_box = QInputDialog.getInt(window,"Dailog","Enter the  length of the Password ")     if len_passwd<=0:         mbox_1 = QMessageBox()         mbox_1.setText("Your Password Is")         mbox_1.resize(150,150)         mbox_1.move(250,200)         mbox_1.setStyleSheet("background-color:#B34AFE;")         mbox_1.setDetailedText("Invalid Length")         mbox_1.exec()     else:         for i in range(len_passwd):             l_password.append(r.choice(s.digits+s.ascii_letters))         mbox = QMessageBox()         mbox.setText("Your Password...