Wine – Open Source http://www.winehq.org/ CrossOver – a commercial implementation of the Wine code. http://www.codeweavers.com/products/ Cedega (WineX) – a commercial implementation of the Wine code. http://www.transgaming.com/products/cedega/ http://www.linuxgames.com/
Assembly & Modules Namespaces & Classes
Reliability Best Practices http://msdn2.microsoft.com/en-us/library/ms228970.aspx Keep Your Code Running with the Reliability Features of the .NET Framework http://msdn.microsoft.com/msdnmag/issues/05/10/Reliability/
MS-DOS product progression MS-DOS and PC-DOS Windows 1.0 Windows 2.0 Windows 2.1 (aka Windows/286 and Windows/386) Windows 3.0, Windows 3.1, Windows 3.11, Windows 3.11 for Workgroups (WfW) Windows 95 (Windows 4.0) Windows 98 (Windows 4.1), Windows 98 Second Edition Windows… Read more ›
MS-DOS: 1981-2000 2006- FreeDOS is a free software aims full compatibility with MS-DOS. NTFSDOS helps DOS (like FreeDOS, MS-DOS) access NTFS file system. (acquired by and killed by MS) FreeDOS32 aims major improvements over legacy DOS systems. cmd.exe (MS-DOS Commands)… Read more ›
2007年国民经济平稳快速发展 http://www.stats.gov.cn/tjfx/jdfx/t20080124_402460060.htm 2008年国家统计局经济统计信息发布日程表 http://www.stats.gov.cn/tjfx/jdfx/t20020906_33811.htm
When I tried to install Fedora 8 on my machine with Windows XP installed for the first time, it caused me much pain. After I have raveled it out finally, I’d like to share my experience making a dual boot… Read more ›
Compatible to nothing but itself. Read more ›
Managed Module PE32 or PE32+ header The standard Windows PE file header, which is similar to the Common Object File Format (COFF) header. If the header uses the PE32 format, the file can run on a 32-bit or 64-bit version… Read more ›
The Common Language Runtime (CLR) is the virtual machine component of Microsoft’s .NET initiative. It is Microsoft’s implementation of the Common Language Infrastructure (CLI) standard, which defines an execution environment for program code. The CLR runs a form of bytecode called the Common Intermediate Language (CIL, previously known as MSIL — Microsoft Standard Implementation Language). Read more ›
Free or Open Source Software http://warren.chinalle.com/2011/08/02/foss-overview/ The GNU Project The GNU Project was launched in 1984 to develop a complete Unix-like operating system which is free software: the GNU system. It is mainly sponsored by the Free Software Foundation(FSF). The… Read more ›
Introduction Unix (officially trademarked as UNIX®, sometimes also written as Unix or Unix® with small caps) is a computer operating system originally developed in 1969 by a group of AT&T employees at Bell Labs including Ken Thompson, Dennis Ritchie and… Read more ›
Hello, World! .assembly extern mscorlib {auto} .assembly Hello{} .module Hello.exe .namespace Hello { .class public auto ansi World extends [mscorlib]System.Object { .method public static void check() cil managed { … Read more ›
As you know you can use the System.Transactions namespace to do transactional operations on MS SQL Server, MSMQ, ADO.NET, MSDTC, you are not limited to these. You can implement your own resource manager (MS SQL SERVER etc. are all resource managers),… Read more ›
Source code of parts of .NET Framework Library can be used for debugging, and only for debugging, which is complete different from open source. The symbol server is http://referencesource.microsoft.com/symbols Configuring Visual Studio to Debug .NET Framework Source Code Releasing the Source… Read more ›
Steps 1. Add a data source to your project and bind data to the DataGridView control: Walkthrough: Filling a Dataset with Data 2. Add a new table adapter to execute you SQL selection statement: How to: Create TableAdapters How to:… Read more ›
Overview Creational Design Patterns Structural Design Patterns Behavioral Design Patterns Concurrent Design Patterns Distributed Design Patterns Design Patterns Addendum Refactoring http://www.refactoring.com/
Creational design patterns abstract the instantiation process. They help make a system independent of how its objects are created, composed, and represented. A class creational pattern uses inheritance to vary the class that’s instantiated, whereas an object creational pattern will delegate instantiation to another object. Read more ›
CLR Managed Debugger Introduction to the CLR Managed Debugger http://msdn.microsoft.com/msdntv/episode.aspx?xml=episodes/en/20060302CLRJS/manifest.xml Transcript: Introduction to the CLR Managed Debugger http://msdn.microsoft.com/msdntv/transcripts/20060302CLRJSTranscript.aspx How to build Mdbg apps http://blogs.msdn.com/jmstall/archive/2006/06/28/how_to_build_mdbg_apps.aspx Tool to get snapshot of managed callstacks http://blogs.msdn.com/jmstall/archive/2005/11/28/snapshot.aspx Managed Stack Explorer http://www.codeplex.com/MSE How to debug the… Read more ›
How to Embed a manifest to a .NET assembly How to embed a manifest file in an executable file in Visual Studio 2005 http://support.microsoft.com/kb/944276 There is built-in support in VS2008 that you can make use of: Select: Project… Read more ›