mattlunn.me.uk Report : Visit Site


  • Ranking Alexa Global: # 1,867,152,Alexa Ranking in India is # 502,821

    Server:nginx...

    The main IP address: 67.207.70.83,Your server United States,Los Angeles ISP:Hua Wang  TLD:uk CountryCode:US

    The description :search main menu skip to primary content skip to secondary content home about me post navigation ← older posts team city build no longer including view changes, or published website showing a 404? pos...

    This report updates in 17-Jul-2018

Created Date:2007-10-29
Changed Date:2013-10-20

Technical data of the mattlunn.me.uk


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

Latitude: 34.062839508057
Longitude: -118.27537536621
Country: United States (US)
City: Los Angeles
Region: California
ISP: Hua Wang

the related websites

    worldsquash.org personalitypage.com bbc.co.uk jcep.org moneysavingexpert.com cfbt.com walmart.com debenhams.com wiltscpd.co.uk 

HTTP Header Analysis


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

Content-Encoding:gzip
Transfer-Encoding:chunked
Server:nginx
Content-Security-Policy-Report-Only:default-src https: 'unsafe-inline' 'unsafe-eval'; report-uri https://sandbox.mattlunn.me.uk/csp.php
Connection:keep-alive
Link:; rel="https://api.w.org/"
Date:Tue, 17 Jul 2018 08:19:14 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns.hosteurope.com. hostmaster.mattlunn.me.uk. 2012052006 86400 3600 1209600 14400
txt:"v=spf1 a include:_spf.google.com ~all"
ns:ns.hosteurope.com.
ns2.hosteurope.com.
ipv4:IP:67.207.70.83
ASN:14061
OWNER:DIGITALOCEAN-ASN - DigitalOcean, LLC, US
Country:US
mx:MX preference = 1, mail exchanger = ASPMX.L.GOOGLE.COM.
MX preference = 5, mail exchanger = ALT1.ASPMX.L.GOOGLE.COM.

HtmlToText

search main menu skip to primary content skip to secondary content home about me post navigation ← older posts team city build no longer including view changes, or published website showing a 404? posted on november 26, 2014 by matt reply one of the websites i develop uses team city as it’s ci / deployment tool. up until today, it had successfully (except when it was my fault…) deployed over 200 builds. but today it stopped working . if, like me, you pre-compile your asp.net website ( precompilebeforepublish ) and don’t delete old files ( deleteexistingfiles ), you’ll see this problem manifest itself when changes you make to your view files aren’t reflected on your published website (even though they worked fine locally), where-as changes you make to controllers and other c# files will do. if you pre-compile your asp.net website but do delete old files, you’ll see this problem manifest itself either as above (if you don’t have a global.asax file) or through your published website displaying 404’s for all your routes, bar those for static assets (css, js, images etc.) if you do . so, if you’re experiencing the symptoms i describe above, you might want to try disabling your anti-virus and trying again. no , i’m serious. after far too many hours debugging this issue, that was what was causing it for me; specifically, mcafee virusscan console’s “on-access scanner”. for those of you also screwed over by mcafee, i had to add the following .exe ‘s to the list of “low-risk processes”: c:\windows\microsoft.net\framework64\v4.0.30319\aspnet_compiler.exe (you may have to swap v4.0.30319 depending on the .net version you’re using) c:\windows\microsoft.net\framework64\v4.0.30319\msbuild.exe (you may have to swap v4.0.30319 depending on the .net version you’re using) c:\teamcity\buildagent\plugins\dotnetplugin\bin\jetbrains.buildserver.msbuildbootstrap.exe why? when using precompilebeforepublish , team city copies all files which need to be compiled into c:\teamcity\buildagent\work\[workhash]\[builddir]\obj\[buildprofile]\aspnetcompilemerge\source . it then invokes aspnet_compiler.exe on that directory, setting the output directory ( targetdir in the aspnet_compiler.exe docs) to be ..\tempbuilddir (relative to the previous directory). in my case, when checking ..\tempbuilddir , i noticed there were no *.compiled files or app_web_*.dll ‘s in the bin folder; the contents of this folder is used as a base for the published website, so none of those files mean no view files in your app! it therefore seems that mcafee blocks them files from being written to disk, for whatever reason. in summary; disable your anti-virus! posted in asp mvc.net , team city | leave a reply how to dynamically (via ajax) add new items to a bound list model, in asp mvc.net posted on august 3, 2014 by matt 19 imagine you have a form, which allows a user to add n entries. in my case, a user was creating a building and was defining each room . each room had a “name” and “area”; public class building { [required] public string name { get; set; } public list<room> rooms { get; set; } public building() { rooms = new list<room>(); } } public class room { [required] public string name { get; set; } [range(1,200)] public int area { get; set; } } i had editortemplates defined for both building and room ; // views\building\editortemplates\building.cshtml @model dynamiclistbinding.models.building <div class="form-group"> @html.labelfor(x => x.name) @html.textboxfor(x => x.name, new { @class = "form-control" }) @html.validationmessagefor(x => x.name) </div> // views\building\editortemplates\room.cshtml @model dynamiclistbinding.models.room <div class="panel panel-default"> <div class="panel-body"> <div class="form-group"> @html.labelfor(x => x.name) @html.textboxfor(x => x.name, new { @class = "form-control" }) @html.validationmessagefor(x => x.name) </div> <div class="form-group"> @html.labelfor(x => x.area) @html.textboxfor(x => x.area, new { @class = "form-control" }) @html.validationmessagefor(x => x.area) </div> </div> </div> … and my create.cshtml view looked like this; // views\building\create.cshtml @model dynamiclistbinding.models.building @{ viewbag.title = "create"; } @using (html.beginform()) { <h2>create</h2> <h3>building</h3> @html.editorfor(x => x) <h3>rooms</h3> @html.editorfor(x => x.rooms) <input type="submit" /> } in fact, you can download the skeleton of this solution from here (or just browse the repository on github here ). now, i didn’t know how many rooms each building had. my options were: give the user an ample amount (say 20) of “room” entries on the page to start off with, and hope the user wasn’t creating a mansion or castle. load additional “room” entries on-demand using ajax. if you’re wanting to use #1, unfortunately you’re in the wrong place, as this article explains how to go about #2. sorry about that . what makes #2 hard is how the defaultmodelbinder requires my list of rooms to be named (very specifically), like so; <input type="text" name="rooms[0].name" /> <input type="number" name="rooms[0].area" /> <input type="text" name="rooms[1].name" /> <input type="number" name="rooms[1].area" /> <input type="text" name="rooms[2].name" /> <input type="number" name="rooms[2].area" /> there are 2 main problems with this: imagine i allow my users to delete rooms as well, and let’s say they delete rooms[1] . the html becomes like so; <input type="text" name="rooms[0].name" /> <input type="number" name="rooms[0].area" /> <input type="text" name="rooms[2].name" /> <input type="number" name="rooms[2].area" /> because of how defaultmodelbinder works, room[2] , will disappear from my model upon submission, as defaultmodelbinder requires index’s to be consecutive, and stops when it reaches a non-existent index. when loading additional fields in via ajax, i need to be able to tell my endpoint what the next index is (because defaultmodelbinder requires index’s to be consecutive). with these issues in mind, it’s very hard to allow your list of entries to be dynamically added and, potentially, deleted, whilst keeping these indexes sequential. to make this less hard , microsoft allow you to provide a .index field (they just don’t tell anyone this…), which allows you to use any index you want; it doesn’t have to be sequential, and hell, it doesn’t even have to be a number. we’d then be able to allow our users to delete fields, and the following html submission would now work; <input type="hidden" name="rooms.index" value="0" /> <input type="text" name="rooms[0].name" /> <input type="number" name="rooms[0].area" /> <input type="hidden" name="rooms.index" value="2" /> <input type="text" name="rooms[2].name" /> <input type="number" name="rooms[2].area" /> however , our ajax endpoint for adding new fields still needs to have some idea which index’s have been used, so it doesn’t generate additional fields with the same name. this approach also introduces the difficulty of using @html.editorfor() , whilst being able to output the .index field. to save the day, enter a htmlhelper extension, editorformany() ; using system; using system.collections.generic; using system.linq.expressions; using system.text; using system.web.mvc; using system.web.mvc.html; public static class htmlhelperextensions { /// <summary> /// generates a guid-based editor template, rather than the index-based template generated by html.editorfor() /// </summary> /// <typeparam name="tmodel"></typeparam> /// <typeparam name="tvalue"></typeparam> /// <param name="html"></param> /// <param name="propertyexpression">an expression which points to the property on the model you wish to generate the editor for</param> /// <param name="i

URL analysis for mattlunn.me.uk


https://www.mattlunn.me.uk/blog/2013/04/force-www-or-non-www-in-express-connect/
https://www.mattlunn.me.uk/blog/2014/11/team-city-build-no-longer-including-view-changes-or-published-website-showing-a-404/#respond
https://www.mattlunn.me.uk/blog/category/team-city/
https://www.mattlunn.me.uk/blog/2012/05/event-delegation-with-jquery/
https://www.mattlunn.me.uk/blog/2014/01/tracking-joining-parallel-ajax-requests-with-jquery/
https://www.mattlunn.me.uk/blog/2014/05/understanding-the-javascript-this-keyword-part-1/#respond
https://www.mattlunn.me.uk/blog/2014/01/what-is-the-minimum-valid-json/
https://www.mattlunn.me.uk/blog/2014/08/how-to-dynamically-via-ajax-add-new-items-to-a-bound-list-model-in-asp-mvc-net/
https://www.mattlunn.me.uk/blog/category/event-series/
https://www.mattlunn.me.uk/blog/category/uncategorized/
https://www.mattlunn.me.uk/blog/category/gotchas/
https://www.mattlunn.me.uk/blog/category/events/
https://www.mattlunn.me.uk/blog/category/exploits/
https://www.mattlunn.me.uk/blog/2014/05/understanding-the-javascript-this-keyword-part-1/
http://www.mattlunn.me.uk/blog/2014/05/understanding-the-javascript-this-keyword-part-1/

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:
mattlunn.me.uk

Registrant:
Matt Lunn

Registrant type:
UK Individual

Registrant's address:
The registrant is a non-trading individual who has opted to have their
address omitted from the WHOIS service.

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

Registrar:
123-Reg Limited t/a 123-reg [Tag = 123-REG]
URL: http://www.123-reg.co.uk

Relevant dates:
Registered on: 29-Oct-2007
Expiry date: 29-Oct-2021
Last updated: 20-Oct-2013

Registration status:
Registered until expiry date.

Name servers:
ns1.mattlunn.me.uk 212.67.202.2
ns2.mattlunn.me.uk 92.51.159.40

WHOIS lookup made at 12:33:13 17-Dec-2017

--
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 - 2017.

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 http://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 uk.whois-servers.net

  ARGS mattlunn.me.uk

  PORT 43

  TYPE domain

OWNER

  ORGANIZATION Matt Lunn

TYPE
UK Individual

ADDRESS
The registrant is a non-trading individual who has opted to have their
address omitted from the WHOIS service.
Data validation:
Nominet was able to match the registrant's name and address against a 3rd party data source on 10-Dec-2012

DOMAIN

  SPONSOR 123-Reg Limited t/a 123-reg [Tag = 123-REG]

  CREATED 2007-10-29

  CHANGED 2013-10-20

STATUS
Registered until expiry date.

NSERVER

  NS1.MATTLUNN.ME.UK 212.67.202.2

  NS2.MATTLUNN.ME.UK 92.51.159.40

  NAME mattlunn.me.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 - 2017.
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 http://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 yes

Go to top

Mistakes


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

  • www.umattlunn.com
  • www.7mattlunn.com
  • www.hmattlunn.com
  • www.kmattlunn.com
  • www.jmattlunn.com
  • www.imattlunn.com
  • www.8mattlunn.com
  • www.ymattlunn.com
  • www.mattlunnebc.com
  • www.mattlunnebc.com
  • www.mattlunn3bc.com
  • www.mattlunnwbc.com
  • www.mattlunnsbc.com
  • www.mattlunn#bc.com
  • www.mattlunndbc.com
  • www.mattlunnfbc.com
  • www.mattlunn&bc.com
  • www.mattlunnrbc.com
  • www.urlw4ebc.com
  • www.mattlunn4bc.com
  • www.mattlunnc.com
  • www.mattlunnbc.com
  • www.mattlunnvc.com
  • www.mattlunnvbc.com
  • www.mattlunnvc.com
  • www.mattlunn c.com
  • www.mattlunn bc.com
  • www.mattlunn c.com
  • www.mattlunngc.com
  • www.mattlunngbc.com
  • www.mattlunngc.com
  • www.mattlunnjc.com
  • www.mattlunnjbc.com
  • www.mattlunnjc.com
  • www.mattlunnnc.com
  • www.mattlunnnbc.com
  • www.mattlunnnc.com
  • www.mattlunnhc.com
  • www.mattlunnhbc.com
  • www.mattlunnhc.com
  • www.mattlunn.com
  • www.mattlunnc.com
  • www.mattlunnx.com
  • www.mattlunnxc.com
  • www.mattlunnx.com
  • www.mattlunnf.com
  • www.mattlunnfc.com
  • www.mattlunnf.com
  • www.mattlunnv.com
  • www.mattlunnvc.com
  • www.mattlunnv.com
  • www.mattlunnd.com
  • www.mattlunndc.com
  • www.mattlunnd.com
  • www.mattlunncb.com
  • www.mattlunncom
  • www.mattlunn..com
  • www.mattlunn/com
  • www.mattlunn/.com
  • www.mattlunn./com
  • www.mattlunnncom
  • www.mattlunnn.com
  • www.mattlunn.ncom
  • www.mattlunn;com
  • www.mattlunn;.com
  • www.mattlunn.;com
  • www.mattlunnlcom
  • www.mattlunnl.com
  • www.mattlunn.lcom
  • www.mattlunn com
  • www.mattlunn .com
  • www.mattlunn. com
  • www.mattlunn,com
  • www.mattlunn,.com
  • www.mattlunn.,com
  • www.mattlunnmcom
  • www.mattlunnm.com
  • www.mattlunn.mcom
  • www.mattlunn.ccom
  • www.mattlunn.om
  • www.mattlunn.ccom
  • www.mattlunn.xom
  • www.mattlunn.xcom
  • www.mattlunn.cxom
  • www.mattlunn.fom
  • www.mattlunn.fcom
  • www.mattlunn.cfom
  • www.mattlunn.vom
  • www.mattlunn.vcom
  • www.mattlunn.cvom
  • www.mattlunn.dom
  • www.mattlunn.dcom
  • www.mattlunn.cdom
  • www.mattlunnc.om
  • www.mattlunn.cm
  • www.mattlunn.coom
  • www.mattlunn.cpm
  • www.mattlunn.cpom
  • www.mattlunn.copm
  • www.mattlunn.cim
  • www.mattlunn.ciom
  • www.mattlunn.coim
  • www.mattlunn.ckm
  • www.mattlunn.ckom
  • www.mattlunn.cokm
  • www.mattlunn.clm
  • www.mattlunn.clom
  • www.mattlunn.colm
  • www.mattlunn.c0m
  • www.mattlunn.c0om
  • www.mattlunn.co0m
  • www.mattlunn.c:m
  • www.mattlunn.c:om
  • www.mattlunn.co:m
  • www.mattlunn.c9m
  • www.mattlunn.c9om
  • www.mattlunn.co9m
  • www.mattlunn.ocm
  • www.mattlunn.co
  • mattlunn.me.ukm
  • www.mattlunn.con
  • www.mattlunn.conm
  • mattlunn.me.ukn
  • www.mattlunn.col
  • www.mattlunn.colm
  • mattlunn.me.ukl
  • www.mattlunn.co
  • www.mattlunn.co m
  • mattlunn.me.uk
  • www.mattlunn.cok
  • www.mattlunn.cokm
  • mattlunn.me.ukk
  • www.mattlunn.co,
  • www.mattlunn.co,m
  • mattlunn.me.uk,
  • www.mattlunn.coj
  • www.mattlunn.cojm
  • mattlunn.me.ukj
  • www.mattlunn.cmo
Show All Mistakes Hide All Mistakes