# HG changeset patch # User Oleksandr Gavenko # Date 1264710399 -7200 # Node ID 3e5a317467415df1c8eef6f6d26ff1d34d49d1c2 # Parent c34bdce72894b6e5739d31f16693bf1cfda07b39# Parent a1447ce5751be5f06333579908083e1ad2f41a98 merged diff -r c34bdce72894 -r 3e5a31746741 digit-music.rst --- a/digit-music.rst Thu Jan 28 17:31:22 2010 +0200 +++ b/digit-music.rst Thu Jan 28 22:26:39 2010 +0200 @@ -2,6 +2,10 @@ * Musician soft. + http://freemusicsoftware.org + http://www.freesoundeditor.com/VSTSyntheng.htm + VST plugin + * Editor. Mainly those soft are cross-platform. diff -r c34bdce72894 -r 3e5a31746741 emacs.rst --- a/emacs.rst Thu Jan 28 17:31:22 2010 +0200 +++ b/emacs.rst Thu Jan 28 22:26:39 2010 +0200 @@ -93,6 +93,16 @@ http://anc.ed.ac.uk/~stephen/emacs/ell.html http://www.emacswiki.org/emacs/WikifiedEmacsLispList + http://tromey.com/elpa/index.html + Emacs Lisp Package Archive + +** ELPA. + +ELPA goal is to make it simple to install, use, and upgrade Emacs Lisp +packages. + + http://tromey.com/elpa/upload.html + how to contribute * Compiling emacs. diff -r c34bdce72894 -r 3e5a31746741 hg.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hg.rst Thu Jan 28 22:26:39 2010 +0200 @@ -0,0 +1,79 @@ +-*- mode: outline; coding: utf-8 -*- + +* Manage patches with MQ. + +First enable MQ, add following to your ~/.hgrc: + + [extensions] + hgext.mq = + +Second get unpatched sources and put it to hg repository: + + $ tar zxf proj-x.y.z.tar.gz + $ mv proj-x.y.z proj + $ cd proj + $ hg init + $ hg ci -m "Added x.y.z version of proj." + +Init MQ and take name for first patch: + + $ hg qinit + $ hg qnew first.patch + +Next make changes by editing source and save it to patch: + + $ $EDITOR file.c + ... + $ hg diff + ... + $ hg qrefresh + $ hg diff # <-- have zero diff + +You can make second patch by applying existing one: + + $ hg qnew second.patch + $ patch -p1 sfc /Scannow -To complite repair you may need original installation CD. Works for -Windows 2000, Windows XP, Windows 2003. +To complete repair you may need original installation CD (you can mount it +from .iso image for example with DemonTools). + +Works for Windows 2000, Windows XP, Windows 2003. See http://support.microsoft.com/kb/222471/ http://support.microsoft.com/kb/310747/ru +** Repair boot. + +If you only damage boot sector of master or system partition boot from Windows +XP installation CD, enter to recovery console and run: + + cmd> fixboot + cmd> fixmbr + +See + + http://support.microsoft.com/kb/307654/ru + +** Automatically connect to shared resource. + +Add to autorun such .bat file: + + net use x: \\server\share /user:username password + +See + + http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/net_use.mspx + * Vista ** Samba.