Search results

  1. RobH

    Some very simple ham radio software for OS X - Can anyone help?

    @Feek Give this a try and let me know: http://www.rbrt.co.uk/QTH Calc.jar I tested it on Windows 10 and OS X Yosemite with no issues.
  2. RobH

    Some very simple ham radio software for OS X - Can anyone help?

    Right, I'll bin it off for the moment as it was a right pain to get working on Windows and OS X is not playing ball at all with it at the moment.
  3. RobH

    Some very simple ham radio software for OS X - Can anyone help?

    @Feek How important is the window transparency feature? Looks like the changes some stuff in JDK7, got it working on Windows but it doesn't seem to be supported on OS X (transparency that is).
  4. RobH

    Some very simple ham radio software for OS X - Can anyone help?

    @Feek Do you have a copy of the JAR you could send me? I have some source code but it appears to be from an earlier version, I might be able to reverse engineer it to see what's missing. Thanks
  5. RobH

    Images of items I have purchased.

    That solder sucker is the same one I have and it's from the "holiday camp". The stand looks like it's been 3D printed to me.
  6. RobH

    iOS App Development

    Stanford has 3 years of iOS courses by Paul Hegarty available free in iTunes U which consists of full video lectures and all of the slides and course material as PDFs. You can follow along from the start and do the class exercises. The latest one covering iOS 7 appears to be at...
  7. RobH

    jQuery not working locally or via CDN

    When your running from a file and exclude the protocol it will be using "file://" instead so it would work if you had the file in the correct location locally /ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js The other option would be to use a local web server on your machine.
  8. RobH

    SQL query help (getting 1200 results from 20 size!)

    SQLplus is a command line interface which will treat the carriage returns as an execute instruction. If you use a GUI such as SQL Developer (free) you can paste in a whole formatted block and it will be fine.
  9. RobH

    SQL query help (getting 1200 results from 20 size!)

    Give this a go: Select registration.coursecode, ICTnetwork.studentnumber, ICTnetwork.networkusername, ICTnetwork.networkpassword, student.surname FROM ICTnetwork JOIN student ON student.studentnumber = ICTNetwork.studentnumber JOIN registration ON student.studentnumber =...
  10. RobH

    SQL query help (getting 1200 results from 20 size!)

    Do you have a table called "studentnumber"? You might want to post the whole query as there was no mention of "studentnumber.ictnetwork" in the bit I posted.
  11. RobH

    SQL query help (getting 1200 results from 20 size!)

    At the moment, you are trying to select from the 3 tables and then also perform 2 joins on non-existant tables. Remove the tables you are joining to from the "FROM" clause and then sort out the joins by referencing the table and not the field. EG: FROM ICTNetwork JOIN student ON...
  12. RobH

    Vidahost Issue

    Vidahost support is pretty good from my experience, quick to reply and they know what they are doing. A self hosted wordpress installation on one of my sites suddenly became very slow with no indication of what could have gone wrong. Their support disabled all the plugins and managed to identify...
  13. RobH

    *** iPhone 5S/5C - September 10th ***

    Yeah, space disappears quite rapidly when you're only playing with 16GB, the majority of apps I use struggle to come in under 25MB these days and I was suprised to see that the "enhanced" siri voice uses 220MB.
  14. RobH

    *** iPhone 5S/5C - September 10th ***

    I jailbroke my iPhone 3G back in 2008 and one of the things I did was enable battery percentage (something that wasn't in the stock firmware then). I have never been able to turn it off since then, even when the toggle was added to the settings it didn't have any effect, it was baked into my...
  15. RobH

    *** iPhone 5S/5C - September 10th ***

    My 32GB gold arrived this morning, upgrading from a 4, it's a nice improvement and feels much lighter.
  16. RobH

    issue with USPS delivery

    I ordered something from New York via USPS and it was in the UK within 24 hours, spent a week in UK customs before it was passed to Parcelforce for delivery in the UK.
  17. RobH

    Silly iPhone battery problem (old and new mixed up) - PICS!

    I would also say the one on the left looks newer. I thought the battery was stuck into the phone with some sticky tape, is there no residue on the old one?
  18. RobH

    PHP equivalent of this?

    The quick answer is yes, it is possible to implement in PHP. If you have written this yourself in Java I would suggest that rewriting it in PHP wouldn't be too difficult as it only consists of basic constructs. If you don't know any PHP then this would probably be a good little project to learn...
  19. RobH

    Dial up Modem programming

    Something like WVDial on Linux and a USB or Serial model will do what you want, it's really easy to setup and you can just give it a number to dial.
  20. RobH

    parameter passing

    Which PHP framework are you using?
Back
Top Bottom