User Kyle Burton - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:35:23Z http://stackoverflow.com/feeds/user/19784 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/203376/unit-testing-framework-for-oracle-pl-sql 4 Unit Testing Framework for Oracle PL/SQL? Kyle Burton 2008-10-15T00:58:07Z 2009-12-01T19:01:27Z <p>I've seen the question (and answer) when posed for <a href="http://stackoverflow.com/questions/202940/unit-tests-framework-for-databases">MS SQL Server</a>, though I don't yet know of one for Oracle and PL/SQL. Are there xUnit style testing frameworks for Oracle's PL/SQL? What are they?</p> http://stackoverflow.com/questions/193053/what-are-all-the-programming-paradigms 1 What are all the Programming Paradigms? Kyle Burton 2008-10-10T21:15:25Z 2009-11-21T03:07:57Z <p>I have heard of many and studied several, are there others that I've missed? I have studied:</p> <ul> <li><a href="http://en.wikipedia.org/wiki/Procedural_programming" rel="nofollow">Procedural</a></li> <li><a href="http://en.wikipedia.org/wiki/Object_oriented_programming" rel="nofollow">Object Oriented</a></li> <li><a href="http://en.wikipedia.org/wiki/Functional_programming" rel="nofollow">Functional</a></li> <li><a href="http://en.wikipedia.org/wiki/Dataflow_programming" rel="nofollow">DataFlow</a></li> <li><a href="http://en.wikipedia.org/wiki/Declarative_programming" rel="nofollow">Declarative</a></li> <li><a href="http://en.wikipedia.org/wiki/Logic_programming" rel="nofollow">Logic</a></li> <li><a href="http://en.wikipedia.org/wiki/Total_functional_programming" rel="nofollow">Total Functional Programming</a></li> </ul> <p>I'm looking for 'whole' paradigms for study, such as the above, that tend to fit a boundary around how you express a program - Aspect Oriented Programming doesn't fit into this description to me since it is an add-on to existing languages, rather than typically embodied by a language.</p> <p>What other paradigms are there and what is compelling about them?</p> http://stackoverflow.com/questions/131433/sources-for-learning-about-scheme-macros-define-syntax-and-syntax-rules 4 Sources for learning about Scheme Macros: define-syntax and syntax-rules Kyle Burton 2008-09-25T04:07:21Z 2009-11-20T18:08:49Z <p>I've read <a href="http://www.xs4all.nl/~hipster/lib/scheme/gauche/define-syntax-primer.txt" rel="nofollow">JRM's Syntax-rules Primer</a> for the Merely Eccentric and it has helped me understand syntax-rules and how it's different from common-lisp's define-macro. syntax-rules is only one way of implementing a syntax transformer within define-syntax.</p> <p>I'm looking for two things, the first is more examples and explanations of syntax-rules and the second is good sources for learning the other ways of using define-syntax. What resources do you recommend?</p> http://stackoverflow.com/questions/184060/java-application-installers 4 Java Application Installers Kyle Burton 2008-10-08T18:09:53Z 2009-11-16T20:22:23Z <p>I'm not looking for java-web-start, I'm looking for a thick-client application installation toolkit. I've got a stand-alone application that consists of several files (jar files, data files, etc) and would need to do some pretty standard installation tasks, like asking the user for target directories, have them locate some parts of their system - choose some of the per-machine or per-user configuration options and possibly try to detect some of the machine settings for them.</p> <p>I'm looking for something which is like the MSI or other wizard driven installation applications. What's a good installer for Java? It would be ideal if it were cross-platform capable (Linux, Mac OSX and Windows).</p> http://stackoverflow.com/questions/131153/open-source-code-review-tools-mondrian 7 Open Source Code Review Tools? (Mondrian) Kyle Burton 2008-09-25T02:22:51Z 2009-11-09T13:00:10Z <p>I've read a bit about Google's <a href="http://www.niallkennedy.com/blog/2006/11/google-mondrian.html" rel="nofollow">Mondrian</a>, and I've seen Atlassian's <a href="http://www.atlassian.com/software/crucible/" rel="nofollow">Crucible</a> demonstrated - I'm convinced that the tools have value. Are there open-source code review tools? It would be used on a proprietary codebase, so it can't be a public site or service (eg: Google Code's features include some of those of Crucible). We have released some of our libraries as open source, but by and large my employer's codebase is still closed.</p> http://stackoverflow.com/questions/118935/know-of-an-ocaml-ide/118969#118969 4 Answer by Kyle Burton for Know of an OCAML IDE? Kyle Burton 2008-09-23T03:36:07Z 2009-10-25T18:27:28Z <p>There are 2 modes for Emacs for working with OCaml: ocaml-mode and <a href="http://www-rocq.inria.fr/~acohen/tuareg/" rel="nofollow">tuareg-mode</a>. Both are available via apt, or on the web.</p> <p>They provide syntax-highlighting and tuareg-mode includes interfacing to the OCaml top-level and debugger.</p> http://stackoverflow.com/questions/119009/directory-layout-for-erlang-services 6 Directory Layout for Erlang Services? Kyle Burton 2008-09-23T03:52:37Z 2009-09-14T05:20:13Z <p>In our Java applications we typically use the maven conventions (docs, src/java, test, etc.). For Perl we follow similar conventions only using a top level 'lib' which is easy to add to Perl's @INC.</p> <p>I'm about to embark on creating a service written in Erlang, what's a good source layout for Erlang applications?</p> http://stackoverflow.com/questions/1319891/calculating-the-moving-average-of-a-list/1320153#1320153 1 Answer by Kyle Burton for Calculating the Moving Average of a List Kyle Burton 2009-08-24T01:55:59Z 2009-08-24T01:55:59Z <p>This example makes use of state, since to me it's a pragmatic solution in this case, and a closure to create the windowing averaging function:</p> <pre><code>(defn make-averager [#^Integer period] (let [buff (atom (vec (repeat period nil))) pos (atom 0)] (fn [nextval] (reset! buff (assoc @buff @pos nextval)) (reset! pos (mod (+ 1 @pos) period)) (if (some nil? @buff) 0 (/ (reduce + @buff) (count @buff)))))) (map (make-averager 4) [2.0, 4.0, 7.0, 6.0, 3.0, 8.0, 12.0, 9.0, 4.0, 1.0]) ;; yields =&gt; (0 0 0 4.75 5.0 6.0 7.25 8.0 8.25 6.5) </code></pre> <p>It is still functional in the sense of making use of first class functions, though it is not side-effect free. The two languages you mentioned both run on top of the JVM and thus both allow for state-management when necessary. </p> http://stackoverflow.com/questions/1134739/why-dont-i-get-a-defined-value-from-lwpuseragent-new/1134849#1134849 6 Answer by Kyle Burton for Why don't I get a defined value from LWP::UserAgent->new()? Kyle Burton 2009-07-16T00:30:21Z 2009-07-16T00:30:21Z <p>I've tried your code (with strict, warnings and what I think are the required modules, with turning the free variables into strings):</p> <pre><code>kyle@indigo64 ~[home*]$ cat x.pl use strict; use warnings; use HTTP::Cookies; use LWP::UserAgent; use CGI::Cookie; my $ua = new LWP::UserAgent; my %cookies = fetch CGI::Cookie; my $encoded = $cookies{'SCred'}; my $cookie_jar = new HTTP::Cookies; $cookie_jar-&gt;set_cookie( 1, "SCred", '$encoded', "/", '$SSO_DOMAIN', "", 0, 0, 60*60, 0 ); $ua-&gt;cookie_jar($cookie_jar); print "ua: ",$ua,"\n"; print "ua-&gt;cookie_jar: ",$ua-&gt;cookie_jar,"\n"; mortis@indigo64 ~[home*]$ perl x.pl ua: LWP::UserAgent=HASH(0x82f8cc8) ua-&gt;cookie_jar: HTTP::Cookies=HASH(0x82f8b84) kyle@indigo64 ~[home*]$ </code></pre> <p>and it works. You might want to either post a fuller example, or are there lines between the '$ua = new...' and the '$ua->cookie_jar' lines where $ua is re-assigned or otherwise set to undef? If you print the value of '$ua' just before the call to cookie_jar you should see that it's undef, it must be being reset somewhere between the first assignment and where you are calling that method.</p> http://stackoverflow.com/questions/1134746/to-move-between-windows-in-screen/1134811#1134811 0 Answer by Kyle Burton for To move between windows in Screen Kyle Burton 2009-07-16T00:23:30Z 2009-07-16T00:23:30Z <p>If you start screen then type Ctrl-A ?, you'll see the help page, which lists next [n] and prev [p]. I believe that binding to next and prev instead of focus will do what you want.</p> http://stackoverflow.com/questions/121599/couchdb-backups-and-cloneing-the-database 8 CouchDB Backups and Cloneing the Database Kyle Burton 2008-09-23T15:06:33Z 2009-07-12T12:50:18Z <p>We're looking at CouchdDB for a CMS-ish application. I know the database is implemented as a set of files in the file system, what I'm looking for are common patterns, best practices and workflow advice surrounding backing up our production database, and, especially, the process of cloning the database for use in development and testing.</p> <p>Is it sufficient to just copy the files on disk out from under a live running instance? Can you clone database data between two live running instances?</p> <p>Advice and description of the techniques you use will be greatly appreciated.</p> http://stackoverflow.com/questions/137341/should-the-base-case-be-open-source 4 Should the base case be Open Source? Kyle Burton 2008-09-26T01:58:44Z 2009-06-30T20:45:35Z <p>I hatched as a software developer in a proprietary world dominated by large corporations with closed source software - it wasn't questioned. As my career grew, the Internet became more and more of a presence and I was exposed to more and more open source software.</p> <p>Looking back at most of the libraries, I am not talking about application level code, and utilities we wrote for my employers, there is very little of it that was directly a competitive advantage, and even less intrinsically represented what you would consider intellectual property. More and more of those libraries, frameworks and utilities have open source equivalents. It is now common for myself and developers I work with to first look for existing libraries before embarking on implementing such code. </p> <p>That much has already changed. Many of those libraries might have withered as open source for lack of maintenance, and my employers wouldn't have suffered if they did. If they flourished or at least attracted submissions, then those employers would have benefited - which is happening at my current employer.</p> <p>Now, looking at what is ahead of us I am starting to think that for a large portion of the libraries and frameworks that we will write, we should be creating them from with the assumption that they'll be made open source. That for libraries, utilities and frameworks this should be the base case, rather than the assumption that they'll be closed and that you'll have to then work to make them open - which it turns out is often much more work after the fact (getting approval, performing the reviews and cleanup).</p> <p>With the base case being open-source, I think there would be benefits:</p> <ul> <li>Developers, knowing that the code will be visible by peers and prospective future employers will likely be more disciplined about documentation, testing and design, thus making the code itself better. Just knowing that the world will be able to see your code will likely change the corners you're willing to cut. This should benefit the organization sponsoring the development.</li> <li>Individual developers will have larger bodies of libraries and re-usable code to leverage in all of their projects, though this is a benefit to the individual developer more than the sponsoring organizations</li> <li>Organizations would more effectively spread out the costs of development, this is a core premise of open source to begin with, though if open was the base case, it would be significantly more widespread</li> <li>It currently attracts a certain kind of developer to the organization</li> <li>It does not guarantee, but it provides the ability for prospective developers to enter the interviewing process being already familiar with the tools and source code the company is actually using</li> </ul> <p>It feels like this is a trend, at least at the library and framework level - not at the application level in my opinion. This is a varied community, what is your opinion?</p> http://stackoverflow.com/questions/916822/unable-to-diff-files-in-two-separate-branches-in-git/916914#916914 4 Answer by Kyle Burton for Unable to diff files in two separate branches in Git Kyle Burton 2009-05-27T17:02:33Z 2009-05-27T17:02:33Z <p>git supports branch names as part of the repository paths. Eg if you have the following files in your repository, <code>README</code> only on <code>master</code>, and <code>UNREADME</code> only on <code>branch</code>:</p> <pre><code>master:README branch:UNREADME </code></pre> <p>You can diff them via git with:</p> <pre><code>git diff branch:UNREADME master:README </code></pre> <p>You can get a repository artifact to standard output with <code>git show</code>:</p> <pre><code>git show branch1:UNREADME </code></pre> <p>So if your external diff utility can take 2 files on the bash prompt, you can diff them with something like:</p> <pre><code>diff-command &lt;(git show branch1:UNREADME) &lt;(git show master:README) </code></pre> <p>Where the <code>&lt;(...)</code> bash syntax takes the output of the enclosed command, runs it in a pipe and places the file path of the pipe on the command line.</p> http://stackoverflow.com/questions/121674/multi-core-and-concurrency-languages-libraries-and-development-techniques 19 Multi-Core and Concurrency - Languages, Libraries and Development Techniques Kyle Burton 2008-09-23T15:19:45Z 2009-04-28T17:03:10Z <p>The CPU architecture landscape has changed, multiple cores is a trend that will change how we have to develop software. I've done multi-threaded development in C, C++ and Java, I've done multi-process development using various IPC mechanisms. Traditional approaches to using threads doesn't seem to make it easy, for the developer, to utilize hardware that supports a high degree of concurrency.</p> <p>What languages, libraries and development techniques are you aware of that help alleviate the traditional challenges of creating concurrent applications? I'm obviously thinking of issues like deadlocks and race conditions - but I'm also interested in design techniques, libraries, tools, etc that help actually take advantage of and ensure that the available resources are being utilized - just writing a safe, robust threaded application doesn't ensure that it's using all the available cores.</p> <p>What I've seen so far is:</p> <ul> <li><a href="http://www.erlang.org/" rel="nofollow">Erlang</a>: process based, message passing IPC, the 'actor's model of concurrnecy</li> <li><a href="http://smparkes.net/category/dramatis/" rel="nofollow">Dramatis</a>: actors model library for Ruby and Python</li> <li><a href="http://www.scala-lang.org/" rel="nofollow">Scala</a>: functional programming language for the JVM with some added concurrency support</li> <li><a href="http://clojure.org/" rel="nofollow">Clojure</a>: functional programming language for the JVM with an actors library</li> <li><a href="http://code.google.com/p/termite/" rel="nofollow">Termite</a>: a port of Erlang's process approach and message passing to Scheme</li> </ul> <p>What else do you know about, what has worked for you and what do you think is interesting to watch?</p> http://stackoverflow.com/questions/130092/couchdb-document-model-changes 3 CouchDB Document Model Changes? Kyle Burton 2008-09-24T21:28:28Z 2009-02-11T15:21:27Z <p>Rails uses the concept of migrations to deal with model changes using the ActiveRecord API.</p> <p>CouchDB uses JSON (nested maps and arrays) to represent its model objects.</p> <p>In working with CouchDB so far, I don't see good ways of recognizing when the document's structure has changed (other than being disciplined as a developer), or for migrating documents from an old to a new model.</p> <p>Are there existing features or do you have best practices for handling model changes in CouchDB?</p> http://stackoverflow.com/questions/145263/what-is-total-functional-programming 4 What is "Total Functional Programming"? Kyle Burton 2008-09-28T05:27:49Z 2009-01-09T05:47:12Z <p><a href="http://en.wikipedia.org/wiki/Total_functional_programming" rel="nofollow">Wikipedia</a> has this to say:</p> <blockquote> <p>Total functional programming (also known as strong functional programming, to be contrasted with ordinary, or weak functional programming) is a programming paradigm which restricts the range of programs to those which are provably terminating.</p> </blockquote> <p>and</p> <blockquote> <p>These restrictions mean that total functional programming is not Turing-complete. However, the set of algorithms which can be used is still huge. For example, any algorithm which has had an asymptotic upper bound calculated for it can be trivially transformed into a provably-terminating function by using the upper bound as an extra argument which is decremented upon each iteration or recursion.</p> </blockquote> <p>There is also a Lambda The Ultimate Post about a paper on <a href="http://lambda-the-ultimate.org/node/2003" rel="nofollow">Total Functional Programming</a>.</p> <p>I hadn't come across that until last week on a mailing list.</p> <p>Are there any more resources, references or any example implementations that you know of?</p> http://stackoverflow.com/questions/135285/lost-classics-out-of-print-books 9 Lost Classics: Out of Print Books? Kyle Burton 2008-09-25T19:04:15Z 2009-01-01T09:15:48Z <p><a href="http://www.lulu.com/content/3060872" rel="nofollow">On Lisp</a> is well regarded as an advanced Lisp book. The author put it into the public domain, and it is now available from an on-deman printer (<a href="http://www.lulu.com/" rel="nofollow">Lulu.com</a>).</p> <p>What other classic books are we missing out on because they're out of print, and which ones are available on-line or on-demand?</p> http://stackoverflow.com/questions/134956/how-do-you-perform-address-validation/135006#135006 1 Answer by Kyle Burton for How do you perform address validation? Kyle Burton 2008-09-25T18:17:35Z 2008-11-11T05:27:50Z <p>For us-based address data my company has used <a href="http://www.centrus.com/GeoStan.html" rel="nofollow">GeoStan</a>. It has bindings for C and Java (and we created a Perl binding). Note that it is a commercial product and isn't cheap. It is quite fast though (~300 addresses per second) and offers features like CASS certification (USPS bulk mail discount), DPV (Delivery point verification) flagging, and LON/LAT geocoding.</p> <p>There is a Perl module <a href="http://search.cpan.org/~pauamma/Geo-PostalAddress-0.04/PostalAddress.pm" rel="nofollow">Geo::PostalAddress</a>, but it uses heuristics and doesn't have the other features mentioned for GeoStan.</p> <p>Edit: some have mentioned 'doing it yourself', if you do decide to do this, a good source of information to start with is the <a href="http://www.census.gov/geo/www/tiger/" rel="nofollow">US Census Tiger Data Set</a>, which contains a lot of information about the US including address information.</p> http://stackoverflow.com/questions/244481/using-google-spreadsheet-as-db-for-apps/244575#244575 1 Answer by Kyle Burton for Using Google Spreadsheet as DB for apps Kyle Burton 2008-10-28T19:43:35Z 2008-10-28T19:43:35Z <p>This article <a href="http://ouseful.wordpress.com/2008/10/14/data-scraping-wikipedia-with-google-spreadsheets/" rel="nofollow">Data Scraping Wikipedia with Google Spreadsheets</a> discusses using Google spreadsheets as an application platform.</p> <p>It already has features that allow you to share the spreadsheet with multiple editors, as well as the ability to define forms that you can invite people to fill out who's results will be entered into the spreadsheet as a row.</p> <p>HTH</p> http://stackoverflow.com/questions/122634/mathematics-algorithmic-resources-projecteuler-net-puzzles 14 Mathematics / Algorithmic Resources: ProjectEuler.net puzzles Kyle Burton 2008-09-23T17:59:39Z 2008-10-18T12:23:36Z <p>I've used brute force for the most part for the <a href="http://projecteuler.net/" rel="nofollow">ProjectEuler.net</a> problems that I have been able to solve. One thing I'm finding is that, for some of the puzzles, I'm not able to find good resources for 'backfilling' my understanding of the problem domains the puzzles represent.</p> <p>What are suggested resources for learning about those topics? </p> <ul> <li>numeric sequences</li> <li>properties of pascal's triangle</li> <li>infinite sequences</li> </ul> <p>Is anyone else working through ProjectEuler simply for self-improvement?</p> http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203434#203434 2 Answer by Kyle Burton for What things didn't you know you needed but are now very glad you have? Kyle Burton 2008-10-15T01:24:41Z 2008-10-15T12:17:39Z <p>System level debugging and monitoring tools: </p> <ul> <li><a href="http://www.ibm.com/developerworks/aix/library/au-unix-perfmonsar.html" rel="nofollow">sar</a> - Solaris, system activity reporter - a system monitoring tool</li> <li>vmstat - Linux, processes, memory, paging, block IO, traps and cpu activity</li> <li>lsof - Linux, lists open files, including sockets, shows the owning process</li> <li>strace - Linux, traces system calls and signals in an already running program</li> <li>truss - Solaris, system call trace</li> <li><a href="http://en.wikipedia.org/wiki/DTrace" rel="nofollow">dtrace</a> - Solaris, this tool is amazing</li> </ul> <p>Software Development (some were already mentioned): Unit Testing frameworks, JUnit, etc., <strong>especially</strong> when combined with code coverage tools: <a href="http://search.cpan.org/dist/Devel-Cover/lib/Devel/Cover.pm" rel="nofollow">Devel::Cover</a> (Perl), <a href="http://cobertura.sourceforge.net/" rel="nofollow">Cobertura</a> (Java), <a href="http://rubyforge.org/projects/rcov/" rel="nofollow">rcov</a> (Ruby), <a href="http://sbcl.sourceforge.net/manual/sb_002dcover.html" rel="nofollow">sb-cover</a> (SBCL) and <a href="http://search.cpan.org/~timb/Devel-NYTProf-2.05/lib/Devel/NYTProf.pm" rel="nofollow">Devel::NYTProf</a> (Perl).</p> <p>Profiling tools: Devel::Prof (Perl), Devel::NYTProf (Perl), <a href="http://www.yourkit.com/" rel="nofollow">YourKit</a> (Java) and <a href="http://ruby-prof.rubyforge.org/" rel="nofollow">ruby-prof</a>.</p> <p>Oracle's <a href="http://www.oracle-base.com/articles/8i/ExplainPlanUsage.php" rel="nofollow">EXPLAIN PLAN</a> for helping to tune SQL.</p> http://stackoverflow.com/questions/203376/unit-testing-framework-for-oracle-pl-sql/203388#203388 1 Answer by Kyle Burton for Unit Testing Framework for Oracle PL/SQL? Kyle Burton 2008-10-15T01:04:55Z 2008-10-15T01:04:55Z <p>I also found another library: <a href="http://code.google.com/p/pluto-test-framework/" rel="nofollow">PLUTO</a> - has anyone used these and can compare/contrast them?</p> http://stackoverflow.com/questions/199661/what-linux-shell-should-i-use/199673#199673 26 Answer by Kyle Burton for What Linux shell should I use? Kyle Burton 2008-10-14T01:06:59Z 2008-10-14T01:06:59Z <p>The most common shell, by far, on Linux is bash. Unless you have a good reason to use an alternative, I'd suggest that sticking with bash, or the most commonly used shell by your project team (or that the bulk of the shell scripts you have to work with) uses.</p> <p>The only other very common contender is dash, which is becoming more widely used by the Ubuntu project.</p> <p>This really is personal preference, well, except for <a href="http://www.hyperbase.net/view.mod/Informatics/Documentations/Older+mirror+of+www.perldoc.com/menufeatures.htm" rel="nofollow">csh</a>.</p> http://stackoverflow.com/questions/199638/is-there-a-ruby-net-compiler/199653#199653 1 Answer by Kyle Burton for Is there a Ruby .NET Compiler? Kyle Burton 2008-10-14T00:59:45Z 2008-10-14T00:59:45Z <p>The other alternative is <a href="http://www.ironruby.net/" rel="nofollow">Iron Ruby</a>, which is, I think, officially sanctioned by Microsoft.</p> http://stackoverflow.com/questions/199624/scp-via-java/199640#199640 2 Answer by Kyle Burton for scp via java Kyle Burton 2008-10-14T00:56:51Z 2008-10-14T00:56:51Z <p>The <a href="http://www.openssh.com/java.html" rel="nofollow">openssh project</a> lists several Java alternatives, <a href="http://www.trilead.com/Products/Trilead_SSH_for_Java/" rel="nofollow">Trilead SSH for Java</a> seems to fit what you're asking for.</p> http://stackoverflow.com/questions/119238/what-are-your-favorite-cs-video-lectures/119259#119259 0 Answer by Kyle Burton for What are your favorite CS video lectures? Kyle Burton 2008-09-23T05:12:16Z 2008-10-14T00:50:22Z <p>The <a href="http://groups.csail.mit.edu/mac/classes/6.001/abelson-sussman-lectures/" rel="nofollow">Structure and Interpretation of Computer Programming lectures</a> by Hal Abelson and Gerald Jay Sussman. They are a nice accompaniment to the book, and enlightening.</p> http://stackoverflow.com/questions/199556/how-can-i-port-a-legacy-java-j2ee-website-to-a-modern-scripting-language-php-pyt/199607#199607 7 Answer by Kyle Burton for How can I port a legacy Java/J2EE website to a modern scripting language (PHP,Python/Django, etc)? Kyle Burton 2008-10-14T00:45:59Z 2008-10-14T00:45:59Z <p>If you already have a large amount of business logic implemented in Java, then I see two possibilities for you.</p> <p>The first is to use a high level language that runs within the JVM and has a web framework, such as <a href="http://groovy.codehaus.org/" rel="nofollow">Groovy</a>/<a href="http://grails.org/" rel="nofollow">Grails</a> or <a href="http://jruby.codehaus.org/" rel="nofollow">JRuby</a> and <a href="http://rads.stackoverflow.com/amzn/click/1590598814" rel="nofollow">Rails</a>. This allows you to directly leverage all of the business logic you've implemented in Java without having to re-architect the entire site. You should be able to take advantage of the framework's improved productivity with respect to the web development and still leverage your existing business logic.</p> <p>An alternative approach is to turn your business logic layer into a set of services available over a standard RPC mechanisim - REST, SOAP, XML-RPC or some other simple XML (YAML or JSON) over HTTP protocol (see also <a href="https://dwr.dev.java.net/" rel="nofollow">DWR</a>) so that the front end can make these RPC calls to your business logic.</p> <p>The first approach, using a high level language on the JVM is probably less re-architecture than the second. </p> <p>If your goal is a complete migration off of Java, then either of these approaches allow you to do so in smaller steps - you may find that this kind of hybrid is better than whole sale deprecation - the JVM has a lot of libraries and integrates well into a lot of other systems.</p> http://stackoverflow.com/questions/199564/programming-timing-shellscript-measuring-program-execution-time-at-0-seconds/199592#199592 0 Answer by Kyle Burton for Programming timing shellscript measuring program execution time at 0 seconds. Kyle Burton 2008-10-14T00:36:15Z 2008-10-14T00:36:15Z <p>I'm not sure what the state of the environment (eg: PATH) or the state of the files and permissions are, but it could be as simple as a permissions problem with the sequence shell script (which I think you're saying contains 'java EditDistance'). If you 'chmod +x sequence', does it work? The other issue is that it may not be in your path, can you run sequence by typing: './sequence &lt; ecoli2500.txt'?</p> http://stackoverflow.com/questions/185742/beginner-practical-programming-problems/185755#185755 1 Answer by Kyle Burton for Beginner practical programming problems? Kyle Burton 2008-10-09T02:47:51Z 2008-10-09T02:47:51Z <p>A resource that may fit what you're looking for is the <a href="http://pleac.sourceforge.net/" rel="nofollow">PLEAC</a> site, which is a cook-book across many languages - if you're able to read the sections without peeking at the solutions, then it should serve as basic introductory problems, where you can go and look at the particular solutions when you've finished.</p> <p>I've kept track of the puzzles I've come across <a href="http://delicious.com/mortis/puzzles" rel="nofollow">here</a>. Some of those are more complex (like the ITA puzzles) than what you're looking for though. </p> http://stackoverflow.com/questions/177094/object-database-for-ruby-on-rails/177137#177137 2 Answer by Kyle Burton for Object database for Ruby on Rails Kyle Burton 2008-10-07T03:32:57Z 2008-10-07T03:32:57Z <p><a href="http://code.google.com/p/activecouch/" rel="nofollow">AciveCouch</a> purports to be just such a library for <a href="http://incubator.apache.org/couchdb/" rel="nofollow">CouchDB</a>, which is, in fact, written in Erlang. I wouldn't say it's as mature as ActiveRecord though.</p> <p>That is the closest thing I know of to what you're asking for.</p> http://stackoverflow.com/questions/308749/whats-the-opposite-of-chr-in-ruby/308904#308904 Comment by Kyle Burton on What's the opposite of chr() in Ruby? Kyle Burton 2009-03-08T15:04:17Z 2009-03-08T15:04:17Z 'A'[0].ord words in ruby 1.8.7 - and thanks for the answer. http://stackoverflow.com/questions/518109/how-can-tell-if-a-file-has-finished-being-ftped/518152#518152 Comment by Kyle Burton on How can tell if a file has finished being FTPed? Kyle Burton 2009-02-13T18:23:49Z 2009-02-13T18:23:49Z based on the order of delivery the .done file could arrive (or at least be observable) before the original file has finished transferring (or being written to disk) - even if the sender thinks it has sent it afterwards. Including a checksum/size in the .done file assuages this issue. http://stackoverflow.com/questions/518109/how-can-tell-if-a-file-has-finished-being-ftped/518164#518164 Comment by Kyle Burton on How can tell if a file has finished being FTPed? Kyle Burton 2009-02-13T18:21:34Z 2009-02-13T18:21:34Z This technique doesn't account for partial transfers, it <i>probably</i> exceeds the tcp timeout at 5min, but that's not the only concern in these kinds of transfer protocols. Size sometimes isn't even enough since some OSs preallocate the entire file, leaving the untransfered part as nulls. http://stackoverflow.com/questions/158017/good-ways-to-find-startup-partners/158083#158083 Comment by Kyle Burton on Good ways to find startup partners? Kyle Burton 2008-10-15T01:42:09Z 2008-10-15T01:42:09Z Well, what is your area? You can always be the one who starts the group! http://stackoverflow.com/questions/177094/object-database-for-ruby-on-rails/177137#177137 Comment by Kyle Burton on Object database for Ruby on Rails Kyle Burton 2008-10-15T01:40:46Z 2008-10-15T01:40:46Z Any updated now that you've looked at it? http://stackoverflow.com/questions/203007/how-do-you-deploy-a-web-app-to-the-desktop/203027#203027 Comment by Kyle Burton on How do you deploy a web app to the desktop? Kyle Burton 2008-10-15T01:28:22Z 2008-10-15T01:28:22Z The Hudson link is broken. http://stackoverflow.com/questions/199603/how-do-you-stringize-serialize-ruby-code/199617#199617 Comment by Kyle Burton on How do you stringize/serialize Ruby code? Kyle Burton 2008-10-14T00:56:56Z 2008-10-14T00:56:56Z Marshal doesn't actually work on Procs, which what the question is asking about. http://stackoverflow.com/questions/193053/what-are-all-the-programming-paradigms/193066#193066 Comment by Kyle Burton on What are all the Programming Paradigms? Kyle Burton 2008-10-10T21:21:44Z 2008-10-10T21:21:44Z I explicitly mentioned AOP as not fitting the question - what is important about it? I just see it as an alternative method of DI - are there AOP languages? Or just extensions to existing languages? http://stackoverflow.com/questions/130801/how-do-you-create-tests-for-make-check-with-gnu-autotools/131256#131256 Comment by Kyle Burton on How do you create tests for "make check" with GNU autotools Kyle Burton 2008-09-25T18:52:44Z 2008-09-25T18:52:44Z any insight into the down vote? Did you feel the question wasn't directly addressed? http://stackoverflow.com/questions/131282/would-it-make-sense-to-use-version-control-if-im-the-only-developer Comment by Kyle Burton on Would it make sense to use version control if I'm the only developer? Kyle Burton 2008-09-25T03:22:05Z 2008-09-25T03:22:05Z A related thread is about CI <a href="http://stackoverflow.com/questions/130592/is-continuous-integration-important-for-a-solo-developer#130620" rel="nofollow" title="is continuous integration important for a solo developer%23130620">stackoverflow.com/questions/130592/&hellip;</a> The theme seems to be 'should I use good software engineering practices even if I'm only 1 person' and the answer seems to be a resounding yes. http://stackoverflow.com/questions/131153/open-source-code-review-tools-mondrian/131162#131162 Comment by Kyle Burton on Open Source Code Review Tools? (Mondrian) Kyle Burton 2008-09-25T02:39:42Z 2008-09-25T02:39:42Z I'm looking something that I can install and use behind my company's firewall - GAE doens't allow for that, unless I'm mistaken. http://stackoverflow.com/questions/122634/mathematics-algorithmic-resources-projecteuler-net-puzzles/122652#122652 Comment by Kyle Burton on Mathematics / Algorithmic Resources: ProjectEuler.net puzzles Kyle Burton 2008-09-23T18:09:55Z 2008-09-23T18:09:55Z So far I've done everything in CL and have been disciplined enough to keep to the 60s rule. Thanks for the encouragement. http://stackoverflow.com/questions/121674/multi-core-and-concurrency-languages-libraries-and-development-techniques/121797#121797 Comment by Kyle Burton on Multi-Core and Concurrency - Languages, Libraries and Development Techniques Kyle Burton 2008-09-23T15:43:33Z 2008-09-23T15:43:33Z That's a good thread - I didn't see it when I searched before posting. http://stackoverflow.com/questions/121674/multi-core-and-concurrency-languages-libraries-and-development-techniques/121764#121764 Comment by Kyle Burton on Multi-Core and Concurrency - Languages, Libraries and Development Techniques Kyle Burton 2008-09-23T15:37:42Z 2008-09-23T15:37:42Z Thanks, this is helpful - sounds like ideas could be shared with Dramatis. http://stackoverflow.com/questions/120533/c-c-compiler-for-vista Comment by Kyle Burton on C,C++ compiler for Vista Kyle Burton 2008-09-23T12:03:35Z 2008-09-23T12:03:35Z What do you mean by 'fullscreen mode' - both of the current answers (MingGW and VS 2008 Expression Edition) are answers to the 'free c/c++ compilers for windows', what do you mean by 'fullscreen mode'? Specifying that may help you get a better answer.