# HG changeset patch # User Oleksandr Gavenko # Date 1290785132 -7200 # Node ID 02bd68afca426397070a3b8f663bc47da8192e07 # Parent c1def2bc1c9577c3c5d260d0331a58839a3fdc6c# Parent 26d32cdbd4082aedefbfb1634756ce1ed915d137 Automated merge with file:///cygdrive/d/srv/hg-home/tips diff -r 26d32cdbd408 -r 02bd68afca42 cpu.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cpu.rst Fri Nov 26 17:25:32 2010 +0200 @@ -0,0 +1,11 @@ +-*- mode: outline; coding: utf-8 -*- + +* ARM. + + http://en.wikipedia.org/wiki/ARM_architecture + +** TrustZone. + + http://www.arm.com/products/processors/technologies/trustzone.php + + diff -r 26d32cdbd408 -r 02bd68afca42 devel.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/devel.rst Fri Nov 26 17:25:32 2010 +0200 @@ -0,0 +1,17 @@ +-*- mode: outline; coding: utf-8 -*- + +* Numbers everyone should know. + + * L1 cache reference 0.5 ns + * Branch mispredict 5 ns + * L2 cache reference 7 ns + * Mutex lock/unlock 100 ns + * Main memory reference 100 ns + * Compress 1K bytes with Zippy 10,000 ns + * Send 2K bytes over 1 Gbps network 20,000 ns + * Read 1 MB sequentially from memory 250,000 ns + * Round trip within same datacenter 500,000 ns + * Disk seek 10,000,000 ns + * Read 1 MB sequentially from network 10,000,000 ns + * Read 1 MB sequentially from disk 30,000,000 ns + * Send packet CA->Netherlands->CA 150,000,000 ns diff -r 26d32cdbd408 -r 02bd68afca42 prog-lang.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/prog-lang.rst Fri Nov 26 17:25:32 2010 +0200 @@ -0,0 +1,8 @@ +-*- mode: outline; coding: utf-8 -*- + +* Comparison of prog langs. + + http://en.wikipedia.org/wiki/Comparison_of_programming_languages + http://en.wikipedia.org/wiki/Comparison_of_programming_languages_%28basic_instructions%29 + http://shootout.alioth.debian.org/ + The Computer Language Benchmarks Game diff -r 26d32cdbd408 -r 02bd68afca42 web-search.rst --- a/web-search.rst Fri Nov 26 17:11:10 2010 +0200 +++ b/web-search.rst Fri Nov 26 17:25:32 2010 +0200 @@ -4,6 +4,8 @@ http://www.google.com/support/websearch/bin/answer.py?answer=136861 Google search basics: More search help + http://www.google.ru/help/operators.html + Advanced Operators http://code.google.com/intl/ru/apis/soapsearch/reference.html Google SOAP Search API Reference http://www.google.com/cse/docs/resultsxml.html diff -r 26d32cdbd408 -r 02bd68afca42 web-site.rst --- a/web-site.rst Fri Nov 26 17:11:10 2010 +0200 +++ b/web-site.rst Fri Nov 26 17:25:32 2010 +0200 @@ -4,3 +4,39 @@ http://developer.yahoo.com/performance/rules.html +* robots.txt. + +To exclude all robots from the entire server + + User-agent: * + Disallow: / + +To exclude all robots from part of the server: + + User-agent: * + Disallow: /cgi-bin/ + Disallow: /tmp/ + Disallow: /junk/ + +To allow a single robot: + + User-agent: Google + Disallow: + + User-agent: * + Disallow: / + +To allow all robots complete access: + + User-agent: * + Disallow: + + http://www.robotstxt.org/ + home page + http://www.robotstxt.org/robotstxt.html + About /robots.txt + http://www.robotstxt.org/faq.html + Frequently Asked Questions + http://googlewebmastercentral.blogspot.com/2008/06/improving-on-robots-exclusion-protocol.html + Improving on Robots Exclusion Protocol +