Search This Blog

Friday, July 3, 2009

Create Ubuntu Shared Folder in Virtual Box

  • Shutdown your VirtualBox Ubuntu session if it is running
  • In your host operating create the folder you want to share - e.g. ubuntuShared
  • From the VirtualBox control panel, click on your Ubuntu Virtual Machine
  • In the right hand panel, click shared folders
  • A window will open to manage shared folders. Click the add folder icon on the right hand side
  • Navigate to the folder you created in your host operating system and click choose
  • Click ok to close the navigator window
  • Ensure that your selected folder is highlighted in the shared folder panel and click ok
  • Start your Ubuntu session and log in
  • Open a Terminal session (Applications->Accessories->Terminal)
  • Create a mount-point directory for your Shared Folder - e.g. sudo mkdir /media/windows-shared
  • Mount your shared folder over your newly created directory - e.g. sudo mount.vboxsf ubuntuShared /media/windows-share

http://developer-repository.blogspot.com/2008/12/create-ubuntu-shared-folder-in-virtual.html

Saturday, June 6, 2009

.NET Framework Library Source Code

  1. Download and install this QFE.
  2. In Visual Studio goto Tools > Options > Debugging > General and turn off "Enable Just My Code" and turn on "Enable Source Server."
  3. Go to Symbols and add this URL http://referencesource.microsoft.com/symbols and a local cache path. Make sure "search only when symbols are loaded manually" is checked.
http://www.hanselman.com/blog/NETFrameworkLibrarySourceCodeAvailableForViewing.aspx

http://weblogs.asp.net/scottgu/archive/2008/01/16/net-framework-library-source-code-now-available.aspx

Friday, June 5, 2009

How to block Windows Live Mail Ads

  1. Start > Run > Cmd
  2. cd \Windows\System32\drivers\etc
  3. edit hosts
  4. add
    127.0.0.1 view.atdmt.com
    127.0.0.1 rad.live.com
  5. Save

http://www.mydigitallife.info/2007/02/04/block-hide-and-remove-windows-live-mail-ads/

Saturday, April 18, 2009

Using Borland Turbo C++ 3.0 to make a .com file

First of all we need to compile our program using TINY Memory Model. In Borland Turbo C++ 3.0 Editor, goto Options > Compiler > Code Generation > Select "Tiny" as "Model".

Now compile your program. Once successfully compiled, open command prompt and goto the directory where the TC has created the exe file. Now using Exe2Bin convert your exe file to com file.

Exe2Bin Syntax
exe2bin [drive1:][path1]InputFile [[drive2:][path2]OutputFile]

Parameters
[ drive1 : ][ path1 ] InputFile : Specifies the location and name of the input file that you want to convert. InputFile is required.

[ drive2 : ][ path2 ] OutputFile : Specifies the location and name of the output file that you want to create.

/? : Displays help at the command prompt.

Exe2Bin Common Error Messages

Borland Turbo C FAQ