User MtotheThird - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T22:25:49Zhttp://stackoverflow.com/feeds/user/7069http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/66875/java-applet-cached-forever-not-downloading-new-version/66942#669424Answer by MtotheThird for Java applet cached forever, not downloading new version?MtotheThird2008-09-15T21:02:57Z2008-09-15T21:02:57Z<p>Unfortunately, different versions of the Java Plug-In have different caching behaviors. Setting your Cache-Control and Last-Modified HTTP headers is the ideal solution, but it only works under <a href="http://java.sun.com/javase/6/docs/technotes/guides/deployment/enhancements.html" rel="nofollow">the most recent versions</a> of the JRE. </p>
<p>The only solution GUARANTEED to work is to rename your application jars when their versions change (we've seen strange caching behavior when trying other tricks like adding query strings based on file dates). This isn't so difficult to do if you have a properly automated deployment system. </p>
http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/64986#649869Answer by MtotheThird for What is the strangest programming language you have used?MtotheThird2008-09-15T17:36:22Z2008-09-15T17:36:22Z<p>Definitely Prolog. Learning that language broke my brain and forced me to completely rebuild my programming skills from scratch, and I'm a better programmer for it. </p>
<p>I had to learn it while working on a control system for a hypermach windtunnel -- thousands of sensors and a complex web of constraints designed to keep the whole thing from exploding. Prolog was the perfect language for it, and actually the system was quite elegant. Just with a terrible UI. :)</p>
<p>I have to say, though, <a href="http://chuck.cs.princeton.edu/doc/language/" rel="nofollow">ChucK</a> is <em>awesome</em>, and my canonical example of a domain-specific language done exceedingly right. </p>