merged
authorOleksandr Gavenko <gavenkoa@gmail.com>
Thu, 28 Jan 2010 22:26:39 +0200
changeset 297 3e5a31746741
parent 288 c34bdce72894 (current diff)
parent 296 a1447ce5751b (diff)
child 298 c170134ac5a7
merged
--- 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.
--- 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.
 
--- /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 <bugfix.patch
+  $ hg qrefresh
+
+You can take list of patches (from old to new) and revert or apply patches by
+qpop/qpush command:
+
+  $ hg qseries   # <-- what patches have
+  first.patch
+  second.patch
+  $ hg qapplied  # <-- what patches applied
+  first.patch
+  second.patch
+  $ hg qpop
+  $ hg qseries
+  first.patch
+  second.patch
+  $ hg qapplied
+  first.patch
+
+You can revert or apply all patches by single command:
+
+  $ hg qpop -a
+  $ hg qpush -a
+
+You can delete patch from patch list (before that you need de-apply patch):
+
+  $ hg qpop -a
+  $ hg qdelete first.patch
+
+To add new version of source and fix patches for it first de apply patches,
+then pull new changes and try apply patches on top of new sources:
+
+  $ hg qpop -a
+  $ rm *       # .hg dir not deleted because its name start with dot
+  $ cd ..
+  $ tar zxf proj-a.b.c.tar.gz
+  $ cp -R proj-a.b.c/* proj
+  $ cd proj
+  $ hg addremove -s 70
+  $ hg ci -m "Added a.b.c version of proj."
+  $ hg qpush -a
+
+To apply series of already done patches use:
+
+  $ ls /path/to/bugfixes/*.patch | xargs hg qimport
--- a/man.rst	Thu Jan 28 17:31:22 2010 +0200
+++ b/man.rst	Thu Jan 28 22:26:39 2010 +0200
@@ -45,3 +45,8 @@
 BUGS                - know issue, how report bug
 HISTORY
 
+* Man page showing.
+
+TODO
+Bolt by print char, back one char and print same char.
+Underscore by printing undescore, back one char and print char.
--- a/windows.rst	Thu Jan 28 17:31:22 2010 +0200
+++ b/windows.rst	Thu Jan 28 22:26:39 2010 +0200
@@ -2,18 +2,42 @@
 
 * XP.
 
-** Recovery.
+** Check system files integrity.
 
   cmd> 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.