Search results

  1. philldutton

    Downloading and Making a Bootable Mac OS USb on a Windows machine

    It shouldn't be that difficult, if you've got Python installed on your Windows PC it should just be a case of downloading the software from github and running the gibMacOs.bat file. On the Mac I just run the gibMacOS.command file and it launches a command prompt with a menu where you can choose...
  2. philldutton

    Downloading and Making a Bootable Mac OS USb on a Windows machine

    I have used the software at https://github.com/corpnewt/gibMacOS to get images in the past. It's just a python script so should work on Windows.
  3. philldutton

    Golang, Gin, Help a poor old non-dev!

    Don't know gin, but i'm guessing that the r.GET method is defining what happens when a HTTP Get request is sent to your endpoint (with a path of "/"). The func is a callback which is being used to set the reponse returned from the endpoint, in this case sending a 200 status in the header and...
  4. philldutton

    Cordova / PhoneGap

    We used https://framework7.io/ for a webbased app, was fairly simple to get going with.
  5. philldutton

    VPN required for streaming - Express VPN or Nord VPN?

    Nord is terrible for iplayer. Either doesn't work at all (geoblocked), or constant buffering.
  6. philldutton

    *** VPN Thread ***

    Is anyone else having trouble with iplayer on nord? I can play stuff, but get constant buffering on every server i try.
  7. philldutton

    *** VPN Thread ***

    Nord regularly gets blocked by iplayer for me. Usually just have to disconnect and choose a different UK server.
  8. philldutton

    jQuery Validator Issue

    Something like: jQuery.validator.addMethod("IDValidation", function (value, element) { return /^[0-9a-z]{5}$/i.test(value); }, "Incorrect Code");
  9. philldutton

    simple js/css issue - why image not showing?

    You're linking to a file http://www.mayergroup.co.uk/j/accordian/css/fonts/fontawesome-webfont.ttf?v=4.2.0 which is on a different domain from your site in the first link (mayercleaning.co.uk) and it's being blocked (cross origin request). You need to allow ttf (font) files to be served cross...
  10. philldutton

    House next to substation

    How much less do you reckon a property beside one would need to be discounted though? The property I was looking at was marketed at the same price as a property a couple of doors away which sold a month or so ago. I also reckoned it needed a bit of around £10k or so spend on it (decorating...
  11. philldutton

    House next to substation

    Decided against it in the end. Asked friends/people at work and they all said the same thing, which was they would be concerned they would have difficulty selling when they wanted to move.
  12. philldutton

    House next to substation

    I went back after speaking to a couple of people who mentioned he buzzing to have a listen and I could hear a slight humming noise. I didn't hear it when viewing the property, but I wasn't really listening out for it and was busy talking with agent/family. Now i know it's there i reckon i'd...
  13. philldutton

    House next to substation

    Just wondered if anyone has any opinions on buying a property next to an electrical substation (one of the small local ones). I viewed a property recently and never really gave it a second thought, but a couple of people i've spoken to have said they would never buy a house next to one because...
  14. philldutton

    Tips for making an offer on a property?

    It will depend on your area. If the house has been on the market for a while and they have no other offers then you have nothing to lose by offering a lower amount and then negotiating. Not that my advice is worth much, I made an offer (in the middle of the "guide price" range) on a house a...
  15. philldutton

    Returning a list of objects where objects contain lists with Dapper ORM

    Take a look at the "A parent object with its child objects" example here: https://www.tritac.com/developers-blog/dapper-net-by-example/ That should do what you need i think.
  16. philldutton

    Source Control

    We use Git which we've found to be a lot better than the others we've tried (SVN, Perforce, SourceSafe).
  17. philldutton

    C# , MVC and querying db help required.

    They need to be virtual so that Entity Framework to override them when creating the proxy classes (which are derived from your classes) that it uses to enable lazy loading, change tracking etc...
  18. philldutton

    SQL Help

    A sample data set would be useful to be able to help.
  19. philldutton

    LINQ Help

    Can you post the class definitions you're using? Also, are you using Code First, Model First etc... What you're trying to do should be straight forward, but it depends how your classes have been defined.
  20. philldutton

    OData

    Can you just use a lamda? Something like: private void BeginRetrieveQuoteDetail(Guid Id) { dataGrid1.ItemsSource = null; _context = new AnconTestContext(ODataUri); lstQuoteDetails = new DataServiceCollection<QuoteDetail>(_context); //var result = from QuoteDetailSet in...
Back
Top Bottom