User Mo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T14:10:40Z http://stackoverflow.com/feeds/user/1870 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1714084/uibutton-to-be-resized/1714434#1714434 0 Answer by Mo for UIButton to be resized Mo 2009-11-11T10:52:34Z 2009-11-11T10:52:34Z <p>To me, it sounds like you are not changing the width of the button but you are adding another button. Are you adding the buttons in code? If you do, could you post the code?</p> <p>In general, if you want to add another button, it would be best, to give it a tag and remove the view with that tag (i.e. the old button) from the superview before adding the new.</p> <p>This should look something like this (from the top of my head):</p> <pre><code>UIButton * button = [[[UIButton alloc] init] autorelease]; button.tag = 100; /* ...set up the button the way you would normally do... */ // remove old button [[targetView viewWithTag: 100] removeFromSuperview]; // add new button [targetView addSubview: button]; </code></pre> <p>The tag is an arbitrary integer used to identify a view. It would be best to <code>#define</code> your used tags in a central place.</p> http://stackoverflow.com/questions/543314/whats-a-good-resource-for-802-11-protocol-internals/543603#543603 1 Answer by Mo for What's a good resource for 802.11 protocol internals? Mo 2009-02-12T22:01:01Z 2009-11-11T10:42:58Z <p>I can highly recommend the "Bat book" by O'Reilly: <a href="http://oreilly.com/catalog/9780596100520/" rel="nofollow">802.11 Wireless Networks: The Definitive Guide</a></p> <p>It goes into great detail but remains readable. </p> <p>I haven't had a chance to look at the second edition but I guess it only improved.</p> http://stackoverflow.com/questions/147981/tomahawk-and-scrolling-tabs 1 Tomahawk and scrolling tabs Mo 2008-09-29T08:44:39Z 2009-09-20T21:00:02Z <p>Hello,</p> <p>is there a tomahawk component, that enables "scrollable tabs"? What I mean is something for the following situation:</p> <p>If I have very many tabs, the tab-bar gets a little arrow on the side to scroll through all the open tabs (like in firefox).</p> <p><img src="http://dl.getdropbox.com/u/165601/arrow.png" alt="image" /></p> <p>Is there a tomahawk component for creating something similar?</p> http://stackoverflow.com/questions/27695/how-to-unversion-a-file-in-either-svn-and-or-git 7 How to "unversion" a file in either svn and/or git Mo 2008-08-26T10:20:41Z 2009-06-30T21:59:45Z <p>It happens to me all the time. I accidentally version a file, I do not want to be versioned (i.e. developer/machine specific config-files).</p> <p>If I commit this file, I will mess up the paths on all the other developer machines - they will be unhappy.</p> <p>If I do delete the file from versioning, it will be deleted from the other developers machines - they will be unhappy.</p> <p>I there f I choose to never commit the file, I always have a "dirty" checkout - I am unhappy.</p> <p>Is a clean way to "unversion" a file from revision-control, that will result in no-one being unhappy?</p> <p>edit: trying to clarify a bit: I have already commited the file to the repository and I want to only remove it from versioning - I specifically do not want it to be physically deleted from everyone doing a checkout. I initially wanted it to be ignored.</p> <p>Answer: If I could accept a second answer, it would be <a href="http://beta.stackoverflow.com/questions/27695/how-to-unversion-a-file-in-either-svn-andor-git#27727" rel="nofollow">this</a>. It answers my question with respect to git - the accepted answer is about svn.</p> http://stackoverflow.com/questions/977047/java-enum-style-classes-in-objective-c 3 Java-enum style classes in Objective-C? Mo 2009-06-10T17:30:50Z 2009-06-11T08:40:49Z <p>Hi,</p> <p>I am new to Obj-C so forgive me if this is a stupid question:</p> <p>How do I implement some in the style of Javas enums? Or to be more precise:</p> <p>I want a class with some known properties which are fix at compile time and unique per instance. Additionally I only want one instance type.</p> <p>Let me give an example in Java:</p> <pre><code>public enum MessageTypes { DEFAULT("white", "standard", 1), EXPRESS("red", "expressMessage", 2), BORADCAST("green", "broadcast", 3); String color; String tagName; int dbId; MessageTypes(String color, String tagName, int dbId) { // you get the idea } //some methonds like getEnumByTagName } </code></pre> <p>How would you do something like this in Objective-C? Am I missing something? Is this a bad pattern at all?</p> <p>Thanks in advance!</p> <p>EDIT: I am sorry, if I did not made myself clear. I know, that obj-c enums are not what I am looking for (as they are only marginally more than a typedef to an int).</p> <p>I would like to create a set of (kind-of-singleton, immutable) instances of a specific class. The singleton pattern in Apples Dev-Docs is of no use as I want multiple distinct instances of a class each with individual values in their properties.</p> <p>The goal of that is to have multiple Message types (about 20) that can be assigned to a Message as a property. Each of my Message types has a (fix and predefined) color, attribute-value (in an XML-representation) and a numerical ID.</p> <p>In Java, I would use an enum as in my code sample. But how do I create different MessageTypes and associate them with their properties in Obj-C? </p> <p>Creating 20 Sublcasses of MessageType (each with a singleton-instance holding the properties) seems like a lot of work for such a simple task and total overkill.</p> <p>My current approach is to create a class with an NSArray holding the different instances. Up on first access of a method like <code>+(id)messageTypeForId:NSInteger id_</code> the NSArray is prepopulated. But this feels totally clumsy and not at all elegant...</p> <p>Is there a more satisfying approach? </p> http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17668#17668 132 Answer by Mo for Computer Language puns and jokes Mo 2008-08-20T09:36:34Z 2009-05-10T19:12:10Z <p>Another classic is the worlds last mistake:</p> <pre><code>/* world's last mistake in C */ if(code = CODE_RED) { launch_missiles(); } </code></pre> http://stackoverflow.com/questions/71315/light-version-of-a-repository-branch-in-git 3 light-version of a repository/branch in git Mo 2008-09-16T11:17:52Z 2009-04-02T19:49:01Z <p>Hello, I am using git on a project, that generates lots of data-files (simulation-results). I am "forced" to version and track all those results in the same repository. (This is a hard requirement and can not be changed)</p> <p>However I don't need them. We have about 50 MB for the project and 5 GB results in the repository.</p> <p>Is it feasible for me to create a branch, delete all the results, check this branch out and only work on that branch?</p> <p>How hard would it be (what would I have to do), to push my local changes back into the fat branch?</p> <p>Is there a better solution to get rid of those 5 GB for my work?</p> http://stackoverflow.com/questions/595872/under-what-conditions-is-a-jsessionid-created/598914#598914 1 Answer by Mo for Under what conditions is a JSESSIONID created? Mo 2009-02-28T23:47:40Z 2009-03-01T00:26:32Z <p>CORRECTION: Please vote for Peter Štibraný's answer - it is more correct and complete!</p> <p>A "JSESSIONID" is the unique id of the http session - <a href="http://java.sun.com/products/servlet/2.2/javadoc/javax/servlet/http/HttpSession.html#getId%28%29" rel="nofollow">see the javadoc here</a>. In the javadoc you will find the following sentence: "Session information is scoped only to the current web application (ServletContext), so information stored in one context will not be directly visible in another."</p> <p>So when you first hit a site, a new session is created and bound to the SevletContext. If you deploy multiple applications, the session is not shared.</p> <p>You can also invalidate the current session and therefore create a new one. e.g. when switching from http to https (after login), it is a very good idea, to create a new session.</p> <p>Hope, this answers your question.</p> http://stackoverflow.com/questions/597483/why-jython-behaves-inconsistently-when-tested-with-pystone/597905#597905 2 Answer by Mo for Why Jython behaves inconsistently when tested with PyStone? Mo 2009-02-28T11:42:32Z 2009-02-28T11:42:32Z <p>This might be a bug in jython 2.5b1. You should consider reporting it back to the jython team. I have just run the pystone benchmark on my MacBook with the current stable release of jython (2.2.1) and I get slow but consistent results:</p> <pre><code>mo$ ~/Coding/Jython/jython2.2.1/jython pystone.py 50000 Pystone(1.1) time for 50000 passes = 2.365 This machine benchmarks at 21141.6 pystones/second mo$ ~/Coding/Jython/jython2.2.1/jython pystone.py 500000 Pystone(1.1) time for 500000 passes = 22.246 This machine benchmarks at 22476 pystones/second mo$ ~/Coding/Jython/jython2.2.1/jython pystone.py 1000000 Pystone(1.1) time for 1000000 passes = 43.94 This machine benchmarks at 22758.3 pystones/second mo$ java -version java version "1.5.0_16" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_16-b06-275) Java HotSpot(TM) Client VM (build 1.5.0_16-132, mixed mode, sharing) </code></pre> <p>The cPython results for me are more or less the same. I reran eacht test three times and got very similar results all the time.</p> <p>I also tried giving java a bigger initial and maximum Heap (-Xms256m -Xmx512m) without a noteworthy result</p> <p>However, setting the JVM to -server (slower startup, better long running performance, not so good for "interactive" work) turned the picture a bit:</p> <pre><code>mo$ ~/Coding/Jython/jython2.2.1/jython pystone.py 50000 Pystone(1.1) time for 50000 passes = 1.848 This machine benchmarks at 27056.3 pystones/second mo$ ~/Coding/Jython/jython2.2.1/jython pystone.py 500000 Pystone(1.1) time for 500000 passes = 9.998 This machine benchmarks at 50010 pystones/second mo$ ~/Coding/Jython/jython2.2.1/jython pystone.py 1000000 Pystone(1.1) time for 1000000 passes = 19.9 This machine benchmarks at 50251.3 pystones/second </code></pre> <p>I made one final run with (-server -Xms256m -Xmx512m):</p> <pre><code>mo$ ~/Coding/Jython/jython2.2.1/jython pystone.py 5000000 Pystone(1.1) time for 5000000 passes = 108.664 This machine benchmarks at 46013.4 pystones/second </code></pre> <p>My guess would be, that the slow first run is due to VM startup/JIT not yet having really kicked in. The results of the longer runs are more or less consitent and show the effects of hotspot/JIT</p> <p>Maybe you could rerun your last test with a bigger heap? To change the JVM switches, just edit the jython file in your Jython installation.</p> http://stackoverflow.com/questions/577595/open-a-file-from-cygwin 4 Open a file from Cygwin Mo 2009-02-23T13:18:18Z 2009-02-23T13:51:28Z <p>Hello,</p> <p>is there an equivalent to OSX <code>open</code> command in cygwin. <code>open</code> opens a file with the default application for that type.</p> <p>I want to do something like</p> <pre><code>$ magic-command file.xls #excel opens as if file.xls would have been double-clicked $ magic-command file.txt #notepad opens as if file.xls would have been double-clicked </code></pre> <p>You get the idea?</p> <p>Basically something like a "cygwin-double-click"</p> http://stackoverflow.com/questions/428486/what-are-some-of-the-things-you-hate-about-your-favorite-editor-ide/571732#571732 0 Answer by Mo for What are some of the things you hate about your favorite editor/IDE? Mo 2009-02-21T00:07:11Z 2009-02-21T00:07:11Z <p>We have a project with a lot of JSPs and other resources in IntelliJ. Hitting "Open Resource" (CTRL+Shit+N) sometimes takes minutes before the resource opens... It drives me crazy...</p> <p>But apart from that I really don't wanna miss IntelliJ ;-)</p> http://stackoverflow.com/questions/554936/endless-loop-in-a-servlet-recovery-possible 3 Endless loop in a servlet - recovery possible? Mo 2009-02-16T23:00:46Z 2009-02-17T01:28:07Z <p>Today I fixed a bug in an application that might have lead to an endless loop in a servlet request/response cycle.</p> <p>So just out of curiousity: What happens, if my servlet actually gets trapped in a for(;;) loop?</p> <p>Is it somehow possible to recover? Will tomcat detect this? Can this instance be killed without restarting the server?</p> <p>Or is this one of the worst things that can happen and a very quick way to kill a webcontainer?</p> <p>EDIT: It was a true endless loop consuming CPU all the time but not memory. I kept it running for a few minutes. I think, I can confirm that tomcat will not detect this kind of thing :-)</p> http://stackoverflow.com/questions/555013/clojure-structure-nested-within-another-structure/555094#555094 1 Answer by Mo for Clojure Structure Nested Within Another Structure Mo 2009-02-17T00:01:59Z 2009-02-17T00:09:31Z <p>I am really new to clojure, so I might be wrong. But I think, you can't do something like</p> <pre><code>(defstruct color-rect :color (struct rect)) </code></pre> <p>As far as I understand clojure-structs, this would create a struct (basically a map with known keys), that has somehow the struct 'rect' as one of it's keys.</p> <p>My assumption is backed by the observation that a simple evaluation of (struct rect) yields</p> <pre><code>{:height nil, :width nil} </code></pre> <p>Whereas an evaluation of (struct color-rect) yields:</p> <pre><code>{:color nil, {:height nil, :width nil} nil} </code></pre> <p>EDIT: What could help you is the fact, that structs are not limited to the keys, they are defined with. It appears as if you could accomplish, what you are trying by something like this:</p> <pre><code>(def c-rect1 (struct-map color-rect :color 249 :height 1 :width 1 )) ;form 3 </code></pre> http://stackoverflow.com/questions/528846/generating-junit-testcases 2 Generating JUnit Testcases Mo 2009-02-09T16:28:24Z 2009-02-09T16:53:41Z <p>Our application depends on numerous resources that are provided by another system.</p> <p>To ensure the existence of those resources, we currently have a JUnit test case (probably more an integration test), that takes a list of all the resources as a textfile, fetches each and tracks success/failure.</p> <p>This is a very long running testCase that is not very "tool friendly". What we would really like to have is something along the lines of one test-method per resource.</p> <p>I am aware that this is not what JUnit was meant to do. But is there a way to generate those testmethods on the fly?</p> <p>Maybe something a bit more "elegant" than writing a perl-script to generate hundreds of methods?</p> <p>Thanks a lot!</p> http://stackoverflow.com/questions/239732/things-possible-in-intellij-that-arent-possible-in-eclipse/239796#239796 9 Answer by Mo for Things possible in IntelliJ that aren't possible in Eclipse? Mo 2008-10-27T12:58:46Z 2009-02-07T11:37:57Z <p>IntelliJ has some pretty advanced code inspections (comparable but different to FindBugs). </p> <p>Although I seriously miss a FindBugs plugin when using IntelliJ (The Eclipse/FindBugs integration is pretty cool). </p> <p><a href="http://www.jetbrains.com/idea/documentation/inspections.jsp" rel="nofollow">Here</a> is an official list of CodeInspections supported by IntelliJ </p> <p>EDIT: Finaly, there is a <a href="http://plugins.intellij.net/plugin/?id=3847" rel="nofollow">findbugs-plugin</a> for IntelliJ. It is still a bit beta but the combination of Code Inspections and FindBugs is just awesome!</p> http://stackoverflow.com/questions/511013/how-to-handle-outofmemoryerror-in-java/511029#511029 9 Answer by Mo for How to handle OutOfMemoryError in Java? Mo 2009-02-04T11:52:27Z 2009-02-04T11:52:27Z <p>You should not handle it in code. OutOfMemory should not be caught and handled. Instead start your JVM with a bigger heapspace</p> <pre><code>java -Xmx512M </code></pre> <p>should do the trick.</p> <p>See <a href="http://docs.sun.com/app/docs/doc/819-3681/abeii?a=view" rel="nofollow">here</a> for more details</p> http://stackoverflow.com/questions/413713/how-can-i-make-my-development-workflow-more-enterprisey/413837#413837 0 Answer by Mo for How can I make my development workflow more "enterprisey"? Mo 2009-01-05T17:18:53Z 2009-01-05T17:23:32Z <p>Once you have a set up version control and a few unit-tests, I would consider a continous integration server (you wanted to be enterprisey, right?).</p> <p>Even if you are and stay the sole developer, this might help you to uncover a few errors. Things you forgot to check in or the likes. A CI-server regularly checks out all your sources, does a clean build an runs all your tests. It also contacts you in the case of errors.</p> <p>This gives you the guarantee that you (or any other person) is able to check out your code and build/run your projects.</p> <p>I would recommend to take a look at <a href="http://hudson.dev.java.net/" rel="nofollow">Hudson</a></p> http://stackoverflow.com/questions/100084/what-is-a-good-gui-text-editor-for-the-mac/410948#410948 1 Answer by Mo for What is a good GUI text editor for the Mac? Mo 2009-01-04T13:02:05Z 2009-01-04T13:02:05Z <p>How come nobody mentioned <a href="http://code.google.com/p/macvim/" rel="nofollow">MacVim</a>? It is vim with a nice mac-native gui. You can open it from the therminal (mvim) and it feels pretty "native" to the mac.</p> <p>If you like vim, you should absolutely give it a try!</p> http://stackoverflow.com/questions/410628/how-to-declare-special-xml-schema-xsd-case-need-help/410834#410834 2 Answer by Mo for How to declare special XML schema (XSD) case - need help Mo 2009-01-04T11:04:39Z 2009-01-04T12:53:25Z <p>EDIT: As Alohci mentioned, my solution is incorrect. According to the spec, an element in xs:all can only appear zero or one time. Sorry for any inconvenience</p> <p>I think what you want isn't a sequence. A sequence defines not only the elements but also the order. And in your case the order may change. Have you tried xs:all?</p> <pre><code>&lt;xs:complexType name="myComplexType"&gt; &lt;xs:all&gt; &lt;xs:element name="x" type="xs:string" maxOccurs="unbounded"/&gt; &lt;xs:element name="y" type="xs:string" maxOccurs="1"/&gt; &lt;/xs:all&gt; &lt;/xs:complexType&gt; </code></pre> <p>Another appraoch might be to make it a sequence but mark the sequence to be <code>maxOccurs="unbounded"</code></p> http://stackoverflow.com/questions/410890/how-to-trace-a-nullpointerexception-in-a-chain-of-getters/410925#410925 7 Answer by Mo for How to trace a NullPointerException in a chain of getters Mo 2009-01-04T12:35:11Z 2009-01-04T12:40:15Z <p>In IntelliJ IDEA you can set <em>exceptionbreakpoints</em>. Those breakpoints fire whenever a specified exception is thrown (you can scope this to a package or a class).</p> <p>That way it should be easy to find the source of your NPE.</p> <p>I would assume, that you can do something similar in netbeans or eclipse.</p> <p>EDIT: <a href="http://help.eclipse.org/help32/index.jsp?topic=/org.eclipse.jdt.doc.user/reference/views/breakpoints/ref-addexception_viewaction.htm" rel="nofollow">Here</a> is an explanation on how to add an exceptionbreakpoint in eclipse</p> http://stackoverflow.com/questions/367905/generated-equals-in-webservice-stub 0 Generated equals in Webservice Stub Mo 2008-12-15T10:00:57Z 2008-12-15T10:22:14Z <p>All the generated webservice-stubs from our backend have an equals-method similar to this one:</p> <pre><code>private java.lang.Object __equalsCalc = null; public synchronized boolean equals(java.lang.Object obj) { if (!(obj instanceof PropertyData)) return false; PropertyData other = (PropertyData) obj; if (obj == null) return false; if (this == obj) return true; if (__equalsCalc != null) { return (__equalsCalc == obj); } __equalsCalc = obj; boolean _equals; _equals = true &amp;&amp; ((this.key==null &amp;&amp; other.getKey()==null) || (this.key!=null &amp;&amp; this.key.equals(other.getKey()))) &amp;&amp; ((this.value==null &amp;&amp; other.getValue()==null) || (this.value!=null &amp;&amp; this.value.equals(other.getValue()))); __equalsCalc = null; return _equals; } </code></pre> <p>Can someone please explain to me the purpoise of <code>__equalsCalc</code>? I just don't get it. It is not used somewhere else in the class. The way I see it, it is not null exactly during the calculation of the "equality". However the equals is declared <code>synchronized</code>. Therefore only one thread can be in it at any given time. I can't see, why <code>if (__equalsCalc != null)</code> should ever be true.</p> <p>Please show me my stupid misunderstanding ;-)</p> <p>EDIT: I am new to the project and therefore my answer may be wrong. But if I trace it correctly, the method is generated by axis-wsdl2java</p> http://stackoverflow.com/questions/208149/configure-multiple-keystores-in-jboss-depending-on-requested-hostname 1 Configure multiple keystores in JBoss depending on requested hostname Mo 2008-10-16T11:16:24Z 2008-11-09T17:13:21Z <p>Hello,</p> <p>I have my J2EE application deployed into a JBossAS. My Application has to respond to two different hostnames (https://foo.com/myApp and https://bar.com/myApp). It is the same instance of the app serving those two hostnames.</p> <p>But I don't know how to configure the keystores. I need different keystores for each hostname. Is there a way to tie a virtual host in JBoss' server.xml to a specific connector?</p> <p>Or do I have to use two different IP-addresses and create a connector for each?</p> <p>A solution that does not require a second IP-address would be greatly appreciated.</p> http://stackoverflow.com/questions/256697/scala-syntax-pass-string-to-object/256800#256800 4 Answer by Mo for Scala syntax - pass string to object Mo 2008-11-02T11:50:49Z 2008-11-02T11:50:49Z <p>This is indeed an error in the parser. It is fixed in scala 2.7.2 (which is RC6 at the moment)</p> <pre><code>$ ./scala Welcome to Scala version 2.7.2.RC6 (Java HotSpot(TM) Client VM, Java 1.5.0_16). Type in expressions to have them evaluated. Type :help for more information. scala&gt; def y = "foo" y: java.lang.String scala&gt; y "bar" &lt;console&gt;:1: error: ';' expected but string literal found. y "bar" ^ scala&gt; val x = "foo" x: java.lang.String = foo scala&gt; x "foo" &lt;console&gt;:1: error: ';' expected but string literal found. x "foo" ^ scala&gt; "foo" "bar" &lt;console&gt;:1: error: ';' expected but string literal found. "foo" "bar" ^ </code></pre> http://stackoverflow.com/questions/239732/things-possible-in-intellij-that-arent-possible-in-eclipse/239780#239780 3 Answer by Mo for Things possible in IntelliJ that aren't possible in Eclipse? Mo 2008-10-27T12:56:11Z 2008-10-27T12:56:11Z <p>The IntelliJ debugger has a very handy feature called "Evaluate Expression", that is by far better than eclipses pendant. It has full code-completion and i concider it to be generally "more useful".</p> http://stackoverflow.com/questions/71625/why-would-a-static-inner-interface-be-used-in-java 9 Why would a static inner interface be used in Java? Mo 2008-09-16T12:15:45Z 2008-10-16T15:56:13Z <p>I have just found a static inner interface in our code-base.</p> <pre><code>class Foo { public static interface Bar { /* snip */ } /* snip */ } </code></pre> <p>I have never seen this before. The original developer is out of reach. Therefore I have to ask SO:</p> <p>What are the semantics behind a static interface? What would change, if I remove the <code>static</code>? Why would anyone do this?</p> http://stackoverflow.com/questions/209145/unix-getting-export-path-to-stick/209165#209165 1 Answer by Mo for Unix: Getting Export PATH to "Stick" Mo 2008-10-16T15:53:56Z 2008-10-16T15:53:56Z <p>You have to put those commands into one of the "autostart" files of your shell.</p> <p>For bash this would be <code>.bashrc</code> in your homedirectory (create it if necessary)</p> http://stackoverflow.com/questions/187850/relocate-jsf-generated-javascript 0 Relocate JSF-generated javascript Mo 2008-10-09T15:35:54Z 2008-10-14T06:43:09Z <p>I am using lots of commandLinks in my app. For them to work, JSF generates some wild Javascript ( <code>function dpf(f) {var adp...</code> ). Sadly, the script-tag destroys my layout. (It really does - I am sure about that).</p> <p>Is there a way to force JSF to generate the script-tag somewhere else?</p> http://stackoverflow.com/questions/187850/relocate-jsf-generated-javascript/187887#187887 0 Answer by Mo for Relocate JSF-generated javascript Mo 2008-10-09T15:44:32Z 2008-10-09T15:44:32Z <p>Currently, I have an empty, hidden commandLink at the position, where I want the script-tag to be. This is working but I am not really satisfied with this "solution".</p> http://stackoverflow.com/questions/82391/should-tables-be-avoided-in-html-at-any-cost/82402#82402 52 Answer by Mo for Should Tables be avoided in HTML at any cost? Mo 2008-09-17T12:10:50Z 2008-10-09T11:18:25Z <p>No - not at all. But use tables for tabular data. Just don't use them for general layouting.</p> <p>But if you display tabular data, like results or maybe even a form, go ahead and use tables!</p> http://stackoverflow.com/questions/152299/svn-repostiory-location 0 svn + repostiory location Mo 2008-09-30T08:57:59Z 2008-10-01T16:43:35Z <p>Hello,</p> <p>I am about to set up a subversion server to be accessed via svn+ssh. I was wondering, where the <em>default</em> repository location is (on a unix box).</p> <p>Do you put it in</p> <pre><code>/opt/svn </code></pre> <p>or</p> <pre><code>/home/svn </code></pre> <p>or</p> <pre><code>/usr/subversion </code></pre> <p>or even</p> <pre><code>/svn </code></pre> <p>or somewhere else?</p> <p>I am looking for the place, most people put it. Is there a convention?</p> <p>EDIT:</p> <p>It is absolutely possible to "hide" the actual repository location from the user. For example (in my case) by wrapping the <code>svnserve</code> executable in a way that it is called like:</p> <pre><code>svnserve -r /var/svn/repos </code></pre> http://stackoverflow.com/questions/543314/whats-a-good-resource-for-802-11-protocol-internals/543603#543603 Comment by Mo on What's a good resource for 802.11 protocol internals? Mo 2009-11-11T10:43:29Z 2009-11-11T10:43:29Z You are absolutely right. I have updated the link. Thank you for the pointer http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash Comment by Mo on What is your single most favorite command-line trick using Bash? Mo 2009-09-10T16:03:57Z 2009-09-10T16:03:57Z Some neat stuff in here. But it should be noted that a quite a few of them only work when the bash is in emacs mode... http://stackoverflow.com/questions/22088/why-do-the-others-think-you-can-fix-their-computer/22095#22095 Comment by Mo on Why do 'the others' think you can fix their computer? Mo 2009-09-04T09:37:31Z 2009-09-04T09:37:31Z Well, isn't this a fix? &quot;The software you downloaded (probably illegal) is broken. There is nothing I can do about it.&quot; And as an added value: &quot;But for that purpoise maybe you could try XYZ&quot; Because most of the time they download this crap for some totally useless or simple purpoise ;-) http://stackoverflow.com/questions/977047/java-enum-style-classes-in-objective-c/978940#978940 Comment by Mo on Java-enum style classes in Objective-C? Mo 2009-06-11T07:50:31Z 2009-06-11T07:50:31Z The macro is more ugly in my point of view but I really like your first solution. That appears to be better (and more cocoa-like) than my approach. Thank you. http://stackoverflow.com/questions/977047/java-enum-style-classes-in-objective-c/977116#977116 Comment by Mo on Java-enum style classes in Objective-C? Mo 2009-06-10T17:41:40Z 2009-06-10T17:41:40Z Well, then I don't get my properties, that are unique per instance. http://stackoverflow.com/questions/577595/open-a-file-from-cygwin/577698#577698 Comment by Mo on Open a file from Cygwin Mo 2009-02-23T14:04:39Z 2009-02-23T14:04:39Z This one appears &quot;cleaner&quot; - therefore I accepted it http://stackoverflow.com/questions/565095/java-are-getters-and-setters-evil/565117#565117 Comment by Mo on Java: Are Getters and Setters evil? Mo 2009-02-20T19:40:05Z 2009-02-20T19:40:05Z @tehvan: +1 for &quot;plain pojo&quot; ;-) http://stackoverflow.com/questions/554936/endless-loop-in-a-servlet-recovery-possible/555042#555042 Comment by Mo on Endless loop in a servlet - recovery possible? Mo 2009-02-16T23:47:27Z 2009-02-16T23:47:27Z Hm... Are you sure? I read over the document you linked and I don't see how those timers could detect a &quot;hung&quot; (basically live-locked) thread. Please correct me if I'm wrong! http://stackoverflow.com/questions/554936/endless-loop-in-a-servlet-recovery-possible/554977#554977 Comment by Mo on Endless loop in a servlet - recovery possible? Mo 2009-02-16T23:26:35Z 2009-02-16T23:26:35Z Don't worry - you didn't http://stackoverflow.com/questions/554936/endless-loop-in-a-servlet-recovery-possible/554977#554977 Comment by Mo on Endless loop in a servlet - recovery possible? Mo 2009-02-16T23:19:39Z 2009-02-16T23:19:39Z Let's say this bug was detected before it caused production trouble ;-) http://stackoverflow.com/questions/554936/endless-loop-in-a-servlet-recovery-possible/554968#554968 Comment by Mo on Endless loop in a servlet - recovery possible? Mo 2009-02-16T23:18:40Z 2009-02-16T23:18:40Z Hey - good to know, that websphere detects something like this. Thanks for the info http://stackoverflow.com/questions/528846/generating-junit-testcases/528956#528956 Comment by Mo on Generating JUnit Testcases Mo 2009-02-09T21:36:06Z 2009-02-09T21:36:06Z In my oppinion this is a near perfect solution. In IDEA, the parameterized tests sadly collapse to a single one. This means we still don't see at once, which resources were not available. However thanks for the parameterized tests - I didn't knew them. http://stackoverflow.com/questions/416998/is-google-web-toolkit-useful-to-develop-complex-javascripts/417093#417093 Comment by Mo on Is Google Web Toolkit useful to develop complex javascripts ? Mo 2009-01-06T16:09:11Z 2009-01-06T16:09:11Z Do you think the same way about generated Assembler? Handling all those differences between different Processor architecures? I am not saying, that GWT is necessarily there yet. But Generating one language out of another is nothing scary at all. http://stackoverflow.com/questions/413713/how-can-i-make-my-development-workflow-more-enterprisey/413837#413837 Comment by Mo on How can I make my development workflow more "enterprisey"? Mo 2009-01-05T21:00:59Z 2009-01-05T21:00:59Z Cruisecontrol is probably the most popular CI server. But it can be a pain to configure for the first time (especially wothout the proper experience). Therefore I recommended Hudson. It is a bit more &quot;userfriendly&quot; in my oppinion. http://stackoverflow.com/questions/410628/how-to-declare-special-xml-schema-xsd-case-need-help/410895#410895 Comment by Mo on How to declare special XML schema (XSD) case - need help Mo 2009-01-04T12:55:35Z 2009-01-04T12:55:35Z I have marked my solution. Thank you for the clarification