http://beckelman.net/post/2008/10/31/jQuery-clueTip-Plugin-Revisited-Demo.aspx
http://www.geekdaily.net/2008/10/31/object-oriented-programming-with-php5-a-review/
http://www.84bytes.com/2008/10/22/advanced-data-visualization-tools-built-with-javascript/
=======
http://dotnetslackers.com/articles/ajax/JQuery-Primer-Part-2.aspx
http://www.apachenews.org/archives/001195.html
http://www.databasef1.com/tutorial/mysql-backup-tutorial.html
http://dow.ngra.de/2008/11/04/script-kiddies-have-awesome-tools/
http://dow.ngra.de/wp-content/uploads/2008/11/scriptkiddies001.png
http://blog.sidu.in/2008/11/jquery-no-headers-on-success.html
http://www.natpryce.com/articles/000746.html
http://blog.amber.org/2008/11/02/the-trouble-with-logging/
http://www.sitepoint.com/blogs/2008/11/04/7-places-to-find-the-code-you-need/
http://unclescript.blogspot.com/2008/11/how-to-define-front-end-developer.html
http://www.kriesi.at/archives/apple-menu-improved-with-jquery
http://vandelaydesign.com/blog/design/website-layout-photoshop-tutorials/
CSS3
http://www.javascriptkit.com/dhtmltutors/structuralcss.shtml
PHP cheat sheet
http://www.serversidemagazine.com/news/php-5-online-cheat-sheet
http://www.noupe.com/javascript/most-wanted-ajax-techniques-50-ajax-examples-and-tutorials.html
http://htmlblog.net/10-code-snippets-for-php-developers/
ORM/Hibernate stupidities
http://brodwall.com/johannes/blog/2008/11/02/what-you-didnt-think-you-needed-to-know-about-hashcode-and-equals/
http://blog.facilelogin.com/2008/10/openssl-under-windows.html
http://dow.ngra.de/2008/11/03/when-protected-isnt-protected/
http://www.thewojogroup.com/2008/10/simplecartjs-paypal-e-commerce-in-minutes/
http://blog.konem.net/java/index.php?blog=1&title=don_t_develop_for_living_and_you_will_be&more=1&c=1&tb=1&pb=1
http://www.inc.com/magazine/20081101/how-hard-could-it-be-the-unproven-path.html
http://www.straw-dogs.co.uk/11/03/top-10-project-killers/
http://sixrevisions.com/resources/40-beautiful-free-icon-sets/#more-196
http://www-cs-students.stanford.edu/~blynn/gitmagic/book.html
http://64.233.169.104/search?q=cache:hx2lRBG0TkEJ:forums.theplanet.com/index.php%3Fshowtopic%3D90109+C99madshell&hl=en&strip=1
http://madnet.name/eng/news/29.html
allow_url_fopen = Off
disable_functions = exec,passthru,shell_exec,system,proc_open,popen,curl_exec,curl_multi_exec,parse_ini_file,show_source
http://www.phpbuilder.com/manual/features.safe-mode.functions.php
disable_functions = dl,exec,passthru,proc_open,proc_close,shell_exec,system
disable_functions = exec,passthru,system,popen,,shell_exec,proc_open,curl_exec,curl_multi_exec,parse_ini_file,show_source
# Used directly by c99 (in order)
disable_functions = exec,passthru,system,posix_getpwuid,posix_getgrgid,posix_kill,popen,pclose
file_get_contents (with url)
mysql_get_server_info
phpversion
phpinfo
ini_set
ini_get
php_uname
ftp_connect
ftp_login
fileowner
filegroup
fileperms
unlink
move_uploaded_file
readlink
fsockopen
fopen
disable_functions = "apache_get_modules,apache_get_version,apache_getenv,apache_note,
apache_setenv,disk_free_space,diskfreespace,dl,
highlight_file,ini_alter,ini_restore,openlog,passthru,phpinfo,
proc_nice,shell_exec,show_source,symlink,system"
disable_functions = system,ini_restore,symlink,fsockopen
http://64.233.169.104/search?q=cache:UUIOIUeuz4kJ:www.securiteam.com/exploits/5QP0O2KM0U.html+disable_functions&hl=en&ct=clnk&cd=9&gl=ca
http://www.askapache.com/php/custom-phpini-tips-and-tricks.html
SetEnv PHPRC /home/user
/home/user/php.ini
php_value
php_admin_value
register_globals = off
enable_track_vars = on
allow_url_fopen = Off
display_errors = Off
display_startup_errors = Off
log_errors = On
error_reporting = E_ALL
error_log = /home/yourUserID/public_html/phperr.txt
expose_php = Off
magic_quotes_gpc = On
magic_quotes_sybase = Off
register_globals = Off
# This denies all web access to your php.ini file.
order allow,deny
deny from all
==========================================
http://agilesoftwaredevelopment.com/blog/jurgenappelo/how-do-many-projects-part-4-resource-planning
http://extjs.com/blog/2008/11/03/testing-ext-js-ext-gwt-applications-with-selenium/
http://www.dotvoid.com/2008/10/soap-structures-in-php/
$soap = new SoapClient(
$wsdlurl,
array('features' => SOAP_SINGLE_ELEMENT_ARRAYS));
http://no2.php.net/manual/en/function.soap-soapclient-construct.php
http://htmlpurifier.org/docs/enduser-utf8.html
php_value default_charset "UTF-8"
http://www.serversidemagazine.com/php/4-most-important-php-security-measures
A good approach is to enable error display in development environment:
error_reporting(E_ALL);
ini_set('display_errors','On');
And once in production environment disable error display, but enable error logging to a file:
error_reporting(E_ALL);
ini_set('display_errors','Off');
ini_set('log_errors', 'On');
ini_set('error_log', '/path/to/error/log');
Alternatively error_reporting(E_ALL | E_STRICT)
Order allow,deny
Deny from all
Use:
$clean_message = strip_tags($_REQUEST['a']);
$clean_message = htmlentities($clean_message, ENT_QUOTES, 'UTF-8');
http://gojko.net/2008/11/04/specifying-with-examples/
http://cse-mjmcl.cse.bris.ac.uk/blog/2008/11/05/1225887924894.html
http://blogs.atlassian.com/developer/2008/11/stop_testing_so_much.html
http://www.webappers.com/2008/11/05/best-cheat-sheets-for-web-developers/
==========================================
http://imgiseverything.co.uk/2008/10/31/how-i-debug-ie6/
http://meyerweb.com/eric/tools/css/reset/
http://www.pushing-pixels.org/?p=765
http://www.positioniseverything.net/easyclearing.html
http://www.notesfromatooluser.com/2008/11/writing-clean-testable-code.html
http://nettuts.com/videos/screencasts/how-to-convert-a-psd-to-xhtml/
http://www.positioniseverything.net/easyclearing.html
http://www.456bereastreet.com/archive/200506/customising_custom_corners_and_borders/
http://files.myopera.com/dstorey/experiments/roundedcorners.html?1226041599
http://64.233.169.104/search?q=cache:EVFn1J2yNvkJ:snook.ca/archives/html_and_css/rounded_corners_experiment_ie/+border+radius+ie+v:roundrect&hl=en&ct=clnk&cd=1&gl=ca&client=firefox-a
jquery rounded corner