Laughing Hyena
  • Home
  • Hyena Games
  • Esports
  • NFT Gaming
  • Crypto Trends
  • Game Reviews
  • Game Updates
  • GameFi Guides
  • Shop
Tag:

archive

The Internet Archive modernizes its GeoCities GIF search engine
Gaming Gear

The Internet Archive modernizes its GeoCities GIF search engine

by admin June 14, 2025


The Internet Archive made it easier to search for ’90s-era GIFs. GifCities contains millions of animations from the decade of flannel shirts and Soup Nazis. The GIFs were pulled from old GeoCities webpages, which (mostly) bit the dust in 2009.

The new version of GifCities is much easier to search. You can now search semantically, based on the animation’s content. In other words, it’s much more likely to bring up the topic or scene you’re looking for by describing it. In GifCities’ old version, you could only search by file name. (If you’re feeling masochistic, you can still access that version under a “Special search” tab.)

The updated GifCities also now uses pagination. That’s a good thing, as the old version’s infinite scrolling could make for slow browsing. You can also create and share “GifGrams.” As the name suggests, these are custom e-greetings made from those ancient GIFs.

Internet Archive

The Internet Archive launched GifCities in 2016 to celebrate its 20th anniversary. If you’re too young to know, GeoCities was the quintessential early internet web-hosting service. A precursor to social media, it was full of embarrassing fan pages, personal photo albums and “Under construction” GIFs. (You’ll find plenty of the latter in this search engine.) Yahoo pulled the plug on most of GeoCities in 2009. (Disclosure: That’s Engadget’s parent company.) However, the Japanese version survived for another decade.

If you’re of a certain age, you’ll likely enjoy browsing the archive. (Or, learn what passed for internet humor before you were born!) Just note that many results are NSFW. I made the mistake of searching for “Mr. T,” and I will now leave you to douse my eyes with bleach.



Source link

June 14, 2025 0 comments
0 FacebookTwitterPinterestEmail
The Steve Jobs Archive shares stories, videos, and notes of his famous commencement speech
Gaming Gear

The Steve Jobs Archive shares stories, videos, and notes of his famous commencement speech

by admin June 13, 2025


Thursday marks the 20th anniversary of Steve Jobs’ famous Stanford commencement speech, and the Steve Jobs Archive has marked the occasion by uploading an HD version of the speech, publishing notes Jobs emailed to himself, and sharing details about the leadup to the speech. You can see everything on a page on the Steve Jobs Archive’s website and watch the HD video on YouTube.

The website’s page about the speech is a little saccharine, but there’s no denying that the address has been very influential – LeBron James used the speech to help inspire the Cleveland Cavaliers during their championship NBA Finals run in 2016, for example – so I found it pretty cool to read some of the history of it all.

I particularly liked reading Jobs’ emailed notes with various outlines, themes, and drafts he was trying out. The website also has the interesting detail that Jobs “read his text verbatim” – given the confidence he had in his many famous presentations for Apple, I figured he might have ad-libbed parts of it. It’s all worth checking out, if you have a few minutes.

Jobs’ friends and family launched The Steve Jobs Archive in 2022 as a place to share things like photos, documents, and stories of the Apple co-founder.



Source link

June 13, 2025 0 comments
0 FacebookTwitterPinterestEmail
TAR compression
Product Reviews

Learn How to Archive Files in Linux with TAR

by admin June 11, 2025



Compressing files is a quick and easy way to archive and group files. There are many occasions where archives are useful, a driver download, file backup or Linux distro download. In this how-to we’ll look at various commands to create and extract data from compressed and uncompressed archive files.

Whilst you become accustomed to these commands it’s good to work with example test files and directories and you should take extra care to ensure you are carefully following the instructions.

All the commands in this how-to will work on most Linux machines. We’ve used an Ubuntu LTS install but you could run this how-to on a Raspberry Pi. All of the how-to is performed via the Terminal. You can open a terminal window on most Linux machines by pressing ctrl, alt and t.


You may like

Working with TAR archives

(Image credit: Tom’s Hardware)

When using Linux systems you are likely to come across tar archives as well as ZIP archives. It’s useful to practice creating .tar archives and also how to extract from a tar archive. Also of note is that sometimes TAR archives are referred to as tarballs. Tar archives in their standard form have the .tar suffix but these archives are not compressed. Compression is added using different tar compression tools which is why you will see tar archives with extra suffixes such as .tar.xz or .tar.gz.

To create or extract from these compressed archives you need additional arguments added to the tar command. We’re going to use two of the most popular compression methods, gzip and bzip2 along with a tar archive that has no compression.

Using a TAR archive

1. Open a new terminal window. This will open to our home directory.

2. Create a .tar file. Using test_directory as a target we’ll make a standard uncompressed .tar archive. This kind of archive is useful to group small files, such as logs into a single archive.

Get Tom’s Hardware’s best news and in-depth reviews, straight to your inbox.

$tar cf test_archive.tar test_directory

(Image credit: Tom’s Hardware)

Extracting TAR archives is straightforward. Instead of adding the c argument to create an archive we replace it with the x argument. We again need to add arguments that respond to the type of compression tool the archive was created with. When we extract from our 3 archives we would be creating duplicates of the test_directory contents so we will delete this directory each time we extract the next archive.

1. Delete the test_directory folder.

rm -r test_directory

2. Extract the standard .tar archive. After extracting the archive use ls to check the archive has been extracted.

tar xf test_archive.tar
ls

Using Gzip Compressed TAR Files

A gzip compressed tar archive (tar.gz) is one of many popular compression tools for TAR archives and it is common to find a .

1. Create a gzip archive by adding the z argument to the tar command.

tar czf test_archive.tar.gz test_directory

To extract a gzip compressed tar archive we need to add the z argument to identify that the archive uses the gzip compression method.

2. Delete the test_directory folder.

rm -r test_directory

3. Extract the gzip compressed tar archive using the z argument. Then list the directory contents to show that test_directory has been created.

tar xzf test_archive.tar.gz
ls

Using Bzip2 Compressed TAR Files

Another alternative compression method for a tar archive is bzip2, which is invoked using the j argument. Archives typically end with either a tar.bz2 or tbz suffix.

1. Create a bzip2 archive by adding the j argument to the tar command.

tar cjf test_archive.tar.bzip2 test_directory

To extract a bzip2 compressed tar archive we need to add the z argument to identify that the archive uses the gzip compression method.

2. Delete the test_directory folder.

rm -r test_directory

3. Extract the bzip2 compressed tar archive.

tar xf test_archive.tar.bzip2
ls
rm -r test_directory

(Image credit: Tom’s Hardware)

If we wish to extract an archive to a specific location we can use the C argument with the tar command and then specify the location. The location can be a relative or absolute path. So we can extract the archive to a sub directory inside a current directory, or we can specify the full path to another location in the file system.

Extract test_archive.tar into the Music directory. Here we are in the Home directory, and most Linux distributions feature a Music directory which we can extract the archive to.

tar xfC test_archive.tar Music
cd Music
ls

To extract to another location in the file system it is best practice to use an absolute path.

Extract test_archive.tar to your desktop directory. Specify the full path, tab completion can be used to auto-complete directory names. Remember to change to match your own.

tar xfC test_archive.tar /home//Desktop/
cd /home//Desktop/
ls

Armed with these few examples you are now capable of extracting most common archives on the command line. Whilst GUI tool options exist for some archives, often when dealing with a compressed .tar archives, these terminal commands are much quicker and easier to perform.



Source link

June 11, 2025 0 comments
0 FacebookTwitterPinterestEmail
A man with his eyes forcibly held open by sticks proclaims he must bust or else he's dust in advertisement for a game called 'Bust-A-Move'.
Product Reviews

The Game Informer archive just got upgraded with its entire backlog, so go experience the eye-melting world of ’90s game advertising

by admin May 29, 2025



It was a heavy loss in games journalism when Game Informer got kicked to the curb last fall, but it got over its own death pretty quickly when game dev and blockchain company Gunzilla financed its resurrection in March. A few projects were announced back then, including a return to print—but if you want to reminisce about the days when Game Informer was hot off the presses, its archive just got updated with its entire backlog of physical issues.

It’s free to view if you sign up for an account on the site, and goes all the way back to 1991. A blog post announcing the additions from editor-in-chief Matt Miller said: “In the coming months, we plan to surface specific legacy articles we believe are worth exploring. In the meantime, enjoy this new level of free access to the rich history of gaming we’ve covered over the last 34 years.”

The post notes it took some help from the Video Game History Foundation, Retromags, and one dedicated fan in particular: bogusfrank, “whose efforts to track down issues and preserve gaming magazine history now help us access our own company’s history and share it with all of you.” I doubt fans would have let these issues truly go lost, but having them on display in this free and accessible format is the best case scenario.


You may like

After digging around in the archive a bit, I must say it’s a great bird’s eye view of changing aesthetics for videogames and print journalism in general. Recent issues’ sleek, simple graphics are kind of a hilarious contrast to the garish color schemes and explosive cover arts of the ’90s and early aughts.

I especially love those old ads and box arts so proud of their primitive 3D character model renders that they’d throw them up front and center, seemingly certain it wouldn’t look like someone dropped their GI Joe in a bonfire a few years later.

I even stumbled on the classic ad for Akklaim’s Bust-A-Move 2: Arcade Edition, which implies the game is some sort of Clockwork Orange nightmare scenario. “Can’t stop. Must pop. Must bust,” it reads. Am I supposed to want to be the guy saying that?

They really knew how to do videogame ads in the ’90s. (Image credit: Akklaim (via Game Informer))

There’s also lots of valuable history and a rare sense of exhaustive preservation in the archive, so that’s fun too I guess. Check it out here and feast your eyes.

Keep up to date with the most important stories and the best deals, as picked by the PC Gamer team.



Source link

May 29, 2025 0 comments
0 FacebookTwitterPinterestEmail

Categories

  • Crypto Trends (921)
  • Esports (699)
  • Game Reviews (649)
  • Game Updates (816)
  • GameFi Guides (915)
  • Gaming Gear (879)
  • NFT Gaming (897)
  • Product Reviews (868)
  • Uncategorized (1)

Recent Posts

  • Dow retreats 200 points amid Walmart earnings miss
  • Black Myth: Zhong Kui Announced
  • Genshin Impact’s IRL event at gamescom teases Nod-Krai, Version 6.0, and yet another handsome anime man you’d better start saving your Primogems for
  • Top Binance Traders Cut XRP Longs Ahead of Powell’s Speech
  • MetaMask Confirms mUSD Launch, Backed by M0 and Stripe’s Bridge

Recent Posts

  • Dow retreats 200 points amid Walmart earnings miss

    August 21, 2025
  • Black Myth: Zhong Kui Announced

    August 21, 2025
  • Genshin Impact’s IRL event at gamescom teases Nod-Krai, Version 6.0, and yet another handsome anime man you’d better start saving your Primogems for

    August 21, 2025
  • Top Binance Traders Cut XRP Longs Ahead of Powell’s Speech

    August 21, 2025
  • MetaMask Confirms mUSD Launch, Backed by M0 and Stripe’s Bridge

    August 21, 2025

Newsletter

Subscribe my Newsletter for new blog posts, tips & new photos. Let's stay updated!

About me

Welcome to Laughinghyena.io, your ultimate destination for the latest in blockchain gaming and gaming products. We’re passionate about the future of gaming, where decentralized technology empowers players to own, trade, and thrive in virtual worlds.

Recent Posts

  • Dow retreats 200 points amid Walmart earnings miss

    August 21, 2025
  • Black Myth: Zhong Kui Announced

    August 21, 2025

Newsletter

Subscribe my Newsletter for new blog posts, tips & new photos. Let's stay updated!

@2025 laughinghyena- All Right Reserved. Designed and Developed by Pro


Back To Top
Laughing Hyena
  • Home
  • Hyena Games
  • Esports
  • NFT Gaming
  • Crypto Trends
  • Game Reviews
  • Game Updates
  • GameFi Guides
  • Shop

Shopping Cart

Close

No products in the cart.

Close