Archive for the ‘a’ Category

Guide to buying a used guitar : Learn where to look and what to look for when purchasing a used electric or acoustic guitar

May 6, 2009



Where to look:

  • craigslist > musical instruments
  • Kijiji > buy and sell > musical instruments
  • Other online classifieds

What to look (out) for:

Take a look at the sample ad below. On the first look it looks like a really good deal. It comes with a cool box. Only few scratches and chips? No biggy. And all those cool sounding specs. This is the best deal in the world!

Lets take a dive into reality now. The cool box, which is obviously not very portable because of its weight, is a bait for potential customers.
The ad fails to mention that each scratch and chip can cost the potential customer $50-$100 to repair. Yes, even the small one may cost that much to repair. Also don’t take the advice to cover up those cracks and chips by yourself. That will cost you more when repairing the finish, since the repair guys are paid by the hour on top of labor. It takes hours to repair a small chip, and when you cover it up it makes the job harder and more time consuming for the repair guy.
And those cool specs are standard on most guitars.

Here are some really good and elaborate guides on buying a new or used guitar:
http://www.guitarnoise.com/lesson/how-to-buy-a-used-acoustic-guitar/
http://www.essortment.com/all/buyusedguitar_rmfh.htm
http://exclaim.ca/musicschool/needtoknow.aspx?csid1=86
http://musiced.about.com/od/beginnersguide/qt/buyguitar.htm
http://www.sweetwater.com/shop/guitars/electric-guitars/buying-guide.php
http://www.sweetwater.com/shop/guitars/acoustic/buying-guide.php
http://pages.ebay.com/buy/guides/vintage-electric-guitars-buying-guide/
http://www.guitarimports.com/acoustic-guitars.htm
http://www.musiciansfriend.com/document?doc_id=99234
http://www.guitarbitz.com/buyersguide.asp
http://www.ultimate-guitar.com/columns/the_guide_to/beginners_guide_to_buying_an_acoustic_guitar.html
http://www.guitar-resource-center.com/beginners_electric_guitar.html
http://www.associatedcontent.com/article/52426/the_complete_guide_to_buying_the_guitar.html

Free Video Hosts : A Quick Roundup

March 24, 2009

http://www.megavideo.com
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

Generate a File Listing from a Windows Explorer Context Menu

March 11, 2009

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;

Adding the “/b” switch to the proposed batch file will create a “bare format (no heading information or summary)” text which makes the output much easier to copy and manipulate. It eliminates all the other garbage in the output file.
Best regards,

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:

  1. Specifying that the directory listing file always gets saved in the same location.

  2. 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

Hello, I enjoyed learning how to create file listing with the method provided on http://www.theeldergeek.com/file_list_generator.htm
I have however created a modification that people should enjoy.
By adding the line cd %1 to the top of the bat file, you can right click on a folder select Create a File List, and then the txt file will be saved inside that folder with a listing of the contents of that folder.
The next modification prevents the generated textfile from being listed within its self. The two lines are added under the dir command.

copy “C:\Temporary Location\textfile.txt” %1

del “C:\Temporary Location\textfile.txt”
Thus, my entire bat file looks like this:
cd %1
dir /a /b /-p /o:GEN >”C:\Documents and Settings\\Local Settings\Temp\filelist.txt”
copy “C:\Documents and Settings\\Local Settings\Temp\filelist.txt” %1
del “C:\Documents and Settings\\Local Settings\Temp\filelist.txt”
Please remember to use the quotations…otherwise, dos won’t be able to deal with the spaces.
Enjoy,

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

Self-Destructing Messages: A Quick Roundup

March 7, 2009

https://i0.wp.com/www.sdmessage.com/images/banner.jpg
http://www.sdmessage.com/

https://i0.wp.com/www.destructingmessage.com/images/_layout_02.gif
http://www.destructingmessage.com/

https://i0.wp.com/www.makeuseof.com/dir/wp-content/uploads/2008/02/kicknotes.jpg
http://www.kicknotes.com/

https://privnote.com/static-1.6.0/images/logo.png
https://privnote.com/

https://i0.wp.com/www.self-destructing-email.com/asis/btracksde.gif
http://www.self-destructing-email.com/self-destructing-email/

Free MySQL database hosts: A quick roundup

February 28, 2009

FreeMySQL.net
FreeMySQL.net are the leading provider for absolutely FREE MySQL Database Hosting. With their control panel you’ll the extra edge to managing your free databases. They provide an even higher level of support and service to their clients. Also being the absolute first free mysql database provider to have a control panel for their clients to manage the free databases, they give you the option to have multiple databases under one account. You are never limited to how many you can create, with a max of five at one time.
They also have the bragging right for being on the top of the search result for “free mysql” query on both Google and Yahoo.
Google: #1
Yahoo: #1

db4free.net
The db4free project provides a platform for database users and developers from all over the world to exchange experiences, give hints to each other or to discuss. This offer also gives you the chance to learn to deal with databases without having to rent a server for money.
New: now offering an additional MySQL 6.0 account (running on Port 3307 – check it out!)

FreeSQL.org
The creator of FreeSQL.org created this host so that users could easily create a database to practice writing SQL, and database applications without having to worry about administration. This site is currently a dramatic work-in-progress following a web server crash.

bluesql.net
Bluesql.net is free mysql server
*running MySql 5.1.30
*phpMyAdmin 2.11.5.1

How to Create a bootable USB Memory Key

February 22, 2009

If you do not have a floppy disk drive, you may want to create a bootable USB memory key which will allow you to boot into a pure DOS environment. This can be very useful if you want to flash your BIOS. Here is a step by step procedure on how to perform this operation.

NOTE: Your computer must support booting from a USB device in order to boot from the USB Memory Key.

Step 1 – Download and install the Windows based HP USB Disk Format Tool. For your convenience, you can download it from HERE.

Step 2 – Download the Windows 98 system files from HERE. This is a zip file that contains all of the system files that you will need. Create a new folder and extract these files into the folder that you just created. Make sure that you preserve the directory structure.

Step 3 – Insert the USB Memory Key into the USB port of your computer.

NOTE: Make sure that the lock/unlock switch (if present) is set to the unlock position.

USB MEM KEY 1

Step 4 – Launch the HP format tool program.

Under the device drop down list, make sure that the USB memory key is selected.

USB MEM KEY 2
Step 5 – Under the file system drop down list, select FAT32. This is important to do correctly.
USB MEM KEY 3

Step 6 – Check the box next to Create a DOS startup disk.

Select “using DOS system files located at:

Then click on the square box with 3 dots on it.

USB MEM KEY 4
Step 7 – Browse to the folder that you extracted the Win98 system files and then click on the OK button.
USB MEM KEY 5
Step 8 – Now click the Start button.
USB MEM KEY 6
Step 9 – You will receive a warning message. Make sure you have the USB memory key selected. If you are sure, then click the Yes button.
USB MEM KEY 7

Step 10 – Your USB memory key is now being formated and the DOS system files will be copied onto it.

Once the program has completed the operation, click on the Close button.

You now have a bootable USB memory key.

USB MEM KEY 8
On the USB memory key, you will see these files. These are the basic Win98 system files.
USB MEM KEY 9

Laptop Battery Hack! Don’t Buy A New One!

January 3, 2009

How To Pick A Padlock With Only Two Paperclips!!!!!

October 26, 2008

Avoid talking to the customer support bot!

September 22, 2008

When you’re tired of wasting money and time due to phone systems that require you to press 10 or more options in order to reach a real person and spending many minutes or even hours on hold, consult the GetHuman database of secret phone numbers and codes that immediately get an actual, live person on the line for customer service at nearly 1000 major companies. Click here for a full list or use our search below to find a company by part of its name, industry and/or country.