dimanche 1 février 2009
FOSDEM 2009
Par Jean-François, dimanche 1 février 2009 à 20:45 :: Dev
FOSDEM 2009: Linux, Mozilla, MySQL et plus encore
dimanche 1 février 2009
Par Jean-François, dimanche 1 février 2009 à 20:45 :: Dev
FOSDEM 2009: Linux, Mozilla, MySQL et plus encore
dimanche 17 février 2008
Par Jean-François, dimanche 17 février 2008 à 21:35 :: Dev
The eighth FOSDEM is a two-day event organized by volunteers to promote the widespread use of Free and Open Source software.
Taking place in the beautiful city of Brussels (Belgium), FOSDEM meetings are recognized as "The best Free Software and Open Source events in Europe".
I'm (of course) going to FOSDEM (again) this year, on Sunday 24 February.
FYI, a LinkedIn group has been created for those who will attend the event.
There's also a FOSDEM channel on fidzu available for your enjoyment.
And last but not least, Emakina, the company I work for, is an official FOSDEM sponsor, and is hiring...
jeudi 9 août 2007
Par Jean-François, jeudi 9 août 2007 à 22:54 :: Dev
This a widget example, using the jQuery jFeed and wordStats plugins, to display a list of articles related to the current document.
JavaScript code:
<script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="jquery.wordstats.js"></script> <script type="text/javascript" src="jquery.wordstats.en.js"></script> <script type="text/javascript" src="jquery.jfeed.pack.js"></script> <script type="text/javascript">
$(function() {
var count = 3;
$.wordStats.computeTopWords(count); //compute the 3 first top words
//create the query
var query = '';
for(var i = 0; i < count && i < $.wordStats.topWords.length; i++) {
query += $.wordStats.topWords[i].substring(1) + ' ';
}
query = query.substring(0, query.length - 1);
$('#related').html('Querying blogs for: "' + query + '" ...');
//load and parse the feed
jQuery.getFeed({
url: 'proxy.php?query=' + query,
success: function(feed) {
var html = "<h2>Related articles</h2><ul>";
for(var i = 0; i < feed.items.length; i++) {
html += '<li><h3 class="feeditemtitle">'
+ '<a href="' + feed.items[i].link + '">'
+ feed.items[i].title + '</a></h3>'
+ '<p class="feeditemdescription">'
+ feed.items[i].description + '</p>';
}
html += '</ul>';
$('#related').html(html);
}
});
});
</script>
Par Jean-François, jeudi 9 août 2007 à 22:18 :: Dev
The jQuery wordStats plugin tries to determine what a page is about by computing the density of its keywords.
It uses a simple algorithm which adds a variable weight for each keyword occurence, depending on its 'position' in the document.
Although this computation model is quite simple, I get good results with all sorts of documents.
There's of course a system to exclude 'stop words' (frequent pronouns, prepositions, adverbs and so on).
Example: computing top keywords of a Wikipedia article.
Usage:
<script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="jquery.wordstats.js"></script> <!-- core code --> <script type="text/javascript" src="jquery.wordstats.en.js"></script> <!-- English stop words --> <script type="text/javascript">
$(function() {
var count = 3;
$.wordStats.computeTopWords(count);
//$.wordStats.topWords[0] returns the most frequent keyword
//$.wordStats.topWords[1] the second, and so on
$.wordStats.clear(); //release memory
//compute top keywords of the element with id="content"
$.wordStats.computeTopWords(count, $('#content'));
});
</script>
Download:
Dual licensed under MIT/GPL.