logo
Flashy Acquires Funny Till U Die to Bring the Fun Back into Finance

Flashy Acquires Funny Till U Die to Bring the Fun Back into Finance

04/15/2025, San Francisco, CA // KISS PR Brand Story PressWire //
Flashy Finance, the newly rebranded consumer-facing DeFi platform formerly known as Life DeFi, is thrilled to announce the acquisition of Funny Till U Die, a viral gaming and entertainment platform. As part of the acquisition, Flashy Finance will also be launching Flashy Fun, which marks the next step in Flashy Finance's mission to embed decentralized finance (DeFi) into the fabric of internet culture — transforming games, social networks and digital experiences into modern-day retail banks.
As part of the acquisition, David Lucatch, co-founder of Funny Till U Die, will join the Flashy Finance executive team, bringing his proven track record in digital identity, entertainment, and Web3 innovation to accelerate the integration of Flashy Fun.
'We believe the future of finance doesn't live in bank apps — it lives in the games we play and the networks we live on,' said Eric Benz & Christian Papathanasiou, co-founders of Flashy Finance. 'We're excited that David and the Funny Till U Die team has joined Flashy. By integrating Flashy's finance functionality directly into Funny Till U Die's games, we're turning online entertainment into powerful, accessible and fun financial ecosystems.'
This acquisition reinforces Flashy Finance's broader strategy to be the consumer gateway to the Lif3 blockchain ecosystem, delivering financial infrastructure as a service to partners across entertainment, gaming, and social platforms.
Funny Till U Die's creative IP and user engagement will now serve as a canvas for DeFi innovation, enabling players to earn, spend, and interact with on-chain assets seamlessly inside the entertainment experiences they love.
Flashy Finance will continue expanding its ecosystem of apps — including iOS, Android, Chrome, and web — to support new embedded finance use cases, with more major partnerships and activations to be announced in the coming weeks.
About Flashy Finance
Flashy Finance (formerly Life DeFi) is a decentralized finance platform and the primary consumer frontend for the Lif3 blockchain ecosystem. Flashy offers financial infrastructure as a service to games, creators, and social platforms — powering the next generation of retail banking through Web3-native experiences.
About Funny Till U Die
Funny Till U Die is a digital entertainment and gaming brand built to push the boundaries of interactive internet culture. Known for its irreverent games and viral humor, it merges play with purpose in the age of Web3.
Media Contact:
Robert Penington
[email protected]
This content was first published by KISS PR Brand Story. Read here >> Flashy Acquires Funny Till U Die to Bring the Fun Back into Finance

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

time3 hours 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.

Millions of iPhone users issued warning about downloading from App Store
Millions of iPhone users issued warning about downloading from App Store

Yahoo

time3 hours ago

  • Yahoo

Millions of iPhone users issued warning about downloading from App Store

Anyone with a phone has been urged to do two security checks before installing an app. Millions of iPhone users and Android users with Apps downloaded from the App Store or Google Store have been urged to ensure they are making security checks. Lee Elliott, chief product officer at Compare and Recycle, said: "Before installing an app from the App Store or Google Play, always ensure it is a verified app and pay attention to its reviews." Users should ensure apps are updated regularly and remember to install any security patches when prompted, too, Lee said. Mr Elliott said: "If you suspect your device has been infected, the first port of call is to turn off your mobile data or Wi-Fi, and uninstall any suspicious apps you can identify. "You could also perform a factory reset. "On Android phones you can run a built-in scan to search for malware and resolve the issue, but due to the OS architecture out of the box, iPhones are well protected and are not generally susceptible to security breaches. "If you're experiencing any strange pop-ups as an Apple user try clearing your browsing history and cache first, and it'll likely solve the problem." He said: "While staying aware of your surroundings is the least you can do to stop your phone being snatched in the first place, there are simple steps you can take to protect yourself and prevent the worst from happening. Recommended reading: WHSmith pricing 'should be illegal' after customer charged £4.19 for a Pepsi Appleby Horse Fair: The history behind Europe's largest traditional Gypsy Fair Nationwide confirms that certain customers will receive a free £200 "A lesser-known trick for iPhone users is to disable Control Centre access from the lock screen. "This prevents thieves from quickly switching off Wi-Fi or turning on Airplane Mode if they grab your phone while it's locked, helping you retain the ability to track the device via Find My iPhone and making them more likely to let go of the device. "Simply navigate to 'Face ID & Passcode' in settings and toggle off the option for accessing your control centre when the phone is locked."

I've Been Using the Photoshop iPhone App for Months, and Now Android Users Can Too
I've Been Using the Photoshop iPhone App for Months, and Now Android Users Can Too

CNET

time5 hours ago

  • CNET

I've Been Using the Photoshop iPhone App for Months, and Now Android Users Can Too

Adobe wants to help all of its professional photographers and creators edit while on the go. The company announced this week that Android users will be able to download a beta version of the Photoshop mobile app through the Google Play store. You can download the app now for free. Photoshop has been around for 35 years, but it's only been this year that Adobe released a true Photoshop mobile app built for on-the-go editing. When I got an early preview of the iPhone Photoshop app in February, I was surprised by how different the app felt from my experience editing photos on my laptop. But after spending some time with the app since -- and learning my way around the menus -- it feels like a more natural extension of the original Photoshop we all know and occasionally get super frustrated with. Photoshop loyalists will be glad to learn that many of the original Photoshop features are packed into the mobile app. The Android app will have many of the same features now at launch, like layers, masking and its AI tool generative fill. Tap select, the new mobile-friendly select option, joins more familiar tools like the magic wand, spot healing and object select. You'll also get access to Adobe's stock library, which makes licensing and importing outside images easy. Adobe said in a statement that it plans to release more features in the future. Because so much visual content is filmed and edited on phones, Tuesday's release will make it easier for professionals who are already Photoshop power users. It also helps the company stay competitive with other services like Canva and even AI companies introducing image and video generation abilities. Adobe's no stranger to AI; the company has been all-in on AI for the past few years. Its Firefly family of AI models is powering a number of generative AI editing tools across Photoshop, Lightroom and Premiere Pro. For more, check out the best Photoshop AI tools and the free Adobe app here to guard your photo's authenticity.

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