logo
Perplexity AI Reports Explosive Growth as Users Look for Browser Alternatives

Perplexity AI Reports Explosive Growth as Users Look for Browser Alternatives

Business Insider14 hours ago

Perplexity's AI-powered search engine is growing quickly, with CEO Aravind Srinivas reporting a 20% month-over-month increase and 780 million queries in May, according to TechCrunch. Speaking at the Bloomberg Tech Summit, Srinivas said that the platform could hit 1 billion weekly queries if growth continues. He also argued that internet users are looking for fresh alternatives to legacy browsers like Google's (GOOGL) Chrome, and that integrated search tools in a browser can drive even higher engagement.
Confident Investing Starts Here:
As a result, the company is preparing to launch Comet, which is a new agentic search engine that can help complete tasks for users. In addition, Srinivas noted on X that Comet will soon include features such as meeting recordings, transcription, and search, although these will not be available in the initial release. Nevertheless, Perplexity is working hard to polish the product, with a release expected in about three to five weeks.
It is also worth noting that Perplexity is backed by investors such as Nvidia (NVDA) and Amazon (AMZN) founder Jeff Bezos, and is reportedly closing a funding round that would value it at $14 billion, up from $9 billion in December. Moreover, the search engine recently added a new feature that allows in-chat purchases via PayPal (PYPL) or Venmo. Still, despite Perplexity's growth, Google still dominates the market with about 90% global market share, followed by Microsoft's (MSFT) Bing at around 4%.
Which Stock Is the Better Buy?
Turning to Wall Street, out of the stocks mentioned above, analysts think that NVDA stock has the most room to run. In fact, NVDA's average price target of $172.36 per share implies more than 21% upside potential. On the other hand, analysts expect the least from MSFT stock, as its average price target of $514.27 equates to a gain of 9.2%.

Orange background

Try Our AI Features

Explore what Daily8 AI can do for you:

Comments

No comments yet...

Related Articles

8 things you must try with the Linux Terminal app on your Android phone
8 things you must try with the Linux Terminal app on your Android phone

Android Authority

time40 minutes ago

  • Android Authority

8 things you must try with the Linux Terminal app on your Android phone

Andy Walker / Android Authority One of Google's significant innovations that has gone largely unnoticed this year was the rollout of Linux Terminal support baked right into Android. If you own a Pixel and are running the latest stable version of Android, you can enable the app and open up a world of possibilities. Sure, the terminal is daunting, but thanks to its presence in a virtual machine, it remains largely isolated from your phone's critical inner workings. This makes it the perfect playground. If you're asking yourself how a black screen with incoherent lines of text can be a playground, you've come to the right place. In this piece, I'll detail some useful, not-so-useful, and downright fun ways to use the Linux Terminal app on your Android phone. Have you enabled the Linux Terminal app on your Pixel? 953 votes Yes, I have. 24 % No, I haven't yet, but I'm considering it. 51 % No, I don't want to at all. 10 % No, I don't have a phone that supports it. 15 % Get to grips with the basics Andy Walker / Android Authority Getting lost in the terminal is easy, so a little help is always welcome. I've been leaning heavily on this brilliant Linux Terminal companion app called Linux Command Library to help with the essential, must-know commands. However, you needn't ever go beyond the terminal itself for help. There are two parameters you'll need to remember: help and man . Help displays a list of commands that are available to you. Think of it as a phonebook. Man, on the other hand, displays the manual pages for utilities and commands. It's a good idea to use the help command to explore the possibilities broadly, and then man to drill down into those you're interested in. The man parameter is used as such, with ls as an example: man ls There are two other important commands you'll need to know. They are: Update the system: sudo apt update and sudo apt upgrade and Install a package: sudo apt install [name of the package] Remove old lines from the terminal: clear Close the currently running program: usually CTRL c unless otherwise specified by the utility Experiment with system information tools Andy Walker / Android Authority Let's look at something simple before we get into the more technical items. Linux has several system information tools that you can access through the terminal. Running them on the Pixel will give you detailed information about how much RAM and CPU power Debian is using, as well as other details related to your virtual machine. There are two options available: neofetch , which displays a less nuanced overview of your system, and htop , which offers real-time updates of system resource usage. sudo apt install neofetch sudo apt install htop Once installed, type neofetch or htop in the terminal and hit the Enter button to run them. Play a game, or two, or three! The command line might seem an impractical way to play games, but terminal games just ooze charm. Playing Bastet, a Tetris-like block stacking game, was one of the first things I learned how to do on Linux, and it's something I still do to this day. Yes, using the Pixel 8's relatively small screen and control buttons is awkward, but it's still a blast. To install it, use the command below: sudo apt install bastet Of course, Bastet isn't your only option. Find some of my favorite terminal games below, including their install commands: Pacman4console sudo apt install pacman4console Moon-Buggy sudo apt install moon-buggy Nsnake sudo apt install nsnake Ninvaders sudo apt install ninvaders Control other devices on your network Perhaps one of the more useful ways to use the terminal on your Android phone is to command other devices on your network through SSH. If you've built your own Pi-hole to block ads or build your own digital assistant, you can easily SSH into it from your phone through the terminal and check up on it occasionally. You will need to install SSH using the command below sudo apt install ssh Alternatively, if you're not a Pi-hole owner, you can still SSH into almost any machine, from your homemade NAS to your desktop. Turn the Terminal into a secret notebook There are several text editors that make full use of the terminal, but nano is my favorite. I've used it for years on the desktop, and now I can try it on the terminal. To install it, enter the following command: sudo apt install nano Once it's installed, run nano . You can now use the terminal to take notes, too. You can save the current note in a text file and recall it once you reopen the app. Brilliant! Step into the Matrix Andy Walker / Android Authority Your Android phone can be a portal to 1999, when leather trench coats were still all the rage. The scrolling matrix screen is still a firm part of popular culture, and you can turn your terminal window into something similar thanks to cmatrix . To install it, type the following into the terminal on your phone, followed by the Enter key: sudo apt install cmatrix To run the utility, type the following, followed by the Enter key: cmatrix Your phone's terminal window should now be covered in vertically cascading text. To stop the command, tap the CTRL button followed by C. Stress test your Pixel Should you stress test phones known for heating problems? Probably not, but it's fun nonetheless. After building a system, it's a good idea to stress test it to check what it's capable of, how hot it'll get, and whether all the components are in working order. You can do this, too, using traditional Android apps. However, it's much more fun to use the terminal. First, install the stress testing tool: sudo apt install stress Once installed, you can stress test the CPU by running the following command: stress –cpu [number of cpus] –timeout [how long you want the test to run, in seconds] As an example, the Pixel 8 has nine CPU cores, so to stress test all of them my command would be: stress –cpu 9 –timeout 60 To monitor the progress of the test, open htop in a second terminal tab, and switch between the two views. You will notice the CPU cores on htop kick up to 100% and remain pretty high for the allotted time. Become a digital cat parent Andy Walker / Android Authority If you're a fan of early 2010s pop culture, you can turn your expensive Google phone into a Nyan Cat display. Run the below command: sudo apt install nyancat Then type nyancat and hit Enter to run the utility. Your terminal will display a flying poptart-encased feline with rainbow trails. This is just the beginning! The Linux Terminal app is an excellent addition to Android phones. While users only have access to a text-based portal to the Debian virtual machine, Google is planning to run full-scale Linux apps on Android's desktop mode eventually. That's pretty exciting, and something we can all look forward to in the future. For now, the terminal is a great learning and experimenting tool for most and a portable development toolkit for others. The items above are merely intended to highlight the terminal's potential. Some have installed full-blown graphical interfaces, turning their Pixels into portable Linux machines. We've even managed to install and run Doom. The possibilities are only really limited by your imagination, so I encourage you to keep reading resources, guides, and how-tos detailing the more intricate ways of using the terminal on Android. Do you have a fun way of using the Linux Terminal on your phone? Perhaps I missed something handy. If so, let the community know in the comments below.

Got a Pixel phone? Grab these 5 Google apps because they're not installed by default
Got a Pixel phone? Grab these 5 Google apps because they're not installed by default

Android Authority

timean hour ago

  • Android Authority

Got a Pixel phone? Grab these 5 Google apps because they're not installed by default

Rita El Khoury / Android Authority Every time I set up a new Pixel phone, there is a list of apps that I immediately install. Spotify, 1Password, Slack, Todoist, DuckDuckGo, JotterPad, Backdrops, Plex, Wanderlog, and many more are at the top of my list, but so are a few apps developed by the company that made my phone — Google. Despite these being Google apps, they don't ship by default on Pixels and must be manually added to the phones. Some of them are known; others are more obscure. But there's a particular reason to use each and every one of them, so without further ado, here are the five Google apps I add to my Pixel and that I think you should consider as well. Chrome Beta Rita El Khoury / Android Authority Why install a beta version of Chrome when the official Chrome is already pre-loaded? Well, the reason is multiple account support. See, unlike almost all other Google apps, Chrome doesn't let me switch accounts very easily with a swipe across my profile picture. No, I have to log out and then log in with the new account each time, essentially resetting the app every time I do this. To counter it, I use Chrome and Chrome Beta (and Chrome Dev), and sign into a different Gmail account in each app. My personal account lives in Chrome, my joint account with my husband goes in Beta, and my Workspace account is in Dev. That way, I can access all my distinct bookmarks, browsing histories, logins, and autofill details in each one, without mixing business and pleasure. It's a bit of a cumbersome solution when I click on a link and see it open in my personal Chrome (which is set as default browser) when I know it should've gone in my family Chrome Beta, but I've learned to live with this limitation. I copy/paste the URL to manually open it in the appropriate browser. Besides that, this works beautifully and allows me to separate church and state with my browsing habits and data. Google Maps Go Rita El Khoury / Android Authority Google Maps is one of the most-used apps on my phone, but it has one glaring flaw: It becomes useless the moment I start navigation. I can't do a proper search, nor can I look up the details of a place I'm walking by. I have to completely stop navigation to do that, then search for my destination again and start nav a second time. Google Maps Go solves this by providing a second, lighter, smaller, less resource-intensive instance of Maps on my phone. So when I'm already following step-by-step directions to walk, drive, or take transit somewhere, I can just launch Maps Go to do anything else I might need Maps for. Passing by a cool-looking restaurant? I look it up and see if it has a good rating and bookmark it. Need to find specific details about some places while I'm on the subway? I can do my research without messing up my train times and journey. When I wrote about this benefit of Google Maps Go, a few users suggested I use Waze for navigation and keep Google Maps free. This is another workaround, but it only applies if you drive a lot. Most of my transport happens on foot or by transit, so I can't use Waze for that. Gallery Joe Maring / Android Authority Every time we mention this app on Android Authority, we get many comments from people who didn't know Google Gallery existed. So here I go again. Gallery is Google's fast, light, on-device alternative to Photos. It scans all of the photos and videos on your phone, organizes them, does some light facial recognition, and stays offline the whole time. The first scan takes time, but after that, Gallery is fast and efficient. And most of all, it's private. It works pretty well as a local gallery app, and I use it a lot to access my screenshots, WhatsApp folders, and all the other media files on my phone. Google Translate Rita El Khoury / Android Authority Do I even need to introduce Translate to you? I don't know why Google has left out this essential app from its preloaded Pixel apps, forcing us to install it on every device manually, but here we are. Google Translate does what the name says: It translates things — text, audio, photos, full conversations — from one language to another. It can easily auto-detect the input language and supports offline translations for dozens and dozens of languages. I speak three languages nearly natively, and I can figure my way around two other languages, but that's not enough for a frequent traveler or culture addict like me. So when I'm in a country where I don't speak the language, like Hungary, Albania, the Czech Republic, Turkey, or Nepal, I resort to Google Translate to communicate with people who aren't very confident using English. As a matter of fact, my taxi driver in Turkey pulled out his phone and launched Google Translate by himself to organize my pick-up and drop-off — a proper border-crossing solution. Google Go Rita El Khoury / Android Authority There might be a pattern here; Google Go is the third light version of a default Google app that I use, and once again, there's a good reason for that. Google Go was built for less powerful phones and more limited internet connections, and that's part of its appeal. It's faster and lighter than Google's main app, but it still does the job. What I love about it, though, and the reason why it's earned a spot on my Pixel is that it supports two features that aren't available in the regular Google app. One of them is incognito searching. It's a tap away and allows me to do a quick search without it showing up in my Google history and without launching Chrome and rejecting Google's cookie pop-up each time. The other is the built-in reader mode, which is also available in Chrome but requires a few tweaks with flags to enable (and even then isn't as straightforward). In Google Go, any article page immediately shows a bottom bar with a play button in the middle. It starts reading the article for me so I can go about my day, make coffee or prepare lunch, start a new laundry cycle or brush my teeth, all while listening to the article. There are speed controls, 10-second skip and rewind buttons, too, plus an easy translation menu. It's sad that all these nifty additions aren't available in the main Google app because I'm sure a lot of people would love them and use them as much as I do. Honorable mentions Before ending this article, I wanted to mention some other Google-made apps that are not pre-installed on Pixel phones (or rarely are) and are still worth testing and adding to your phone. Google News is the most obvious one, if you like to stay on top of what's happening in the world of politics, tech, or any other topic you're interested in. Google Tasks is a basic but efficient task manager. It combines very well with Assistant voice commands when you set up reminders. Google Fit has lost a lot of its shine since Google bought Fitbit, but it remains an excellent way to aggregate data from various health apps. I also used it when I was tracking my blood pressure after a brief scare earlier this year. Find Hub (previously Find My Device) is essential if you own other Pixel or Android gear; it allows me to locate my Buds Pro 2, Watch 3, and other Android phones, as well as my Google-compatible Bluetooth trackers like the Chipolo POP or moto tag. Photoscan is a secondary Google Photos tool that lets me scan physical photos to add them to my library. It automatically crops and rotates the image and removes all glare, saving me from manually doing this tedious work. I have yet to digitize my old photos, but for the rare time when I get handed a physical photo as memorabilia from a place or adventure, it's my go-to solution. And there you have it; all the great Google apps that you should consider adding to your Pixel, even if they didn't come preloaded on it. Have any other favorites? Let me know in the comments!

Down 18%, are we witnessing the slow decline of Alphabet stock?
Down 18%, are we witnessing the slow decline of Alphabet stock?

Yahoo

time2 hours ago

  • Yahoo

Down 18%, are we witnessing the slow decline of Alphabet stock?

Like many of the Magnificent 7, Alphabet (NASDAQ: GOOG) stock has performed poorly over the last few months. Its once all-powerful moat in internet search is coming under serious threat from multiple angles. So, is this merely a mid-life crisis or something much more problematic? In its Q1 results, posted at the end of April, the business continued to see strong growth momentum. Revenues for the quarter came in at $90bn, 12% higher than a year ago. Representing over 50% of total revenues, Google search was up 10%. Google subscriptions, platforms, and YouTube ads also saw strong growth momentum. The business continues to invest heavily in AI. It recently launched Gemini 2.5, although it's still in preview mode and doesn't offer a paid tier with full access yet. The new AI model is not aimed at your average consumer. This probably explains why the pricing model will be different. It claims the model is capable of 'analyzing large datasets, codebases, and documents using long context'. But like so many of its peers, it has been rather vague on detail, other than saying it had addressed user feedback. Google, like all the other Magnificent 7 stocks, are trying to understand how generative AI is likely to evolve and whether it's a long-term threat to their business models. With 90% of all internet searches being conducted through Chrome, Google looks particularly vulnerable to me. A month ago, investors were totally spooked after an Apple executive disclosed in a court case that Google-search traffic on its devices using Safari fell for the first time ever. The speed of adoption of generative AI among the general consumer is what has completely taken me by surprise. Key to an acceleration in this trend have been AI-generated summaries at the top of search results. Google and Microsoft may be at the forefront of rolling out this new feature, but this technology has the potential to cannibalise existing revenue streams. Search engine optimisation (SEO) is the foundation of the internet. The whole marketing industry is based on fine tuning algorithms to ensure a company attracts traffic to their web pages. The rise of so-called 'zero-click' results looks set to upend this key tenet. In a recent survey conducted by consultancy firm Bain, it found that about 80% of consumers now rely on zero-click results in at least 40% of their searches. They estimated that this new phenomenon has reduced organic web traffic by between 15% to 25%. The likes of Perplexity AI and ChatGPT continue to attract consumers. According to Bain's research, approximately 40% to 70% of LLM users use the platforms to conduct research and summarise information, find the latest news and weather, and ask for shopping recommendations. Across the marketing industry, generative engine optimisation or GEO is becoming the new buzz term. This is in recognition of the growing role of bots trawling the web to train LLMs. Marketing revenues from clicks are the lifeblood of Google's business model. As it tries to find way to integrate and grow revenues from its own AI offerings, capital expenditures will continue to grow. With so much future uncertainty, I will continue to observe from the sidelines, but I don't rule out an investment in the future. The post Down 18%, are we witnessing the slow decline of Alphabet stock? appeared first on The Motley Fool UK. More reading 5 Stocks For Trying To Build Wealth After 50 One Top Growth Stock from the Motley Fool Suzanne Frey, an executive at Alphabet, is a member of The Motley Fool's board of directors. Andrew Mackie has no position in any of the shares mentioned. The Motley Fool UK has recommended Alphabet, Apple, and Microsoft. Views expressed on the companies mentioned in this article are those of the writer and therefore may differ from the official recommendations we make in our subscription services such as Share Advisor, Hidden Winners and Pro. Here at The Motley Fool we believe that considering a diverse range of insights makes us better investors. Motley Fool UK 2025

DOWNLOAD THE APP

Get Started Now: Download the App

Ready to dive into the world of global news and events? Download our app today from your preferred app store and start exploring.
app-storeplay-store