7 map based news aggregation website will catch news on world map for you

4:58 AM

(0) Comments

hi all i needed a website let me read news based on location on map and after i searched a lot i found those 7 map based news aggregation website read the news by location on world map to let you find what news you want based on location
1- http://mapeas.com/


eslam

top 15 free adsense ready wordpress theme

5:10 AM

(0) Comments

need free awesome wordpress theme for adsense compatible to monetize your content
i have collected top15 free adsense ready wordpress themes i hope you enjoy it


[best practice] css techniques you should avoid

1:55 AM

(0) Comments

we will talk today about some css techniques you should completely avoid when you coding css , there is a lot of bad habits when coding css we will try to declare this techniques and why we should avoid it


1- inline-style:

one of the features that css and browser layout engine offer is inline style that you can add style to element in html like that
<div style="background-color:#000000"> hi i am here </div>

and it will overwrite the previous css
you should completely avoid that however the result it will be good but :

eslam

, ,

top 10 jquery photo gallery and image slider plugins

1:33 AM

(0) Comments

i brings to you today the most usable jquery photo galleries and image sliders plugins on the web supports many effects and animations i hope you like it


jQuery Cycle


Official WebSite - Demo


top 10 famous logo brand design tutorials

12:57 PM

(0) Comments

hi all i bring to you today 12 famous logos and brand design tutorials i hope you enjoy  it


Lifestyle Girls Vector Pack - free Vector collections

2:44 AM

(0) Comments

Lifestyle Girls Vector Pack 1

Download

Lifestyle Girls Vector Pack 2



[tips] get swf flash dimension in php

2:31 AM

(0) Comments

hi all i faced a problem in one of my websites , the client upload various swf flash files with various dimension and i must embed the flash automatically by code
i found that getimagesize function work also with swf so i made it like that
<?php
    $file = "YOUR_FILE.swf";
    $info = getimagesize($file);
    $width = $info[0];
    $height = $info[1];
    print "{$width}x{$height}\n";
?>

eslam

,