Categories
Subvert

Shortcut to Repository

You can create a desktop shortcut to a repository location with tortoise using the following command in a shortcut:

TortoiseProc.exe /command:repobrowser /path:"url/to/repository"

I wonder what else you can do with TortoiseProc? Update. Revert. Export. Createpatch. Otta be able to create some cool deployment scripts this way. Documentation.

Categories
Subvert

Mindless Link Day

Remote Buddy is really cool remote control for your Mac media center.

I found a Database Journal Article about how to access a web service from MS Access.

I’m a bit curious about Google Grandcentral. It looks like an exciting new single-number phone service.

SSH for my iPhone? Can I really deal with doing sysadmin on a keyboard that small?

Categories
Subvert

Free VMWare Infrastructure

Install VMWare ESX3i on a USB Key

  1. Open VMware-VMvisor-InstallerCD-3.5.0_Update_2-103909.i386.iso with 7-Zip.
  2. Extract install.tgz.
  3. Open install.tgz in 7-zip.
  4. Extract /usr/lib/vmware/installer/VMware-VMvisor-big-3.5.0-67921.i386.dd.bz2
  5. Extract VMware-VMvisor-big-3.5.0_Update_2-103909.i386.dd from VMware-VMvisor-big-3.5.0-67921.i386.dd.bz2 uxing 7-zip.
  6. Download dd.exe version 0.5 from <a href="http://www.chrysocome.net/downloads/dd-0.5.zip.
  7. http://www.chrysocome.net/downloads/dd-0.5.zip.</li>

  8. Execute ‘dd –list’.
  9. Find USB Key in list, mine looks like ‘?DeviceHarddisk3Partition0’.
  10. Execute ‘dd if=VMware-VMvisor-big-3.5.0_Update_2-103909.i386.dd of=?DeviceHarddisk3Partition0 bs=1M –size –progress’.
  11. Unplug the USB flash drive (Warning: If you forget to unplug the flash drive from the PC you might lose the data on your hard drives the next time you boot!)
  12. UAttach the USB flash drive to the machine you want to boot (Warning: If ESX Server 3i recognizes local drives, you might lose the data on it, so make sure you don´t need it anymore or unplug all hard drives!)
  13. Turn the machine on and make sure the USB flash drive is selected as boot device
  14. Watch ESX Server 3i boot
  15. Configure
  16. Enjoy!

Hints

VI Toolkit – For scripting with powershell or others.
Enable remote ssh to ESX3i
esExpress – VMWare backup (maybe compatible in September
VM-Help

Categories
Subvert

Sewing MLP

Categories
Subvert

Running VMWare Server 1.x on Vista 64 / Server 2008

VMWare 1.x doesn’t have signed drivers, which the x64 versions of Windows require. But there’s a fix documented in the VMWare Forums involving the use of a Signed Driver Requirement Prevention Driver called ReadyDriverPlus.

Categories
Subvert

.NET References

Categories
Subvert

MVC Resources

The show notes for this Polymorphic Podcast could keep me in fun reading for a few weeks.

Categories
Subvert

CSLA Templates

It’s pretty easy to make a class into a template. Not everything get’s magicified, but it works and saves time. There’s some discussion of this in this forum post

Categories
Subvert

CSLA MSDTC Problems

If your data access methods open multiple database connections in a Transaction scoped csla method, you’re going to get MSDTC errors (hopefully! since if you don’t you’re dev machine has too much good stuff on it and then you’re going to get the transaction controller errors later when you deploy.). There are two solutions to this: 1) (quick and dirty) eliminate the Transaction scopes. This doesn’t do good things for data integrity, but it prevents problems. 2) share the connection and transaction. This requires some extra code. (see this forum post). This may be in later versions of CSLA than the 2.0 documented in my book, but I’m waiting on the 3.5 book rather than having to buy all the supplements AND a new book in the fall.

Categories
Subvert

ASP.NET Master Pages

Master Pages: Tips, Tricks, and Traps: You’d think master pages were self-explanatory, but there end up being things you need to be wary of or work carefully around. This article is a very helpful summary of a number of those hazards.