Tag Archives: FreeStuff

Nest (Your PC on the Internet)

Nest

Access your files from anywhere.

If you’re like most people who have accumulated a large collection of personal photos, music, and videos on your computer at home, but wish you had access to everything whenever and wherever you are, then Nest might be for you!

Or maybe you’re a business owner who’s frequently out of the office. Install Nest on your workstation. Leave town. Open Nest on your smartphone. Start browsing your files!

Your computer + Nest = Your computer on the internet

Or to put it another way, Nest turns your computer into a “Personal Cloud where you can access your files remotely via a web browser from almost any device, much like the new cloud music players, only you host all of your own files.

In a nutshell, Nest is…

  • A remote file browser
  • A remote music streamer with playlist support
  • A remote image viewer with slideshow support
  • A remote document viewer

Don’t allow big corporations to store and own your intellectual property!

Continue reading

Perry’s ID3 Tag Library

ID3v2Perry’s ID3 Tag Library is a free ID3v1 and ID3v2 tag parsing utility that has been tested to work with Visual Studio, VB.NET, ASP.NET, Visual Basic for Applications and VBScript. Use the library as a reference in your own Visual Studio project to parse ID3 tag data embedded in MP3 files. This library is useful for anyone looking to implement ID3 tag capabilities in their own custom solutions and applications. The ability to write tag data will be supported in a future release.

The ID3TagLibrary is pretty simple to use:


Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  ' create an mp3 object from a file on the hard drive
  Dim mp3 As New ID3TagLibrary.MP3File("C:\song.mp3")
  ' put the mp3's title into a label control
  Label1.Text = mp3.Title
  ' put the mp3's artwork (if any!) into a picturebox control
  PictureBox1.Picture = mp3.Tag2.Artwork
End Sub

Continue reading

Perry’s Reverb Rhythm Calculator

Screenshot 1Perry’s Reverb Rhythm Calculator is a utility for musicians (as well as mixing and mastering engineers) that will compute reverb pre-delay and decay values (in milliseconds) for you to use with your reverb plugins. These values are specifically synchronized to the rhythm of a chosen Tempo (BPM), and an offset slider allows for slight adjustments to the output.

Continue reading

GO Detach for Outlook

Screenshot 1Introducing GO Detach for Outlook. This small add-in lets you bulk save e-mail attachments (or body text) from Outlook to your hard drive. Whether you use it to free up space in your mailbox or personal folder (PST) file, GO Detach will boost your productivity by automating several repetitive tasks at once. For example, GO Detach can save multiple attachments from multiple emails into separate folders based on certain criteria of your choice. Be sure to check out the screenshots.

Continue reading

Introducing Perry’s ID3 Tag Viewer

A few years ago I attempted to write an ID3 tag parser for MP3 files. The ID3v1 specification was easy to understand and implement, but the complex ID3v2 specification threw up some hurdles with SyncSafe integers, encoded bits, multiple sub-versions (ID3v2.2.0, ID3v2.3.0, ID3v2.4.0), and custom frame data. Needless to say, I couldn’t implement the specification properly and my parser would trip up on certain MP3 files, but I’ve recently revisited this project and fixed the showstopping bugs.

Continue reading

Perry’s ID3 Tag Viewer

Screenshot 1Perry’s ID3 Tag Viewer parses ID3v1 and ID3v2 tags stored in MP3 files. Not only does it extract common data such as the Artist, Album and Title, but it also extracts frames that contain data which MP3 players and tagging software simply do not care about, such as Private (PRIV) frames, User Defined Text Information (TXXX) frames, and other custom third-party frames that might contain hidden/encrypted data. Perry’s ID3 Tag Viewer utilizes a custom ID3 tag parsing library written from scratch, based on the official specifications at ID3.org.

Continue reading

Perry’s Batch Outlook Item Property Editor

Perry’s Batch Outlook Item Property Editor can be used to edit the properties of multiple items in Microsoft Outlook. I find it most useful when I create a custom Outlook form and I need to change the MessageClass property on a group of items so the items can use the new custom form.

Continue reading

Perry’s Batch File Rename Utility

Perry’s Batch File Rename Utility can be used to rename several files at once based on your specifications. Files will be renamed according to the Rename Sequence that you specify, which is based on one or more Filters. Available Filters include Serial Number, Insert Text, Replace Text, Trim Start, Trim End, Original Filename, Original Extension, Date Created, Date Modified, and Date Accessed.

Continue reading