Tested with Ubuntu 11.10 and XBMC 11.0 Eden beta:
all settings are stored in folder /home/<yourusername>/.xbmc
So you have to copy this folder to the new machine.
Tested with Ubuntu 11.10 and XBMC 11.0 Eden beta:
all settings are stored in folder /home/<yourusername>/.xbmc
So you have to copy this folder to the new machine.
Actually I read a book about effective C# programming. It contains 50 tips.
Reading the first 5 items I decided to summarize most of the 50 tips and to advertise this book.
|
rm –rf /path/to/directory
apt-get dist-upgrade –> updates the distribution
apt-get update –> reread package list
apt-get upgrade –> upgrades version of installed packages
apt-get remove packagename –> uninstall package
apt-get install packagename –> install package
You can manage your global assemblies with the gacutil.exe which comes with Microsoft SDK. You can find this tool for instance in folder "C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\".
This is an example about removing one assembly:
"C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\gacutil.exe" /u Assembly.To.Uninstall
Here is a small code snippet about howto access a protected method of a class:
You can convert a Delphi DateTime value (this is in OLE Automation date Format) using DateTime.FromOADate() method:
In my old Delphi days I used IncludeTrailingPathDelimiter() to ad a backslash to a path variable.
In C# you can use this code to combine a path and a filename:
To close your application you can use this code snippet: