February 2012
1 post
4 tags
Web Resources Depot →
Hi everyone,
I was looking for some jQuery plugin and I discovered this great blog with articles about new free web resources that may save you a lot of time.
For example, I found this stats cypher:
or even this Open Source HTML5 charts maker:
Enjoy !
January 2012
1 post
2 tags
November 2011
1 post
Unselect radios buttons with jQuery →
You may found this weird but I had to implement some radio buttons that you want to be able to unselect. So I looked for some interesting tips on Google and found this perfect article.
You’ll get your problem solved very quickly !
October 2011
1 post
How to steal a PHP session ?
Hi everyone,
Still working on optimizing a Zend application, I was looking for information on Zend_Session and I found this piece of article very interesting:
[…] an attacker can easily fix victim’s session ids, using links on the attacker’s website, such as http://www.example.com/index.php?PHPSESSID=fixed_session_id. The fixation works, if the victim does not already have a...
September 2011
3 posts
All you should know about APC →
Hi everyone,
I was working on optimizing a website and so I had to look for improve cache management. I found this very (VERY !) interesting article explaining with concrete examples why and how you should use APC to improve your website performance.
The wonderful article
Database-driven vs Application-driven development
While I was looking for composite foreign key documentation in Doctrine, I found this very interesting answer on Stackoverflow which I wanted to share with you:
When you’re approaching the application from the database perspective something like Doctrine2 (PHP) or Hibernate (Java) from which it is “derived”, is not appropriate. These are much more suited when you want to go...
Symfony & Drupal: a new love story !
It’s been rumors last February when they started to talk about building Drupal 8 with Symfony framework !
This is now confirmed on Drupal website.
Based on the research and discussion here, we are going to integrate the Symfony2 HttpFoundation library. That is, we’re going to just bundle it with core, along with the Symfony2 autoload routines to make the code available. In...
July 2011
1 post
June 2011
1 post
2 tags
eZpublish: Don't use the "ShowUsedTemplates"...
Hi everyone,
It happened yesterday. My pagelayout completely failed in IE7 and I didn’t know why. I looked in IE8 debug toolbar. I read something about Quirks Mode. I let you look on Google about this but that what helped me find out what the problem was.
They said Quirks Mode is a compability mode made for old versions of IE. The main issue was the <DOCTYPE> tag. If this tag was...
May 2011
4 posts
2 tags
Javascript: What framework should you use ?
Hi everyone !
Nowadays, there are so many js frameworks that you won’t know which one to use. So that’s why many (more than many) people will choose jQuery for its notoriety. But actually, jQuery (which is a great framework) is not always the smart choice. Depending on your needs, you would/should choose many other frameworks.
And for those people who think just like me,...
3 tags
eZpublish: a plugin for Netbeans !
Here it is ! The eZ Community has finally made an eZ plugin for Netbeans.
You can download it here: http://projects.ez.no/eznetbeans/downloads/no_ez_eztpl_0_3_2_nbm
It’s a very young plugin so everything’s not perfect but from now on, you have no excuse for not developing your ez websites with Netbeans !
These are the basic features:
Opens tpl files as xhtml.
Opens ts...
Symfony: Design patterns and sfContext good...
Hi everyone,
I wanted to share with you some relevant information about Symfony. Over the past few weeks, I’ve been working on a Symfony project and I had to learn more deeply Symfony framework.
The first thing I learned is what exactly is inside Symfony. Then I found this blog post: http://obvioushints.blogspot.com/2008/12/symfony-design-patterns.html
This article is very interesting...
1 tag
Change the filename of your uploaded file in...
Hi everyone,
It’s been a long time I didn’t post. Lot of work at work and lot of work at home with my personal project. But here I am. I’m actually working on Symfony projects and I’ve been recently learning many many features that I would like to share with you. So I’ll try to keep you posted.
This one is about the filename. Say you have a form based on a generated...
March 2011
1 post
February 2011
1 post
Rewrite on Symfony
Hi there ~~ I know it’s been a while, but I’m gonna try to write more articles now that I’m currently working at Smile.
Fabien Potencier, that you probably know, is the creator of the famous project Symfony. When he realized the Jobeet tutorial and all the tutorials you can find on Symfony-project.org, you’ll find this VirtualHost:
<VirtualHost 127.0.0.1:8080> ...
December 2010
2 posts
Symfony on Mac OS X
I recently bought a Macbook Air 13” for 2 reasons:
I wanted to develop more Iphone apps since I know more about it ! (I’ll probably write an article to talk more about that)
I wanted to have a UNIX-like OS to develop my websites. I’m currently working on a personal project with some friends and I used to develop on Ubuntu in a VM VirtualBox. It’s pretty useful but...
Simulator is not device !
I wanted to share with you an important breakthrough in my Iphone app development. Be careful if you are used to test your app on the simulator. One of my pictures didn’t show on the device whereas everything was fine on the device. I just discovered that the simulator is not case-sensitive whereas the device is !
So if you try to display an image called “addFriend.png” but...
November 2010
2 posts
4 tags
Iphone - Get UIColor from a NSString CSS format
When you have to integrate your design from a psd, things can be tricky. Especially when you have to set colors. We’re all used to set colors in hex format such as CSS but UIColor only uses RGB format.
Here is the fist solution: a macro “hexToUIColor”
#define UIColorFromRGB(rgbValue) [UIColor \ colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \ ...
Here I am !
By opening this blog, I was wondering if I was supposed to write in English or in French ! I guess I will use English so my blog can be read by lot more people in the world !
Ok, so now, let’s start about what I am gonna talk on this blog. Since I’m almost graduated from EPITA (graduate school of computer science and software engineering), I thought it would be a good...