Skip to main content

Do a Google image search for 'Atari Breakout' and let the rest of your day disappear?

Always looking for new opportunities to turn its mammoth search engine and associated features into interactive and exceedingly distracting Easter eggs, Google has put on another show in honor of the 37th birthday of Atari's classic video game "Breakout." Just try typing "Atari Breakout" into Google's image search. Instead of getting the usual cluster of high- and low-resolution images of the retro paddle-based game, the screen then transforms all the images into tiny bricks for you to destroy in a game Google is calling "Image Breakout." Occasionally and for whatever reason, Google image search will redirect to another search entirely before activating the game. I got "Parmigiana" and "Chicago" in that order, so I was destroying tiny little bricks made out of Italian Parm sandwiches and Windy City landmarks. Originally created by Nolan Bushnell and Steve Bristow, "Breakout" debuted in 1976. It was based on a similar ball-and-paddle mechanic inspired by the legendary 1972 video game "Pong," and like its predecessors, "Breakout" would go on to inspire countless ports, spin-offs and sequels throughout the years. "Breakout" also became an early point of money contention between Steve Jobs and Steve Wozniak after Jobs, who was at Atari, contacted Wozniak (who was then working at Hewlett-Packard) to get help in essentially beating his Atari colleagues to the punch in designing a successful prototype. Wozniak later claimed that Jobs did not disclose the full commercial implications of his work on "Breakout," essentially cheating him out of bonus that Atari had guaranteed for successful completion of the game.

Comments

Popular posts from this blog

Sending Emails in Laravel with Gmail SMTP

This post will help you to fix issue like  Error : Swift_TransportException in StreamBuffer . php line 268 : Connection could not be established with host smtp . gmail . com [ Connection refused #111] Sending emails is crucial for any web application. Usually, an email is sent to notify the user of some kind of activity.Here are the steps to send email in laravel using Gmail SMTP. Generally Gmail is not recommended to send emails on live server, but if you just using it for testing purpose then follow these steps: 1. Visit   https://myaccount.google.com/security   make sure you have allowed  less secure app  to YES. 2. Unlock captcha on  https://accounts.google.com/b/0/DisplayUnlockCaptcha . 3. Generate APP password  Turn on 2-Step Verification for your account  https://myaccount.google.com/security. Your app might not support the latest security standards. Try changing a few settings to allow less secure apps access to your account. After enabling 2-Step V

Securing Your Emails: A Simple Guide to Email Authentication and Best Practices

Email security is crucial in today's digital landscape, and implementing authentication measures like DMARC, SPF, and DKIM can go a long way in safeguarding your domain. Here's an easy-to-follow guide to ensure your emails are authenticated and delivered securely: 1. Implement DMARC, SPF, and DKIM: Follow these steps for popular email services: Postmark Refer to the instructions provided in this link SendGrid Check the relevant information on their platform. Mailchimp Follow the recommended steps on their platform. 2. Validate Forward and Reverse DNS Records: Make sure your sending domains or IPs have valid forward and reverse DNS records (PTR records). Check resources for each service: Postmark Provides coverage for this aspect. SendGrid  Find the necessary information here Mailchimp Follow the guidelines specified by Mailchimp. 3. Maintain Low Spam Rates: Keep spam rates below 0.3% in Postmaster Tools and consider configuring Google Postmaster for additional insights into

NGROK for Laravel

Share Your Local PHP/Laravel  using Ngrok This post shows how to share your Laravel Framework Installation on Ubuntu but you can perform the same with other operating systems as well. What is Ngrok ngrok is a simplified API-first ingress-as-a-service that adds connectivity,security, and observability to your apps in one line.It allows you to create a tunnel very fast for free and Laravel has an internal webserver that can be used without configuration. Why Ngrok Ngrok allows developers to expose their locally hosted applications to the internet, which is useful for testing and debugging purposes. It eliminates the need to deploy the application to a remote server for testing, saving time and effort.Mostly Ngrok is used where we need to test webhook locally.Ngrok enables developers to receive these webhooks on their local machine, facilitating the development and testing of webhook-based functionality. How to use Ngrok Assuming you have Laravel installed correctly, you can follow