Sunday, June 21, 2009

Visual Studio shortcuts

The following are my frequently used keyboard shortcuts in Visual Studio.

Ctrl+}
- Match braces back and forth
Ctrl+-
- Go back to the last location
Ctrl+l
- Delete line
Ctrl+g
- Go to line number
Shift+Alt+Enter
- Maximize Code Editor

Saturday, June 13, 2009

VC++ 2008 link crash

I am getting the following crash in VC++2008:

Linking... Embedding manifest... Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 Copyright (C) Microsoft Corporation.  All rights reserved. LINK : fatal error LNK1000: Internal error during IncrBuildImage

It turns out that this a bug of a VC++ 2008 linker, see hotfix 948127 from Microsoft.

~TS

Friday, June 12, 2009

JEdit related information

jEdit is a mature programmer's text editor. It is not my favorite but it is interesting.

Key configurations I do in JEdit:
- Remove the .(dot) in the text area, do Utilities | Global Options... | Text Area and unset End of line markers.

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04 I am planning to run qemu-system-ppc to play around QEMU ...