It’s Midnight and I had to prepare a presentation for tommorow but I wasn’t able to make time for it, irrelevant? Yes, but in less than eight minutes I had the following two presentation lined up with next to no mistakes from a Freemium Website called Gamma.ai and it’s not the only option available. ThisContinue reading “AI is Getting better and Cheaper!!!”
Author Archives: Alternative Media Div.
The Artificial Revolution – How AI will HELP PEOPLE take over the world….
If you have been following all the AI news floating in the market, you must’ve listened People saying that AI will Replace people (True to a certain point) and the following phrase: “AI won’t Replace people, the people who know how to use AI will” Which is true considering all the bluff in the genreContinue reading “The Artificial Revolution – How AI will HELP PEOPLE take over the world….”
Team Nothing!! Some Changes NEED to Made…
First of All, OnePlus is Back, So maybe Nord might try to compete. Not a huge issue though, NOTHING is a great company is my opinion, from being able to successfully create OnePlus hype (Credit to Carl Pei) to creating absolutely stunning Products. Although there are some issues in NOTHING’s Products that are holding itContinue reading “Team Nothing!! Some Changes NEED to Made…”
AMAZING FEATURES OF THE APPLE ECOSYSTEM THAT ARE FLABBERGASTING…
Hate it or crave it, apples wall garden is full of features that mimic simplicity and fulfillment. These features enhance usability, productivity and in general the user experience. Now although some of hem are device or OS specific, they are very exciting. So here are some of them that will blow your mind: The AppleContinue reading “AMAZING FEATURES OF THE APPLE ECOSYSTEM THAT ARE FLABBERGASTING…”
SHOULD YOU JAILBREAK YOUR iDEVICES IN 2023
Even though I am not a true expert in jailbreaking and have just a bit experience in this space, I would still like to share my thoughts and experience with you on this topic. I hope you like it. Now, unless you’ve been living in a cave or you’re an Android user, you must knowContinue reading “SHOULD YOU JAILBREAK YOUR iDEVICES IN 2023”
FIVE THINGS THAT CAN SILENTLY KILL YOUR PC
Everybody loves their computer, they probably don’t wanna ruin it. Henceforth, here are some tips to keep it safe. Generic but very crucial advice don’t trust anything and everything you see on social media. Sometimes even paid packages might contain malware. You don’t necessarily need an antivirus; WINDOWS DEFENDER is enough for most users. ManyContinue reading “FIVE THINGS THAT CAN SILENTLY KILL YOUR PC”
Basic Python Code for Internet Browser
import sysfrom PyQt5.QtCore import *from PyQt5.QtWidgets import *from PyQt5.QtWebEngineWidgets import * class MainWindow(QMainWindow):def init(self):super(MainWindow, self).init()self.browser = QWebEngineView()self.browser.setUrl(QUrl(‘http://google.com’))self.setCentralWidget(self.browser)self.showMaximized() # navbar navbar = QToolBar() self.addToolBar(navbar) back_btn = QAction(‘Back’, self) back_btn.triggered.connect(self.browser.back) navbar.addAction(back_btn) forward_btn = QAction(‘Forward’, self) forward_btn.triggered.connect(self.browser.forward) navbar.addAction(forward_btn) reload_btn = QAction(‘Reload’, self) reload_btn.triggered.connect(self.browser.reload) navbar.addAction(reload_btn) home_btn = QAction(‘Home’, self) home_btn.triggered.connect(self.navigate_home) navbar.addAction(home_btn) self.url_bar = QLineEdit() self.url_bar.returnPressed.connect(self.navigate_to_url) navbar.addWidget(self.url_bar) self.browser.urlChanged.connect(self.update_url) def navigate_home(self):Continue reading “Basic Python Code for Internet Browser”