User melling - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T06:42:40Z http://stackoverflow.com/feeds/user/5020 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1885815/best-way-to-handle-distributed-databases-and-unique-keys-in-mysql 0 Best way to handle distributed databases and unique keys in MySql melling 2009-12-11T04:39:30Z 2009-12-11T04:42:19Z <p>I want to build a crowd-sourcing web application that has several feeder servers talking to their own distinct MySql databases. The servers will be set up so the data can be merged into a master database, on demand. What is the best way to construct my primary keys so I can merge the data?</p> <p>For example, say I have collecting data about books and authors. I will simplify keys as much as possible. I will restrict the authors to be pre-defined so their keys are the same on all servers. Books, however, can be inserted for any given author on any given server.</p> <p>The two options that seem obvious are: </p> <ol> <li>Have a composite key that includes a unique server id </li> <li>partition my book.id 's based on the server. </li> </ol> <p>Are there other good options? Which of my two solutions is better in practice?</p> http://stackoverflow.com/questions/1810307/reverse-engineering-mysql-schema-with-schemaspy 0 Reverse engineering MySql schema with SchemaSpy melling 2009-11-27T19:22:17Z 2009-11-30T02:01:08Z <p>I'm attempting to reverse engineer and existing MySql database with <a href="http://schemaspy.sourceforge.net" rel="nofollow">SchemaSpy</a>. It seems to run without any errors. However, I don't get any relationships like this sample <a href="http://schemaspy.sourceforge.net/sample/relationships.html" rel="nofollow">output</a>, just "no relationships" like <a href="http://www.friendlybits.com/wwf/persistence/relationships.html" rel="nofollow">this</a>. I went back and added a few foreign key constraints hoping that would help. Most of my tables are in the defined uniformly like the following:</p> <p>bar.foo_id -- foreign keys are table_name.id<br> foo.id -- All tables have an id column<br></p> <p>bar.baz_id<br> baz.id<br></p> <p>Since the FK's didn't initially exist, I added them before generating the schema.</p> <p>ALTER TABLE bar ADD CONSTRAINT FOO_FK Foreign Key (foo_id) REFERENCES foo (id);<br> ALTER TABLE bar ADD CONSTRAINT BAZ_FK Foreign Key (baz_id) REFERENCES baz (id);</p> <p>Is there a a way to force SchemaSpy to generate the diagram?</p> http://stackoverflow.com/questions/278031/best-way-store-a-date-time-for-different-timezones 2 Best way store a date/time for different timezones melling 2008-11-10T14:48:41Z 2009-11-23T06:01:42Z <p>What's the best way to store timezone information with dates/times in a uniform way so people can enter times from anywhere in the world in their own local time? Other users would then have the ability to view the times in their own local time and the original localtime on the web page.</p> http://stackoverflow.com/questions/220758/using-groovy-grails-in-a-legacy-java-jsp-web-app 2 Using Groovy/Grails in a legacy Java/JSP web app melling 2008-10-21T04:24:10Z 2009-11-19T08:33:36Z <p>I was fortunate enough to be able to start fresh with Grails. However, many people have asked me how to add Groovy and/or Grails to a legacy Java/JSP web app. Do people have experience or recommendations on how to best include Groovy and Grails into a large legacy application?</p> http://stackoverflow.com/questions/241021/best-mind-map-software 16 Best Mind Map Software melling 2008-10-27T18:48:06Z 2009-11-14T16:05:50Z <p>I like to use mind mapping software when I first start a project to gather specifications. What are the best free and commercial mind mapping applications?</p> http://stackoverflow.com/questions/1474785/how-do-i-compile-openofficeuno-for-solaris-10 0 How do I compile OpenOffice::UNO for Solaris 10? melling 2009-09-25T00:03:52Z 2009-11-12T21:24:35Z <p>I want to use OpenOffice with Perl to create some PDFs. However, I can't seem to get the <a href="http://search.cpan.org/dist/OpenOffice-UNO" rel="nofollow">OpenOffice::UNO</a> module installed on Solaris/OpenSolaris: .</p> <p>The module was recently updated but it doesn't really seem to support Solaris 10. I got around this in the <code>Makefile.PL</code> but the <code>UNO.c</code> file doesn't compile. I was wondering if people use this module on Solaris or are there other options that work with Perl?</p> http://stackoverflow.com/questions/1663627/guile-and-emacs 1 Guile and Emacs? melling 2009-11-02T20:52:56Z 2009-11-11T15:12:06Z <p>I'm learning Emacs Lisp and I came across this decade old post saying that at some point Guile (Scheme) will replace Emacs Lisp, or Emacs will be rewritten with Guile. </p> <p><a href="http://sanpietro.red-bean.com/guile/guile/old/3114.html" rel="nofollow">http://sanpietro.red-bean.com/guile/guile/old/3114.html</a></p> <p>I was wondering if this is still a possibility, and if developers should be trying to write Elisp with this in mind? The original goal was for Guile to be backwards compatible with Elisp, but it seems like developing Scheme is the better choice.</p> http://stackoverflow.com/questions/1712172/whats-your-take-on-the-programming-language-go/1713135#1713135 27 Answer by melling for What's your take on the programming language Go? melling 2009-11-11T05:03:15Z 2009-11-11T05:03:15Z <p>A type-safe language with concurrency support, garbage-collection, a succinct C-like syntax and compiles 120,000 lines of code in about 8 seconds on a Mac laptop. The C/C++ edit-compile-link cycle has essentially been "eliminated".</p> <p>Let's throw in that it was designed by a couple of famous former Bell Lab guys for a little buzz.</p> <p>Hmmmm....I'd say we have a winner.</p> http://stackoverflow.com/questions/1705717/hello-world-examples-in-script-fu 0 Hello World examples in script-fu? melling 2009-11-10T05:01:40Z 2009-11-10T06:30:33Z <p>I've got this late night urge to learn Gimp's script-fu (aka Scheme). Unfortunately many of the tutorials seem to be written with the old version (pre 2.0?), including the basic tutorial on <a href="http://www.gimp.org/tutorials/Basic_Scheme" rel="nofollow"> Gimp.org</a>.</p> <p>Does anyone have any small Scheme examples, or tutorials, that would help me quickly familiarize myself with script-fu, so I could draw some basic shapes, generate gradients, etc.?</p> http://stackoverflow.com/questions/1663381/sharing-authentication-between-glassfish-and-apache 0 Sharing authentication between Glassfish and Apache? melling 2009-11-02T20:06:23Z 2009-11-10T00:03:34Z <p>We are running a Grails application under Glassfish V2. From within the application, we refer to files that are served up from Apache.</p> <p><a href="http://mysite.com/index.jsp" rel="nofollow">http://mysite.com/index.jsp</a> - Grails or JSP app under Glassfish<br/> <a href="http://mysite.com/pics" rel="nofollow">http://mysite.com/pics</a> - Pictures served from within Apache</p> <p>How can I lock down the pictures unless the user has authenticated from with Glassfish?</p> <p><hr></p> <p>I got a Tumbleweed badge for this (not a good thing?). I'm going to see if I can direct this at regular Java/JSP developers using Tomcat/Glassfish with Apache.</p> http://stackoverflow.com/questions/1684460/glassfish-in-a-production-environment/1686003#1686003 0 Answer by melling for Glassfish in a production environment? melling 2009-11-06T07:33:20Z 2009-11-06T07:33:20Z <p><a href="https://glassfish.dev.java.net/" rel="nofollow">Glassfish</a> is Sun's reference standard for a J2EE app server. V3 supports the new 3.1 standard. However, it is only a preview. It is currently scheduled to be released on <a href="http://wiki.glassfish.java.net/Wiki.jsp?page=GlassFishV3Schedule" rel="nofollow">Dec 10, 2009</a>. Of course, it can always be dangerous to be a very early adopter in a production environment. Currently V3 doesn't support JMS or clustering, for example, but they should be in the final release. </p> <p>I've used V2 in production for about 3 years and I personally like it. The web admin console makes it very easy to manage (<a href="http://localhost:4848" rel="nofollow">http://localhost:4848</a>, admin, adminadmin), and the performance is good. Here's one example, where someone benchmarked Glassfish: <a href="http://raibledesigns.com/rd/entry/glassfish_2_vs_tomcat_6" rel="nofollow">Blog</a>. Of course, you should search for more examples and your YMMV. Here's a Sun <a href="http://www.scribd.com/doc/16792063/GlassFish-Tomcat" rel="nofollow">document</a> for Glassfish to help Tomcat User.</p> <p>One last thing that I would add is that Sun ships, and integrates, both Tomcat and Glassfish in their Java IDE <a href="http://netbeans.org/downloads/index.html" rel="nofollow">Netbeans</a> so you can easily switch between the two app servers to test your particular app.</p> http://stackoverflow.com/questions/1678449/using-lisp-to-reprint-a-list/1678672#1678672 0 Answer by melling for Using Lisp to reprint a list melling 2009-11-05T06:18:44Z 2009-11-05T06:18:44Z <p>This is a great book: <a href="http://www.gigamonkeys.com/book" rel="nofollow">Practical Common Lisp</a>.</p> <p>You might want to start here if you're in a hurry: <a href="http://www.gigamonkeys.com/book/they-called-it-lisp-for-a-reason-list-processing.html" rel="nofollow">List Processing</a> and <a href="http://www.gigamonkeys.com/book/a-few-format-recipes.html" rel="nofollow">Format Recipes</a></p> http://stackoverflow.com/questions/1623348/building-and-maintaining-a-database-in-emacs 2 Building and maintaining a database in Emacs? melling 2009-10-26T06:22:04Z 2009-11-02T09:18:32Z <p>I was reading the <a href="http://www.gigamonkeys.com/book/practical-a-simple-database.html" rel="nofollow">Simple Database</a> section of Peter Siebel's book <a href="http://www.gigamonkeys.com/book/" rel="nofollow">Practical Common Lisp</a> with the idea of maintaining a small database of around 50,000 records. I thought doing this in Emacs might be an interesting, and useful, exercise. Emacs Lisp is somewhat compatible with CL except for a few <a href="http://www.gnu.org/software/emacs/manual/html_node/cl/Porting-Common-Lisp.html" rel="nofollow">notable differences</a>. The <strong>format</strong> function used in the above example being one major difference.</p> <p>Here's the code that contains everything needed to construct, save, and load the database in CL. Can this be modified to work well in Emacs? I omitted the <strong>select</strong> and <strong>where</strong> functions but I'd like to include them. Maybe there is a better Emacs way of building and maintaining a database? Personally, I'm using this as an exercise to learn CL and solve an existing problem.</p> <pre> ;; Simple Common Lisp database ;; http://www.gigamonkeys.com/book/practical-a-simple-database.html ;; (defvar *db* nil) (defun make-cd (title artist rating ripped) (list :title title :artist artist :rating rating :ripped ripped)) (defun add-record (cd) (push cd *db*)) (defun dump-db () (dolist (cd *db*) (format t "~{~a:~10t~a~%~}~%" cd))) (defun save-db (filename) (with-open-file (out filename :direction :output :if-exists :supersede) (with-standard-io-syntax (print *db* out)))) (defun load-db (filename) (with-open-file (in filename) (with-standard-io-syntax (setf *db* (read in))))) ; === ; ; Add some records ; (add-record (make-cd "Roses" "Kathy Mattea" 7 t)) (add-record (make-cd "Fly" "Dixie Chicks" 8 t)) (add-record (make-cd "Home" "Dixie Chicks" 9 t)) ; (dump-db) ; (save-db "cd.db") ; (load-db "cd.db") </pre> http://stackoverflow.com/questions/1623348/building-and-maintaining-a-database-in-emacs/1660179#1660179 0 Answer by melling for Building and maintaining a database in Emacs? melling 2009-11-02T09:18:32Z 2009-11-02T09:18:32Z <p>Here's my solution:</p> <pre> <code> (defvar *db* nil) (setq *db* ()) (defun make-cd (title artist rating ripped) (list :title title :artist artist :rating rating :ripped ripped)) (defun add-record (cd) (push cd *db*)) (defun init () (progn (add-record (make-cd "Roses" "Kathy Mattea" 7 t)) (add-record (make-cd "Fly" "Dixie Chicks" 8 t)) (add-record (make-cd "Home" "Dixie Chicks" 9 t)) )) (defun save-db (filename) (with-temp-buffer (print *db* (current-buffer)) (write-file filename)) (message "Saving database...done") ) (defun load-db (filename) (with-temp-buffer (insert-file-contents filename) (setq *db* (read (current-buffer))))) (defun dump-db () (dolist (cd *db*) (print cd))) ;; Test in M-x lisp-interaction-mode ;;(init) ;;(save-db "cd.db") ;*db* ;(add-record (make-cd "Born To Run" "Bruce Springsteen" 10 t)) ;(add-record (make-cd "The River" "Bruce Springsteen" 10 t)) ;(add-record (make-cd "Nebraska" "Bruce Springsteen" 10 t)) ;(add-record (make-cd "Human Touch" "Bruce Springsteen" 10 nil)) ;;(save-db "cd.db") ;(setq *db* ()) ;;(load-db "cd.db") ;*db* </code> </pre> http://stackoverflow.com/questions/1257282/url-checker-in-clojure 1 URL Checker in Clojure? melling 2009-08-10T21:21:47Z 2009-11-02T08:05:22Z <p>I have a URL checker that I use in Perl. I was wondering how something like this would be done in Clojure. I have a file with thousands of URLs and I'd like the output file to contain the URL (minus http://, https://) and a simple :1 for valid and :0 for false. Ideally, I could check each site concurrently, considering that this is one of Clojure's strengths.</p> <h2>Input</h2> <p><a href="http://www.google.com" rel="nofollow">http://www.google.com</a><br> <a href="http://www.cnn.com" rel="nofollow">http://www.cnn.com</a><br> <a href="http://www.msnbc.com" rel="nofollow">http://www.msnbc.com</a><br> <a href="http://www.abadurlisnotgood.com" rel="nofollow">http://www.abadurlisnotgood.com</a><br></p> <h2>Output</h2> <p>www.google.com:1<br> www.cnn.com:1<br> www.msnbc.com:1<br> www.abadurlisnotgood.com:0<br></p> http://stackoverflow.com/questions/1257282/url-checker-in-clojure/1659964#1659964 0 Answer by melling for URL Checker in Clojure? melling 2009-11-02T08:05:22Z 2009-11-02T08:05:22Z <p>Instead of pmap, I used agents with send-off in conjunction with the above solution. I think this is better when there is blocking I/O. I believe pmap has limited concurrency too. Here's what I have so far. I wonder how this will scale with thousands of URLs.</p> <pre> <code> (use '(clojure.contrib duck-streams java-utils str-utils)) (import '(java.net URL URLConnection HttpURLConnection UnknownHostException)) (defn check-url [url] (str (re-sub #"^(?i)http:/+" "" url) ":" (try (let [c (cast HttpURLConnection (.openConnection (URL. url)))] (if (= 200 (.getResponseCode c)) 1 0)) (catch UnknownHostException _ 0)))) (def urls (read-lines "urls.txt")) (def agents (for [url urls] (agent url))) (doseq [agent agents] (send-off agent check-url)) (apply await agents) (def x '()) (doseq [url (filter deref agents)] (def x (cons @url x))) (prn x) (shutdown-agents) </code> </pre> http://stackoverflow.com/questions/1642184/extracting-urls-from-an-emacs-buffer 1 Extracting URLs from an Emacs buffer? melling 2009-10-29T07:58:01Z 2009-11-01T14:02:26Z <p>How can I write an Emacs Lisp function to find all hrefs in an HTML file and extract all of the links?</p> <p>Input:</p> <pre> &lt;html> &lt;a href="http://www.stackoverflow.com" _target="_blank">StackOverFlow&lt/a> &lt;h1>Emacs Lisp&lt;/h1> &lt;a href="http://news.ycombinator.com" _target="_blank">Hacker News&lt/a> &lt;/html> </pre> <p>Output:</p> <pre> http://www.stackoverflow.com|StackOverFlow http://news.ycombinator.com|Hacker News </pre> <p>I've seen the re-search-forward function mentioned several times during my search. Here's what I think that I need to do based on what I've read so far.</p> <pre> (defun extra-urls (file) ... (setq buffer (... (while (re-search-forward "http://" nil t) (when (match-string 0) ... )) </pre> http://stackoverflow.com/questions/1642184/extracting-urls-from-an-emacs-buffer/1657236#1657236 1 Answer by melling for Extracting URLs from an Emacs buffer? melling 2009-11-01T14:02:26Z 2009-11-01T14:02:26Z <p>I took Heinzi's solution and came up with the final solution that I needed. I can now take a list of files, extract all URL's and titles, and place the results in one output buffer.</p> <pre> (defun extract-urls (fname) "Extract HTML href url's,titles to buffer 'new-urls.csv' in | separated format." (setq in-buf (set-buffer (find-file fname))); Save for clean up (beginning-of-buffer); Need to do this in case the buffer is already open (setq u1 '()) (while (re-search-forward "^.*&lt;a href=\"\\([^\"]+\\)\"[^>]+>\\([^&lt;]+\\)&lt;/a>" nil t) (when (match-string 0) ; Got a match (setq url (match-string 1) ) ; URL (setq title (match-string 2) ) ; Title (setq u1 (cons (concat url "|" title "\n") u1)) ; Build the list of URLs ) ) (kill-buffer in-buf) ; Don't leave a mess of buffers (progn (with-current-buffer (get-buffer-create "new-urls.csv"); Send results to new buffer (mapcar 'insert u1)) (switch-to-buffer "new-urls.csv"); Finally, show the new buffer ) ) ;; Create a list of files to process ;; (mapcar 'extract-urls '( "/tmp/foo.html" "/tmp/bar.html" )) </pre> http://stackoverflow.com/questions/1648028/netbeans-ide-setting-for-advanced-file-dialog/1648272#1648272 1 Answer by melling for Netbeans IDE setting for advanced file dialog. melling 2009-10-30T06:11:35Z 2009-10-30T06:11:35Z <p>Are you sure that you don't have a plugin installed in the other version? Select </p> <p>Tools->Plugins </p> <p>then click the installed tab.</p> <p>Your preferences are under Tools->Options.</p> http://stackoverflow.com/questions/313446/can-anyone-quantify-performance-differences-between-c-and-java 9 Can anyone quantify performance differences between C++ and Java? melling 2008-11-24T04:55:02Z 2009-10-25T02:19:27Z <p>Java was initially slow before the JIT but today performance is pretty close to C++. I want to know if someone has done measurable performance comparisons between the two languages? <b>Where does Java fall short when compared to C++?</b> Java provides many productivity gains to developers so they can write applications much quicker because of garbage college, lack of pointers, etc. Applications such as Firefox, Webkit and Open Office, for example, could be developed much more quickly and reliably if written in 100% Java, perhaps by a factor of 2, but developers still choose C/C++ for performance reasons. Can someone demonstrate where Java cannot be made to perform as well as C++ for applications like the ones that I mentioned.</p> <p>Let me just add that much application work is still being done in C++ for a reason. This is meant to be more than a subjective questions. Languages with higher levels of abstraction frequently pay a performance penalty. We would all be programming in higher level languages if this penalty did not exist. Where does still Java pay in comparison to C++? Be specific.</p> http://stackoverflow.com/questions/1261557/whats-the-most-useful-thing-youve-done-in-less-than-50-lines-of-clojure 15 What's the most useful thing you've done in less than 50 lines of Clojure? melling 2009-08-11T16:42:04Z 2009-10-25T01:52:48Z <p>Clojure seems likes it might have a good shot at being a popular Lisp. I was wondering how many people have actually adopted it to solve some of the small, yet real, problems that they have encountered. Since Clojure doesn't have an entry in <a href="http://pleac.sourceforge.net" rel="nofollow">Pleac</a>, I thought that it would be great if people posted their small solutions to problems that they've solved in Clojure.</p> http://stackoverflow.com/questions/1598854/hidden-features-of-emacs-lisp 1 Hidden features of Emacs Lisp? melling 2009-10-21T05:16:22Z 2009-10-24T04:18:10Z <p>What are some features of Emacs Lisp that you use to solve real problems?</p> <ul> <li>One feature per answer</li> <li>Give an example and short description of the feature, not just a link to documentation</li> <li>Label the feature using bold title as the first line</li> </ul> <p>See also:</p> <ol> <li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">Hidden features of Python</a></li> <li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-ruby">Hidden features of Ruby</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl">Hidden features of Perl</a></li> <li><a href="http://stackoverflow.com/questions/15496/hidden-features-of-java">Hidden features of Java</a></li> </ol> http://stackoverflow.com/questions/1532365/mysql-queries-from-elisp 2 MySql queries from elisp? melling 2009-10-07T15:29:03Z 2009-10-21T20:16:49Z <p>How can I make SQL queries from within emacs scripts to MySql then print the result set?</p> <pre> #!/usr/bin/emacs --script (setq sql "select id, name from foobar order by name ") (princ sql) </pre> http://stackoverflow.com/questions/1598854/hidden-features-of-emacs-lisp/1598861#1598861 5 Answer by melling for Hidden features of Emacs Lisp? melling 2009-10-21T05:20:19Z 2009-10-21T05:20:19Z <p><b>emacs --script; # Emacs scripting</b></p> <p>Since this is a Community question, I'll start off with my new favorite thing. Writing scripts with Emacs Lisp instead of bash.</p> <pre> #!/usr/bin/emacs --script (defun surf-news () (interactive) (progn (browse-url "http://news.ycombinator.com") (browse-url "http://stackoverflow.com") )) (surf-news) </pre> http://stackoverflow.com/questions/1576086/opening-browser-from-emacs-script 0 Opening browser from emacs script? melling 2009-10-16T01:59:30Z 2009-10-20T13:12:03Z <p>I have the following emacs lisp snippet that will launch my browser from within emacs and open the specified pages. However when I run it as a script from a shell nothing happens. What more do I need to do? I tried dropping (interactive).</p> <pre> <code> #!/usr/bin/emacs --script (defun surf-news () (interactive) (progn (browse-url "http://news.ycombinator.com") (browse-url "http://stackoverflow.com") )) (surf-news) </code> </pre> http://stackoverflow.com/questions/1576086/opening-browser-from-emacs-script/1592489#1592489 0 Answer by melling for Opening browser from emacs script? melling 2009-10-20T04:42:04Z 2009-10-20T13:12:03Z <p>I found the answer on this <a href="http://members.shaw.ca/akochoi-emacs" rel="nofollow">site</a>, at the bottom, where it describes a Mac OS pty bug. I had to add this line and a slight delay between urls.</p> <pre> (setq process-connection-type nil) </pre> <p>Here's the complete solution.</p> <pre> #!/usr/bin/emacs --script (setq process-connection-type nil);; pty's broken on the Mac (defun surf () (progn (browse-url "http://news.ycombinator.com") (sleep-for 0.5); We need a delay (browse-url "http://stackoverflow.com") )) ;; ;; This is what's going on behind the scenes ;;(setq url "http://www.google.com") ;;(start-process (concat "open " url) nil "open" url) (surf) </pre> http://stackoverflow.com/questions/491877/how-to-find-a-users-home-directory 2 How to find a user's home directory? melling 2009-01-29T14:48:42Z 2009-10-19T18:14:10Z <p>How do I find the home directory of an arbitrary user from within Grails? On Linux it's often /home/user. However, on some OS's, like OpenSolaris for example, the path is /export/home/user.</p> http://stackoverflow.com/questions/1558178/wrap-selection-in-open-close-tag-like-textmate 5 Wrap selection in Open/Close Tag like TextMate? melling 2009-10-13T04:26:03Z 2009-10-19T11:00:18Z <p>In <a href="http://macromates.com/" rel="nofollow">TextMate</a>, one can use <a href="http://manual.macromates.com/en/bundles#html" rel="nofollow">ctrl-shift-w</a> to wrap text in an Open/Close tag and ctrl-shift-cmd-w to wrap each line in a region in Open/Close tags. How can I implement this same functionality in Emacs using emacs lisp?</p> <pre> emacs becomes &lt;p>emacs&lt;/p> </pre> <p>And ...</p> <pre> emacs textmate vi becomes &lt;li>emacs&lt;/li> &lt;li>textmate&lt;/li> &lt;li>vi&lt;/li> </pre> http://stackoverflow.com/questions/1568987/getting-emacs-to-respect-my-default-shell-options/1570246#1570246 1 Answer by melling for Getting Emacs to respect my default shell + options melling 2009-10-15T04:15:56Z 2009-10-15T04:15:56Z <p>I don't use zsh but I found this in the <a href="http://www.faqs.org/faqs/unix-faq/shell/zsh/" rel="nofollow">zsh FAQ</a> and gave it a try. I got a colorful ls with no funky characters.</p> <pre> 3.10: Why does zsh not work in an Emacs shell mode any more? Read more: <a href="http://www.faqs.org/faqs/unix-faq/shell/zsh/#ixzz0TyTJsHMq" rel="nofollow">http://www.faqs.org/faqs/unix-faq/shell/zsh/#ixzz0TyTJsHMq</a> </pre> <pre> Another method is to put #!/bin/sh TERM=emacs exec zsh into a file ~/bin/eshell, then `chmod +x ~/bin/eshell', and tell emacs to use that as the shell by adding (setenv "ESHELL" (expand-file-name "~/bin/eshell")) to ~/.emacs. </pre> http://stackoverflow.com/questions/1101858/localhost8080-not-loading-glassfish/1552319#1552319 0 Answer by melling for Localhost:8080 not loading - glassfish melling 2009-10-12T01:37:42Z 2009-10-12T01:37:42Z <p>You can easily create a second domain with Glassfish. This will tell you if there is a problem with the domain or the installation of Glassfish.</p> <pre><code>asadmin create-domain --adminport 4949 --instanceport 9090 domain2 </code></pre> <p>Now connect to the admin port on 4949</p> <p><a href="http://localhost:4949" rel="nofollow">http://localhost:4949</a></p> <p>Login and password are admin, adminadmin</p> <p>Also check the log directory of each domain: </p> <pre><code>$GLASSFISH/domains/domain1/logs $GLASSFISH/domains/domain2/logs </code></pre> http://stackoverflow.com/questions/220758/using-groovy-grails-in-a-legacy-java-jsp-web-app/1761766#1761766 Comment by melling on Using Groovy/Grails in a legacy Java/JSP web app melling 2009-11-20T01:43:47Z 2009-11-20T01:43:47Z I already outlined in an answer how to include Groovlets in an existing Java/JSP project. http://stackoverflow.com/questions/1663627/guile-and-emacs/1666047#1666047 Comment by melling on Guile and Emacs? melling 2009-11-03T10:20:42Z 2009-11-03T10:20:42Z I see there was a Google Summer of Code project to make Guile handle elisp: <a href="http://code.google.com/p/google-summer-of-code-2009-gnu/downloads/detail?name=Daniel_Kraft.tar.bz2&amp;can=2&amp;q=" rel="nofollow">code.google.com/p/google-summer-of-code-2009-gnu/&hellip;</a> http://stackoverflow.com/questions/1663627/guile-and-emacs/1663728#1663728 Comment by melling on Guile and Emacs? melling 2009-11-03T03:18:48Z 2009-11-03T03:18:48Z A few years? Sounds like it's making the Perl 6 project look good. :-) If you have any current info, please post. It would be nice to learn more. http://stackoverflow.com/questions/1659681/what-makes-emacs-a-good-editor/1659805#1659805 Comment by melling on What makes emacs a good editor? melling 2009-11-02T20:25:24Z 2009-11-02T20:25:24Z F3 - start macro, F4 stop/run -- Now you know. http://stackoverflow.com/questions/1623348/building-and-maintaining-a-database-in-emacs/1623861#1623861 Comment by melling on Building and maintaining a database in Emacs? melling 2009-10-28T06:46:55Z 2009-10-28T06:46:55Z I extracted the (with-temp-buffer ...) section and used that. http://stackoverflow.com/questions/1623348/building-and-maintaining-a-database-in-emacs/1624584#1624584 Comment by melling on Building and maintaining a database in Emacs? melling 2009-10-28T06:45:53Z 2009-10-28T06:45:53Z I almost have this working but I only get partial results in my result set. I think minaev's answer is better suited to the question because I'd like to build the database in (Emacs) Lisp and not in a SQL database. Thanks for the help. This is useful. http://stackoverflow.com/questions/1623348/building-and-maintaining-a-database-in-emacs/1623861#1623861 Comment by melling on Building and maintaining a database in Emacs? melling 2009-10-27T00:00:44Z 2009-10-27T00:00:44Z Could you include a sample db file? Your commands aren't interactive. How do you invoke them? http://stackoverflow.com/questions/1532365/mysql-queries-from-elisp/1603332#1603332 Comment by melling on MySql queries from elisp? melling 2009-10-22T00:08:04Z 2009-10-22T00:08:04Z Shell'ing out is inefficient but it will work. (split-string (shell-command-to-string &quot;mysql -u root -p&lt;password&gt; -B &lt;db&gt; --execute='select id,name from projects'&quot;) ) http://stackoverflow.com/questions/9650/lisp-scheme-interpreter-without-emacs/9679#9679 Comment by melling on Lisp/Scheme interpreter without Emacs? melling 2009-10-20T21:37:15Z 2009-10-20T21:37:15Z Link is no longer valid. sbcl --script; #<a href="http://www.sbcl.org/manual/Shebang-Scripts.html#Shebang-Scripts" rel="nofollow">sbcl.org/manual/&hellip;</a> http://stackoverflow.com/questions/1576086/opening-browser-from-emacs-script Comment by melling on Opening browser from emacs script? melling 2009-10-16T15:03:21Z 2009-10-16T15:03:21Z I tried on a Mac and on OpenSolaris. Maybe I'm missing a config value? http://stackoverflow.com/questions/1541682/lisp-script-to-parse-csv-and-generate-html-table/1541958#1541958 Comment by melling on Lisp script to parse csv and generate HTML table? melling 2009-10-09T18:38:35Z 2009-10-09T18:38:35Z Each row is wrapped in its own &amp;lt;table&gt; but it's good enough for me. Thanks. http://stackoverflow.com/questions/1541682/lisp-script-to-parse-csv-and-generate-html-table/1541958#1541958 Comment by melling on Lisp script to parse csv and generate HTML table? melling 2009-10-09T05:34:30Z 2009-10-09T05:34:30Z Emacs batch mode with --script? <a href="http://www.emacswiki.org/emacs/CategoryBatchMode" rel="nofollow">emacswiki.org/emacs/CategoryBatchMode</a> http://stackoverflow.com/questions/384189/how-do-i-make-a-java-resultset-available-in-my-jsp/404444#404444 Comment by melling on How do I make a Java ResultSet available in my jsp? melling 2009-10-09T04:10:13Z 2009-10-09T04:10:13Z I didn't ask for a lesson in MVC, I asked how to solve a specific problem that I was wrestling with in JSP code. We should probably all dump Java/JSP for &lt;a href=&quot;<a href="http://www.squeak.org&quot;&gt;Squeak&lt;/a&gt" rel="nofollow">squeak.org&quot;&gt;Squeak&lt;/a&gt</a>; and Seaside, but hey sometimes we're just trying to get a job done. http://stackoverflow.com/questions/491877/how-to-find-a-users-home-directory/492669#492669 Comment by melling on How to find a user's home directory? melling 2009-10-09T04:01:18Z 2009-10-09T04:01:18Z Shelling out an doing an 'echo ~username' seems like the neatest answer. I see so many people who type 'cd /home/username' instead of 'cd ~username' ... Of course, you should never shell out, if you don't have to. http://stackoverflow.com/questions/491877/how-to-find-a-users-home-directory/494742#494742 Comment by melling on How to find a user's home directory? melling 2009-10-09T03:58:18Z 2009-10-09T03:58:18Z The app server will run as a production user and be located in /opt, for example. This may, or may not work, depending on how the production account is set up. Therefore, asking for the production user's home directory might not be the answer.