Synergy – Share Keyboard and Mouse on different Computers for free
Synergy is a great program that lets you share a single mouse and computer for multiple computers. You still need monitor for working.
Synergy
Systray in action
Adventures in Computing, Can Erten’s blog
Synergy is a great program that lets you share a single mouse and computer for multiple computers. You still need monitor for working.
Synergy
Systray in action
WinFX has been renamed to .Net framework 3. Although .Net framework 3 is simple and easy to remember, I get used to Winfx.
I liked WinFX. It was like Win32, Win16..
Just like the avalon case renames to WPF, new names will be remembered at last.
Apparently there is no new version come up on the download page. So hopefully some new packages will come up. Another 1.5GB will wait us, and another system maintenance, uninstall the previous one and install the new one, than interestingly some things will stop working….
WinFX -> .NET Framework 3
InfoCard -> Windows CardSpace
Another source code from microsoft. I really like those finished product codes. This one is one of the popular games, mech commander. I’ve never played the game , but I really want to play from my compilation and explore the code. Unfortunety it will take some time to download the code
Download Microsoft MechCommander 2 Shared Source
Microsoft source implementation of CLI is on the microsoft site. That code looks really weird, it is really low level ![]()
Nice to read indeed the implementation of the language itself.
You can download it from here:
Download SSCLI 2.0
Heey,
I found the end of the internet.
Check this out ![]()
End of internet
They are many documents on the web for doing that. However most of them needs to have an installed linux based system to do that. Installing linux without destruction your harddisk is possible for years. I assume that you have windows installed. Here is the walkthrough to do that.
dd --list
D:\Tools\dd>dd –list
rawwrite dd for windows version 0.3.
Written by John Newbigin
This program is covered by the GPL. See copying.txt for details
Win32 Available Volume Information
\\.\Volume{c5d941f0-8093-11da-b7d7-806d6172696f}\
link to \\?\Device\HarddiskVolume1
fixed media
Mounted on c:\
\\.\Volume{c5d941f1-8093-11da-b7d7-806d6172696f}\
link to \\?\Device\HarddiskVolume3
fixed media
Mounted on d:\
\\.\Volume{5c5aa360-7406-11da-b7c2-806d6172696f}\
link to \\?\Device\CdRom0
CD-ROM
Mounted on e:\
\\.\Volume{23c0e842-75dd-11da-a45d-000e3536c876}\
link to \\?\Device\CdRom1
CD-ROM
Mounted on x:\
NT Block Device Objects
\\?\Device\CdRom0
\\?\Device\CdRom1
\\?\Device\Harddisk0\Partition0
link to \\?\Device\Harddisk0\DR0
Fixed hard disk media. Block size = 512
\\?\Device\Harddisk0\Partition1
link to \\?\Device\HarddiskVolume1
\\?\Device\Harddisk0\Partition2
link to \\?\Device\HarddiskVolume2
Fixed hard disk media. Block size = 512
\\?\Device\Harddisk0\Partition3
link to \\?\Device\HarddiskVolume3
\\?\Device\Harddisk0\Partition4
link to \\?\Device\HarddiskVolume4
Fixed hard disk media. Block size = 512
to find the linux partition.
dd if=\\?\Device\HarddiskVolume2 of=linux.boot bs=512 count=1
D:\Tools\dd>dd if=\\?\Device\HarddiskVolume2 of=linux.bot bs=512 count=1
rawwrite dd for windows version 0.3.
Written by John Newbigin
This program is covered by the GPL. See copying.txt for details
1+0 records in
1+0 records out
Here Partition2 is the linux partition. You need to feel that from the dd –list output
C:\LINUX.BOOT="Linux"
to boot.ini file.
The above process is still working for Windows Vista beside boot.ini file. Instead we need to bcdedit to add the new entry.
Run cmd and execute the following commands to add the linux entry
bcdedit /create /d “Linux” /application BOOTSECTOR
bcdedit /set {LinuxID} device boot
bcdedit /set {LinuxID} PATH \LINUX.BOOT
bcdedit /displayorder {LinuxID} /addlast
bcdedit /timeout 5
Here you are you have used windows boot manager to do that inside windows.