Posted on May 27, 2011 by Perry under Blog, Free Software, Software Development
Interact:

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 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 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
Perry’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 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 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