Recently, in the course of a evaluation for a project to switch their persistence provider I was doing some JPA research and came across this exhaustive presentation from Carol McDonald: JPA Best Practices.
I am working with JPA now quite some time, but always found that the documentation is not very detailed for such an important subject. Good to find some coherent information and surprising to me that this presentation has only 1851views on Slideshare. Slideshare is actually a really good resource for quality in-depth information on various technical subjects.

Subscribe
S.Mail
Initialise External Javascript in Page Fragments
In the last couple of hours I was contemplating around maintainable, performant and non-obstrusive Javascript on a project I am working on.
Following situation:
- Much Inline Javascript
- Many JS and CSS files referenced
- No Frontend Deployment/Build Process in place
- Some Javascript values are set at page generation time by Server Side code
- Webserver is not configured yet correctly for setting expires & compression headers
Problems with this:
- Maintainability and separation of concerns is an issue with lots of inline JS
- Long Pageload because of many HTTP request
- Webserver takes big hit for all the static content loading
- Network is being stressed as well
- Javascript Logic is unobfuscated/not minimised and visible to the world