User Brent.Longborough - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T14:27:39Zhttp://stackoverflow.com/feeds/user/9634http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/453300/to-what-extent-can-version-control-help-in-system-administration2To what extent can Version Control help in system administration?Brent.Longborough2009-01-17T13:16:42Z2009-11-29T19:19:50Z
<p>I'm currently tinkering at an OpenBSD system with a view to building myself a firewall and some other bits and bobs.</p>
<p>As this is fairly experimental (I'm an OpenBSD n00b, and I've already trashed my system 3 or 4 times), I wonder what experience others have of making part or all of the file system (I'm thinking in particular of /etc) a working copy of some VCS or other.</p>
<ul>
<li><p>Is this a good idea?</p></li>
<li><p>I'm particularly interested in which VCS people have used for this. I'm considering subversion, bazaar, and git; this won't be a shared repository, so I'm perhaps more interested in the basic vcs functionality than the distributed-or-not argument.</p></li>
<li><p>I'd also like to hear about imagined or actual pitfalls people have found. I can imagine the preservation of file ownership and permissions needs careful thought!</p></li>
<li><p>And, of course, any alternative approaches not involving VCS</p></li>
</ul>
http://stackoverflow.com/questions/453300/to-what-extent-can-version-control-help-in-system-administration/453334#4533340Answer by Brent.Longborough for To what extent can Version Control help in system administration?Brent.Longborough2009-01-17T13:51:26Z2009-11-29T12:55:53Z<h2>Feedback: What I ended up doing</h2>
<p>(@Aif, Thanks for the gentle reminder that my good manners were a bit missing)</p>
<p>I went with /etc as a git repository, but as I'm still a little uneasy with this (me, not git), I'm doing the gitwork manually.</p>
<p>As a side effect, I've started myself on a small project to evaluate, side by side, subversion, git, bazaar, mercurial, monotone, darcs, and fossil, though in a more general version management context (merges and such).</p>
<p><hr></p>
<h2>My reactions to your answers</h2>
<p>Thank you all for your help. I had some difficulty in choosing which answer to accept, so if it wasn't yours, please believe me, I appreciated yours, too.</p>
<p>@<strong>Luis Melgratti</strong></p>
<p>Luis, thanks for a couple of excellent references. I have accepted your answer as the most useful.</p>
<p><hr></p>
<p>@<strong>Conrad</strong></p>
<p>Conrad, I appreciate both your suggestions.</p>
<p>I shall certainly investigate <em>pfsense</em>, though one of my objectives in this is to get my hands really dirty, as well as building a firewall, so "make rather than acquire" is important.</p>
<p>As to Mercurial, I didn't include it in my list because I have tried it (previously), and I felt that I "liked" bazaar better, while git seems at first sight to have a great deal of power (which admittedly I may not need). My "main" VCS at present is Subversion, though I'm not sure it's a good answer for this case. Hence the list of three.</p>
<p>(I've now taken a look at pfsense and fired it up on my network. Very good, but I'm not at all sure I'll get my hands even slightly soiled...)</p>
<p><hr></p>
<p>@<strong>Aif</strong></p>
<p>Thanks, Aif. I'm definitely going to give that a try, though I suspect I'll end up with git. </p>
<p><hr></p>
<p>@<strong>tinkertim</strong></p>
<p>Thank you for your thoughts on Mercurial, which I now plan to revisit, though I'm well pleased with Bazaar.</p>
<p><hr></p>
<p>@<strong>Per Wiklander</strong></p>
<p>Thank you for a very interesting suggestion! I'm definitely going to take a look at etckeeper, when I can get out from under the current workpile.</p>
http://stackoverflow.com/questions/599837/how-to-generate-and-validate-a-software-license-key/599853#59985312Answer by Brent.Longborough for How to generate and validate a software license key?Brent.Longborough2009-03-01T13:53:08Z2009-11-13T20:22:21Z<p>Caveat: you can't prevent users from pirating, but only make it easier for honest users to do the right thing.</p>
<p>Assuming you don't want to do a special build for each user, then:</p>
<ul>
<li>Generate yourself a secret key for the product</li>
<li>Take the user's name</li>
<li>Concatentate the users name and the secret key and hash with (for example) SHA1</li>
<li>Unpack the SHA1 hash as an alphanumeric string. This is the individual user's "Product Key"</li>
<li>Within the program, do the same hash, and compare with the product key. If equal, OK.</li>
</ul>
<p>But, I repeat: <strong>this won't prevent piracy</strong> </p>
<p><hr></p>
<p>I have recently read that this approach is not cryptographically very sound. But this solution is already weak (as the software itself has to include the secret key somewhere), so I don't think this discovery invalidates the solution as far as it goes.</p>
<p>Just thought I really ought to mention this, though; if you're planning to derive something else from this, beware.</p>
http://stackoverflow.com/questions/388874/how-to-detect-anomalous-resource-consumption-reliably1How to detect anomalous resource consumption reliably?Brent.Longborough2008-12-23T13:35:09Z2009-11-08T13:38:16Z
<p>This question is about a whole class of similar problems, but I'll ask it as a concrete example.</p>
<p>I have a server with a file system whose contents fluctuate. I need to monitor the available space on this file system to ensure that it doesn't fill up. For the sake of argument, let's suppose that if it fills up, the server goes down.</p>
<p>It doesn't really matter what it is -- it might, for example, be a queue of "work".</p>
<p>During "normal" operation, the available space varies within "normal" limits, but there may be pathologies:</p>
<ul>
<li>Some other (possibly external)
component that adds work may run out
of control</li>
<li>Some component that removes work seizes up, but remains undetected </li>
</ul>
<p>The statistical characteristics of the process are basically unknown.</p>
<p>What I'm looking for is an algorithm that takes, as input, timed periodic measurements of the available space (alternative suggestions for input are welcome), and produces as output, an alarm when things are "abnormal" and the file system is "likely to fill up". It is obviously important to avoid false negatives, but almost as important to avoid false positives, to avoid numbing the brain of the sysadmin who gets the alarm. </p>
<p>I appreciate that there are alternative solutions like throwing more storage space at the underlying problem, but I have actually experienced instances where 1000 times wasn't enough.</p>
<p>Algorithms which consider stored historical measurements are fine, although on-the-fly algorithms which minimise the amount of historic data are preferred.</p>
<p><hr /></p>
<p>I have accepted Frank's answer, and am now going back to the drawing-board to study his references in depth.</p>
<p>There are three cases, I think, of interest, not in order:</p>
<ol>
<li>The "Harrods' Sale has just started" scenario: a peak of activity that at one-second resolution is "off the dial", but doesn't represent a real danger of resource depletion;</li>
<li>The "Global Warming" scenario: needing to plan for (relatively) stable growth; and</li>
<li>The "Google is sending me an unsolicited copy of The Index" scenario: this will deplete all my resources in relatively short order unless I do something to stop it.</li>
</ol>
<p>It's the last one that's (I think) most interesting, and challenging, from a sysadmin's point of view..</p>
http://stackoverflow.com/questions/1184844/downloading-text-files-with-python-and-ftplib-ftp-from-z-os0Downloading text files with Python and ftplib.FTP from z/osBrent.Longborough2009-07-26T15:31:40Z2009-11-08T11:30:51Z
<p>I'm trying to automate downloading of some text files from a z/os PDS, using Python and ftplib.</p>
<p>Since the host files are EBCDIC, I can't simply use FTP.retrbinary(). </p>
<p>FTP.retrlines(), when used with open(file,w).writelines as its callback, doesn't, of course, provide EOLs.</p>
<p>So, for starters, I've come up with this piece of code which "looks OK to me", but as I'm a relative Python noob, can anyone suggest a better approach? Obviously, to keep this question simple, this isn't the final, bells-and-whistles thing.</p>
<p>Many thanks.</p>
<pre><code>#!python.exe
from ftplib import FTP
class xfile (file):
def writelineswitheol(self, sequence):
for s in sequence:
self.write(s+"\r\n")
sess = FTP("zos.server.to.be", "myid", "mypassword")
sess.sendcmd("site sbd=(IBM-1047,ISO8859-1)")
sess.cwd("'FOO.BAR.PDS'")
a = sess.nlst("RTB*")
for i in a:
sess.retrlines("RETR "+i, xfile(i, 'w').writelineswitheol)
sess.quit()
</code></pre>
<p>Update: Python 3.0, platform is MingW under Windows XP.</p>
<p>z/os PDSs have a fixed record structure, rather than relying on line endings as record separators. However, the z/os FTP server, when transmitting in text mode, provides the record endings, which retrlines() strips off. </p>
<p><strong>Closing update:</strong></p>
<p>Here's my revised solution, which will be the basis for ongoing development (removing built-in passwords, for example):</p>
<pre><code>import ftplib
import os
from sys import exc_info
sess = ftplib.FTP("undisclosed.server.com", "userid", "password")
sess.sendcmd("site sbd=(IBM-1047,ISO8859-1)")
for dir in ["ASM", "ASML", "ASMM", "C", "CPP", "DLLA", "DLLC", "DLMC", "GEN", "HDR", "MAC"]:
sess.cwd("'ZLTALM.PREP.%s'" % dir)
try:
filelist = sess.nlst()
except ftplib.error_perm as x:
if (x.args[0][:3] != '550'):
raise
else:
try:
os.mkdir(dir)
except:
continue
for hostfile in filelist:
lines = []
sess.retrlines("RETR "+hostfile, lines.append)
pcfile = open("%s/%s"% (dir,hostfile), 'w')
for line in lines:
pcfile.write(line+"\n")
pcfile.close()
print ("Done: " + dir)
sess.quit()
</code></pre>
<p>My thanks to both John and Vinay</p>
http://stackoverflow.com/questions/1693529/list-of-top-repositories-by-programming-language/1694076#16940762Answer by Brent.Longborough for List of Top Repositories by Programming LanguageBrent.Longborough2009-11-07T19:06:41Z2009-11-07T19:06:41Z<p>For those who consider TeX and LaTeX programming languages, there's the Comprehensive TeX Archive Network - <a href="http://www.ctan.org/" rel="nofollow">CTAN</a></p>
http://stackoverflow.com/questions/1626507/bzr-restoring-a-deleted-file-after-some-commits-with-bazaar/1627173#16271730Answer by Brent.Longborough for bzr: Restoring a deleted file after some commits with bazaarBrent.Longborough2009-10-26T20:33:07Z2009-10-28T08:13:43Z<p>This isn't the best answer. See bialix' answer which is a lot simpler. I'll leave this here just for reference.</p>
<p><hr /></p>
<p>Here's what I think is the cleanest method:</p>
<ol>
<li><p>Create a branch:</p>
<p>bzr branch mytree repair-path</p></li>
<li><p>cd into the repair branch</p></li>
<li><p>Revert just the missing file at its last revision (eg 287 in this example):</p>
<p>bzr revert -r 287 lost.file</p></li>
<li><p>Commit the change</p>
<p>bzr commit -m "Unshoot my foot" </p></li>
<li><p>cd back into the main branch</p></li>
<li><p>merge in the repair</p>
<p>bzr merge repair-path</p></li>
<li><p>When ready, commit the merge and delete the repair branch.</p></li>
</ol>
<p>You could do this just by reverting in the original working branch, but it's probably good practice not to. You also need to worry (just a little) about any uncommitted changes.</p>
http://stackoverflow.com/questions/1581629/manipulating-a-byte-array/1581714#15817142Answer by Brent.Longborough for Manipulating a byte arrayBrent.Longborough2009-10-17T08:13:00Z2009-10-17T08:13:00Z<p>I think the secret is that you have a nested array:</p>
<pre><code>irb(main):002:0> x = ["\x01\x02\x01\x01"]
=> ["\001\002\001\001"]
</code></pre>
<p>You can index it:</p>
<pre><code>irb(main):003:0> x[0][1]
=> 2
</code></pre>
<p>You can assign into it:</p>
<pre><code>irb(main):004:0> x[0][1] = "\x05"
=> "\005"
</code></pre>
<p>And it looks like what you want:</p>
<pre><code>irb(main):005:0> x
=> ["\001\005\001\001"]
</code></pre>
http://stackoverflow.com/questions/1561729/ruby-building-a-plot-of-function/1561931#15619310Answer by Brent.Longborough for Ruby: building a plot of functionBrent.Longborough2009-10-13T18:02:37Z2009-10-13T18:02:37Z<p>Is <a href="http://rgplot.rubyforge.org/" rel="nofollow"><code>gnuplot</code></a> a possible option?:</p>
<pre><code>require 'gnuplot.rb'
Gnuplot.open { |gp|
Gnuplot::Plot.new( gp ) { |plot|
plot.output "testgnu.pdf"
plot.terminal "pdf colour size 27cm,19cm"
plot.xrange "[-10:10]"
plot.title "Sin Wave Example"
plot.ylabel "x"
plot.xlabel "sin(x)"
plot.data << Gnuplot::DataSet.new( "sin(x)" ) { |ds|
ds.with = "lines"
ds.linewidth = 4
}
plot.data << Gnuplot::DataSet.new( "cos(x)" ) { |ds|
ds.with = "impulses"
ds.linewidth = 4
}
}
}
</code></pre>
http://stackoverflow.com/questions/1551053/how-do-i-get-cabal-to-bypass-my-windows-proxy-settings1How do I get Cabal to bypass my Windows proxy settings? Brent.Longborough2009-10-11T16:14:51Z2009-10-11T16:14:51Z
<p>When retrieving packages with Cabal, I frequently get errors with this message:</p>
<blockquote>
<p>user error (Codec.Compression.Zlib:
premature end of compressed stream)</p>
</blockquote>
<p>It looks like Cabal is using my Windows Networking proxy settings (for Privoxy).</p>
<p>From digging around Google, Cabal or its libraries appear to have (had) a problem
in this area. </p>
<p>Possible solutions I can see are:</p>
<ol>
<li><p>Turn off proxying while using Cabal (not very keen on this one); or</p></li>
<li><p>Get a patch and start hacking. I'm hesitant to go down this path,
as I'm a complete Haskell noob and I'm not yet comfortable with Darcs; or</p></li>
<li><p>Give it the magic "can I haz no proxy" parameter. Hence the question.</p></li>
</ol>
http://stackoverflow.com/questions/1507804/normalizing-dataset-with-ruby/1508411#15084114Answer by Brent.Longborough for Normalizing dataset with rubyBrent.Longborough2009-10-02T08:53:29Z2009-10-02T12:41:36Z<p>Here's a code snippet, assuming you want a <em>linear</em> normalization. It's a very simplistic version (just straight code, no methods), so you can see "how it works" and can apply it to anything.</p>
<pre><code>xmin = 1.0
xmax = 30000.0
ymin = 0.1
ymax = 10.0
xrange = xmax-xmin
yrange = ymax-ymin
y = ymin + (x-xmin) * (yrange / xrange)
</code></pre>
<p><hr /></p>
<p>And here it is done as a function:</p>
<pre><code>def normalise(x,xmin,xmax,ymin,ymax)
xrange = xmax-xmin
yrange = ymax-ymin
ymin + (x-xmin) * (yrange.to_f / xrange)
end
puts normalise(2000, 1, 30000, 0.1, 10)
</code></pre>
<p>(Note: the <code>to_f</code> ensures we don't fall into the black hole of integer division)</p>
http://stackoverflow.com/questions/1351721/how-does-type-deduction-work-in-haskell5How does Type Deduction work in Haskell?Brent.Longborough2009-08-29T15:32:53Z2009-08-29T18:41:31Z
<p>I'm trying to broaden my mind by learning Haskell. </p>
<p>My self-inflicted homework was to build a clock-tick generator which would give me Poisson-distributed intervals, and the end result (after a long struggle, I admit) was this:</p>
<pre><code>import System.Random
poissonStream :: ( Ord r, Random r, Floating r, RandomGen g) => r -> r -> r -> g -> [r]
poissonStream rate start limit gen
| next > limit = []
| otherwise = next:(poissonStream rate next limit newGen)
where (rvalue, newGen) = random gen
next = start - log(rvalue) / rate
</code></pre>
<p>But there are two things (at least) I don't understand:</p>
<p>Why do I need "<code>Ord r</code>" as well as "<code>Floating r</code>"? (I would have expected some kind of automatic inheritance: "Floating" implies "Ord".)</p>
<p>By what path is the implied type definition "<code>rvalue :: Float</code>" achieved?
In GHCi I get what I would have expected:</p>
<pre><code>*Main System.Random> let (rvalue, newGen) = random (mkStdGen 100)
<interactive>:1:23:
Ambiguous type variable `t' in the constraint:
`Random t' arising from a use of `random' at <interactive>:1:23-43
Probable fix: add a type signature that fixes these type variable(s)
</code></pre>
<p><em>rvalue</em> is a loose cannon which I have to tie down: </p>
<pre><code>*Main System.Random> let (rvalue, newGen) = random (mkStdGen 100) :: (Float, StdGen)
*Main System.Random> rvalue
0.18520793
</code></pre>
<p>Please be gentle with a Haskell n00b.</p>
http://stackoverflow.com/questions/1333962/browse-bazaar-or-cvs-svn-git-repository-with-gui/1334195#13341952Answer by Brent.Longborough for Browse bazaar (or CVS/SVN/Git) repository with GUI?Brent.Longborough2009-08-26T11:57:48Z2009-08-26T11:57:48Z<p>For Bazaar, the <a href="http://bazaar-vcs.org/QBzr" rel="nofollow">QBzr extensions</a> give a wide range of q-commands (ex: <code>bzr qlog</code>, <code>bzr qbrowse</code>)</p>
<p>For Git, there are the <code>gitk</code> command and <code>git gui</code></p>
http://stackoverflow.com/questions/845222/is-there-a-modern-free-dvcs-that-can-ignore-mainframe-sequence-numbers1Is there a modern free D?VCS that can ignore mainframe sequence numbers? Brent.Longborough2009-05-10T12:12:44Z2009-05-10T16:55:43Z
<p>I'm looking at migrating a large suite of IBM Assembler Language programs, from a vcs based on "filenames include version numbers", to a modern vcs which will give me, among other things, the ability to branch and merge. </p>
<p>These files have 80-column records, the last 8 columns being an almost-meaningless sequence number. </p>
<p>For a number of reasons which I don't really want to waste space by going into, I need the vcs to ignore (but hopefully preserve in some well-defined manner) the sequence number columns, and to diff and patch based only on the contents of the first 72 columns.</p>
<p>Any ideas? </p>
<p><hr /></p>
<p>Just to clarify "ignore but preserve": I accept it's a bit vague, as I haven't fully collected my ideas yet.</p>
<p>It would be something along the lines of this: </p>
<blockquote>
<p>"When merging/patching, if one side has sequence numbers, output them; if more-than-one side has sequence numbers, use those present in file (1|2|3)" </p>
</blockquote>
<p><hr /></p>
<p>Why do I want to preserve sequence numbers? First, they really <em>are</em> sequence numbers. Second, I want to reintegrate this stuff back onto the mainframe, where sequence numbers can be terribly significant. (Those of you who know what "SMP/E" means will understand. Those who don't, be happy, but tremble...)</p>
http://stackoverflow.com/questions/751068/what-vcs-allows-me-to-add-changes-to-multiple-pending-commits-simultaneously/760929#7609290Answer by Brent.Longborough for What VCS allows me to add changes to multiple pending commits simultaneously?Brent.Longborough2009-04-17T15:38:30Z2009-04-17T15:38:30Z<p>Content warning: my impression, based on only passing acquaintance:</p>
<p>If you need to micro-manage simultaneous but in some sense unrelated changes, then you may care to investigate <a href="http://darcs.net/" rel="nofollow">darcs</a>, which has a reversed emphasis when compared to systems like svn, git, or mercurial. </p>
<p>In darcs, the patch is the key element, and the state of a given branch is really just a summation of a set of patches. This model may suit what you are trying to do, but clearly @wcoenen's warning about best practice holds. For each set of patches, you'll need to ensure the build (whatever it might consist of) isn't broken.</p>
<p>BTW, are you the Eoghan M...r i think you are? </p>
http://stackoverflow.com/questions/624666/learning-insertion-sort-in-ruby/625707#6257071Answer by Brent.Longborough for Learning Insertion Sort in RubyBrent.Longborough2009-03-09T10:24:41Z2009-03-09T10:24:41Z<p>Just a minor complement to the other, excellent answers: </p>
<p>I think it is now generally accepted that 0-origin indexing has a number of practical and empirical advantages over 1-origin indexing. Experience suggests that it just "works better" and is less error-prone.</p>
<p>That's why a lot of programmers number things from zero, and astonish "normal" folks.</p>
http://stackoverflow.com/questions/583260/svn-merge-branch-from-one-repo-into-trunk-of-other-repo/583323#5833231Answer by Brent.Longborough for SVN Merge Branch from one Repo into Trunk of other RepoBrent.Longborough2009-02-24T19:59:45Z2009-02-24T19:59:45Z<p>It's not entirely clear, but you need to merge from the <em>base</em> of the two trees, i.e. the point at which the two trunks were the same.</p>
<p>Sander beat me to it, so credit to him, but here are a couple more tips:</p>
<ol>
<li>Get these two repositories joined up into one as soon as possible; Subversion wasn't really designed to work like this. Or alternatively move to a DVCS like git or bazaar or ...</li>
<li>If you stick with Subversion, conventionally this kind of stuff is done with <em>branches</em>, not <em>tags</em>. Tags are normally used as marker points, and are not committed to.</li>
</ol>
http://stackoverflow.com/questions/570158/build-report-from-tortoise-svn-client/570249#5702492Answer by Brent.Longborough for Build report from tortoise svn clientBrent.Longborough2009-02-20T16:30:28Z2009-02-22T08:16:18Z<p>Try something like this:</p>
<pre><code>svn log -r {2008-05-28}:{2008-12-31}
</code></pre>
<p>from inside the working copy.</p>
<p>(See the <a href="http://svnbook.red-bean.com/en/1.5/svn.tour.revs.specifiers.html#svn.tour.revs.dates" rel="nofollow">Subversion Book</a> for details)</p>
<p><hr /></p>
<p>Clarification: I believe Tortoisesvn doesn't bring a set of svn command-line binaries with it. You will need to install the <a href="http://subversion.tigris.org/" rel="nofollow">Subversion package from here</a></p>
http://stackoverflow.com/questions/570357/extracting-functions-arguments-using-regexp-preg/570447#5704470Answer by Brent.Longborough for Extracting functions arguments using RegExp (PREG)Brent.Longborough2009-02-20T17:14:07Z2009-02-20T18:25:14Z<p>Not sure exactly what you're seeking, nor yet how to do this in SQL, but isn't something like this sufficient:</p>
<p>(Using python as an example)</p>
<pre><code>import re
x = '''Monkey, "Blue Monkey", "Red, blue and "Green\\"", 'Red, blue and "Green\\'\''''
l = re.split(',\s*',x)
print x
for a in l:
print a
</code></pre>
http://stackoverflow.com/questions/564756/should-i-just-give-up-on-programming/570336#5703361Answer by Brent.Longborough for Should I just give up on programming?Brent.Longborough2009-02-20T16:52:20Z2009-02-20T16:52:20Z<p>I've been a professional developer for forty-odd years, now (on and off, but mostly on); my peers seem to think I'm OK (good, even); but I still can pick up stuff I wrote three months ago and say "Did <strong><em>I</em></strong> write this cr<code>*</code>p!?</p>
<p>If you think you're enjoying yourself, keep at it!</p>
http://stackoverflow.com/questions/257236/the-shell-dotfile-cookbook/569038#5690380Answer by Brent.Longborough for The shell dotfile cookbookBrent.Longborough2009-02-20T10:27:43Z2009-02-20T10:27:43Z<h2>Prune a set of empty directories</h2>
<p>Works with: <strong>bash</strong>, <strong>zsh</strong></p>
<pre><code>function prunedir () {
find $* -type d -empty -print0 | xargs -0r rmdir -p ;
}
</code></pre>
<p>Use with some caution!</p>
http://stackoverflow.com/questions/567971/how-to-set-up-svn-with-files-that-are-in-an-htdocs-directory-structure/568051#5680513Answer by Brent.Longborough for How to set up SVN with files that are in an /htdocs directory structureBrent.Longborough2009-02-20T02:20:19Z2009-02-20T02:20:19Z<p>One way of doing this effectively is to do your development by checking out the trunk into, say, c:\www\preview\project1 and testing it with an appropriate virtual host or different url there.</p>
<p>As you get it working, you will be checking in various versions of the trunk. When it's ripe to move over to your "real" host/url, then you</p>
<ol>
<li>Create a branch or a tag to reflect this (like branches/rel.1), and</li>
<li>Check out (svn co) the branch into c:\www\project1\htdocs</li>
</ol>
<p>After that you can do urgent bug fixes under branches/rel.1, and merge them back into ongoing work under trunk. When another release is ready, you</p>
<ol>
<li>Make another branch (say, branches/rel.2), and</li>
<li>Switch (svn switch) c:\www\project1\htdocs to the new branch</li>
</ol>
<p>This way, you can keep your development from interfering with the real service, and also switch back to an earlier release if you have problems.</p>
<p>For a more complicated, but urgent, bugfix, you can</p>
<ol>
<li>Check in your development as trunk</li>
<li>Switch c:\www\preview\project1 to the current release branch</li>
<li>Fix and test the bug in c:\www\preview\project1, committing as necessary</li>
<li>When satisfied, do the final checkin, then svn update on c:\www\project1\htdocs</li>
<li>Switch c:\www\preview\project1 back to trunk, and carry on developing</li>
</ol>
http://stackoverflow.com/questions/566551/ragged-headlines-within-justified-text/567933#5679330Answer by Brent.Longborough for Ragged headlines within justified textBrent.Longborough2009-02-20T01:07:46Z2009-02-20T01:07:46Z<p>About three years ago, tired of having an assortment of packages shooting each other in the feet, and each one needing tweaking in its own special way, I switched everything to <a href="http://www.ctan.org/tex-archive/macros/latex/contrib/memoir/" rel="nofollow">memoir</a>.</p>
<p>I have never looked back.</p>
http://stackoverflow.com/questions/567790/need-help-with-regular-expression-in-php/567883#5678830Answer by Brent.Longborough for Need help with regular expression in PHPBrent.Longborough2009-02-20T00:45:57Z2009-02-20T00:45:57Z<p>I support what has been said about a regexp not being appropriate for a generic structure like this. However, provided that the parentheses are balanced and not more than two deep, these regexes may help:</p>
<pre><code>(\w+\s*\([^()]*(?:(?:\([^()]*\))[^()]*)*\)\s*)
</code></pre>
<p>matches and captures a single xyz(....) instance, while </p>
<pre><code>(\w+\s*\([^()]*(?:(?:\([^()]*\))[^()]*)*\)\s*)+
</code></pre>
<p>matches all of them. Depending on your language, you may be able to use the second one and disentangle the several captures in the single group. <a href="http://msdn.microsoft.com/en-us/library/30wbz966(VS.71).aspx" rel="nofollow">This reference</a> may be helpful.</p>
<p>But, to repeat, I don't think regex is the way - that's why this fairly restrictive solution is so butt-ugly.</p>
<p><hr /></p>
<p>Sorry, just noted that you're PHP. You'll probably need to use this:</p>
<pre><code>(\w+\s*\([^()]*(?:(?:\([^()]*\))[^()]*)*\)\s*)(.*)
</code></pre>
<p>to divide up your line into (one-piece) plus (the-rest) and loop around until there's nothing left.</p>
http://stackoverflow.com/questions/566856/lazy-greedy-or-what-looking-for-a-definitive-regex-reference3Lazy, Greedy, or What? Looking for a definitive Regex referenceBrent.Longborough2009-02-19T19:48:18Z2009-02-19T20:54:41Z
<p>Recently, somewhere on the web<code>*</code>, I found a reference for regular expressions which described a "third way" of greediness, different both
from greedy <code>(.*)</code> and lazy <code>(.*?)</code> matching.</p>
<p>I've now tried searching SO, Googling, and even searching my browser history, but to no avail.</p>
<p>Can anyone make a good guess at what it was I saw?</p>
<p><hr /></p>
<p>Clarification: it referred to what was for me a new construct (something like <code>.*+</code>), and I believe it even had a name for it (something like, but probably not, "passively greedy").</p>
<p><hr /></p>
<p><code>*</code> I appreciate that "somewhere on the web" is about as helpful as "in the Library of Babel" or "in the Mandelbrot set", but please try to help</p>
http://stackoverflow.com/questions/566856/lazy-greedy-or-what-looking-for-a-definitive-regex-reference/567107#5671070Answer by Brent.Longborough for Lazy, Greedy, or What? Looking for a definitive Regex referenceBrent.Longborough2009-02-19T20:54:41Z2009-02-19T20:54:41Z<p>Thank you all. The key to getting my memory back was "possessive", not "passive".</p>
<p>Here are a couple of useful references:</p>
<ul>
<li><a href="http://perldoc.perl.org/perlre.html#Regular-Expressions" rel="nofollow">Perldoc</a>, under subheading "Quantifiers"</li>
<li>In the <a href="http://www.regular-expressions.info/possessive.html" rel="nofollow">regular-expressions.info</a> tutorial</li>
</ul>
http://stackoverflow.com/questions/559938/in-latex-how-can-one-add-a-header-footer-in-the-document-class-letter/561205#5612051Answer by Brent.Longborough for In LaTeX, how can one add a header/footer in the document class Letter?Brent.Longborough2009-02-18T14:16:46Z2009-02-18T14:26:34Z<p>After I removed </p>
<pre><code>\usepackage{fontspec}% font selecting commands
\usepackage{xunicode}% unicode character macros
\usepackage{xltxtra} % some fixes/extras
</code></pre>
<p>it seems to have worked "correctly".</p>
<p>It may be worth noting that the headers and footers only appear from page 2 onwards. Although I've tried the fix for this given in the fancyhdr documentation, I can't get it to work either.</p>
<p>FYI: MikTeX 2.7 under Vista</p>
http://stackoverflow.com/questions/558105/string-separation-in-required-format-pythonic-way-with-or-w-o-regex/558392#5583926Answer by Brent.Longborough for String separation in required format, Pythonic way? (with or w/o Regex)Brent.Longborough2009-02-17T19:32:42Z2009-02-18T12:31:16Z<p>Building unashamedly on MrTopf's effort:</p>
<pre><code>import re
rx = re.compile("((?:@\w+ +)+)(.*)")
t='@abc @def @xyz Hello this part is text and my email is foo@ba.r'
a,s = rx.match(t).groups()
l = re.split('[@ ]+',a)[1:-1]
print l
print s
</code></pre>
<p>prints:</p>
<blockquote>
<p>['abc', 'def', 'xyz']<br />
Hello this part is text and my email is foo@ba.r</p>
</blockquote>
<p><hr /></p>
<p>Justly called to account by <a href="http://stackoverflow.com/users/35364/hasen-j">hasen j</a>, let me clarify how this works:</p>
<pre><code>/@\w+ +/
</code></pre>
<p>matches a single tag - @ followed by at least one alphanumeric or _ followed by at least one space character. + is greedy, so if there is more than one space, it will grab them all.</p>
<p>To match any number of these tags, we need to add a plus (one or more things) to the pattern for tag; so we need to group it with parentheses:</p>
<pre><code>/(@\w+ +)+/
</code></pre>
<p>which matches one-or-more tags, and, being greedy, matches all of them. However, those parentheses now fiddle around with our capture groups, so we undo that by making them into an anonymous group:</p>
<pre><code>/(?:@\w+ +)+/
</code></pre>
<p>Finally, we make that into a capture group and add another to sweep up the rest:</p>
<pre><code>/((?:@\w+ +)+)(.*)/
</code></pre>
<p>A last breakdown to sum up:</p>
<pre><code>((?:@\w+ +)+)(.*)
(?:@\w+ +)+
( @\w+ +)
@\w+ +
</code></pre>
<p><hr /></p>
<p>Note that in reviewing this, I've improved it - \w didn't need to be in a set, and it now allows for multiple spaces between tags. Thanks, hasen-j!</p>
http://stackoverflow.com/questions/550736/how-do-i-make-apply-a-diff-patch-to-this-situation/550763#5507631Answer by Brent.Longborough for How do I make/apply a diff patch to this situation ?Brent.Longborough2009-02-15T11:39:17Z2009-02-15T14:50:49Z<p>(Simplistic Answer): There's no fully automatic way to do this - you will need to branch and merge, and merging will mean you have to look at your modifications, and test them.</p>
<ol>
<li>Start with (A) as /trunk, checked out into your working copy</li>
<li>Create a "vendor" branch for WP2.6 </li>
<li>Copy (B) into the trunk. Take care
to svn rm and svn mv deleted and
renamed files, and commit to the
trunk</li>
<li>Switch the working copy to the (A)-WP2.6 branch</li>
<li>Copy (C) into this branch (Again, don't forget svn mv and svn rm if needed), and commit</li>
<li>Switch the working copy back to the trunk</li>
<li>Merge from the WP2.6 vendor branch
back into the trunk (this is where
most of thehard work will be)</li>
<li>Test it out to whatever degree of confidence you need before committing to the trunk</li>
<li>Repeat for future releases</li>
</ol>
<p><hr /></p>
<p>To illustrate the sort of difficulty that can't normally be solved automatically, consider this: in your example, the hoped-for final version could be either of these:</p>
<pre><code>123 x 123 123
123 123 x 123
</code></pre>
http://stackoverflow.com/questions/543208/how-can-one-number-paragraphs-in-latex/543370#5433701Answer by Brent.Longborough for How can one number paragraphs in LaTeX?Brent.Longborough2009-02-12T21:27:03Z2009-02-12T22:10:55Z<p>I think there are three possible solutions (at least!) which don't involve rolling your own or someone else's macro, depending on exactly what you are trying to do.</p>
<p>1 If the numbering is required throughout the document, use <code>\paragraph</code>, which is a lower-level sectioning command (like \chapter, \section, \subsection, etc.) </p>
<p>See the <a href="http://en.wikibooks.org/wiki/LaTeX/Document_Structure#Sectioning_Commands" rel="nofollow">LaTeX wikibook</a> for more information. </p>
<pre><code>\setcounter{secnumdepth}{5}
...
\paragraph{If we want to} do something ...
</code></pre>
<p>(You may find this overkill/ugly, because it needs a properly nested structure of sections and subsections not to be)</p>
<p>Note that if your using the memoir document class (which I recommend unhesitatingly), the <code>\setcounter</code> line becomes <code>\maxsecnumdepth{paragraph}</code> </p>
<p>2 If it's just a small piece, use a list:</p>
<pre><code>\begin{enumerate}
\item Para No. 1
\item Para No. 2
...
\end{enumerate}
</code></pre>
<p>3 Or a generalized list (<code>\begin{list}...\end{list{}</code>) if you want to tweak the formatting. I haven't immediately been able to find a good online reference for this, other than the piece in <a href="http://rads.stackoverflow.com/amzn/click/0321173856" rel="nofollow">A Guide to LaTeX</a></p>
http://stackoverflow.com/questions/1787386/improve-resolution-of-random-dataComment by Brent.Longborough on Improve "resolution" of random dataBrent.Longborough2009-11-24T11:02:27Z2009-11-24T11:02:27Z"Very" unlikely, no. If you've got, say, 300 albums, the chances of playing the same thing twice in a row are about 1 in 300...http://stackoverflow.com/questions/1774627/arraysplit-behaviour-when-accessing-beyond-the-array-boundry/1774660#1774660Comment by Brent.Longborough on Array#split behaviour when accessing beyond the array boundry.Brent.Longborough2009-11-21T09:46:20Z2009-11-21T09:46:20ZMentioned but not justified. "Returns nil if the index (or starting index) are out of range": in ar[4,1], this is so, yet it doesn't return nil, as it should. Very, very unusual for Ruby to suck in this manner. Maybe it's an "off-by-one" error ion the Ruby specs? http://stackoverflow.com/questions/1626507/bzr-restoring-a-deleted-file-after-some-commits-with-bazaar/1628979#1628979Comment by Brent.Longborough on bzr: Restoring a deleted file after some commits with bazaarBrent.Longborough2009-10-28T20:07:32Z2009-10-28T20:07:32ZOr you may have misspelt the filename? (Sorry...)http://stackoverflow.com/questions/1626507/bzr-restoring-a-deleted-file-after-some-commits-with-bazaar/1628979#1628979Comment by Brent.Longborough on bzr: Restoring a deleted file after some commits with bazaarBrent.Longborough2009-10-28T20:00:12Z2009-10-28T20:00:12ZThat may have been because you recreated the same file name before doing the merge, thereby causing a conflict?http://stackoverflow.com/questions/1626507/bzr-restoring-a-deleted-file-after-some-commits-with-bazaar/1628979#1628979Comment by Brent.Longborough on bzr: Restoring a deleted file after some commits with bazaarBrent.Longborough2009-10-28T08:11:31Z2009-10-28T08:11:31ZYes, you're absolutely right. +1. I withdraw my comment and my answer.
The only thing I would still maintain is that, depending on the complexity of your work, it might be sensible to revert in another branch.http://stackoverflow.com/questions/1626507/bzr-restoring-a-deleted-file-after-some-commits-with-bazaar/1628979#1628979Comment by Brent.Longborough on bzr: Restoring a deleted file after some commits with bazaarBrent.Longborough2009-10-27T16:03:50Z2009-10-27T16:03:50ZCareful! This will undo the <i>whole</i> of rev 287. I don't think you can merge just one specific file from a changeset.http://stackoverflow.com/questions/1613759/sort-and-store-values-from-multidimensional-array-in-new-array-in-ruby/1614774#1614774Comment by Brent.Longborough on Sort and store values from multidimensional array in new array in RubyBrent.Longborough2009-10-23T17:54:37Z2009-10-23T17:54:37ZImpressive feature. +1http://stackoverflow.com/questions/1561729/ruby-building-a-plot-of-function/1561931#1561931Comment by Brent.Longborough on Ruby: building a plot of functionBrent.Longborough2009-10-13T23:29:06Z2009-10-13T23:29:06ZSorry if this wasn't obvious, but have you got gnuplot itself installed? The Ruby bit is only the bindings, AFAIKhttp://stackoverflow.com/questions/1559631/ruby-on-apache-with-modruby/1560505#1560505Comment by Brent.Longborough on Ruby on Apache with mod_rubyBrent.Longborough2009-10-13T16:37:23Z2009-10-13T16:37:23ZPassenger appears to be for Rails - is that what @folone wants?http://stackoverflow.com/questions/1515012/possible-to-convert-ruby-script-to-exe-so-that-source-code-not-visibleComment by Brent.Longborough on possible to convert ruby script to exe so that source code not visible ?Brent.Longborough2009-10-03T22:54:47Z2009-10-03T22:54:47ZWhat on Earth would you want to do that for?http://stackoverflow.com/questions/1351721/how-does-type-deduction-work-in-haskell/1352088#1352088Comment by Brent.Longborough on How does Type Deduction work in Haskell?Brent.Longborough2009-08-29T19:06:59Z2009-08-29T19:06:59ZThank you. Yes, I appreciate the concept of orthogonality; I was just applying it to much-too-small a concept space.http://stackoverflow.com/questions/1351721/how-does-type-deduction-work-in-haskell/1351826#1351826Comment by Brent.Longborough on How does Type Deduction work in Haskell?Brent.Longborough2009-08-29T17:46:11Z2009-08-29T17:46:11ZYes, of course. It hadn't occurred to me that Floating might include complex floats; and thank you for the RealFloat pointer.
I <i>did</i> understand the behaviour in GHCi; I was just using that to contrast with the apparently more liberal behaviour of my function.
Thank you very much for a clear answer.http://stackoverflow.com/questions/1351721/how-does-type-deduction-work-in-haskellComment by Brent.Longborough on How does Type Deduction work in Haskell?Brent.Longborough2009-08-29T17:42:39Z2009-08-29T17:42:39Z@Chuck, @cletus: OK, thank you. I've removed the hw tag.http://stackoverflow.com/questions/1351721/how-does-type-deduction-work-in-haskellComment by Brent.Longborough on How does Type Deduction work in Haskell?Brent.Longborough2009-08-29T15:48:26Z2009-08-29T15:48:26Z@cletus: Thanks for the observation. I thought it better to flag this as an exercise, rather than a real-world problem, up front.http://stackoverflow.com/questions/1012573/how-to-learn-haskell/1016986#1016986Comment by Brent.Longborough on How to learn HaskellBrent.Longborough2009-08-05T15:15:12Z2009-08-05T15:15:12ZThis is a really remarkable answer. +1 seems almost mean. Thank you.