dave-smith.co.uk Report : Visit Site


  • Server:Apache/2.4...

    The main IP address: 98.129.229.91,Your server United States,Dallas ISP:Mosso Hosting  TLD:uk CountryCode:US

    The description :dave\'s adventures...

    This report updates in 21-Jul-2018

Created Date:27-Apr-2000
Changed Date:29-Mar-2018

Technical data of the dave-smith.co.uk


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host dave-smith.co.uk. Currently, hosted in United States and its service provider is Mosso Hosting .

Latitude: 32.783058166504
Longitude: -96.806671142578
Country: United States (US)
City: Dallas
Region: Texas
ISP: Mosso Hosting

the related websites

HTTP Header Analysis


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

Transfer-Encoding:chunked
Set-Cookie:X-Mapping-gjkdapeb=A4C78BE14C05EECDAD52DFB8AA844177; path=/
Vary:Accept-Encoding,Cookie
Server:Apache/2.4
Connection:Keep-Alive
Cache-Control:max-age=3, must-revalidate
Date:Sat, 21 Jul 2018 00:31:22 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns.liquidweb.com. admin.liquidweb.com. 2017012800 86400 7200 3600000 14400
txt:"keybase-site-verification=UhezlyFeTf5hzsc7e0xhQ2V3i9K7ho-RjjqXCDXUyZ8"
ns:ns.liquidweb.com.
ns1.liquidweb.com.
ipv4:IP:98.129.229.91
ASN:53824
OWNER:LIQUIDWEB - Liquid Web, L.L.C, US
Country:US
mx:MX preference = 5, mail exchanger = ALT2.ASPMX.L.GOOGLE.COM.
MX preference = 5, mail exchanger = ALT1.ASPMX.L.GOOGLE.COM.
MX preference = 10, mail exchanger = ASPMX2.GOOGLEMAIL.COM.
MX preference = 10, mail exchanger = ASPMX3.GOOGLEMAIL.COM.
MX preference = 1, mail exchanger = ASPMX.L.GOOGLE.COM.

HtmlToText

skip to content ds your tagline here for less than you think scroll down to content posts posted on june 6, 2018 lego bugatti chiron so in follow up to my previous post about the lego porsche 911 gt3 rs i have been fortunate enough to receive the gift of a lego bugatti chiron thanks to the ever patient octavia. again a massive box of lego, and what looks to be amazing building experience, over the next few days i’m going to listen to the podcasts that accompany the build and hopefully at the weekend at least open the first bag of bits to get cracking on the build…. ….not a fan of lego, probably best to come back in a few weeks time when i might have posted about something else (maybe) so here’s a tease…. outside posted on december 29, 2017 so the fitness thing… …once again failed this year. started well with a few months of marathon training and getting to my longest run ever (25km) but then as ever injury and lethargy “prevented” me doing much more. clearly i need a target to motivate me to do something and “fitness” isn’t enough. anyway the stats from 2017: cycling : 263km (all commuting to and from the station) running : 440km (mostly in the first 3 months of 2017) swimming: 12km lots of changes happening in 2018, but alongside the changes and unknowns i’d really like to find a way to consistently exercise. posted on december 27, 2017 march 20, 2018 getting your (pi) dev on update and install some things, this is of course biased to how i like things to be setup ;-) $ sudo apt-get update && sudo apt-get upgrade -y $ sudo apt-get install -y vim-nox git zsh python3-pip python3-smbus i2c-tools python3-envirophat python3-blinkt python3-inkyphat $ sh -c "$(curl -fssl https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" $ mkdir -p ~/.vim/pack/<github_username>/start $ cd ~/.vim/pack/<github_username>/start $ git clone https://github.com/python-mode/python-mode.git $ cd python-mode $ git submodule update --init --recursive note: just using my github_username above as a handy folder name, probably good if you’re using the dotfiles pattern as well. and then this guide to configure i2c helped with get the envirophat working posted on december 27, 2017 april 22, 2018 debugging headless raspberry pi zero w so of course having posted about setting up a raspberry pi zero w there now follows the inevitable debugging connection problems post ;-) without a monitor to use, or a working connection to the pi debugging was going to be less than simple as i need to look at the logs. so how do i mount an ext4 volume on a mac to take a look at the logs? $ brew cask install osxfuse $ brew install ext4fuse so now i can plug the sd card into a reader and mount up the volume which in my case was as simple as: $ sudo ext4fuse /dev/disk2s2 /volumes/pi then i could navigate into /volumes/pi and start poking around at the log files to try and find what the issue was. $ more /var/log/syslog in my case it was down to user error and not checking the types of wifi the zero could support. 5ghz isn’t supported it would appear, switching to my 2.4ghz wifi resolved the problem. posted on december 27, 2017 march 20, 2018 headless wifi setup on a raspberry pi zero w so after drawing inspiration from a couple of people and the fact my daughter is now attending the local coder dojo . i thought maybe i should get into a bit of hacking and playing around with coding more so i can help answer some of the inevitable questions. i now have a pi zero (w) sitting on my desk with no easy way of setting it up. download the latest raspbian from here . i’m using 2017-11-29-raspbian-stretch-lite in this example which was the latest as of writing. oh and because i still can’t solder very well i got the hammer header set to make things a bit easier. (and so i can use a hammer as a soldering iron!) so this was completed using osx and serves mainly as a reference for me, but might also be useful for anyone else trying to get wifi working on a headless raspberry pi zero w to get the image on to the sd card: $ brew cask install etcher and use the simple interface to select the previously downloaded image and your sd card, if the sd card isn’t showing, unplug it from the card reader and plug it back in. once etcher has finished writing the image to the card you should be able to use terminal to access the boot volume of the card: $ cd /volumes/boot create the files you need: $ touch wpa_supplicant.conf ssh ssh remains empty and is just there so that ssh is enabled on the pi at boot time. ** note: ** if you look at the boot volume of the sd card once it has been used in a pi you will find that the two files created aren’t present, it’s ok they are moved to the correct location on start up. you need to configure the wpa_supplicant.conf with your wireless connection(s): $ vim wpa_supplicant.conf add your wifi configuration(s): ctrl_interface=dir=/var/run/wpa_supplicant group=netdev update_config=1 network={ ssid="essid" psk="your_wifi_password" } or for multiple connection profiles: ctrl_interface=dir=/var/run/wpa_supplicant group=netdev update_config=1 network={ ssid="essid1" psk="your_wifi_password" priority=100 } network={ ssid="essid2" psk="your_wifi_password" priority=90 } save the file for added winning following this gist you can also set up your pi zero w so that you can ssh into it using a usb connection (just plug your usb cable into the right connection, not the power one) all done? (maybe) unmount the sd card plug into your pi and power on. once you the pi has successfully booted up you should be able to access it using ssh [email protected] to get around the inconvenience of having to type your password: $ scp ~/.ssh/id_rsa.pub [email protected]:~/.ssh/authorized_keys don’t forget to still change the default password on the pi, every time you log in it will be there just above the prompt until you do anyway. posts navigation page 1 page 2 … page 16 next page time passes…. july 2018 m t w t f s s « jun 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 tags 3-words adobe apple aws bt cloud cms code club coding efa fedora icloud ide image iscsi javascript jenkins learning lego life lion mockups mountain lion network openshift origin osx pi pyrocms rackspace red hat ror ruby running sql ssl technology testing text editor tools triathlon vmware wirewool work xcode zimbra my tweets proudly powered by wordpress

URL analysis for dave-smith.co.uk


http://www.dave-smith.co.uk/tag/cloud
http://www.dave-smith.co.uk/tinkering/debugging-headless-raspberry-pi-zero-w
http://www.dave-smith.co.uk/tinkering/headless-wifi-setup-on-a-raspberry-pi-zero-w
http://www.dave-smith.co.uk/tag/cms
http://www.dave-smith.co.uk/blog/so-the-fitness-thing
http://www.dave-smith.co.uk/tag/triathlon
http://www.dave-smith.co.uk/tag/tools
http://www.dave-smith.co.uk/tag/image
http://www.dave-smith.co.uk/tag/javascript
http://www.dave-smith.co.uk/tag/rackspace
http://www.dave-smith.co.uk/tag/running
http://www.dave-smith.co.uk/tag/pi
http://www.dave-smith.co.uk/blog/lego-bugatti-chiron/attachment/img_0630
http://www.dave-smith.co.uk/blog/lego-bugatti-chiron/attachment/img_0632
http://www.dave-smith.co.uk/tag/ide

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:
dave-smith.co.uk

Data validation:
Nominet was able to match the registrant's name and address against a 3rd party data source on 10-Dec-2012

Registrar:
eNom LLC [Tag = ENOM]
URL: http://www.enom.com

Relevant dates:
Registered on: 27-Apr-2000
Expiry date: 27-Apr-2019
Last updated: 29-Mar-2018

Registration status:
Registered until expiry date.

Name servers:
ns.sourcedns.com
ns1.sourcedns.com

WHOIS lookup made at 01:31:37 21-Jul-2018

--
This WHOIS information is provided for free by Nominet UK the central registry
for .uk domain names. This information and the .uk WHOIS are:

Copyright Nominet UK 1996 - 2018.

You may not access the .uk WHOIS or use any data from it except as permitted
by the terms of use available in full at https://www.nominet.uk/whoisterms,
which includes restrictions on: (A) use of the data for advertising, or its
repackaging, recompilation, redistribution or reuse (B) obscuring, removing
or hiding any or all of this notice and (C) exceeding query rate or volume
limits. The data is provided on an 'as-is' basis and may lag behind the
register. Access may be withdrawn or restricted at any time.

  REFERRER http://www.nominet.org.uk

  REGISTRAR Nominet UK

SERVERS

  SERVER co.uk.whois-servers.net

  ARGS dave-smith.co.uk

  PORT 43

  TYPE domain

DOMAIN

SPONSOR
eNom LLC [Tag = ENOM]
URL: http://www.enom.com
Relevant dates:

  CREATED 27-Apr-2000

  CHANGED 29-Mar-2018

STATUS
Registered until expiry date.

NSERVER

  NS.SOURCEDNS.COM 69.16.222.254

  NS1.SOURCEDNS.COM 69.16.223.254

  NAME dave-smith.co.uk

DISCLAIMER
This WHOIS information is provided for free by Nominet UK the central registry
for .uk domain names. This information and the .uk WHOIS are:
Copyright Nominet UK 1996 - 2018.
You may not access the .uk WHOIS or use any data from it except as permitted
by the terms of use available in full at https://www.nominet.uk/whoisterms,
which includes restrictions on: (A) use of the data for advertising, or its
repackaging, recompilation, redistribution or reuse (B) obscuring, removing
or hiding any or all of this notice and (C) exceeding query rate or volume
limits. The data is provided on an 'as-is' basis and may lag behind the
register. Access may be withdrawn or restricted at any time.

  REGISTERED no

Go to top

Mistakes


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

  • www.udave-smith.com
  • www.7dave-smith.com
  • www.hdave-smith.com
  • www.kdave-smith.com
  • www.jdave-smith.com
  • www.idave-smith.com
  • www.8dave-smith.com
  • www.ydave-smith.com
  • www.dave-smithebc.com
  • www.dave-smithebc.com
  • www.dave-smith3bc.com
  • www.dave-smithwbc.com
  • www.dave-smithsbc.com
  • www.dave-smith#bc.com
  • www.dave-smithdbc.com
  • www.dave-smithfbc.com
  • www.dave-smith&bc.com
  • www.dave-smithrbc.com
  • www.urlw4ebc.com
  • www.dave-smith4bc.com
  • www.dave-smithc.com
  • www.dave-smithbc.com
  • www.dave-smithvc.com
  • www.dave-smithvbc.com
  • www.dave-smithvc.com
  • www.dave-smith c.com
  • www.dave-smith bc.com
  • www.dave-smith c.com
  • www.dave-smithgc.com
  • www.dave-smithgbc.com
  • www.dave-smithgc.com
  • www.dave-smithjc.com
  • www.dave-smithjbc.com
  • www.dave-smithjc.com
  • www.dave-smithnc.com
  • www.dave-smithnbc.com
  • www.dave-smithnc.com
  • www.dave-smithhc.com
  • www.dave-smithhbc.com
  • www.dave-smithhc.com
  • www.dave-smith.com
  • www.dave-smithc.com
  • www.dave-smithx.com
  • www.dave-smithxc.com
  • www.dave-smithx.com
  • www.dave-smithf.com
  • www.dave-smithfc.com
  • www.dave-smithf.com
  • www.dave-smithv.com
  • www.dave-smithvc.com
  • www.dave-smithv.com
  • www.dave-smithd.com
  • www.dave-smithdc.com
  • www.dave-smithd.com
  • www.dave-smithcb.com
  • www.dave-smithcom
  • www.dave-smith..com
  • www.dave-smith/com
  • www.dave-smith/.com
  • www.dave-smith./com
  • www.dave-smithncom
  • www.dave-smithn.com
  • www.dave-smith.ncom
  • www.dave-smith;com
  • www.dave-smith;.com
  • www.dave-smith.;com
  • www.dave-smithlcom
  • www.dave-smithl.com
  • www.dave-smith.lcom
  • www.dave-smith com
  • www.dave-smith .com
  • www.dave-smith. com
  • www.dave-smith,com
  • www.dave-smith,.com
  • www.dave-smith.,com
  • www.dave-smithmcom
  • www.dave-smithm.com
  • www.dave-smith.mcom
  • www.dave-smith.ccom
  • www.dave-smith.om
  • www.dave-smith.ccom
  • www.dave-smith.xom
  • www.dave-smith.xcom
  • www.dave-smith.cxom
  • www.dave-smith.fom
  • www.dave-smith.fcom
  • www.dave-smith.cfom
  • www.dave-smith.vom
  • www.dave-smith.vcom
  • www.dave-smith.cvom
  • www.dave-smith.dom
  • www.dave-smith.dcom
  • www.dave-smith.cdom
  • www.dave-smithc.om
  • www.dave-smith.cm
  • www.dave-smith.coom
  • www.dave-smith.cpm
  • www.dave-smith.cpom
  • www.dave-smith.copm
  • www.dave-smith.cim
  • www.dave-smith.ciom
  • www.dave-smith.coim
  • www.dave-smith.ckm
  • www.dave-smith.ckom
  • www.dave-smith.cokm
  • www.dave-smith.clm
  • www.dave-smith.clom
  • www.dave-smith.colm
  • www.dave-smith.c0m
  • www.dave-smith.c0om
  • www.dave-smith.co0m
  • www.dave-smith.c:m
  • www.dave-smith.c:om
  • www.dave-smith.co:m
  • www.dave-smith.c9m
  • www.dave-smith.c9om
  • www.dave-smith.co9m
  • www.dave-smith.ocm
  • www.dave-smith.co
  • dave-smith.co.ukm
  • www.dave-smith.con
  • www.dave-smith.conm
  • dave-smith.co.ukn
  • www.dave-smith.col
  • www.dave-smith.colm
  • dave-smith.co.ukl
  • www.dave-smith.co
  • www.dave-smith.co m
  • dave-smith.co.uk
  • www.dave-smith.cok
  • www.dave-smith.cokm
  • dave-smith.co.ukk
  • www.dave-smith.co,
  • www.dave-smith.co,m
  • dave-smith.co.uk,
  • www.dave-smith.coj
  • www.dave-smith.cojm
  • dave-smith.co.ukj
  • www.dave-smith.cmo
Show All Mistakes Hide All Mistakes