globalnerdy.com Report : Visit Site


  • Ranking Alexa Global: # 709,060,Alexa Ranking in United States is # 249,726

    Server:LiteSpeed...
    X-Powered-By:PleskLin

    The main IP address: 207.58.137.226,Your server United States,Reston ISP:Servint  TLD:com CountryCode:US

    The description :computer-y, with a chance of mobile...

    This report updates in 14-Aug-2018

Created Date:2006-08-16
Changed Date:2015-08-07

Technical data of the globalnerdy.com


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host globalnerdy.com. Currently, hosted in United States and its service provider is Servint .

Latitude: 38.938861846924
Longitude: -77.34619140625
Country: United States (US)
City: Reston
Region: Virginia
ISP: Servint

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called LiteSpeed containing the details of what the browser wants and will accept back from the web server.

Content-Length:38968
Content-Encoding:gzip
Accept-Ranges:bytes
X-Powered-By:PleskLin
Vary:Accept-Encoding, User-Agent
Server:LiteSpeed
Last-Modified:Tue, 14 Aug 2018 08:55:10 GMT
Connection:close
ETag:"4364a-5b7298ee-f00c9622"
Date:Tue, 14 Aug 2018 09:17:33 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns.globalnerdy.com. accordionguy.gmail.com. 1274847328 10800 3600 604800 10800
ns:ns.globalnerdy.com.
ipv4:IP:207.58.137.226
ASN:25847
OWNER:SERVINT - ServInt, US
Country:US
mx:MX preference = 10, mail exchanger = mail.globalnerdy.com.

HtmlToText

home about accordion guy google+ twitter subscribe - joey devilla's mobile/tech blog i will teach you data science, part 2: similar people and manhattan distance by joey devilla on august 13, 2018 this is the second in a series of articles where i’ll get you started on the basics of data science with python. in this article, we’ll take our first step in building recommendation systems: determining how similar people are by measuring the manhattan distance between them. you’ll want the following before you proceed any further: the previous article. it’s a good introduction to the series. the book: a programmer’s guide to data mining: the ancient art of the numerati — it’s free to download, and it’s the book we’ll use for the next little while. python 3: yes, you may have python 2 on your system right now, but it’s 2018. get python 3 — preferably python 3.6 or later. chapter 2 of a programmer’s guide to data mining: the ancient art of the numerati is about building recommendation systems. many recommendation systems are based on the idea that people similar to you often like similar things. their trick is to find people who like things that you like, and show you things that you might not have seen yet. for example, here’s a screenshot from my amazon account, which shows kindle magazines they’ll think i’ll like, based on my browsing, purchasing, rating history, and who-knows-what-else: the chapter’s exercises in building a simple recommendation engine make use of the information in the table shown below, which shows 8 people’s ratings of 8 bands that you’d likely hear on an alt-rock station circa 2012: click the table to see it at full size. each person has rated a number of the 8 bands on a scale of 1 (“hate them”) to 5 (“love them”). no one in the group has rated all 8 bands. your first question — and the question we’ll try to answer in this article — should be “how do i tell how similar any two people in this table are?”. i’ll start with some theory, but you’ll see actual code by the end of the article. similarity and distance before explaining how to figure out how similar any two people in the 8-by-8 table of people and bands are, zacharski (the author of a programmer’s guide to data mining: the ancient art of the numerati ) starts with a simpler data set: three people, who’ve rated two books on a scale of 0 (worst) to 5 (best): the cyber-thrllers snow crash and the girl with the dragon tattoo… book amy’s rating bill’s rating jim’s rating the girl with the dragon tattoo 5 5 4 snow crash 5 2 1 if you were to plot each person’s rating for the books as a single point on a two-dimensional graph, with the girl with the dragon tattoo as the x-axis and snow crash as the y-axis, you’d get this: image from a programmer’s guide to data mining: the ancient art of the numerati . the graph makes it easy to see whose tastes are similar. the closer any two people’s points are, the more similar their tastes in cyber-thriller books are. simply by looking at the graph, you can see that jim’s taste is more similar to bill’s than it is to amy’s, bill’s is more similar to amy’s than jim’s is, and bill’s is more similar to jim’s than his is to amy’s. while it’s easy for us humans to visually tell whose tastes are similar, it’s much easier to have a program do it mathematically, and there are a number of ways to do it. let’s look at the simplest way: calculating the manhattan distance between any two points. manhattan distance there’s a joke about the difference between the directions given to you by google maps and waze: google maps will suggest an alternate road to cut down your travel time; waze will suggest a shortcut through someone’s living room. the manhattan distance between two points is more like the google maps suggestion. it’s the simplest, computationally least expensive way to compute the distance between two points on a grid. it gets the name “manhattan” from the way you’d have to travel from one point to another by cab in manhattan’s grid of streets: only horizontally or vertically, with no diagonals allowed: the manhattan distance between a point located at (x1, y1) and another point at (x2, y2) is simply: x-distance between the points + y-distance between the points or, more mathematically: | x1 – x2 | + | y1 – y2 | looking at the dragon tattoo/snow crash graph… …we can calculate the manhattan distance between bill and jim: | 5 – 4 | + | 2 – 1 | = 2 and the manhattan distance between jim and amy: | 4 – 5 | + | 1 – 5 | = 5 using manhattan distance with more than two dimensions in the previous example, we were dealing with a two-dimensional space, where ratings for the girl with the dragon tattoo form one dimension, and ratings for snow crash form another. let’s go back to the “people and bands” study and look at two of the people, jordyn and sam. here’s a smaller table that shows only their ratings, and the differences between their ratings for each band: band jordyn’s rating for that band sam rating for that band difference between jordyn’s rating and sam’s rating blues traveler – 5 n/a broken bells 4.5 2 2.5 deadmau5 4 – n/a norah jones 5 3 2 phoenix 5 5 0 slightly stoopid 4.5 4 0.5 the strokes 4 5 1 vampire weekend 4 – n/a note that jordyn and sam didn’t rate all the bands. to calculate the manhattan distance between them, we need to work with only those bands that they both rated. here’s what the table looks like with only those bands: band jordyn’s rating for that band sam rating for that band difference between jordyn’s rating and sam’s rating broken bells 4.5 2 2.5 norah jones 5 3 2 phoenix 5 5 0 slightly stoopid 4.5 4 0.5 the strokes 4 5 1 now we can calculate the manhattan distance between jordyn’s and sam’s musical tastes. it’s not all that different from the first manhattan distance we calculated — it’s simply the sum of all the differences between their ratings for each band, or: difference between jordyn’s and sam’s ratings for broken bells + difference between jordyn’s and sam’s ratings for norah jones + difference between jordyn’s and sam’s ratings for phoenix + difference between jordyn’s and sam’s ratings for slightly stoopid + difference between jordyn’s and sam’s ratings for the strokes which is: | 4.5 – 2 | + | 5 – 3 | + | 5 – 5 | + | 4.5 – 4 | + | 4 – 5 | = 6. given that jordyn and sam are rating 5 bands on a scale of 1 to 5 (where 1 is “hate them” and 5 is “love them”), their manhattan distance can range from… 0, which means that they love these 5 bands equally, to 20, which means that they have completely opposite opinions of each of the 5 bands. with a manhattan distance of 6 (out of maximum of 20) based on 5 bands that are pretty likely to appear on a single spotify playlist, it would be fair to say that musically speaking, jordyn and sam are more alike than dissimilar. calculating manhattan distance, the book’s way if you remember the previous article in this series or are following along with the book, you know that the “people and bands” data is expressed in code using a python dictionary, as shown below: python users = { "angelica": { "blues traveler": 3.5, "broken bells": 2.0, "norah jones": 4.5, "phoenix": 5.0, "slightly stoopid": 1.5, "the strokes": 2.5, "vampire weekend": 2.0 }, "bill": { "blues traveler": 2.0, "broken bells": 3.5, "deadmau5": 4.0, "phoenix": 2.0, "slightly stoopid": 3.5, "vampire weekend": 3.0 }, "chan": { "blues traveler": 5.0, "broken bells": 1.0, "deadmau5": 1.0, "norah jones": 3.0, "phoenix": 5, "slightly stoopid": 1.0 }, "dan": { "blues traveler": 3.0, "broken bells": 4.0, "deadmau5": 4.5, "phoenix": 3.0, "slightly stoopid": 4.5, "the strokes": 4.0, "vampire weekend": 2.0 }, "hailey": { "broken bells": 4.0, "deadmau5": 1.0, "norah jones": 4.0, "the strokes": 4.0, "vampire weekend": 1.0 }, "jordyn": { "broken bells": 4.5, "deadmau5": 4.0, "norah jones": 5.0, "phoenix": 5.0, "slightly stoopid": 4.5, "the strokes": 4.0, "vampire weekend": 4.0 }, "sam": { "blues traveler": 5.0, "broken bells": 2.0, "

URL analysis for globalnerdy.com


http://www.globalnerdy.com/2014/02/
http://www.globalnerdy.com/2009/11/
http://www.globalnerdy.com/2007/03/
http://www.globalnerdy.com/wordpress/wp-admin/
http://www.globalnerdy.com/2018/07/14/whats-happening-tampa-bay-tech-entrepreneur-nerd-scene-week-monday-july-16-2018/
http://www.globalnerdy.com/2016/05/08/how-to-build-an-ios-weather-app-in-swift-part-3-giving-the-app-a-user-interface/comment-page-1/#comment-1400579
http://www.globalnerdy.com/2012/06/
http://www.globalnerdy.com/2016/08/
http://www.globalnerdy.com/2011/04/
http://www.globalnerdy.com/2014/10/
http://www.globalnerdy.com/2011/07/
http://www.globalnerdy.com/2009/05/
http://www.globalnerdy.com/category/fldev/
http://www.globalnerdy.com/2008/07/
http://www.globalnerdy.com/2015/04/

Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;

Domain Name: GLOBALNERDY.COM
Registry Domain ID: 555885889_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.tucows.com
Registrar URL: http://www.tucows.com
Updated Date: 2015-08-07T23:24:28Z
Creation Date: 2006-08-16T02:43:52Z
Registry Expiry Date: 2021-08-16T02:43:52Z
Registrar: Tucows Domains Inc.
Registrar IANA ID: 69
Registrar Abuse Contact Email:
Registrar Abuse Contact Phone:
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Name Server: NS1.PRESSHARBOR.COM
Name Server: NS2.PRESSHARBOR.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2019-02-09T12:26:48Z <<<

For more information on Whois status codes, please visit https://icann.org/epp

NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.

TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.

The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.

  REGISTRAR Tucows Domains Inc.

SERVERS

  SERVER com.whois-servers.net

  ARGS domain =globalnerdy.com

  PORT 43

  TYPE domain

DOMAIN

  NAME globalnerdy.com

  CHANGED 2015-08-07

  CREATED 2006-08-16

STATUS
clientTransferProhibited https://icann.org/epp#clientTransferProhibited
clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited

NSERVER

  NS1.PRESSHARBOR.COM 23.111.131.102

  NS2.PRESSHARBOR.COM 138.68.14.51

  REGISTERED yes

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.uglobalnerdy.com
  • www.7globalnerdy.com
  • www.hglobalnerdy.com
  • www.kglobalnerdy.com
  • www.jglobalnerdy.com
  • www.iglobalnerdy.com
  • www.8globalnerdy.com
  • www.yglobalnerdy.com
  • www.globalnerdyebc.com
  • www.globalnerdyebc.com
  • www.globalnerdy3bc.com
  • www.globalnerdywbc.com
  • www.globalnerdysbc.com
  • www.globalnerdy#bc.com
  • www.globalnerdydbc.com
  • www.globalnerdyfbc.com
  • www.globalnerdy&bc.com
  • www.globalnerdyrbc.com
  • www.urlw4ebc.com
  • www.globalnerdy4bc.com
  • www.globalnerdyc.com
  • www.globalnerdybc.com
  • www.globalnerdyvc.com
  • www.globalnerdyvbc.com
  • www.globalnerdyvc.com
  • www.globalnerdy c.com
  • www.globalnerdy bc.com
  • www.globalnerdy c.com
  • www.globalnerdygc.com
  • www.globalnerdygbc.com
  • www.globalnerdygc.com
  • www.globalnerdyjc.com
  • www.globalnerdyjbc.com
  • www.globalnerdyjc.com
  • www.globalnerdync.com
  • www.globalnerdynbc.com
  • www.globalnerdync.com
  • www.globalnerdyhc.com
  • www.globalnerdyhbc.com
  • www.globalnerdyhc.com
  • www.globalnerdy.com
  • www.globalnerdyc.com
  • www.globalnerdyx.com
  • www.globalnerdyxc.com
  • www.globalnerdyx.com
  • www.globalnerdyf.com
  • www.globalnerdyfc.com
  • www.globalnerdyf.com
  • www.globalnerdyv.com
  • www.globalnerdyvc.com
  • www.globalnerdyv.com
  • www.globalnerdyd.com
  • www.globalnerdydc.com
  • www.globalnerdyd.com
  • www.globalnerdycb.com
  • www.globalnerdycom
  • www.globalnerdy..com
  • www.globalnerdy/com
  • www.globalnerdy/.com
  • www.globalnerdy./com
  • www.globalnerdyncom
  • www.globalnerdyn.com
  • www.globalnerdy.ncom
  • www.globalnerdy;com
  • www.globalnerdy;.com
  • www.globalnerdy.;com
  • www.globalnerdylcom
  • www.globalnerdyl.com
  • www.globalnerdy.lcom
  • www.globalnerdy com
  • www.globalnerdy .com
  • www.globalnerdy. com
  • www.globalnerdy,com
  • www.globalnerdy,.com
  • www.globalnerdy.,com
  • www.globalnerdymcom
  • www.globalnerdym.com
  • www.globalnerdy.mcom
  • www.globalnerdy.ccom
  • www.globalnerdy.om
  • www.globalnerdy.ccom
  • www.globalnerdy.xom
  • www.globalnerdy.xcom
  • www.globalnerdy.cxom
  • www.globalnerdy.fom
  • www.globalnerdy.fcom
  • www.globalnerdy.cfom
  • www.globalnerdy.vom
  • www.globalnerdy.vcom
  • www.globalnerdy.cvom
  • www.globalnerdy.dom
  • www.globalnerdy.dcom
  • www.globalnerdy.cdom
  • www.globalnerdyc.om
  • www.globalnerdy.cm
  • www.globalnerdy.coom
  • www.globalnerdy.cpm
  • www.globalnerdy.cpom
  • www.globalnerdy.copm
  • www.globalnerdy.cim
  • www.globalnerdy.ciom
  • www.globalnerdy.coim
  • www.globalnerdy.ckm
  • www.globalnerdy.ckom
  • www.globalnerdy.cokm
  • www.globalnerdy.clm
  • www.globalnerdy.clom
  • www.globalnerdy.colm
  • www.globalnerdy.c0m
  • www.globalnerdy.c0om
  • www.globalnerdy.co0m
  • www.globalnerdy.c:m
  • www.globalnerdy.c:om
  • www.globalnerdy.co:m
  • www.globalnerdy.c9m
  • www.globalnerdy.c9om
  • www.globalnerdy.co9m
  • www.globalnerdy.ocm
  • www.globalnerdy.co
  • globalnerdy.comm
  • www.globalnerdy.con
  • www.globalnerdy.conm
  • globalnerdy.comn
  • www.globalnerdy.col
  • www.globalnerdy.colm
  • globalnerdy.coml
  • www.globalnerdy.co
  • www.globalnerdy.co m
  • globalnerdy.com
  • www.globalnerdy.cok
  • www.globalnerdy.cokm
  • globalnerdy.comk
  • www.globalnerdy.co,
  • www.globalnerdy.co,m
  • globalnerdy.com,
  • www.globalnerdy.coj
  • www.globalnerdy.cojm
  • globalnerdy.comj
  • www.globalnerdy.cmo
Show All Mistakes Hide All Mistakes