My Blog Statistics by Country
, 1 min read
Except notably Russia and Africa this blog has been visited by quite a number of countries. I am surprised. Also see Statistics of this Blog: Top Views by Country.
, 1 min read
Except notably Russia and Africa this blog has been visited by quite a number of countries. I am surprised. Also see Statistics of this Blog: Top Views by Country.
, 1 min read
Very interesting talk on the scaling challenge at WordPress.com given by Barry Abrahamson, CTO of WordPress. Some key points: 500 million database tables 3 data centers in USA 400.000 shards moved per day storage on SSD ~10% of total infrastructure costs are related to backups ~500 GB / shard 50…
, 1 min read
Below table is from work-with-us (data as of 22-Sep-2013): One of these things is not like the other. Company NameMonthly Uniques…
, 1 min read
Georg Hager's Blog posted an illustrative article on icc versus g++ performance w.r.t. OpenMP. Dr. Georg Hager is one of the authors of Introduction to High Performance Computing for Scientists and Engineers. Measurement of double precision, dimension(N) :: a,b,c,d ! initialization etc. omitted s =…
, 1 min read
JpGraph is a library of PHP code to draw a variety of graphs: line+bar+pie charts radar+polar+contour graphs bar+QR codes Gantt charts a couple of other chart types Here are two examples: JpGraph is a free product by Asial if used in a non-commercial context. Installation is quite easy on…
, 1 min read
Inspired by a discussion with my son regarding movement of a point-charge between two other charges I revisited the definition of the line integral. Wikipedia offers an excellent visualization of the definition of the line integral for a vector field. See animated graphic below: This is something…
, 1 min read
Just read on Torricelli's trumpet in Wikipedia. This states that there is a body having infinite surface but finite volume! That sounds contradictory at first. Function in question is $$ y = 1 / x $$ from $x=1$ to $a$. Volume is $$ V = \pi \int_1^a \left({1\over x^2}\right)\,dx =…
, 1 min read
Brian Koberlein wrote a very good introductory article on curvature of space and time in the vicinity of gravity: see The Attraction of Curves – Brian Koberlein.
, 1 min read
Last year I used a drop-in replacement for the ordinary Linux sort command called nsort from Ordinal Technology. Ordinal's nsort is free but not open-source. One thing is clear, however, it is very fast. nsort was written by Chris Nyberg. The motivation for looking for a faster sort was as follows.…
, 1 min read
Below picture is from Read Throughput Average (dead link) in Tom's Hardware.
, 1 min read
hgpu.org (unsafe link) contains links to reviews, tutorials, research papers, program packages concerning various aspects of graphics and non-graphics (general purpose computing) using of GPU and related parallel architectures (FPGA, Cell processors etc.). The majority is on NVidia, see picture…
, 1 min read
An article in Android Authority from 26-Jun-2013, India is now the third largest Smartphone market in the world, states that: There are 14 major carriers listed for India, including two state owned providers. None have over 180 million subscribers. The smartphone market in India is expanding at…
, 1 min read
I find the motd annoying when you log in to a Ubuntu server machine. To get rid of this I do the following as root: cd /etc/update-motd.d mkdir klmDisabled mv ??-* klmDisabled Unfortunately, whenever the packages update-manager-core, landscape-common, base-files, update-notifier-common change,…
, 1 min read
As already posted last month, there are around 4 billion pageviews per month. This makes 1.4 pageviews per millisecond on the average. Each pageview incurs hundred of lines of PHP code executed, a couple of MySQL queries and updates.
, 1 min read
According Los Angeles Times (dead link) China built 600 dams per year on average. This trend will continue. According Wikipedia, or Jie Cai's Master Thesis (dead link), China has the largest potential for hydropower in the world and currently ranks first in hydroelectric generating capacity with…
, 1 min read
Recent GPUGRID tasks, like I60R2-NATHAN_KIDKIXc22 or 27x0-SANTI_RAP74wtCUBIC really keep my NVidia GTX 560 hot, i.e., as warm as 70° Celsius or higher. Fri Sep 6 17:16:38 2013 +------------------------------------------------------+ | NVIDIA-SMI 5.325.15 Driver…
, 1 min read
, 2 min read
I have been using del.icio.us (dead link) since at least the year 2005. During that time del.icio.us (dead link) was sold to Yahoo, which didn't do very much with this bookmarking service. It simply worked. In 2011 the service was acquired by a company named AVOS (dead link), see Wikipedia for the…
, 1 min read
Mark Twain's (1835-1910) words still relevant today for people who want to change established things hastily. From Ken Krugler on Mark Twain Commentary on the MacBook Air: One of my favorite posts to the Unicode mailing list came during a heated debate about “simplifying” certain character…
, 1 min read
Although probably known in most circles, it is worth repeating that scp by itself does not honor symbolic links. To overcome this limitation just combine tar and ssh, i.e., tar on sending side, untar on receiving side: tar cf - /src/dir | ssh remotehost "cd /dst/dir ; tar xf -" Usually…