Search results

  1. agent_paul

    docker compose mutiple containers

    I'm no expert but I guess you would have just one instance of the DB and all the applications will be a service within the compose file.
  2. agent_paul

    Software developer contractor

    I usually use jobsite for daily job alerts. I've noticed that during any holiday period and weekends that the amount of jobs posted drop dramatically. I can't say much about the skills you should be learning but I would say that if your looking for as much money as possible, you should do some...
  3. agent_paul

    White space in nav bar

    np. just fyi you might want to look into reset.css or normalize.css which strips out a lot of the default crap browsers put on elements and sets a good baseline to develop on.
  4. agent_paul

    White space in nav bar

    you have some left padding on the ul. adding padding-left: 0px; should fix it
  5. agent_paul

    Testing software for a mobile website

    If your going down the emulator route, have a look at https://www.manymo.com/ if your going to get devices look at http://vanamco.com/ghostlab/ hope that helps
  6. agent_paul

    Software developers

    I was just wondering how many people on here are software developers and whether you spend any of your spare time learning new stuff and developing. I'm asking because I find myself spending less time dev'ing in my spare time now and feel as though I may be slipping behind or not picking all...
  7. agent_paul

    jquery mobile #someLink not working in android browser

    Do the demos work ok in the jqm documentation site ? If you could create a js fiddle and share it, then I'll be able to help without guessing
  8. agent_paul

    jquery mobile #someLink not working in android browser

    Do you get an animation when you select the button? I would check if your have any other elements on the page with the same id and make sure your html is syntactically correct. Putting it on something like jsfiddle may help other people understand what your on about
  9. agent_paul

    jquery mobile #someLink not working in android browser

    Jquery mobile wants you to have each div that's defined with a data role page to be in the same file. So add the page contents into that file and the #link will work. If you'd prefer each page to be in their own separate file then you will need to provide proper href's. jquery will then get the...
  10. agent_paul

    Learning Java as a first languaje

    I would recommend the Java head first book. It's pretty easy to read and its written by the guys that wrote the scjp certs book
  11. agent_paul

    WordPress CSS pain!

    if your working on a site that can be accessed publicly then please send a link. it would probably be easier for people to edit the css in browser
  12. agent_paul

    WordPress CSS pain!

    change .site-header hgroup { ... to .site-header { ... and get rid of the padding if you want then change .site-image { float: right; height: 100px; width: 100px; }... to img { float: right; }
  13. agent_paul

    How useful is git?

    version control is really useful if your developing with other developers where you can branch out and write code without affecting each other until you do a merge. (its even better with distributed version control when developers are at remote locations with poor data connections) In your...
  14. agent_paul

    RSA + JSP's ARGGHH

    don't you need to delete the compiled jsp class file too when making a change on a server? just to force the container to recompile the jsp...
  15. agent_paul

    Empty flat consuming £50 of eletricity over 6 weeks?

    It could be the estate agents using your flat without you knowing
  16. agent_paul

    Android development environment on OSX

    I haven't done any android dev as of yet but I do use intellij as my main ide. It just blows eclipse out of the water. The interface is just so much nicer and does the job really well. Like you I found eclipse really clunky and finding things took ages. If you can fork out the £100 or so for...
  17. agent_paul

    How to get a career in programming

    If your able to take a photoshop comp and turn that into a page that works in all modern browsers then your OK. If you can stretch it to older browsers including IE6 then your pretty good. This is just one part of web development though. As a web developer you should be considering a whole...
  18. agent_paul

    Java Source Code to UML

    If your documenting an existing system then going from java to uml is fine but if your writing anything new, then yes, uml should be done first during a design phase
  19. agent_paul

    Java Source Code to UML

    netbeans has a UML plugin. here it should just be the case of telling it what classes you want but you might need to wire up the ralationships between the classes manually
  20. agent_paul

    How to get a career in programming

    I don't necessarily agree with that. Maybe for certain programming jobs like in the finance sector but for most I recon for no. You do need a decent grasp of maths but certainly not to the degree level
Back
Top Bottom