10 2012 档案
摘要:http://www.jeremyskinner.co.uk/2010/06/25/hosting-a-git-server-under-iis7-on-windows/http://www.jeremyskinner.co.uk/2010/07/31/hosting-a-git-server-under-apache-on-windows/https://github.com/jeremyskinner/git-dot-aspx
阅读全文
摘要:http://git-scm.com/bookBookThe entire Pro Git book, written by Scott Chacon and published by Apress, is available here. All content is licensed under theCreative Commons Attribution Non Commercial Share Alike 3.0 license. Print versions of the book are available onAmazon.com.1.Getting Started1.1Abou
阅读全文
摘要://Main.cpp#include <iostream>using namespace std;extern "C" int DoubleIt(int n);int main(){ cout<<"Value return by Double It is:" <<DoubleIt(2)<<endl; return 0;}.586.model flat,C.codeDoubleIt PROC,inval:DWORD mov eax,inval add eax,eax add eax,eax retDouble
阅读全文
摘要:http://zh.wikipedia.org/wiki/Intel_Core_i5Intel处理器已停产x86前产品4004·4040·8008·8080·iAPX 432·8085x87(外置浮点运算器)8/16位总线:808716位总线:80187·80287·80387SX32位总线:80387DX·80487x86-16(16位)8086·8088·80186·80188·80286x86-32/IA-32(32位)80386·80486·Pen
阅读全文
摘要:http://kipirvine.com/asm/4th/ide/vs6/cppProject/index.htmUpdated 11/25/2002Before beginning this tutorial, you must have already installed a command in your Tools menu in Visual Studio that assembles an ASM source file without linking. In our samples, the tool will be calledAssemble 32-bit.Click her
阅读全文
摘要:--Server:if exists (select name from sysobjects where name='p_tmp' and type='P') drop proc p_tmpgocreate proc p_tmp( @a nvarchar(50)=N'a', @b nvarchar(50)=N'b')--WITH ENCRYPTIONasbegin select @a+','+@b as c1, @b+','+@a as c2 union all select @a+',&
阅读全文
摘要:http://www.cyberciti.biz/tips/freebsd-how-to-change-ip-address-or-setup-new-ip-address-to-existing-interface.html1.修改IP# vi /etc/rc.confhostname="fbsdx.test.com"ifconfig_lnc0="inet 192.168.0.6 netmask 255.255.255.0"### Default gateway ###defaultrouter="192.168.0.254"2.修
阅读全文
摘要:objects = main.o kbd.o command.o display.o \insert.o search.o files.o utils.oedit : $(objects) cc -o edit $(objects)$(objects) : defs.hkbd.o command.o files.o : command.hdisplay.o insert.o search.o files.o : buffer.h.PHONY : cleanclean :rm edit $(objects)########################end##################
阅读全文
摘要:官方文档:http://www.gnu.org/software/make/manual/make.html简单示例:http://mrbook.org/tutorials/make/Compiling your source code files can be tedious, specially when you want to include several source files and have to type the compiling command everytime you want to do it.Well, I have news for you... Your da
阅读全文
摘要:http://www.apuebook.com/Advanced Programming in the UNIX® Environment, Second Edition源码:http://files.cnblogs.com/wucg/AdvancedProgrammingInTheUnixEnvironment2ed_src.zip官方源码:http://www.apuebook.com/src.tar.gz
阅读全文
摘要:http://www.understudy.net/custom.htmlDescriptioncsh*kshbashtcsh*zshCurrent working directory$CWD$PWD\w%/%/Current working directory, with one's home directory by `~'$CWD:t$PWD##*/\W%~%~Full hostname'uname -n''uname -n'N/A%M%MHostname up to the first '.'`hostname -s``h
阅读全文
摘要:How to shrink a dynamically-expanding guest virtualboximagehttp://dantwining.co.uk/2011/07/18/how-to-shrink-a-dynamically-expanding-guest-virtualbox-image/Sometimes bigger isn’t always better. If your dynamically-expanding virtual machine images are growing out of control, then here’s how to trim th
阅读全文
摘要:http://www.lemis.com/grog/Documentation/CFBSD/
阅读全文