We are building a nice Unicode mining tool.
BTW, here is a list of nice Unicode myths.
27 Wednesday Feb 2013
Posted in Data Mining, Programming
We are building a nice Unicode mining tool.
BTW, here is a list of nice Unicode myths.
22 Friday Feb 2013
Posted in Data Mining, Fractal Geometry, IR Tools, Programming
With The Color Miner, we have programmatically reconstructed the classic Windows 16-color VGA palette with few basic algorithmic rules.
We also found that iterating the 16-color VGA palette, with these rules, the result converges to a 42-color palette. As given below.

Advantages?
The algorithms utilized allow one to:
For additional information and to verify these findings, visit the The Color Miner page.
21 Thursday Feb 2013
Posted in Data Mining, IR Tools, Marketing Research, Software
The Color Miner, is a tool for mining colors from Web documents.
The traditional way of presenting color palettes to users is by rendering these as static arrays of colors. This limits users to staring at color squares to make color-color comparisons instead of engaging them in data mining and critical thinking, activities that promotes discovery and learning—in a research or school setting.
When we developed The Color Miner, we did so with a fractal design strategy in mind. As a result, we developed a tool capable of generating what we call fractalettes or palettes within palettes. That is, each cell of a generated palette behaves as a smaller palette, containing color space information and relationships for the current color.
We could iterate the individual cells for ever, but in practice we found that a one-level iteration was a good start to encourage users to investigate color-color, space-space, and color-space relationships, to find basic trends and information patterns. In general, this architecture can be iterated to organize additional attributes and relational data.
17 Sunday Feb 2013
Posted in Data Mining
Some interesting stuff I’m reading for a new tool.
http://www.icst.pku.edu.cn/course/ImageProcessing/2012/resource/Color78.pdf
http://en.wikipedia.org/wiki/RGB_color_space
http://www.adobe.com/digitalimag/pdfs/AdobeRGB1998.pdf
http://help.adobe.com/en_US/illustrator/cs/using/WS714a382cdf7d304e7e07d0100196cbc5f-6273a.html
15 Friday Feb 2013
Posted in Marketing Research
Here are the results: http://www.harrisinteractive.com/vault/2013%20RQ%20Summary%20Report%20FINAL.pdf
Interesting Amazon-Google Comparison for the last 3 years:
Amazon: #1 in 2013, #4 in 2012, and #8 in 2011.
Google: #4 in 2013, #2 in 2012, and #1 in 2011.
10 Sunday Feb 2013
Posted in Data Mining, Programming
I was struggling with how to convert a long two-column (A and B) Excel data set into a PHP associative array format and then found out how easy is this with the CHAR() built-in function. This is what I did.
1. For the data in the A1 and B1 cells, I simply entered the following formula into the C1 cell and bingo!
=CHAR(34)&A1&CHAR(34)&CHAR(61)&CHAR(62)&CHAR(34)&B1&CHAR(34)&CHAR(44)
where the unicode numbers 34, 61, 62, and 44 are used to render the double quote, equality, greater than, and comma symbols.
2. Then I just pasted the formula in the remaining cells of column C.
3. Finally, I pasted the result into a php text file, between the parentheses of
$arr=array( );
and removed the last comma from the last array element.
I know there is an easier way by writing a short macro, but this worked for me just fine.
I hope this saves some time to others.
01 Friday Feb 2013
A handy resource:
1. If you are using Spybot Search & Destroy on Windows32 systems, enter
C:\Windows\System32\drivers\etc\hosts
2. Spybot Search & Destroy will list all blocked connections; i.e. those that are redirected to the localhost.
3. You can manually add/delete entries.
4. It is a another layer of security!!
For details, check:
http://winhelp2002.mvps.org/hosts.htm
http://en.wikipedia.org/wiki/Spybot_%E2%80%93_Search_%26_Destroy