Blogs

SlidesShow - HTML5

I'm really interesting about slideshow in html5 with cool effect. I want to be able to push it easily in a simple static server like nginx, or just take it with me on a usb key for a show.

So here some I have found :

You write in html5, the js do the rest :

Try to draw - Maliki

Hi, I'm training to draw stuff. Here 2 stuffs from Maliki: (click to enlarge)

    

I'm not just a geek :)

Celogeek

SafeNet Token and Openvpn on Oneiric ? SOLVED !

Hi, my co-worker has found a way to make it work !

sudo apt-get remove --purge libpcsclite1 pcscd
sudo apt-get clean
sudo apt-get install pcscd libpcsclite1 
sudo dpkg -i SafenetAuthenticationClient-8.0.5-0_amd64.deb
wget http://mirror.ovh.net/ubuntu//pool/main/p/pkcs11-helper/libpkcs11-helper1_1.09-1_amd64.deb
sudo dpkg -i libpkcs11-helper1_1.09-1_amd64.deb
cat <<EOF | sudo tee /etc/ld.so.conf.d/etoken.conf
/usr/lib64
EOF
sudo ldconfig
sudo reboot

For PKIMonitor and autolaunch in user mode, I have follow this guide :

MySQL 4 - Indexes issues

Well, I have to use MySQL 4 in production at work, and well, they is something weird about this.

To speed up copy process I create table without indexes. It really speed up copy, 6x times faster or more (5 min instead of 1h) !

Just before using in compute process, I add the indexes I need :

ALTER TABLE my_table ADD INDEX(a,b,c), ADD INDEX(a,d,e) ...

Seems ok, so now I do my request.

First weird think, MySQL don't always use the best index. Ex :

Perl - How to generate package on the fly ?

It is a real question, I want to be able to do something like that :

sub generate_package {
 my ($package_name) = @_;
 return q{
   package t;
   use }.$package_name.q{;
   use MooX::Option;

   has 'test' => (is => 'ro');
   1
 }
}

{
  eval(generate_package('Moo'));
  t->new_with_options();
}

I have seen some stuff, like define directly ISA : *{"t::ISA"} = 't';

But how can I add my compiled code ?

If anybody can help me on this, thanks !

Zimbra on Ubuntu 9.04

there used to be a link on this site with the download files for Zimbra for Ubuntu 9.04, it was really cool, and now it is gone, how can I find those downloads?

Piwik - a great alternative of Google Analytics

Hi, I have recently found an excellent open source software to analyze in real time your log on your site.

Piwik, is an Open Source solution, easy to install, for handle all of your stats. It work for small, medium and large site.

Why I don't like MySQL ! Transaction suck because of the Implicit Commit !!!

Well, MySQL is a simple database with a lot of feature now. It is easy to find a host and have a database like this. You can connect to MySQL with all languages out there. But sometime I hate it because I can't do what I need to do properly :

I have a case, I create a new action, I want to create a table to save all data for this action in the table and I want to like all of this to a product specific action. I need a transaction like this :

BEGIN TRANSACTION

Pages

Subscribe to RSS - blogs