Improvment on Black-Frames.net

We just made some new modifications on Black-Frames.net in order to improve your visits.

In fact, after the DDoS indirectly made by a Twitter user, we had to react quickly to avoid our website to be down like that.

So we made some Apache modifications to handle more users (using mod_cband and mod_evasive). We continue to work with these modules to set the perfect values for our server.

We also setted up the GZip component to compress data for the newest browser and added a performant cache system, using memcached.

On the website, we corrected some bugs and added the number of votes for each images. We also moved our feeds to FeedBurner, so you should update your Rss Readers to be up to date.

Enjoy visiting Black-Frames.net and feel free to contact us if something is wrong :)

Filed under  //  Apache   Development   General   Projects   amélioration   black-frames   bug   correction   improvment   website  
Posted by Cyril Nicodème 

Bug de Emesene, libnotify : on_notify_close

Le plugin libNotify de Emesene à un bug gênant, qui génère une erreur (msgbox) indiquant que la fonction on_notify_close n'accepte que deux arguments alors que trois sont donnés :

TypeError?: on_notify_close() takes exactly 2 arguments (3 given)

Pour corriger temporairement ce problème, en attendant une nouvelle version qui corrigera le tout, est de procéder ainsi :

Ouvrez le fichier /usr/share/emesene/plugins_base/LibNotify.py, tout à la fin du fichier, remplacez :

def on_notify_close(self, n):

par

def on_notify_close(self, n, unused):

Voila ! Le bug est parti !!

Bon, cette correction est temporaire et ne corrige pas de manière PROPRE et SURE le problème.

Si vous ne savez pas comment faire ou ce que cela fait, faites attention et/ou attendez la prochaine version de emesene ! :)

Filed under  //  Development   Python   argument   bug   correction   emesene   fix   libnotify   on_notify_close   problem   tree   two  
Posted by Cyril Nicodème