search algorithms comparison

4:27 AM

(0) Comments

hey all , recently search algorithms got my attention not because its theories  which made the modern web but the algorithms and how it handle millions of records in just a few secounds , all algorithms can handle small amount of data  , but what if we had thousand  or million or even billion then we have to get into algorthims in deepest way to get it faster
i got this link from wikipedia about all known search and data mining algorithms
http://en.wikipedia.org/wiki/Category:Search_algorithms

eslam

JQuery 1.4.3 offline learning kit

1:16 PM

(0) Comments

hey every buddy ,  i hope you enjoy jquery offline learning kit that playing around jquery and discuss many subjects like selectors , cheat sheet , apis and mobile developments and some demos and exercises
you can find it here -> http://addyosmani.com/blog/jq143offlinelearningkit/

w3c lunches web events

9:35 AM

(0) Comments

yes its true , w3c lunched web events work group today to work on the web events that provide methods to enable the use of multi-touch and pen-tablet input on devices of all types and become web standard to work with mobiles , web browsers to make it useful to get full advantage of multi touch screens and sensetive tablets and such machines

http://www.w3.org/2010/webevents/

eslam

, ,

[video] front end development conference Fronteers 2010

5:58 AM

(0) Comments

Founded in 2007, Fronteers is the non-profit trade organization of Dutch front-end developers. Its goals include the professionalisation of our trade, (improved) recognition of the front-end discipline, and improving the position of Dutch front-end developers in their company and the web design/development world in general.

Fronteers 2010 took place on Thursday 7th and Friday 8th of October, in Pathé Tuschinski in Amsterdam.

[tips] limit paragraph characters php function

5:01 AM

(2) Comments

most of us need to limit paragraph characters , and then display read more button if you want to do such things you way use substr with strpos function but there is another thing you wanna do you dont want it to cut the string in the middle of the word , you want it to cut it after or before the word so you must use while loop and check if you are in space or word
to make it easier to you i modified a function to do such things

function limitChars($txt,$limit){
        if(strlen($txt) < $limit){
            return $txt; // return the text if less than limit
        }
              
        $post = substr($txt,$limit,1); // Find what is the last character displaying. We find it by getting only last one character from your display message.
       
        if($post !=" "){ // In this step, if last character is not " "(space) do this step .
       
            // Find until we found that last character is " "(space)
            // by $limit+1 (14+1=15, 15+1=16 until we found " "(space) that mean character 20)
            while($post !=" "){
                $i=1;
                $limit=$limit+$i;               
                $post = substr($txt,$limit,1);
            }
       
        }
       
        $post = substr($txt,0,$position); // Display your message
        return  $post."...";
    }

eslam

,

increase maximum upload file size in php.ini and .htaccess

5:38 AM

(0) Comments

hi all one of the big problem face the developers is server configuration and one of the most popular things is how to maximize the upload file size and post size to upload big files via browser easily without any problems

you can do such thing in two ways

1- .htaccess:
in your htaccess type the following
  • php_value upload_max_filesize 10M
  • php_value post_max_size 20M
and put the htaccess on your website root

2- php.ini
put the following in your php.ini
  • upload_max_filesize = 10M
  • post_max_size = 20M
and put the php.ini on your website root

thats it
happy coding ;)

eslam

,

[screencast] running html5 on internet explorer

2:38 AM

(0) Comments

hey all , back again with the most shocking web technology today , yes it is html5
html5 now still under developments and not yet w3 recommended tech , but most browsers support its features like google chrome , firefox and safari
and microsoft (late as usual) support it with the latest version of internet explorer ( version 9 )
but how about the ie 8 or 7 or even 6
thats what is this post about

ontwik - best web lectures and screencasts in one place

1:54 AM

(0) Comments


hey all
i am introduce to you a new website collect best lectures and screencasts in web design and web development field .
there is alot of subjects like design , html5 , javascript , ruby on rails and so on

i hope you enjoy it

http://ontwik.com/

eslam

neural networks in php - awesome

1:21 PM

(0) Comments

Neural Networks in PHP


i was looking for doing some complicated things with php , some artificial intelligence game but i didnt know how to start  , how to make php learn from previous experience and make decisions simply how to make php deal with neural networks i searched alot and i was sure that php dont have the ability to do such things neural networks without help with another language like written apache extention in c or some thing like pyton script until i found this awesome tutorial step by step neural networks in php

eslam

free awesome twitter backgrounds +psd

1:09 PM

(2) Comments

,hello all , how is life going

twitter no is life needing , this fast growing website is now part of any one life , and also part of successful   website or business , because twitter no is not only communication tools but it a very good marketing tool , so as we say "success start with good design" so i offer to you free twitter background + psd so you can modify them as you needed
 special thanks to @cheth @mistygirlph 

enjoy ;)

eslam

, , ,

beautiful and creative hotels websites for your inspiration

6:11 AM

(1) Comments

i found today group of beautiful hotels website for inspiration can open your mind and make you think and design out of the box


http://www.littlepalmisland.com/

top design and development blogs and magazines

1:51 PM

(2) Comments

web design magazines , blogs and websites


1- Smashing Magazine


smashing magazine is a known name in both prints and web design they focus on quality tutorials and newbies lessons also they give good showcases and freelancing tips
visit


2- Tuts Plus


tuts plus is huge network for all design and web development branches they cover all subjects in the field and also they have a paid section for advanced tutorials
visit

eslam

,

free high quality design icon sets + psd included

1:20 PM

(1) Comments

hey its my first post  i included to you free high quality icon sets for free i hope you enjoy it

it contains 12 high quality icon with resolution 256 * 256
designed by MediaLoot
both png and psd included
have fun


Download

eslam

, , ,