MSDN TechTalk on Visual Studio 2008 and .NET 3.5
MSDN Germany released a recorded TechTalk on Visual Studio 2008 and the .NET Framework 3.5:
MSDN Germany released a recorded TechTalk on Visual Studio 2008 and the .NET Framework 3.5:
I came across troubles using Boost signals together with Qt.
It is a well known problem that is described in the boost FAQ.
You may also have a look at the article A Deeper Look at Signals and Slots.
For general information on boost signals and examples visit the Boost.Signals documentation.
We are awaiting this years keynote of the Macworld and all the new gadgets that are announced… (-;
It’s only another 2,5 hours away…
How you you can enhance the screen sharing functionality of Leopard is described here.
You can easily control your Mac even from Windows with a VNC client.
lifehacker released a list of power tweaks for Mac OS X 10.5.
It addresses:
Addition:
Here is another entry at lifehacker with more power tweaks.
The page has again a new design.
I use the Blue Horizon theme from Kaushal Shet know.
I hope you like the new look. Reminds me a little bit of Windows… (-;
Combination | Effect | |
Command-S | Boot into Single User Mode | |
Command-V | Boot using “Verbose� mode (shows all kernel and startup console messages) | |
X | Reset startup disk selection and boot into Mac OS X Server | |
Shift | Boot into “Safe Boot� mode, which runs Disk First Aid. A reboot will be required afterward. | |
Option | Boot into Open Firmware to select a boot device | |
Command-Option-Shift-Delete | Bypass internal harddrive on boot | |
T | Boot into Firewire target disk mode | |
C | Boot from the internal optical drive | |
N | Start from the Network (NetBoot) | |
Command-Option-P-R | Reset Parameter RAM (PRAM) and non-volatile RAM (NVRAM) | |
(mouse button) | Eject (internal) removable media |
“Wissen ist Macht: die Macht, wiederkehrende
Probleme schnell zu lösen”
How to delete several directories (or files) that you discovered with the find command?
find . -iname “dir name” -print0 | xargs -0 rm -r
find . -iname “expression“