Tuesday, March 24, 2009
Free Video Hosts : A Quick Roundup
5GB/file - Registration Required
http://www.viddler.com/
50MB/file - Registration Required
http://www.veoh.com/
~1GB/file - Registration Required
http://tinypic.com/
(unknown)MB/file - (possibly) No Registration Required
http://www.hotshare.net/
300MB/file - No Registration Required
http://www.tubemogul.com/
300MB/file - Registration Required
http://www.hdshare.tv/
4096MB/file - Registration Required
http://www.vidoosh.tv/
(unknown)MB/file - Registration Required
http://filefront.com/
1GB/file - No Registration Required
Monday, March 23, 2009
Aviary : Edit images, create mind-blowing effects, design logos, find colors, collaborate, and more
Aviary is an aptly-named suite of online image manipulation tools. It comprises several pieces: Phoenix, an image editor, Peacock, a tool for building filters and creating effects, Toucan, an app for building palettes, and still under development is Raven, a vector graphics tool.
Like Photoshop, Aviary's files support layers. That means that you can do all of the layer-y things that you can do with Photoshop files: hide and show layers, move them up- and down in relation to other layers (overlapping), and move them around the screen as well. What you don't have to do is pay a huge amount for the privilege. And getting started is easy: they've got lots of tutorial videos to help you see what these tools can do, and how to get started.
Aviary is a free service. You'll need a web browser, but not much else, to use it.
Saturday, March 21, 2009
DAVID-laserscanner : Incredibly Low-Cost 3D Scanner for Everyone!
| | What do I need to build a 3D scanner? - A camera (e.g. web cam) Or use the brand-new DAVID Starter-Kit! If you don't want to start searching and tinkering, |
| | How does scanning with DAVID work? 1. Set up background and camera |
| | I'd like to see some results before buying or building anything! You will find some amazing results in our gallery and on the user pages in our wiki. Also you can download DAVID and use a test video file instead of a real camera, so you will have 3D data within a minute! More Questions? See Gallery (with amazing 3D results) |
Friday, March 13, 2009
Free Voice Line [Beta] : Call US/Canada for free
Call anyone, anywhere in the US and Canada for free!
FreeVoiceLine.com makes it super easy to call anyone in the US and Canada for free! This is the new way to get in touch with friends and family.
Simply enter your phone number, then the number that you want to call. Once you're ready, just click to call. FreeVoiceLine.com will call your phone and then connect you.
Have questions? Check out the frequently asked questions page.
Tell your friends, family, and loved ones about FreeVoiceLine.com Today!
Wednesday, March 11, 2009
Generate a File Listing from a Windows Explorer Context Menu
Recommended batch code:
dir /a /s /b /-p /o:gen >filelisting.txt
fileListing.bat
How many times have you been browsing through directories in Windows Explorer and wished you could generate a text file or printout listing the files and folders? It seems like such a simple request that it's amazing the option isn't available. You don't believe me? Right click on a folder and see for yourself if there is an option to list or print the structure. There isn't, but there is a workaround that doesn't require any third party software. Here's how to create a context menu item that when clicked will generate an editable text file listing of the selected directory.
Step 1 - Create A Batch File
To create the entry in the context menu it's necessary to first create a .bat file. The format for the .bat file is:
dir /a /-p /o:gen >filelisting.txt
The name of the .txt file can be whatever you'd like it called. In the example above it's filelisting, but it could just as easily be filelist, listoffiles, namedfiles, or even wally if you have a sense of the bizarre. Once you've decided on the name, create the file in Notepad and save the file in your Windows folder as shown below. If you want, just copy and paste the example up above if you don't find wally intriguing.
Fig. 01
Step 2 - Modify The Context Menu
Now that we have the .bat file created the next step is to make it functional and easily accessible by integrating it into the context menu that opens when a right click is executed. To do this:
Open Windows Explorer, click Tools, then click Folder Options.
Click the File Types tab, and then click Folder.
Click the Advanced button and then click New to pen the New Action box shown below.
Fig. 02
In the New Action [Fig. 02] box, type the name that you want to appear in the context menu. Once again, you have a wide latitude in choices but something akin to Create File Listing will probably be more useful than naming it Martha Stewart. As you can see in the example above, I ditched Martha in favor of Create File Listing. Sorry Martha. Browse to the location where the .bat file you created is located, select it and let it be the Application Used to Perform Actions. Click OK and do the standard Windows dance of Apply and OK again to close all the open windows.
That's it ! Congratulations. You've created a new item on the context menu that's ready to go to work. So now that's it there, what can you do with it? Open up Windows Explorer as I did in the example [Fig. 03] below.
Fig. 03
Navigate to whatever folder you want to use as the basis for the file list and right click to open the context menu. Click on the Create File Listing item and the list will be generated and displayed at the bottom of the open window as filelisting.txt. The example below was created from the Sample Music folder shown above. Since it is a text file it can be fully edited, copied, pasted, printed, etc for any purpose.
Fig. 04
Note: If for any reason you want to remove the Create File Listing entry from the context menu it will be necessary to edit the registry. This can be accomplished by navigating to HKEY_CLASSES_ROOT\Folder\shell\Create_File_Listing using regedit and deleting the Create_File_Listing key in the left pane. Close regedit and reboot to complete removal.
Additional File Modifications Submitted by TEG Readers
The following tip was sent in containing a very useful modification to the batch file;
Geert Pauwels
This is an excellent idea and very easy to implement. If you are creating the batch file for the first time just modify the file listed in the article so it reads;
dir /a /b /-p /o:gen >filelisting.txt
and continue with the instructions for completing the modification. If the batch file already exists in C:\Windows, navigate to the file, right click it and select Edit from the context menu and modify the file so it contains the /b switch. Save the changes and close the file. The change will modify the output so it appears as shown below.
Fig. 05
While it's easy enough to go into the C:\Windows directory and edit the batch file to generate the type of output preferred, depending on how often you change between the two output formats you may find it more convenient to create separate entries for each format that can be selected from the context menu. The procedure is simple.
-
Create one batch file using the /b switch and name it filelisting.bat.
-
Create a second batch file without the /b switch and name it filelisting1.bat.
-
Save both files in C:\Windows.
-
Modify the context menu as shown in Step 2 and Fig. 02 above, but this time go through the procedure twice and give each entry a different name in the Action line, assigning each entry a different batch file. I used the names "Create File Listing" and "Create File Listing Verbose" for this example, assigning the batch file with the /b switch to "Create File Listing" and the batch file without the /b switch to the "Create File Listing Verbose" entry.
-
Both entries are now on the context menu and available for use as shown in Fig. 06.
Fig. 06
The following modification was submitted by Antony
Hi,
Thanks for the tip on generating a directory listing from windows explorer - this has bugged me for ages.
Just wanted to add that when I run the command as listed, the file gets created in the directory that I want a listing for, but is never displayed automatically (I have to open it manually). This was annoying so I fixed it by doing the following:
Specifying that the directory listing file always gets saved in the same location.
Using the Start command to open the file with Notepad.
Here is the modified batch file.
dir /a /b /-p /o:gen >C:\Temp\List_Files.txt
start notepad C:\Temp\List_Files.txt
The following modification was submitted by Max
copy "C:\Temporary Location\textfile.txt" %1
dir /a /b /-p /o:GEN >"C:\Documents and Settings\
copy "C:\Documents and Settings\
del "C:\Documents and Settings\
Max
The following modification was submitted by Kevin
I've been trying to figure out how to capture a listing of files from within a folder -- but I don't want to print the list, just save it to a disc. (I'm sending a buddy a listing of all of the CD's that I've burned.)I found your article entitled, "Generate a File Listing from a Windows Explorer Context Menu" -- and although none of the solutions worked perfectly for me, I did some minor editing to give me what I needed.
I needed a batch file which would create a listing, allow me to cut, copy or print the contents, then delete the file itself (I have no need for a permanent file listing cluttering up my hard drive).
Here it is:
dir /a /-p /o:gen >filelisting.txt
filelisting.txt
del filelisting.txt
Saturday, March 07, 2009
Friday, March 06, 2009
Make Your Own Handwriting Fonts For Free
100% Free!
* Your own handwriting turned into your very own font for free
* Optionally include your signature
* You'll have your very own font within 15 minutes
* Make as many fonts as you like
* Use your fonts on Windows, Mac OS X and Linux
* Personalize your digital scrapbook pages
* Make your own "family handwriting history"
* Use your fonts in Microsoft Word, PowerPoint and every program that you own
High Quality Personal Handwriting Fonts
YourFonts allows you to upload large templates (up to 4000 x 5000 pixels) and it has the most advanced raster to vector conversion algorithm. Together this results in unbeatable high quality personal fonts.
It's easy and fun to digitize your handwriting, so go make your own font now!
Monday, March 02, 2009
Online Storage and Backup : A Quick Roundup
- 2.0GB of Free Storage
- Supports desktop (local disk) synchronization
- 2.0GB of Free Storage
- Supports desktop (local disk) synchronization
- 5.0GB of Free Storage
- 10.0GB of Free Storage
- Supports desktop (local disk) synchronization
- 6.0GB of Free Storage
- 25.0GB of Free Storage
- 6.0GB of Free Storage
- 1.0GB of Free Storage
- Potentially Unlimited Storage
- 50.0GB of Free Storage
Find private torrent sites accepting users with Trackerchecker
Private torrent trackers are great. If you're after hard-to-find files that don't make it to major sites like Piratebay or Mininova, you've likely tried to locate them on a private site only to learn that they're not accepting signups. I still remember what a pain in the butt it was to keep checking in on Demonoid years ago to see when a few more spots would open up.
Trackerchecker does its best to keep you informed about which sites are accepting new user registrations and which ones aren't. Over 500 trackers are currently supported, and they cover an incredibly wide range of specialties. As you can tell from the screenshot, they're not all SFW, but then again, you probably shouldn't be downloading from a private tracker at work anyway.
The code is easy to understand: green means you're good to go, red means you're out of luck for now. Sites that don't respond to Trackerchecker's queries in a timely manner are given a blue mark. If your desired site is taking signups, click its name to be taken directly to the registration page.
The listings also tell you when the last check was run on each site. Registering at Trackerchecker lets you build a list of favorites, making it easier to monitor only the sites you're actually interested in joining.
It's a great tool to add to your P2P bookmarks.
Free utility for downloading videos from MegaVideo
All you need to do is enter the URL of the video you want to download, click the add button to put it in your list of movies to download, and click the start button. Videos are downloaded as FLV files and can be converted and saved as AVI, MPEG, WMV, or FLV files. The utility will also tell you the size of a video file before you begin downloading.
Now, there are many files hosted on Megavideo that have been uploaded illegally, so we of course don't condone downloading or even watching these videos. And if you feel queasy about using software that's designed to get around paying for a legitimate service, you could always pay for a premium account and use the utility anyway. Megavideo Video Downloader allows you to create batch download jobs, which makes it pretty useful even if you're a paying member.

