This tutorial demonstrates how to load and manipulate (resize in this example, but once you have access to the API you can do a whole lot of other things) FlashPaper 2.0 SWF files with ActionScript 2.0.
For all of you out there who use vi on a regular basis . . . I recently needed to do a search and replace on a large document and needed to key off of the new line characters in the document.
After a bit of searching here's what I found:
If you need to do something like, search for all new lines and add the new line plus "foo" do the following:
:1,%s/\n/^Mfoo/g
You get the ^M character by pressing ctrl-v and then hitting enter.
Let's say you have a disk that you want to put in an external USB enclosure, mount and read some files. What if it's a boot disk that uses LVM? What if you have two LVM groups with the same name?
Here's a quick how-to on mounting just this type of LVM volumes from a USB disk.
I'm working on a project whereby I need to access an svn Subversion repository over ssh (svn+ssh) on a Windows box. Following is a step by step of how I got it all working using the svn command line client on Windows XP connecting to a Subversion repository on a linux box running CentOS 5.
Click on "Read More" for the whole article on how to get it all set up.