This is just a very simple HTA (HTML Application) I made. Put it in your QuickLaunch or desktop and you can launch Gmail at anytime. It's like launching a real app, like Outlook, only faster. You can download it here: gmail.hta or if you're want to play it safe and build one yourself, here's the code:
Just copy and paste that code into Notepad, and save as gmail.hta, or whatever you'd like. As long as it has the .hta extension.
READ BEFORE USING: Because of IE's higher security in HTAs, you must set http://gmail.google.com/ as "Always Allow" in Internet Options Privacy tab (Sites button). Otherwise cookies won't work.
A coalition of publishers sued OpenAI and Microsoft over scraping content without consent by Hamid Ganji
Image via Depositphotos.com
AI companies often rely on readily available internet content to train their chatbots and provide users with instant answers. This method of AI training is fast and relatively inexpensive, but using a website’s content without permission or compensation is not something publishers like to see, and this is exactly why Microsoft and OpenAI are now being sued.
As reported by Bloomberg, a group of publishers that collectively own nearly 400 newspapers has filed a lawsuit against OpenAI and Microsoft. The coalition argues that the two companies scraped their content to build AI chatbots like ChatGPT and Copilot without paying any compensation.
The complaint, filed in the U.S. District Court for the Southern District of New York, argues that while AI products have generated billions of dollars in market value using publishers’ work, none of that value has been shared with the publishers. The plaintiffs are seeking statutory damages and injunctive relief for alleged copyright infringement and violations of the Digital Millennium Copyright Act.
“Defendants systematically and secretly crawled the Publishers’ websites—including content behind paywalls and other access restrictions—and copied the Publishers’ articles, stories, and other original works onto their own servers without authorization,” the complaint states.
The publishers also described the AI boom as a “death knell for local journalism” if AI companies that scrape content for free are not held accountable. Former New Jersey Attorney General Matthew Platkin and his law firm, Platkin LLP, are representing the publishers.
“Our models empower innovation, are trained on publicly available data, and are grounded in fair use,” OpenAI spokesperson Drew Pusateri told Bloomberg.
This is not the first lawsuit involving the unauthorized use of publishers’ content by AI firms, but it is one of the largest coalitions ever formed against the free use of content by AI chatbots. In 2024, OpenAI and Microsoft also faced a similar lawsuit from eight newspapers that claimed AI products were benefiting from their content without permission.
Question
GodsHand
Gmail: The App
This is just a very simple HTA (HTML Application) I made. Put it in your QuickLaunch or desktop and you can launch Gmail at anytime. It's like launching a real app, like Outlook, only faster. You can download it here: gmail.hta or if you're want to play it safe and build one yourself, here's the code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"> ?<head> ? ?<title>Gmail</title> ? ?<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> ? ?<object id="pFileObject" classid="clsid:0D43FE01-F093-11CF-8940-00A0C9054228"></object> ? ?<hta:application id="oGmail" ? ? ?applicationname="Gmail" ? ? ?minimizebutton="yes" ? ? ?maximizebutton="yes" ? ? ?icon="http://gmail.google.com/favicon.ico" ? ? ? ?windowstate="normal" /> ? ? ? ? ?<base target="contentframe" /> <style type="text/css"> <!-- html { overflow: hidden; margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } iframe { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; width:789px; height:551px; position:absolute; left:0px; top:0px; overflow:hidden; background-color: transparent; } --> </style> ?</head> ?<body onload="window.resizeTo(800,580)" scroll="no"> <iframe style="z-index:0;" name="contentframe" id="contentframe" src="https://gmail.google.com/gmail" application="no" /> ?</body> </html>Just copy and paste that code into Notepad, and save as gmail.hta, or whatever you'd like. As long as it has the .hta extension.
READ BEFORE USING: Because of IE's higher security in HTAs, you must set http://gmail.google.com/ as "Always Allow" in Internet Options Privacy tab (Sites button). Otherwise cookies won't work.
Edited by GodsHandLink to comment
https://www.neowin.net/forum/topic/183337-final-gmail-the-app/Share on other sites
106 answers to this question
Recommended Posts