User killdash10 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T16:38:47Zhttp://stackoverflow.com/feeds/user/7621http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1474851/can-an-elisp-piece-of-code-yield-so-emacs-doesnt-block2Can an elisp piece of code "yield" so emacs doesn't block?killdash102009-09-25T00:27:32Z2009-09-25T11:38:07Z
<p>Is there any way to write something like this without taking over emacs?</p>
<pre>
(defun dumb-wait (seconds)
(let ((done (+ (second (current-time)) seconds)))
(while (< (second (current-time)) done)
(message "waiting"))))
</pre>
<p>(dump-wait 5) will block emacs from 5 seconds. Is there anyway to write this so it doesn't block? I just want to be in a loop and check some condition from time to time, and still be able to use emacs.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/824057/what-to-do-as-a-novice-programmer/1342038#13420382Answer by killdash10 for What to do as a novice programmer?killdash102009-08-27T15:58:57Z2009-08-27T15:58:57Z<p>Here's something I remember I really enjoyed coding for the pure joy of coding: simulations. </p>
<p>Build a simple model of something you see around you every day. For example, traffic patterns. You can do something really simple and still have lots of fun with it and gain coding experience at the same time. </p>
<p>For a traffic simulation, all you need is:</p>
<p>a) A car class. Cars have properties like speed and braking distance. They have simple behavior such as
- they accelerate if there's no other car in front.
- they break if there's a car within x (pixels).</p>
<p>b) A road class. A road has cars. Maybe a road has properties that change how fast cars can accelerate and brake.</p>
<p>c) Some sort of "renderer" that draws this all on the screen. </p>
<p>The road can be a broad black line. The cars can be dots. The interesting thing is that even with something this simplistic, you can get complex behavior. You can add a few cars with different speeds to the road and see how they interact. Then you add a really slow car and see how all other cars get stuck behind it. </p>
<p>Another fun thing to implement is Conway's Game of Life. Also do some reading on genetic algorithms and try messing around with those. That's awesome stuff too. </p>
<p>Anything that models something and lets you change behavior of the system by tweaking little parts. And a simple ui on top so you can observe what's going on.</p>
<p>Yeah db crud is cool I guess, but not nearly as interesting. You will be doing db crud for the rest of your life once you have a job :)</p>
<p>(I did all this in java with awt - looked awful)</p>
http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/855232#8552323Answer by killdash10 for The single most useful Emacs featurekilldash102009-05-12T22:41:18Z2009-05-12T22:41:18Z<p>Have M-x shell open a new shell instead of putting the existing shell buffer in the foreground:</p>
<pre>
(add-hook
'shell-mode-hook
'(lambda (&rest ignore)
(rename-buffer (generate-new-buffer-name "shell"))))
</pre>
<p>Turn off scrollbar and other UI stuff:</p>
<pre>
;; turn off scrollbars
(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))
(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))
(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))
</pre>
<p>Put Backup files into their own directory:</p>
<pre>
(setq backup-directory-alist `(("." . "~/.emacsbackups")))
</pre>
<p>M-x customize-variable. Very useful for customizing emacs, also in combination with writing and customizing your own elisp functions.</p>
<p>Pre-canned color themes:
<a href="http://www.cs.cmu.edu/~maverick/GNUEmacsColorThemeTest/index-c.html" rel="nofollow">http://www.cs.cmu.edu/~maverick/GNUEmacsColorThemeTest/index-c.html</a></p>
http://stackoverflow.com/questions/116560/open-an-emacs-buffer-when-a-command-tries-to-open-an-editor-in-shell-mode/855170#8551700Answer by killdash10 for Open an Emacs buffer when a command tries to open an editor in shell-mode killdash102009-05-12T22:22:40Z2009-05-12T22:22:40Z<p>Along with using emacs client/server, I am using this script to invoke emacs. </p>
<p>This will start emacs if it is not running yet, or just open a new emacs buffer in the running emacs (using gnuclient). It runs in the background by default, but can be run in the foreground for processes that expect some input. For example, I am using this as my source control editor, when entering a change list description. I have "SVN_EDITOR=emacs sync", so I can do "svn commit" in an emacs shell, and it will open the svn editor in a new emacs buffer in the same emacs. When I close the buffer, "svn commit" continues. Pretty useful.</p>
<pre>
#!/bin/sh
if [ -z $EMACS_CMD ]; then
EMACS_CMD="/usr/bin/emacs"
fi
if [ -z $GNUCLIENT_CMD ]; then
GNUCLIENT_CMD="/usr/bin/gnuclient"
fi
if [ "$1" = "sync" ]; then
shift 1
sync=true
else
sync=false
fi
cmd="${EMACS_CMD} $*"
lsof $EMACS_CMD | grep $USER >/dev/null 2>&1
if [ "$?" -ne "1" ]; then
cmd="${GNUCLIENT_CMD} $*"
fi
if [ $sync = "true" ]; then
$cmd
else
$cmd &
fi
</pre>
http://stackoverflow.com/questions/846608/how-to-do-remote-development-with-emacs/854922#8549221Answer by killdash10 for How to do remote development with emacs?killdash102009-05-12T21:21:37Z2009-05-12T21:21:37Z<p>I would just ssh into the remote machine and run emacs in terminal mode instead of using TRAMP. TRAMP is really slow when you don't expect slowness, at least in my experience. I have also seen it fail in weird ways, and it is not always obvious how to "fix" it. If you ssh in, you won't be able to use emacs UI stuff, like the menus etc, but since you are used to vi that should not be an issue for you. In fact, you can just turn them off so that your ssh emacs experience is very similar to your local experience (if local != terminal mode) (1). </p>
<p>Using screen may be useful if you care about preserving your session in case the connection drops - apart from that you get similar functionality as virtual terminals with emacs buffers. For example, you can open many shell buffers and run various shell commands in emacs buffers. I use this to run many instances of sqlplus (use rename-buffer to give them all nice, friendly names). </p>
<p>Since you are ssh'd into the remote machine, you don't need to worry about running "remote" shell commands.</p>
<p>On the other hand, I am not sure what you mean by "I see that setting up the environment to run emacs is a long way to go". If you have source control, this should be trivial...(I bet you have a good reason).</p>
<p>(1) turn off menu, tool bar and scroll bars:</p>
<p>(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))</p>
<p>(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))</p>
<p>(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))</p>
http://stackoverflow.com/questions/118272/how-do-you-resolve-a-circular-dependency-with-an-inner-class/118483#1184830Answer by killdash10 for How do you resolve a circular dependency with an inner class?killdash102008-09-23T00:49:15Z2008-09-23T00:49:15Z<p>(Not sure if this is what you are asking...)</p>
<p>At runtime, the inner class has an implicit reference to the instance of the outer class it belongs to. So whenever you pass the inner class instance around, you are also passing the outer class instance around.<br />
You can avoid that by declaring the inner class as "static", but that means that the inner class can't access member variables of the outer class. So in that case if you want to access a member of the outer class, you need to pass it explicitly to the inner class (using a setter or using the constructor of the inner class).</p>
http://stackoverflow.com/questions/116978/can-anyone-recommend-a-simple-java-web-app-framework/117334#1173341Answer by killdash10 for Can anyone recommend a simple Java web-app framework?killdash102008-09-22T20:19:02Z2008-09-22T20:19:02Z<p>Check out WaveMaker for building a quick, simple webapp. They have a browser based drag-and-drop designer for Dojo/JavaScript widgets, and the backend is 100% Java.</p>
http://stackoverflow.com/questions/115369/do-you-source-control-your-databases/116509#11650912Answer by killdash10 for Do you source control your databases?killdash102008-09-22T18:12:38Z2008-09-22T18:12:38Z<p>Check out <a href="http://www.liquibase.org" rel="nofollow">LiquiBase</a> for managing database changes using source control.</p>
http://stackoverflow.com/questions/90851/is-it-just-me-or-are-interfaces-overused/95321#953213Answer by killdash10 for Is it just me or are interfaces overused?killdash102008-09-18T18:27:17Z2008-09-18T18:27:17Z<p>Basic rule of thumb: If you only have a single class implementing an interface, and if you can't think of another possible implementation of the interface, you don't need an interface, at least not now. You can always refactor and add an interface later, if required.<br />
I'd argue that you should not add interfaces because they are somehow required by your testing strategy. Unit tests are the most important tool developers have (in my opinion), but they should not force a particular design. Fix the test infrastructure if it forces interfaces on your design.</p>
http://stackoverflow.com/questions/76812/dosomethingtothingthing-n-vs-thing-dosomething/76909#769090Answer by killdash10 for DoSomethingToThing(Thing n) vs Thing.DoSomething()killdash102008-09-16T20:50:07Z2008-09-16T20:50:07Z<p>In general, if "something" is an action that "thing" naturally knows how to do, then you should use thing.doSomething(). That's good OO encapsulation, because otherwise DoSomethingToThing(thing) would have to access potential internal information of "thing".</p>
<p>For example invoice.getTotal()</p>
<p>If "something" is not naturally part of "thing's" domain model, then one option is to use a helper method. </p>
<p>For example: Logger.log(invoice)</p>
http://stackoverflow.com/questions/67299/is-unit-testing-worth-the-effort/67436#674365Answer by killdash10 for Is Unit Testing worth the effort?killdash102008-09-15T21:59:34Z2008-09-15T21:59:34Z<p>Unit tests are also especially useful when it comes to refactoring or re-writing a piece a code. If you have good unit tests coverage, you can refactor with confidence. Without unit tests, it is often hard to ensure the you didn't break anything.</p>
http://stackoverflow.com/questions/64649/how-do-i-get-the-unix-find-command-to-print-out-the-file-size-with-the-file-name/64683#64683-1Answer by killdash10 for How do I get the unix find command to print out the file size with the file name?killdash102008-09-15T16:57:16Z2008-09-15T16:57:16Z<p>find . -name "*.ear" | xargs ls -sh</p>
http://stackoverflow.com/questions/64148/how-to-upgrade-database-schema-built-with-an-orm-tool/64647#646473Answer by killdash10 for How to upgrade database schema built with an ORM tool?killdash102008-09-15T16:53:08Z2008-09-15T16:53:08Z<p><a href="http://www.liquibase.org" rel="nofollow">LiquiBase</a> is an interesting open source library for handling database refactorings (upgrades). I have not used it, but will definitely give it a try on my next project where I need to upgrade a db schema.</p>
http://stackoverflow.com/questions/35809/why-are-vi-and-emacs-popular/64457#644572Answer by killdash10 for Why are Vi and Emacs popular ?killdash102008-09-15T16:31:32Z2008-09-15T16:31:32Z<p>Joel might say: "You have to learn C, and you have to code C using vi or emacs".</p>
http://stackoverflow.com/questions/64293/does-emacs-have-something-like-vis-set-number3Does emacs have something like vi's "set number"killdash102008-09-15T16:10:05Z2008-09-15T16:14:32Z
<p>So that each line starts with its line number?</p>
http://stackoverflow.com/questions/64000/draining-standard-error-in-java/64145#641450Answer by killdash10 for Draining Standard Error in Javakilldash102008-09-15T15:51:53Z2008-09-15T15:51:53Z<p>Just have two threads, one reading from stdout, one from stderr?</p>
http://stackoverflow.com/questions/64038/setting-java-locale-settings/64070#640700Answer by killdash10 for Setting java locale settingskilldash102008-09-15T15:42:48Z2008-09-15T15:42:48Z<p>One way to control the locale settings is to set the java system properties user.language and user.region.</p>
http://stackoverflow.com/questions/63758/is-it-possible-to-kill-a-java-virtual-machine-from-another-virtual-machine/63952#639520Answer by killdash10 for Is it possible to kill a Java Virtual Machine from another Virtual Machine?killdash102008-09-15T15:29:14Z2008-09-15T15:29:14Z<p>Not exactly process management, but you could start an rmi server in the java virtual machine you are launching, and bind a <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/rmi/Remote.html" rel="nofollow">remote</a> instance with a method that does whatever cleanup required and calls System.exit(). The first vm could then call that remote method to shutdown the second vm.</p>
http://stackoverflow.com/questions/60109/good-challenges-tasks-exercises-for-learning-or-improving-object-oriented-program/63425#634252Answer by killdash10 for Good challenges/tasks/exercises for learning or improving object oriented programming (OOP) skills.killdash102008-09-15T14:31:32Z2008-09-15T14:31:32Z<p>After you have learned the basics, study the "Gang of four" design patterns book.</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow">http://www.amazon.com/Design-Patterns-Object-Oriented-Addison-Wesley-Professional/dp/0201633612/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1221488916&sr=8-1</a></p>
<p>This is a classic, and a must read for any coder who wants to understand how to use OO to design elegant solutions to common coding problems. </p>
http://stackoverflow.com/questions/63150/whats-the-best-way-to-build-a-string-of-delimited-items-in-java/63282#632820Answer by killdash10 for What's the best way to build a string of delimited items in Java?killdash102008-09-15T14:15:58Z2008-09-15T14:15:58Z<p>So basically something like this:</p>
<pre><code>public static String appendWithDelimiter(String original, String addition, String delimiter) {
if (original.equals("")) {
return addition;
} else {
StringBuilder sb = new StringBuilder(original.length() + addition.length() + delimiter.length());
sb.append(original);
sb.append(delimiter);
sb.append(addition);
return sb.toString();
}
}
</code></pre>
http://stackoverflow.com/questions/1474851/can-an-elisp-piece-of-code-yield-so-emacs-doesnt-blockComment by killdash10 on Can an elisp piece of code "yield" so emacs doesn't block?killdash102009-09-27T17:03:08Z2009-09-27T17:03:08ZAt the place where I work you will get into all sorts of trouble if you leave your computer unlocked and leave your desk. A hanging emacs will the be least of your concerns :)http://stackoverflow.com/questions/853745/junit-how-to-assert-that-inherited-methods-are-invoked/853767#853767Comment by killdash10 on jUnit - How to assert that inherited methods are invoked?killdash102009-05-13T00:07:23Z2009-05-13T00:07:23ZWon't this just tell you if your test subclass overwrote the method, not if your "real" subclass overwrote the method? This test will pass even if your "real" subclass didn't overwrite the method.http://stackoverflow.com/questions/853745/junit-how-to-assert-that-inherited-methods-are-invokedComment by killdash10 on jUnit - How to assert that inherited methods are invoked?killdash102009-05-13T00:02:30Z2009-05-13T00:02:30ZUse the @Override annotation and let the compiler figure out if you actually did override the method as intended?http://stackoverflow.com/questions/117199/should-i-telecommute/117251#117251Comment by killdash10 on Should I telecommute?killdash102008-09-22T20:30:18Z2008-09-22T20:30:18ZI agree, I worked from Tokyo for a month from a hotel room, and it was way harder than I thought. In the end I felt quite lonely and was happy to get back to the office.