New Winamp 5.5 Easter Egg

This article was written on November 02, 2007 by CyberNet.

Winamp 5.5 has all kinds of great new features, but one of my favorite things is the new Bento skin that it includes. It’s not only slick, but also very functional. Pieter over in our forum posted a cool Easter Egg that involves the Bento skin, and I think you’re going to like what you see.

The process of activating the Easter Egg isn’t new, but the result is different than it used to be. Here’s how you activate it:

  1. Give Winamp’s main window focus.
  2. Press the following keys: N, U, L, Escape, L, Escape, S, O, F, T.

Pressing the Escape key is necessary because the “Open File” dialog box pops up after pressing the “L” key. Here’s an alternate way to do it:

  1. Give Winamp’s main window focus.
  2. Press and hold the Shift and Control keys, then type : N, U, L, L, S, O, F, T.

In older versions of Winamp it would add “IT REALLY WHIPS THE LLAMA’S ASS!” to the title bar of the application (as seen in this screenshot), but if you’re using Winamp 5.5 with the Bento skin you’ll see something a little different. Whenever you play a song the transparency of the skin will “throb” in and out. Here’s what it looked like at one point while playing a song:

Winamp Transparent 

It can really make you go crazy after a little while, but it is cool nonetheless. The player will return to normal when you restart the program, so there is no need for you to frantically trying to disable the Easter Egg. ;)

I was also glad to see that one of my favorite Easter Egg’s still exists in the program. Pull up the Winamp Preferences and go to Input -> Nullsoft Vorbis Decoder and then press the About button at the bottom. Start clicking the little fish as fast as you can with your mouse and see how many RPM’s you can get:

Winamp Spin the Fish

You gotta love Easter Egg’s. :D

Copyright © 2011 CyberNetNews.com

Related Posts:


Reserve Part of Your Screen with DesktopCoral

This article was written on April 03, 2008 by CyberNet.

The other day we wrote about a nifty Yahoo widget called Informer that’s an extremely customizable toolbar. One of the commenters, “Change,” was wondering whether there’s a way to reserve the screen space associated with toolbar like Informer so that other applications won’t cover it up.

What they needed is not simply an “always on top” program which are actually rather abundant, but they needed something that would occupy the screen space in a manner similar to a sidebar or the Windows Taskbar. I spent a few minutes searching on the Internet before coming up with the free DesktopCoral.

This program essentially creates a transparent toolbar that can be docked along any side of your screen. You can adjust different aspects of the toolbar including the height and width:

desktopcoral

I have to admit that this is quite a clever concept, and there are a variety of reasons where it could be useful. The Informer widget is a great example, or maybe you want to have a section of your desktop always be visible. Just make sure you check the Transparent Mode box once you get it positioned and adjusted to the correct size.

DesktopCoral officially works with Windows 2000/XP, but I didn’t have any troubles with it on Vista either. It’s completely free, but to get rid of the nag screen you’ll need to create an account over at DonationCoder.com in order to get the free registration key.

Copyright © 2011 CyberNetNews.com

Related Posts:


How To Defuse a Bomb

This morning a young Australian woman had a bomb strapped to her freaking neck in what seems to have been an extortion attempt. Terrifying. Luckily the bomb squad saved the day. But how exactly do they safely kill bombs dead? More »

How to Make Your Computer Launch Everything You Want, Automatically, Every Time You Start It

So you’re tired of getting to work each day and having to launch all your apps and websites and arrange everything just so. What if your computer could do it for you. Guess what? It can! Here’s how. More »

How to Supercharge Your Air Conditioning

It’s hot. Parts of your body are sticking to other parts of your body, and it’s horrible. Lucky for you, you’ve got air conditioning. Unlucky for you, A/C is a real punisher on the power bill. More »

Batch Convert Videos Using Handbrake and AppleScript

This article was written on October 20, 2010 by CyberNet.

handbrake conversion.pngarrow Mac Mac only arrow
I’ve been working with some AppleScript lately to help with my video conversions, and I’ve come up with something that saves me quite a bit of hassle. It uses the free command-line interface of Handbrake called HandbrakeCLI, and is able to convert all videos from specified extensions (ex. avi and mkv) to something that is a bit more widely supported (ex. MP4). All you have to do is point it to a directory and it will start converting all matching videos one-by-one.

How does it work? This is (kind of) a step-by-step walkthrough of how the code processes files if you’re using it without any reconfiguration. You can, of course, tailor it a bit more to your needs.

  1. The script looks at a drive called “SecondaryHD” in a directory called “Movies” for any video files that have an extension of AVI or MKV (it even looks recursively through all subfolders), and also makes sure that the video has no label color assigned yet. You’ll find out why the label color thing is important in the next step.
  2. It loops through all of the files it found, and before it begins processing it sets the label color of the file to gray. That way if you run multiple instances of this at the same time it will not process the same file twice. If you do run this multiple times, however, it only runs one instance of Handbrake at a time.
  3. It now runs the HandbrakeCLI using a set of parameters that I’ve found to work well on my Xbox 360 (I know the bitrate is unnecessarily high at 4000Kbps, but it helps make sure I don’t lose quality). You can configure the parameters to your liking using the information on this page. Also, it’s important to note that the command is run using “nice”, which will run the conversion process using low priority. That way it shouldn’t affect the overall performance of your system.
  4. It sets the label color of the original file to green, which assuming the next step works will be worthless. It’s just good measure.
  5. The original file is deleted so that all you have left over is the MP4 version of the original video.
  6. That’s it. If any error occurs during the conversion process or on any of the other steps the label color of the original file will be set to red. That way you’ll know something didn’t go as expected. Plus if the label color is set to red the video will not be reprocessed if you decide to run the script again, unless you manually remove the label color by right-clicking on the file.

Here is the code (download the script):

--on adding folder items to this_folder after receiving these_items

with timeout of (720 * 60) seconds

tell application "Finder"

--Get all AVI and MKV files that have no label color yet, meaning it hasn’t been processed

set allFiles to every file of entire contents of ("SecondaryHD:Movies" as alias) whose ((name extension is "avi" or name extension is "mkv") and label index is 0)

--Repeat for all files in above folder

repeat with i from 1 to number of items in allFiles

set currentFile to (item i of allFiles)

try

--Set to gray label to indicate processing

set label index of currentFile to 7

--Assemble original and new file paths

set origFilepath to quoted form of POSIX path of (currentFile as alias)

set newFilepath to (characters 1 thru -5 of origFilepath as string) & "mp4'"

--Start the conversion

set shellCommand to "nice /Applications/HandBrakeCLI -i " & origFilepath & " -o " & newFilepath & " -e x264 -b 4000 -a 1 -E faac -B 160 -R 48 -6 dpl2 -f mp4 –crop 0:0:0:0 -x level=40:ref=2:mixed-refs:bframes=3:weightb:subme=9:direct=auto:b-pyramid:me=umh:analyse=all:no-fast-pskip:filter=-2,-1 ;"

do shell script shellCommand

--Set the label to green in case file deletion fails

set label index of currentFile to 6

--Remove the old file

set shellCommand to "rm -f " & origFilepath

do shell script shellCommand

on error errmsg

--Set the label to red to indicate failure

set label index of currentFile to 2

end try

end repeat

end tell

end timeout

--end adding folder items to

Notes about the code:

  • You can specify any extensions you want to include in the conversion process, but it really only works with extensions that are 3 characters based on the way it generates the filename of the new path. I’m sure this can be improved, but I only wanted AVI and MKV files converted.
  • You’ll likely need to update the folder location that is searched. The way the path is specified is in an AppleScript format, and this may help you if you’ve never dealt with them before.
  • This is is assuming you’ve downloaded HandbrakeCLI and put it in the Applications folder.
  • You can use this with folder actions if you uncomment the first and last lines. Keep in mind that this enables it to run when a file is added to a particular folder, but will still process every matching file in that folder. It doesn’t actually use the items it is passed.
  • You can schedule this to run at certain times using iCal.
  • Try downloading the script directly if you copied and pasted the script and are having troubles. There may be some characters that got incorrectly encoded when being posted here, and won’t translate well in the code.

If you’ve got any updates to the code please feel free to send them our way. There are probably much more elegant ways of doing this, but this works well for me. Hopefully this will at least point some of you in the right direction for creating your own scripts.

Copyright © 2011 CyberNetNews.com

Related Posts:


Keyboard Shortcut to Paste Plain Text

This article was written on September 10, 2009 by CyberNet.

puretext.png

arrow Windows Windows only arrow
There are some things I never understood with Microsoft. For example, why was it never possible until Windows 7 to have a keyboard shortcut for creating a new folder? Or for that matter why was there not even a toolbar icon you could add to perform that action? At least in Windows 7 they finally assigned Ctrl+Shift+N for creating a new folder, but that’s not the only thing that’s perplexed me.

Another thing that bothers me is why they make it so difficult to paste plain text in Microsoft Office. In Office 2007 you have to click the menu button located underneath the “Paste” icon, select “Paste Special”, select the “Unformatted Text” option, and then click “OK.” Really? I mean really? When I click the paste menu why would it not offer me three options: paste, paste unformatted, and paste special? I have a hard time believing that I’m the only one with this issue. Oh well, I know I’m talking to a wall.

If you feel the same way there’s a pretty nice app called PureText that makes the whole process a lot easier. You can create a customizable keyboard shortcut (default is Windows Key+V) that when pressed will insert the clipboard contents as plain text. All text formatting will be removed, but line breaks, tabs, and other “white space” is preserved. The clipboard contents also remains in-tact so that you can still paste the formatted version using Ctrl+V later on down the road if you need to. And the cherry on top is that it works across all Windows applications.

PureText is free, and doesn’t require any installation. All you have to do is download and run it to get started where it will sit in your System Tray. Just click on the icon if you want to change any of the settings.

PureText Homepage (Windows only; Freeware; Portable; Tested on Windows 7 64-bit)

Copyright © 2011 CyberNetNews.com

Related Posts:


CircuitBee lets you share schematics, like Scribd for soldering aficionados

CircuitBee

Instructables is great, don’t get us wrong, but if you’re just looking for a sweet new Arduino project or a super-charged Atari Punk Console, wading through the piles of Lego swords and wreath-making tips can be frustrating. Enter CircuitBee, a document sharing site dedicated to one thing, and one thing only — schematics. It’s kind of like Scribd but, instead of being loaded with court documents and shoddy how-to books, it features user-uploaded circuit diagrams to get you started on your next soldering and etching project. The selection at the site is rather sparse at the moment, but since it’s only in alpha we’ll cut it some slack. Check out the site at the source link, and don’t be surprised if a few submissions from your favorite Engadget writers start popping up.

CircuitBee lets you share schematics, like Scribd for soldering aficionados originally appeared on Engadget on Thu, 28 Jul 2011 13:37:00 EDT. Please see our terms for use of feeds.

Permalink Slashdot  |  sourceCircuitBee  | Email this | Comments

How To Keep Your iTunes Library When It Won’t Fit on Your Hard Drive

Ultraportable notebooks are finally fast enough that we can use them as our main machines. But damn, the SSDs they pack are small—how are you supposed to fit your entire music library on one of these? You’re not. More »

Freeware to Monitor Bandwidth Usage

This article was written on December 22, 2009 by CyberNet.

networx.png
(Click to Enlarge)

arrow Windows Windows only arrow
There are some situations where it’s nice to monitor the amount of bandwidth that’s being used by your computer. One reason would be if your Internet Service Provider (ISP) caps the amount of data that you’re allowed to plow through in a given month. This kind of thing is especially prevalent in wireless carriers who tend to cap Internet usage at about 5GB per month, which actually isn’t all that much when you get into watching YouTube videos or streaming music.

Networx is a freeware utility for Windows that tries to provide you with every possible tool you can imagine for monitoring your bandwidth usage. You can see graphs of your usage, view your transfer rate, get detailed reports organized by time period or by the user logged into the machine, and keep an eye on how close you are to reaching your quota. Here are some more features it offers:

  • Clear graphic and/or numeric display.
  • Usage reports with export to a variety of file formats, including Excel, MS Word and HTML.
  • Permits close supervision of uploads and downloads.
  • Works with dial-up, ISDN, cable modems, ADSL, Ethernet cards, and more.
  • Includes network information & testing tools with advanced netstat that displays applications using your Internet connection.
  • Scalable to your own modem download capabilities.
  • Option to notify user or disconnect from the Internet automatically when network activity exceeds a certain level.
  • Speed meter to accurately time downloads and report the average transfer rates.
  • Dial-up session journal with detailed information about every session.

On top of all that Networx can also be used on-the-go thanks to the portable version, which means there’s nothing you need to install on your PC to start using it. And when you run it for the first time there’s nothing that you have to configure… it will just sit in your System Tray and immediately start keeping tabs on your network activity.

It’s not often that I come across an app that thoroughly covers what it sets out to, but this one does. If you want something that monitors bandwidth usage, this has got to be the best freeware utility available to do it. The wide range of utilities and customizability make this an extremely versatile app that will be tough to beat.

Networx Homepage (Portable Freeware, Windows only)
Thanks Tyler for the tip!

Copyright © 2011 CyberNetNews.com

Related Posts: