User manicmethod - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T10:10:43Zhttp://stackoverflow.com/feeds/user/12098http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/97816/do-you-disable-selinux9Do you disable SELinux?manicmethod2008-09-18T22:55:12Z2009-08-10T12:08:46Z
<p>I want to know if people here typically disable SELinux on installations where it is on by default? If so can you explain why, what kind of system it was, etc?</p>
<p>I'd like to get as many opinions on this as possible.</p>
http://stackoverflow.com/questions/154686/specify-remote-port-to-use-for-mail-via-exim4/154711#1547112Answer by manicmethod for Specify remote port to use for mail via exim4manicmethod2008-09-30T19:59:42Z2008-09-30T19:59:42Z<p>make a new transport that specifies the port</p>
<pre><code>remote_hub_2525:
driver = smtp
port = 2525
</code></pre>
<p>and then create a router for the domains needing non-standard delivery</p>
<pre><code>non_standard_hub:
driver = manualroute
domains = example.org : example.com
transport = remote_hub_2525
no_more
</code></pre>
http://stackoverflow.com/questions/153983/are-there-any-better-command-prompts-for-windows/154021#1540211Answer by manicmethod for Are there any better command prompts for Windows?manicmethod2008-09-30T17:05:23Z2008-09-30T17:05:23Z<p>If you don't mind installing cygwin you can use it with xterm or rxvt. You'll also be able to use Bash as the shell instead of cmd.exe which is much nicer.</p>
http://stackoverflow.com/questions/111031/comparison-between-centralized-and-distributed-version-control-systems/111126#1111268Answer by manicmethod for Comparison between Centralized and Distributed Version Control Systemsmanicmethod2008-09-21T14:32:35Z2008-09-21T14:32:35Z<p>To those who think distributed systems don't allow authoritative copies please note that there are plenty of places where distributed systems have authoritative copies, the perfect example is probably Linus' kernel tree. Sure lots of people have their own trees but almost all of them flow toward Linus' tree.</p>
<p>That said I use to think that distributed SCM's were only useful for lots of developers doing different things but recently have decided that anything a centralized repository can do a distributed one can do better.</p>
<p>For example, say you are a solo developer working on your own personal project. A centralized repository might be an obvious choice but consider this scenario. You are away from network access (on a plane, at a park, etc) and want to work on your project. You have your local copy so you can do work fine but you really want to commit because you have finished one feature and want to move on to another, or you found a bug to fix or whatever. The point is that with a centralized repo you end up either mashing all the changes together and commiting them in a non-logical changeset or you manually split them out later. </p>
<p>With a distributed repo you go on business as usual, commit, move on, when you have net access again you push to your "one true repo" and nothing changed.</p>
<p>Not to mention the other nice thing about distributed repos: full history available always. You need to look at the revision logs when away from the net? You need to annotate the source to see how a bug was introduced? All possible with distributed repos.</p>
<p>Please please don't believe that distributed vs centralized is about ownership or authoritative copies or anything like that. The reality is distributed is the next step in evolution of SCM's.</p>
http://stackoverflow.com/questions/109918/what-would-you-tell-high-school-students-who-are-interested-in-careers-in-softwar/109945#1099451Answer by manicmethod for What would you tell high school students who are interested in careers in software development/engineering?manicmethod2008-09-21T01:32:15Z2008-09-21T01:32:15Z<p>Since Office space is about resentment of the sort of work developers have to go through sometimes it may not be a good thing to use to try to sensationalize the field :)</p>
<p>I think some slides are a must, printed out for the students so they can at least take them home and talk to their parents about the possible career path.</p>
<p>Also, something exciting might be a sped up video of a small piece of software being developed, akin to the appaday challenge that shows something coming alive, as it were, at the hands of a developer. Make it something that they will relate to (probably something dealing with the various social networks they use daily).</p>
<p>Emphasize that if they are interested in solving tough problems and seeing those solutions created this may be a field they are interested in. That is why we are all here right? </p>