You are currently browsing the Markus Breitenbach weblog archives for August, 2006.
- Advertising (1)
- Artificial Intelligence (AI) (8)
- Coding / Programming (6)
- Cryptography (1)
- Data Mining (10)
- ewrt linux (2)
- Fixing Stuff (5)
- Machine Learning (18)
- Math (1)
- Politics (2)
- Psychology (3)
- Ramblings (18)
- Random (6)
- Security (11)
- Society (9)
- Sociology (3)
- spam (2)
- Statistics (9)
- April 21, 2008 1:38 am: ART OF SEDUCTION: Not Pretty, Really
- March 25, 2008 2:25 am: "Internal Server Error" when converting phpBB v2 to phpBB v3
- March 6, 2008 1:29 am: Firewire and DRM
- February 28, 2008 10:46 pm: Using Psychological Domain Knowledge for the Netflix Challenge
- February 12, 2008 1:24 am: VPN Tunels from within VMWare (Windows XP and GRE weirdness)
- February 2, 2008 5:59 pm: License Key Copy Protection
- January 8, 2008 8:34 pm: Registering Domains with Network Solutions
- January 7, 2008 10:22 pm: Joe-job ...
- December 11, 2007 1:37 am: Back from NIPS 2007
- November 24, 2007 1:03 am: GMail Logout Strangeness
Blogroll
Useful Links
Archive for August 2006
Data mining used to find new materials
August 27, 2006 6:56 pm by Markus.
I just read an Eureka Alert (see also ZDNet’s blog)mentioning that a couple of researchers at MIT found new, potentially useful crystal structures with AI and Data Mining techniques. You can find the abstract of their paper here. I’ve seen randomness and Genetic Algorithms around alot lately (such as the self-reconfigurable-modular-robot/) and a robot that can do bioinformatics experiments (DNA sequencing) all by himself (link?). I think that this is a very useful application of AI. However, it is only an application of the scientific knowledge. It’s fast testing based on the current physical models and insights. It automates science to an extend, but does not come up with new insights. It’s more data without more people to add an interpretation. For example, it took a few years before somebody found an application for Teflon.
I haven’t seen this around (will search again), but what would be really interesting is an algorithm that can form a new hypothesis (e.g. a differential equation) based on outcomes from Physics experiments. An algorithms that explains the data and forms a theory. It’s probably harder to build than regression algorithms…
Posted in Data Mining, Machine Learning, Artificial Intelligence (AI), Ramblings | Print | No Comments »
“Shockers” in the Mainstream Press
August 24, 2006 7:28 pm by Markus.
Lately I found a couple of “shockers” in the mainstream press. Shockers, because my impression is that the press does not try to offend anyone. The articles were challenging the current model in society of where man and woman stand and how things should be. No matter what’s your take on this issue, it’s a loaded topic and I was surprised to find something like this.
- Daily Mail
- Forbes on Marriage and Divorce. According to Slate, Forbes pulled the original article. It reappeared later with the rebuttal on the side.
Posted in Sociology, Random | Print | No Comments »
Gates Foundation helps company buy papers
August 21, 2006 8:18 pm by Markus.
Here’s something strange I found:
Gates Foundation helps company buy news-papers - I wonder how that fits in with the whole charity thing.
See also: MediaNews Buying in California Boosted by Bill and Melinda Gates Foundation.
Posted in Politics, Ramblings | Print | No Comments »
Table prefix in PHP Nuke…
August 18, 2006 6:14 pm by Markus.
Ever tried to install some PHP app for your website? Especially the ones that come with a sql-schema file that you need to run through MySQL? What I wonder about is that many of these applications - PHPNuke for example - support prefixing table names. Having non-standard table names can be helpful in making SQL-injection attacks more difficult. Not impossible, mind you, it just adds another layer of obscurity - but of the shelf script-kiddie exploits won’t work anymore. And yet editing such a schema file is a pain for administrators. Which explains why people rarely do it…
Anyway… Here’s my perl one-liner for changing the schema files table names prefix for PHP Nuke:
perl -i -pe ’s/(TABLE|INTO) (nuke_)/$1 qqq$2/g’ nuke.sql
This will change the default prefix “nuke” to “qqqnuke” in the schema file. Then you change the prefix in the config.php file accordingly (change $prefix and $user_prefix). Done…
Posted in Security | Print | No Comments »