User Thomee - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T20:06:48Zhttp://stackoverflow.com/feeds/user/12825http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/883844/subversion-how-to-move-some-changesets-from-trunk-to-a-branch0Subversion - how to move some changesets from trunk to a branch?Thomee2009-05-19T16:40:10Z2009-05-19T18:13:59Z
<p>We have a large project with several sub-projects. We're approaching a release of our project, and the new features in one sub-project are not going to be completed before the release as was originally planned. What I'd like to do is move all the changes to that sub project related to the new features into a separate branch to continue work for the next release, but I'm not sure how to best accomplish this.</p>
<p>The situation is basically:</p>
<pre>/proj/trunk/A/
/proj/trunk/B/
/proj/trunk/C/</pre>
<p>We have revisions a..z checked in since the last release. Revisions d, f, g, and j..n contain work related to a new feature in C which isn't going to be completed in time. Revisions e, h, and q contain unrelated changes in C which need to be in this release. I'd like to create a <code>/proj/branches/new-feature-for-C/</code> and move changes d, f, g, and j..n there, while keeping e, h, and q in trunk. There is no overlap between changes to be moved to the branch and changes to be kept on the trunk, and none of the changes to be moved to the branch depend on any changes in any other subproject since the last release.</p>
http://stackoverflow.com/questions/89609/in-a-bash-script-how-do-i-sanitize-user-input/94500#945001Answer by Thomee for In a bash script, how do I sanitize user input?Thomee2008-09-18T17:04:57Z2008-09-18T17:04:57Z<p>As dj_segfault points out, the shell can do most of this for you. Looks like you'll have to fall back on something external for lower-casing the string, though. For this you have many options, like the perl one-liners above, etc., but I think tr is probably the simplest.</p>
<pre><code># first, strip underscores
CLEAN=${STRING//_/}
# next, replace spaces with underscores
CLEAN=${CLEAN// /_}
# now, clean out anything that's not alphanumeric or an underscore
CLEAN=${CLEAN//[^a-zA-Z0-9_]/}
# finally, lowercase with TR
CLEAN=`echo -n $CLEAN | tr A-Z a-z`
</code></pre>
<p>The order here is somewhat important. We want to get rid of underscores, plus replace spaces with underscores, so we have to be sure to strip underscores first. By waiting to pass things to tr until the end, we know we have only alphanumeric and underscores, and we can be sure we have no spaces, so we don't have to worry about special characters being interpreted by the shell.</p>
http://stackoverflow.com/questions/94204/what-is-the-best-way-to-have-synchronized-a-collection-of-objects-between-various/94276#942760Answer by Thomee for What is the best way to have synchronized a collection of objects between various threads in .Net?Thomee2008-09-18T16:40:08Z2008-09-18T16:40:08Z<p>A number of the collection classes in .Net have built in support for synchronizing and making access from multiple threads safe. For example (in C++/CLR):</p>
<pre><code>
Collections::Queue ^unsafe_queue = gcnew Collections::Queue();
Collections::Queue ^safe_queue = Collections::Queue::Synchronized(unsafe_queue);
</code></pre>
<p>You can throw away the reference to unsafe_queue, and keep the reference to safe_queue. It can be shared between threads, and you're guaranteed thread safe access. Other collection classes, like ArrayList and Hashtable, also support this, in a similar manner.</p>
http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/93999#939992Answer by Thomee for When is multi-threading not a good idea?Thomee2008-09-18T16:10:12Z2008-09-18T16:10:12Z<p>To paraphrase an old quote: A programmer had a problem. He thought, "I know, I'll use threads." Now the programmer has two problems. (Often attributed to JWZ, but it seems to predate his use of it talking about regexes.)</p>
<p>A good rule of thumb is "Don't use threads, unless there's a very compelling reason to use threads." Multiple threads are asking for trouble. Try to find a good way to solve the problem without using multiple threads, and only fall back to using threads if avoiding it is as much trouble as the extra effort to use threads. Also, consider switching to multiple threads if you're running on a multi-core/multi-CPU machine, and performance testing of the single threaded version shows that you <em>need</em> the performance of the extra cores.</p>
http://stackoverflow.com/questions/88936/what-should-you-do-when-coming-across-a-publicly-accessible-security-vulnerabilit/89081#8908110Answer by Thomee for What should you do when coming across a publicly accessible security vulnerability?Thomee2008-09-18T01:03:39Z2008-09-18T01:03:39Z<p>Unfortunately, the "safe" answer is probably that you should consult a lawyer before doing anything. There have been a number of cases where something like this has happened, and someone in the responsibility chain for the site got into enough trouble / was embarrassed enough / was clueless enough over it that they lashed out at the person trying to report the problem. The end result was the person who was trying to be helpful and protect everyone's information was at least threatened with prosecution for hacking, and in some cases the state went through with it. Under some interpretations of federal law (not to mention variations in state laws), what you've described here has already crossed the threshold of legality. It'd really suck to try to bring this to their attention to get it fixed, and wind up in court yourself.</p>
http://stackoverflow.com/questions/73958/change-ip-address-via-shellscript-on-slackware/75221#752212Answer by Thomee for Change IP address via shellscript on SlackwareThomee2008-09-16T18:07:43Z2008-09-17T17:58:24Z<p>As mentioned in other answers, you can use either the ifconfig command or the ip command. ip is a much more robust command, and I prefer to use it. A full script which loops through a full class C subnet adding the IP, doing stuff, then removing it follows. Note that it doesn't use .0 or .255, which are the network and broadcast addresses of the subnet. Also, when using the ip command to add or remove an address, it's good to include the mask width, as well (the /24 at the end of the address).</p>
<pre><code>#!/bin/bash
SUBNET=192.168.135.
ETH=eth0
for i in {1..254}
do
ip addr add ${SUBNET}${i}/24 dev ${ETH}
# do whatever you want here
ip addr del ${SUBNET}${i}/24 dev ${ETH}
done</code></pre>
http://stackoverflow.com/questions/73799/how-did-you-learn-the-gnu-make-tools/74650#7465025Answer by Thomee for How did you learn the GNU make tools?Thomee2008-09-16T17:11:44Z2008-09-16T17:11:44Z<p>The first step is simply to realize there's nothing to fear. While the documentation for make can be intimidating, it's all lots of cool features that you don't have to rely on. A functional Makefile can be just a couple of lines long, or in simple cases, even a single line. Once you've started writing simple ones, it becomes easier to slowly learn a feature at a time as they become useful.</p>
<p>A basic makefile is just a set of rules. Each rule has a name, a list of requirements that must be up to date as a prerequisite for the rule, and a set of commands to run for that rule. When you run make, you can give it a list of rules to build as command line arguments. If you don't give it any, it will build the "all" rule, if it exists. A simple Makefile for a project with one C source file could be:</p>
<pre><code>all:
gcc foo.c -o foo</code></pre>
<p>(note that the indention is important, and it has to be a single tab character). The file can be named anything you want, but by default make looks for a file named Makefile. If you create a file by that name with the example contents, then run make in that directory, the gcc command in the file will be executed to build your program. For even a simple program with a single source file, this already saves some typing when you compile. If you have some extra compiler flags you always want to pass, now you only have to put them in the Makefile, not try to remember to add them every time you compile.</p>
<p>For a slightly more complex example, let's try a project with two source files:</p>
<pre><code>all:
gcc -c foo.c
gcc -c bar.c
gcc foo.o bar.o -o app</code></pre>
<p>This will work just fine, but it has a few drawbacks. As we start adding more source files, adding a gcc line for each one, plus adding each output object to the final line starts to feel clumsy. Also, this recompiles every source file every time we build. In a simple example, this probably isn't a big deal, but as things get larger, recompiling everything every time gets slow, and probably unnecessary. If I've only edited foo.c since the last time I compiled, there's no need to recompile bar.c again; I just need to recompile foo.c then relink the object files. This is where rule prerequisites come in handy. Rather than compiling each source file in our rule, we can make a separate rule for each oject file, then tell the final rule that those object files are required:</p>
<pre><code>foo.o:
gcc -c foo.c
bar.o:
gcc -c bar.c
all: foo.o bar.o
gcc foo.o bar.o -o app</code></pre>
<p>We're half way there, but make will still recompile everything every time. It has no way to know if foo.o and bar.o are up to date, so it will build them every time, before building the application in our all rule. So we need to tell make what files foo.o and bar.o depend on:</p>
<pre><code>foo.o: foo.c
gcc -c foo.c
bar.o: bar.c
gcc -c bar.c
all: foo.o bar.o
gcc foo.o bar.o -o app</code></pre>
<p>Now make knows that foo.o depends on foo.c. Since there isn't a rule for how to build foo.c, it assumes that's one of your source files. Now, when you run make, and it sees that all requires foo.o, it will look at the timestamps on foo.o and foo.c. If foo.c is not newer than foo.o, it knows that the source file hasn't changed, so it won't bother rebuilding foo.o.</p>
<p>We're improving, but there are still a few things that could be better. Right now we'll still link all the object files every time we run make, even if none of the object files were recompiled. We also still have to type those redundant rules for every C file, and we have to list all our object files twice, once in the requirements for all, and once in the actual build line. Typing the redundant rules turns out to be an easy fix. It's so common to build a .o file from a .c file (or a number of other common source code extensions) that make already knows how to handle it. So we can actually leave out the foo.o and bar.o rules. If a rule requires foo.o, and you have a file named foo.c in that directory, make will figure out the rest. We can also use variables to keep from having to retype things. And making a rule for our executable, which all then requires, allows make to check if it needs to be rebuilt. That gives us:</p>
<pre><code>OBJS=foo.o bar.o
app: $(OBJS)
gcc $(OBJS) -o app
all: app</code></pre>
<p>That will pretty much do what we want. The only problem is that we no longer have a way to pass the flags we want to the compiler. Also, make assumes we use the cc command to compile C files, but we want to use gcc. No problem. The built in rules for C files actually use two variables, CC and CFLAGS, for our compiler of choice and any options to pass to it. We simply set those variables at the beginning of the file, and we're good to go:</p>
<pre><code>CC=gcc
CFLAGS=-Wall -g
OBJS=foo.o bar.o
app: $(OBJS)
$(CC) $(CFLAGS) $(OBJS) -o app
all: app</code></pre>
<p>And we have a nice Makefile. When we run make, it builds our project. It doesn't ever do any extra work. When we add new source files to our project, we just have to add the name of the object file to one line in our Makefile, and it does the rest.</p>
<p>Now, there's obviously a lot more to writing make files, and a lot more they can do, or the documentation wouldn't be so big. But this is all it takes to write makefiles for simple projects, and you can then learn piecemeal from there, as you find yourself wanting new things.</p>
http://stackoverflow.com/questions/73825/net-remoting-exception/74130#741301Answer by Thomee for .Net Remoting ExceptionThomee2008-09-16T16:17:40Z2008-09-16T16:17:40Z<p>Getting a remoting exception does not guarantee that your server is up and running. If something else happens to be running and listening on that port, the connection will succeed, and you will not get a socket exception. What happens in this case depends on how the application which actually got your connection behaves, but it will probably wind up generating a remoting exception in your client.</p>
<p>It would take a bit more investigation to verify this, but I believe the remoting exception indicates a problem in the communications between the client and the server, so there isn't a "client side" or "server side" that generated it. It means that the two weren't talking happily and it could have been caused by either one.</p>
http://stackoverflow.com/questions/73833/how-do-you-search-for-files-containing-dos-line-endings-crlf-with-grep-under-li/73969#739692Answer by Thomee for how do you search for files containing dos line endings (CRLF) with grep under linux?Thomee2008-09-16T16:03:28Z2008-09-16T16:03:28Z<p>grep probably isn't the tool you want for this. It will print a line for every matching line in every file. Unless you want to, say, run todos 10 times on a 10 line file, grep isn't the best way to go about it. Using find to run file on every file in the tree then grepping through that for "CRLF" will get you one line of output for each file which has dos style line endings:</p>
<pre><code>find . -not -type d -exec file "{}" ";" | grep CRLF</code></pre>
<p>will get you something like:</p>
<pre><code>./1/dos1.txt: ASCII text, with CRLF line terminators
./2/dos2.txt: ASCII text, with CRLF line terminators
./dos.txt: ASCII text, with CRLF line terminators</code></pre>
http://stackoverflow.com/questions/883844/subversion-how-to-move-some-changesets-from-trunk-to-a-branch/884113#884113Comment by Thomee on Subversion - how to move some changesets from trunk to a branch?Thomee2009-06-19T21:30:46Z2009-06-19T21:30:46ZTo clarify, I've been playing with this on a test repo before doing anything on our main repo, so I can try different approaches, and have smaller sets of changes. Your suggestion seems to work, but feels clumsy. I'd initially thought this would require manually going through the list of all the changes twice, once to back it out of the trunk, and a second time to put it all back in. I then realized that to put it back in all I need to do is reverse the one commit where it was all taken out after the branch was copied. It still feels a bit clumsy to me, but should be workable.http://stackoverflow.com/questions/883844/subversion-how-to-move-some-changesets-from-trunk-to-a-branch/884113#884113Comment by Thomee on Subversion - how to move some changesets from trunk to a branch?Thomee2009-06-19T16:09:34Z2009-06-19T16:09:34ZThe repository has not been upgraded, so I don't have the 1.5+ merge tracking features. The problem I'm running into (and maybe it's something I'm doing wrong), is that when I'm trying to reintegrate the feature branch, there's nothing to distinguish between the removal of the incomplete feature from the trunk, and other meaningful changes which have happened on the trunk after that. So all the existing work that got copied then removed, stays removed, or I lose the other changes which were made after removing the incomplete feature.http://stackoverflow.com/questions/883844/subversion-how-to-move-some-changesets-from-trunk-to-a-branch/884113#884113Comment by Thomee on Subversion - how to move some changesets from trunk to a branch?Thomee2009-06-18T16:08:39Z2009-06-18T16:08:39ZI've played a bit with doing it this way, but I can't see an easy way to merge it all back into the trunk once the new feature is completed. Because we branched from the head of the trunk, then reverted the unwanted changes on the trunk, there seems to be no good way to pull those changes back in from the branch along with the newer changes to finish feature C, while preserving changes to the trunk unrelated to feature C.http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/93999#93999Comment by Thomee on When is multi-threading not a good idea?Thomee2009-06-18T15:47:37Z2009-06-18T15:47:37ZLike I said, while often attributed to JWZ, the quote itself has been around for longer, and wasn't about regular expressions prior to JWZ's usage. Given the history of the quote, I think it's still a valid paraphrase. I wasn't intending to claim JWZ was talking about the problems of threads. As I see it, the quote is about someone taking a cool tool and trying to apply it to too broad a set of problems, and creating more challenges than they solved.http://stackoverflow.com/questions/100170/is-there-a-way-to-check-if-there-are-symbolic-links-pointing-to-a-directory/100205#100205Comment by Thomee on Is there a way to check if there are symbolic links pointing to a directory?Thomee2008-09-19T16:41:29Z2008-09-19T16:41:29ZThis would work well for finding all hardlinks to a file. But hardlinks to a directory are a big no-no. The filesystem driver will not let you create such a thing, and if you are masochistic enough to go in and edit the raw partition by hand to create one, it makes many things very unhappy.http://stackoverflow.com/questions/74372/how-to-overcome-an-incompatibility-between-the-ksh-on-linux-vs-that-installed-onComment by Thomee on How to overcome an incompatibility between the ksh on Linux vs. that installed on AIX/Solaris/HPUX?Thomee2008-09-16T18:11:56Z2008-09-16T18:11:56ZWhich Linux distro are you using? That makes a difference in how to get the "correct" ksh