--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/feed.rst Tue Apr 06 21:00:10 2010 +0300
@@ -0,0 +1,8 @@
+-*- outline -*-
+
+* Emacs feed reader.
+
+** newsticker.el
+
+ http://www.nongnu.org/newsticker/
+ home page
--- a/net.rst Tue Apr 06 21:00:06 2010 +0300
+++ b/net.rst Tue Apr 06 21:00:10 2010 +0300
@@ -6,6 +6,10 @@
User - none, password - none, phone - '*99***1#'.
+** Peoplenet.
+
+User and password you get by sending SMS message to '920' number. Phone '#777'.
+
* DNS to IP address.
$ nslookup example.com
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/solaris.rst Tue Apr 06 21:00:10 2010 +0300
@@ -0,0 +1,10 @@
+-*- outline -*-
+
+* Free software for Solaris.
+
+ http://www.opencsw.org/
+ free, volunteer effort, to provide quality downloadable binary
+ packages for the currently fully supported versions of Sun
+ Solaris
+ http://sunfreeware.com/
+ Solaris Freeware Project
--- a/windows.rst Tue Apr 06 21:00:06 2010 +0300
+++ b/windows.rst Tue Apr 06 21:00:10 2010 +0300
@@ -15,6 +15,17 @@
To check 32/64-bit OS use PROCESSOR_ARCHITECTURE env var (it has such values:
x86, AMD64, IA64).
+* Windows update.
+
+To find updates and drivers visit (подлинность Windows not checked):
+
+ http://catalog.update.microsoft.com/
+
+You can search driver by keywords from Device Manager like:
+
+ VEN_10DE DEV_0247
+ VID_22B8 PID_2A62
+
* XP.
** Check system files integrity.
@@ -161,3 +172,26 @@
main.cpl - Mouse and Keyboard Options
control fonts - Fonts Folder
control printers Printers Folder
+
+* Path.
+
+** Max path length.
+
+260 chars. Use MAX_PATH macros from 'windows.h'.
+
+** Allowed characters.
+
+Not allowed:
+ * characters from 0 to 31
+ * < (less than)
+ * > (greater than)
+ * : (colon)
+ * " (double quote)
+ * / (forward slash)
+ * \ (backslash)
+ * | (vertical bar or pipe)
+ * ? (question mark)
+ * * (asterisk)
+
+ http://msdn.microsoft.com/en-us/library/aa365247.aspx
+ Naming Files, Paths, and Namespaces