tsuuhou
links to articles, tips, triks and stuff
-
stream_copy_to_stream
a really nice and easy way to copy or download large files. using this method you will not need to use wget or other system calls - and you will not hit your servers memory limit<?php $src = fopen($in, 'r'); $dest = fopen($out, 'wb+'); stream_copy_to_stream($src, $dest); ?>
-
for those of you who needs to track external campaigns in google analytics
-
html5 security cheatsheet
no need to say much, this cheatsheet is great - hopefully html5 will soon be a reality, but....
-
html5 online book
it's not new, but it's great http://diveintohtml5.org/ -
an article on cross-browser cross-domain theft
this is a nice little article we all could learn a lot from -
php sessions and memcached
-
fravælge matchgrupper i preg_match
igen en post om ting jeg aldrig kan huske.her er du kun interesseret i at få sidste matchgruppe med i $matches, så derfor er første matchgruppe prefixet med "?:" - hvilket gør at det bliver ignoreret i selve resultatsættet.<?php preg_match_all('~(?:/xyz/)?(.+)~', $subject, $matches); ?>
-
google on web performance best practices
it is not a new article, but it still holds true - and is really insightful -
for all the jquery users out there
gustavo has created a really nice jquery-cheatsheet-wallpaper in various sizes -
another smashing html5 guide
smashing magazine have published another article on beginning html5 - it is a rather good one actually. it tries to deal with the transition from html 4 to 5, and describes the new tags and the meaning behind - go read -
making json ajax requests more secure
dave has this nice article/howto on making your json ajax requests more secure (prior to jquery 1.3.3) -
start using html5 with a clean conscience
here is an (old) fix on how to trick ie into parsing html5 documents it really is quite neat - only it does not work when you have javascript disabled, but agian who does that ? -
a good beginners article on html5
smashing magazine have this really good beginners guide to html5 it also contains a potload of related article links at the bottom of the article where you can learn a lot more -
sql injection cheat sheet
a nice sql injection cheat sheet -
black hat dc 2009
the talks form black hat dc 2009 is now available online there is a lot of interesting stuff here - if you have the time to read it, that is -
nice dom reference from sitepoint
sitepoint has created this really nice reference guide to dom core 1 + 2 -
list of legendary hackers
today darknet had an article on a list of legendary hackers - this is a very interesting piece to read if you want to brush up on some history of hacking -
owasp xss prevention cheat sheet
owasp just released a cheat sheet on xss prevention, this should be interesting to read. -
requestpolicy - a way to controle ajax requests
-
introducing exploits via exif data
paul dot com has an interesting article on how you could introduce exploits via exif data... good thinking larry