| Mo | Tu | We | Th | Fr | Sa | Su |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | ||
| 6 | 7 | 8 | 9 | 10 | 11 | 12 |
| 13 | 14 | 15 | 16 | 17 | 18 | 19 |
| 20 | 21 | 22 | 23 | 24 | 25 | 26 |
| 27 | 28 | 29 | 30 | 31 |
Browse archives
Popular contentAll time:
|
Challenges faced by automated web application security assessment toolsThis page analyzes the challenges face by Web Application Security Scanners when they try check modern web applications. Some of them are Session State Management, Logical Flow and Script Parsing. // [ Challenges faced by automated web application security assessment tools ] Your web design tested in different browsersWhen you design a new website, it is really useful try it in different browsers. In browsershots.org, you submit your url and a number of distributed computers will automatically open your website in their browser. Then they will make screenshots and upload them to the central server. It is not an immediate process, and perhaps you must be patient, but it is a really useful tool. // [browsershots.org] firebugFirebug is an excellent extension for Firefox that allows you inspect and debug your html, css and javascript code (including AJAX). One of its multiple features is the ability of log all XMLHttpRequest() calls. Nice, isn't it? // Firebug tuning PostgreSQL for PerformanceTutorial for tuning PostgreSQL settings for performance. It explains the main parameters of the postgresql.conf files, and gives some good tips for tuning PostgreSQL. ip blocking monitorIP Blocking Monitor is a security tool that analyses log files in order to configure iptables to reject connections from dangerous IPs. It is able to synchronize multiple servers with the same configuration. It can detects force brute attacks in ssh and apache logs. setting character set server in mysql
If you need to know what character set is using your MySQL server, you can use the next command:
mysql> show variables like 'character_set_server' ; +----------------------+-------+ | Variable_name | Value | +----------------------+-------+ | character_set_server | utf8 | +----------------------+-------+ 1 row in set (0.00 sec)You can change the character set putting the next line in the my.cnf configuration file: character-set-server = utf8 20 html email tips: ignore at your own riskGood article by Loren Mc Donald with 20 interesting tips about html email, classified in three areas: format, functionality and usability. [ http://emaillabs.com/articles/email_articles/html_email_design_tips.html ] dontclick!Can you navigate a page without clicks...? dontclick.it explores a clickfree environment. It wants to explore how and what changes for the user and the interface once you can't rely on the habit of clicking. [ dontclick.it ] semantic headersWolfgang Bartelme, a user interface designer, has written an interesting article about improving the navigation of a site (mainly for pdas and screen readers, but for visual browsers, too). A good approach to the accesskey attribute. [ Semantic Headers ] top ten web design mistakes of 2005Jakob Nielsen has published the list of web design mistakes of this year. Take a look to them and improve your web!. The first one is... legibility. Simple, isn't it?. And easy to solve. |