18. Jan 12 | Web
To see Wikipedia content today you can hack the html source.
- Open page in Chrome (or other browser if you know how to use code editor in it),
- Right click on the page,
- Select Inspect element,
- In the HTML code:
1. in the head tag find, select and delete <style id=”mw-sopa-blackout”>#mw-page-base, #mw-head-base, #content, #mw-head, #mw-panel, #footer { display: none; }</style>
2. Find <div id=”content” style=”display: none; “> and delete display:none
3. Find and delete <div id=”mw-sopaOverlay”> …. </div>
29. Aug 10 | Web
UPDATE 19 Feb 2011
Facebook simplyfied the tagging by adding the Photo application to your page’s applications.
To enable tagging go to your page and click Edit info below the title of the page. Next select Apps in left menu and click on Edit Settings under Photos.

Facebook Photos Application
On the next screen you will find the option to enable photo tagging for the fans of your page.
By default the tagging of the pictures on your Facebook Page is disabled. You might not be aware of it because you are the admin but your fans will not see the link Tag This Photo!
How to enable it?
Follow these steps:
1. Find your Facebook Page ID (go to your Facebook page and click on Edit page. The id will be in the URL after &id=__________)
2. Copy the link http://www.facebook.com/pages/edit/app_settings.php?id=__________&aid=2305272732 and replace ____________ with your Facebook Page ID
3. Go to the URL you have created in the previous step and Select button Allow all fans to tag photos

28. May 10 | Web

A PDF Facebook FBML Cheat Sheet with all FBML tags in one place (deprecated were omitted).
13. May 10 | Web

Facebook PHP SDK Cheat Sheet
I have made this convenient Cheat Sheet for all Facebook Developers who want to have it all in one place.
It’s version 2.0.3 from 11th May 2010.
29. Apr 10 | Web
I went in Facebook advertising platform and gather the data of FB users per country by myself four times: February 2009, July 2009, November 2008 and June 2008. Now there are web sites that can tell you up to date data so I won’t play with copying and pasting any more.

Facebakers.com
Visit Facebakers and please write other alternatives in comments.
Update:
20. Apr 10 | Web
Here is a little tutorial for those who want to use qTranslate and wp-autosuggest on the same WordPress website and make them work hand in hand. But first a little intro for those who are not familiar with the mentioned plugins.
qTranslate is a great plugin if you need a web page in several languages. I have implemented quite a few web sites with it and it works perfectly. It usually needs some adjustments in the templates but it is versatile.
In my opinion the best autosuggest plugin for WordPress is wp-autosuggest. This plugin enables you to display search results while you type the search query in the WordPress search box.
For qTranslate you will have to adapt search box action and button in your WordPress template file searchform.php (here is an example for English and Slovenian language):
<?php if (qtrans_getLanguage()=="en"): ?>
<div class="white_box_search">
<form method="get" id="searchForm" action="
<?php echo
qtrans_convertURL('http://www.domainname.si/en/', 'en'); ?>">
<input type="text" value="" name="s" id="s" alt="Search"/>
<input id="searchsubmit" value="" type="submit" />
</form>
</div>
<?php endif; ?>
<?php if (qtrans_getLanguage()=="si"): ?>
<div class="white_box_search">
<form method="get" id="searchForm" action="
<?php
echo qtrans_convertURL('http://www.domainname.si/si/', 'si'); ?>">
<input type="text" value="" name="s" id="s" alt="Iskanje"/>
<input id="searchsubmit" value="" type="submit" />
</form>
</div>
<?php endif; ?>
With wp-autosuggest plugin your main problem will be how to display search results in the right language. The key is in editing autosuggest.php. Find the variable autosuggest_options and edit script.
script: "<?php echo AUTOSUGGEST_DIR; ?>
/autosuggest.php?wpas_action=query&
<?php if (qtrans_getLanguage()=="sl"): ?>
lang=sl
<?php endif; ?>&",
Insert as many languages as you need at the end of the URL and don’t forget the “&“ at the end.
And the final product:


Autosuggest displays the English version of the article on English version of the web site and Slovenian on Slovene. I’ll post the link to the web site when it comes live.
Other links:
Autosuggest searches for WordPress