Posts

AI and Passive Income: Opportunities and Considerations

In recent years, Artificial Intelligence (AI) has rapidly evolved and become increasingly prevalent in various industries. AI has the potential to transform the way we live, work, and do business, and it has also opened up new opportunities for generating passive income. In this article, we will explore the various ways in which AI can be leveraged to generate passive income and some of the considerations to keep in mind. As technology advances, it's becoming easier and easier to create and share multimedia content. One of the most exciting developments in this space is the rise of tools for generating images and videos based on text input. This has a wide range of applications, from storytelling to travel guides, and has the potential to revolutionize the way we interact with multimedia content. One application of text-to-image generation is in the creation of storybooks. With the help of AI-powered generators, anyone can easily turn their words into illustrations, making it p

URL_Symbolic_Replace

 from urllib.parse import unquote class UrlReplace:     def __init__(self):         UrlText = "https://docs.google.com/viewer?url=https%3A%2F%2Fwww.jinhong.org%2Fmoodle%2Fpluginfile.php%2Fgradebook.xlsx"         CleanUrlText = str(unquote(unquote(UrlText)))         print(CleanUrlText.replace("https://docs.google.com/viewer?url=",""))         '''         print("\n")         bibTextPath = "bibTextToReplace" ## put the bibtext at this file under the same path         f = open(bibTextPath, "r", encoding="ISO-8859-1")         finalText = ""         for line in f:             if '={' in line:                 line = line.replace("={", "=\"")             if "}," in line:                 line = line.replace("},", "\",")             finalText = finalText+line         print(finalText.replace("}\n}", "\"\n}"))      

The Hindus by Wendy Doniger

Download The Hindus - An Alternative History by Wendy Doniger, Penguin press https://drive.google.com/file/d/0B3UM79zo-HUHNmJ6S3FKMlRjclE/edit?usp=sharing

How to reduce high SGOT and SGPT level

Image
I will only send a detailed description fo easy way to reducing SGOT and SGPT level. If you really need, can mail me at nurjamia@gmil.com Human Liver

2012: What EID means to me?

Solution: "MySQL is running but PID file could not be found"

If sometime, mysql status shows that " ERROR! MySQL is running but PID file could not be found ", after checking the mysql status like below: etc/init.d/mysql status ERROR! MySQL is running but PID file could not be found To solve this issue, please kill all the mysql daemon. ps aux | grep mysql kill -9 pid1 pid2 ... Now start the mysql, /etc/init.d/mysql start  

Reset forgotten mysql root password

Here is the steps to reset mysql password in case of one forget it. Note: One must have linux root login credential. Step 1: Open a terminal, and login using root linux password. Firstly, stop mysql daemon, using the below command: /etc/init.d/mysql stop or, service mysql stop Step 2: Start the mysql server manually without permission of tables which will allow to login as root user without password. Use the following command: mysqld_safe --skip-grant-tables 120730 08:53:40 mysqld_safe Logging to '/var/lib/mysql/MBS-APPS.err'. 120730 08:53:40 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql Step 3: Now open a new window and start mysql without any password: mysql --user=root mysql Step 4: Now reset the mysql root password, UPDATE user SET password=PASSWORD('newpassword') WHERE user='root'; flush privileges; exit; Step 5: Password will successfully reset. Now kill all mysqld process. ps -ef|grep -i mysql   kill -