Posts

Showing posts with the label tcp-ip

What Happens When Domain Names Expire?

Image
Ever wonder what happens when a domain name expires? If the domain name registration, reservation, renewal and expiration process seems a little murky to you, you are not alone. The "expiration" process is particularly misunderstood (and complicated), and it is very helpful to know how it works, particularly when watching a parked domain, or one that is pending deletion, and determining whether to try and buy it from the domain owner, or put it on "back-order" with one of the registrars, or take some other action. There is an entire industry that does nothing but try to exploit expiring domain names, and the process and nomenclature is explained in excellent detail at this site. Here is a quick summary from the reference site (at least for .com/.net/.org/.info/.biz/.us. domains): Generally speaking, once a domain expires, the owner has 1-75 days to renew it, and the costs associated with a renewal usually increase as the domain moves from Hold (Registrar-H...

Advanced Meta tag Generator

Advanced META Tag Generator Title: Author: Subject: Description: Keywords: Generator: Language: Expires: Abstract: Copyright: Designer: Publisher: Revisit-After: Distribution: Select One 1. Global 2. Local 3. Intern Use Robots: Select One 1. All 2. None 3. Index 4. No Index 5. Follow 6. No Follow

Locating countries from IP Addresses

1. Converting an IP address to an IP Number 2.Retrieving the Country Name and Country Code from the IP Number 1. Converting an IP address to an IP Number IP address (IPv4 / IPv6) is divided into 4 sub-blocks. Each sub-block has a different weight number each powered by 256. IP number is being used in the database because it is efficient to search between a range of number in database. Beginning IP number and Ending IP Number are calculated based on following formula: IP Number = 16777216*w + 65536*x + 256*y + z     ( Formula 1 ) where IP Address = w.x.y.z For example, if IP address is "202.186.13.4", then its IP Number "3401190660" is based on the Formula 1 . IP Address = 202.186.13.4 So, w = 202, x = 186, y = 13 and z = 4 IP Number = 16777216*202 + 65536*186 + 256*13 + 4 = 3388997632 + 12189696 + 3328 + 4 = 3401190660 To reverse IP number to IP address, w = int ( IP Number / 16777216 ) % 256 x = int ( IP Number / 65536    ) % 25...