Sane Cookie Processing with Varnish
Jed:
I will show you how to ignore all cookies but the Drupal session cookie so you don’t have to constantly update your VCL with new cookies that appear on your site.
Jed:
I will show you how to ignore all cookies but the Drupal session cookie so you don’t have to constantly update your VCL with new cookies that appear on your site.
Jed:
We build upon a previous post to demonstrate how to use Active Directory for authentication and prevent users from logging in more than once
Jed:
This is the first in a series of posts that will demonstrate how build a customized Spring Security solution.
Jed:
Hibernate no longer uses the c3p0 connection pool automagically in response to setting a few c3p0 config properties. You have to explicitly tell it to use c3p0 now.
Jed:
Groovy provides a viable (hipper? More modern?) alternative to shell scripting and/or Perl.
Jed:
It's pretty simple to create a select list for inline edits similar to the text field provided by the Rails plugin InPlaceMacrosHelper.in_place_editor().
Jed:
Making use of the code from Part One
Jed:
It is pretty easy construct a JQuery-based event trigger result analogous to the dojo stuff that comes with Struts2 /WebWork 2.2.x
Jed:
Recently I found myself in a situation where I needed to define a persistent many-to-one relationship in which the concrete class of the many side could vary. In the past I’d had some issues with class inheritance and Hibernate, which can get sticky because of Hibernate proxies: you can’t always cast the proxies to the desired type. Since I had to find a way to make this work, I decided to give interface inheritance a try.