User Palmin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T22:15:04Zhttp://stackoverflow.com/feeds/user/5949http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1353990/subversion-checkout-a-parent-directory/1354509#13545091Answer by Palmin for Subversion - Checkout a parent directoryPalmin2009-08-30T18:17:43Z2009-08-30T18:17:43Z<p>This is not possible directly.</p>
<p>The easiest way is to delete your working copy and do a new checkout of <code>Animal</code>.</p>
<p>If you have any changes in <code>Dog</code> that you'd like to keep, move <code>Dog</code> to a temporary location, checkout <code>Animal</code> and then copy <code>Dog</code> back into the <code>Animal</code> directory.</p>
http://stackoverflow.com/questions/815604/how-do-i-avoid-svn-out-of-date-problems/815615#8156153Answer by Palmin for How do I avoid "svn: Out of Date:" problems?Palmin2009-05-02T21:06:35Z2009-05-02T21:17:48Z<p>You should check these things from the <a href="http://subversion.tigris.org/faq.html#wc-out-of-date" rel="nofollow">Subversion FAQ</a>:</p>
<ol>
<li>Debris from a failed commit is littering your working copy.</li>
<li>Mixed revisions</li>
<li>You might be genuinely out of date </li>
</ol>
<p>Your renaming example points to No. 2 as your source of the problem: If you commit the new directory, the parent directory of the old and the new will be mixed revision, so if you try to commit the parent directory, it will fail. It makes a lot of sense to commit the move (which is a combined copy and delete) in one transaction by comitting the parent directory.</p>
http://stackoverflow.com/questions/352837/how-to-add-file-extensions-based-on-file-type-on-linux-unix9How to add file extensions based on file type on Linux/Unix?Palmin2008-12-09T14:10:18Z2009-04-08T19:10:21Z
<p>This is a question regarding Unix shell scripting (any shell), but any other "standard" scripting language solution would also be appreciated:</p>
<p>I have a directory full of files where the filenames are hash values like this:</p>
<pre><code>fd73d0cf8ee68073dce270cf7e770b97
fec8047a9186fdcc98fdbfc0ea6075ee
</code></pre>
<p>These files have different original file types such as png, zip, doc, pdf etc.</p>
<p>Can anybody provide a script that would rename the files so they get their appropriate file extension, probably based on the output of the <code>file</code> command?</p>
<h2>Answer:</h2>
<p><a href="http://stackoverflow.com/questions/352837/how-to-add-file-extensions-based-on-file-type-on-linuxunix#352973">J.F. Sebastian's</a> script will work for both ouput of the filenames as well as the actual renaming.</p>
http://stackoverflow.com/questions/127335/what-is-your-preferred-office-size-layout1What is your preferred office size/layout?Palmin2008-09-24T14:03:43Z2009-03-04T07:57:26Z
<p>This is a question about your preferred environment for software development.</p>
<p>We recently moved into new offices, and before they were planned, we had a little poll among all the developers what their preferred office size was (this is Europe, so no cubicles, we are used to separate offices ;-) ). The result was that, before we moved, most developers seemed to favor small offices (1-2 people) over larger ones.</p>
<p>We were able to create an office layout with differently sized offices in the end, and now that we moved, everybody seems to prefer the larger variants (4-5 people).</p>
<p>So what is your preferred office layout and size? Do you prefer private offices or do you prefer layouts that enhance communication?</p>
http://stackoverflow.com/questions/361840/recovering-from-an-unfortunate-svn-copy/362209#3622097Answer by Palmin for Recovering from an unfortunate "svn copy"Palmin2008-12-12T08:25:38Z2008-12-12T08:31:23Z<p>According to <a href="http://svnbook.red-bean.com/" rel="nofollow">the SVN book</a>,</p>
<pre><code>svn merge -c -1234
</code></pre>
<p>should do the trick.</p>
<p>There's a whole <a href="http://svnbook.red-bean.com/en/1.5/svn.branchmerge.basicmerging.html#svn.branchmerge.basicmerging.undo" rel="nofollow">section</a> about this in the book.</p>
<p>The verbose explanation:
<code>-c -1234</code> translates into <code>-r 1234:1233</code>, which reverts the change from revision 1234.</p>
http://stackoverflow.com/questions/150027/has-anyone-run-into-problems-in-tortoisesvn-where-the-author-isnt-written-to-t/150175#1501751Answer by Palmin for Has anyone run into problems in TortoiseSVN where the 'author' isn't written to the log?Palmin2008-09-29T19:09:05Z2008-09-29T19:21:29Z<p>Check your server configuration in <code>[repository]/conf/svnserve.conf</code> file if it has set</p>
<pre><code>anon-acces=write
auth-access=write
</code></pre>
<p>Usually, with the default settings</p>
<pre><code>anon-access = read
auth-access = write
</code></pre>
<p>(you can just comment out the lines), the author information should be preserved.</p>
http://stackoverflow.com/questions/123378/command-line-unix-ascii-based-charting-plotting-tool/123396#1233968Answer by Palmin for Command-line Unix ASCII-based charting / plotting toolPalmin2008-09-23T19:51:49Z2008-09-23T20:20:40Z<p>Try <a href="http://www.gnuplot.info/" rel="nofollow">gnuplot</a>. It has very powerful graphing possibilities.</p>
<p>It can output to your terminal in the following way:</p>
<pre><code>gnuplot> set terminal dumb
Terminal type set to 'dumb'
Options are 'feed 79 24'
gnuplot> plot sin(x)
1 ++----------------**---------------+----**-----------+--------**-----++
+ *+ * + * * + sin(x) ****** +
0.8 ++ * * * * * * ++
| * * * * * * |
0.6 ++ * * * * * * ++
* * * * * * * |
0.4 +* * * * * * * ++
|* * * * * * * |
0.2 +* * * * * * * ++
| * * * * * * * |
0 ++* * * * * * *++
| * * * * * * *|
-0.2 ++ * * * * * * *+
| * * * * * * *|
-0.4 ++ * * * * * * *+
| * * * * * * *
-0.6 ++ * * * * * * ++
| * * * * * * |
-0.8 ++ * * * * * * ++
+ * * + * * + * * +
-1 ++-----**---------+----------**----+---------------**+---------------++
-10 -5 0 5 10
</code></pre>
http://stackoverflow.com/questions/122752/what-is-the-recommended-toolchain-for-formatting-xml-docbook/123379#1233791Answer by Palmin for What is the recommended toolchain for formatting XML DocBook?Palmin2008-09-23T19:49:47Z2008-09-23T19:49:47Z<p>Regarding the question about Apache's FOP: when we established our toolchain (similar to what Gustavo has suggested) we had very good results using the <a href="http://www.renderx.com/tools/xep.html" rel="nofollow">RenderX XEP engine</a>. XEPs output looks a little bit more polished, and as far as I recall, FOP had some problems with tables (this was a few years ago though, this might have changed).</p>
http://stackoverflow.com/questions/117131/avoid-deletions-of-files-using-tortoisesvn/117157#117157-1Answer by Palmin for Avoid Deletions of Files using TortoiseSVNPalmin2008-09-22T19:56:29Z2008-09-22T19:56:29Z<p>I would recommend that you read a book about version control, preferably the <a href="http://svnbook.red-bean.com/" rel="nofollow" title="Version Control with Subversion">Version Control with Subversion</a>. What you describe is not a problem, this is how version control works.</p>
http://stackoverflow.com/questions/111543/tortoisesvn-error-options-of-https-could-not-connect-to-server/111964#1119644Answer by Palmin for TortoiseSVN Error: "OPTIONS of 'https://...' could not connect to server (...)"Palmin2008-09-21T20:15:23Z2008-09-21T20:15:23Z<p>Check you proxy settings in <strong>TortoiseSVN->Settings->Network</strong>.</p>
<p>Maybe they are configured differently than in your web browser.</p>
http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/104610#1046103Answer by Palmin for Objective-C switch using objects?Palmin2008-09-19T19:07:00Z2008-09-19T19:19:40Z<p>The <code>if-else</code> implementation you have is the right way to do this, since <code>switch</code> won't work with objects. Apart from maybe being a bit harder to read (which is subjective), there is no real downside in using <code>if-else</code> statements this way. </p>
http://stackoverflow.com/questions/100812/how-do-i-undo-svn-switch-on-a-subdirectory/101176#1011760Answer by Palmin for How do I undo "svn switch" on a subdirectory?Palmin2008-09-19T11:22:29Z2008-09-19T11:22:29Z<p>Without knowing exactly how you did the switch and how your directory and repository layout is, it's hard to say what went wrong in your case.</p>
<p>There is no way to really "revert" a switch. Generally, svn switch can be undone by a switch back to the original location, i.e. when the original location is at svn://url/to/orig/dir, then the following should work:</p>
<p>Switching a subdirectory to a different part of the repository</p>
<pre><code>svn switch svn://path/to/switched/dir/ subdir
</code></pre>
<p>... and switching it back again</p>
<pre><code>svn switch svn://url/to/orig/dir subdir
</code></pre>
<p>In your case it sounds as if you tried to switch a directory that is not part of your working copy.</p>
http://stackoverflow.com/questions/96326/korn-shell-code-to-send-attachments-with-mailx-and-uuencode/96636#966361Answer by Palmin for Korn Shell code to send attachments with mailx and uuencode?Palmin2008-09-18T20:35:21Z2008-09-18T21:18:52Z<p>You have to concat both the text of your message and the uuencoded attachment:</p>
<pre><code>$ subject="Something happened"
$ to="somebody@somewhere.com"
$ body="Attachment Test"
$ attachment=/path/to/somefile.csv
$
$ cat >msg.txt <<EOF
> The message is ready to be sent with the following file or link attachments:
>
> somefile.csv
>
> Note: To protect against computer viruses, e-mail programs may prevent
> sending or receiving certain types of file attachments. Check your
> e-mail security settings to determine how attachments are handled.
>
> EOF
$ ( cat msg.txt ; uuencode $attachment somefile.csv) | mailx -s "$subject" "$to"
</code></pre>
<p>There are different ways to provide the message text, this is just an example that is close to your original question. If the message should be reused it makes sense to just store it in a file and use this file.</p>
http://stackoverflow.com/questions/95543/subversion-error-working-copy-directory-not-locked/96026#960260Answer by Palmin for Subversion Error: "Working copy [directory] not locked"Palmin2008-09-18T19:27:01Z2008-09-18T19:27:01Z<p>Without seeing your exact directory setup it's hard to say what is happening. One reason for this error message could be that one part of your merge command does refer to a directory that is not under version control.</p>
<p>Can you post the exact merge command that triggers the error?</p>
http://stackoverflow.com/questions/67052/do-you-prefer-analog-or-digital-issue-task-management/67107#671070Answer by Palmin for Do you prefer Analog or Digital Issue / Task Management?Palmin2008-09-15T21:22:59Z2008-09-15T21:22:59Z<p>We are using Bugzilla, which has some huge benefits over <strong>analog</strong> methods:</p>
<ul>
<li>Issues have a history, nothing is ever lost</li>
<li>Issues can be linked through dependencies ("I have to fix this one before I can fix that one")</li>
<li>Issues can be cloned ("This is similar to something I have done a week ago")</li>
</ul>
<p>I don't see how you could do good issue tracking "on paper".</p>
http://stackoverflow.com/questions/62044/how-do-i-use-a-pipe-in-the-exec-parameter-for-a-find-command/62142#621422Answer by Palmin for How do I use a pipe in the exec parameter for a find command?Palmin2008-09-15T10:52:50Z2008-09-15T10:52:50Z<p>A slightly different approach would be to use xargs:</p>
<pre><code>find /path/to/jpgs -type f -print0 | xargs -0 jhead -v | grep 123
</code></pre>
<p>which I always found a bit easier to understand and to adapt (the -print0 and -0 arguments are necessary to cope with filenames containing blanks)</p>
<p>This <em>might</em> (not tested) be more effective than using -exec because it will pipe the list of files to xargs and xargs makes sure that the jhead commandline does not get too long.</p>
http://stackoverflow.com/questions/352837/how-to-add-file-extensions-based-on-file-type-on-linux-unix/352973#352973Comment by Palmin on How to add file extensions based on file type on Linux/Unix?Palmin2008-12-10T13:17:41Z2008-12-10T13:17:41ZThanks for your script, works great. You might want to edit your answer to include the bash-line that can be used to really rename the files.http://stackoverflow.com/questions/352837/how-to-add-file-extensions-based-on-file-type-on-linux-unixComment by Palmin on How to add file extensions based on file type on Linux/Unix?Palmin2008-12-10T12:52:43Z2008-12-10T12:52:43ZThey are uploaded attachments from a wiki system, the attachments are stored by their hash.http://stackoverflow.com/questions/352837/how-to-add-file-extensions-based-on-file-type-on-linux-unix/352973#352973Comment by Palmin on How to add file extensions based on file type on Linux/Unix?Palmin2008-12-09T19:45:52Z2008-12-09T19:45:52ZThe second snippet almost works for Python 2.3.5, I had to add .rstrip() to the line
"mime = output.split(';')[0].lower().rstrip()" because the mime-type has some trailing whitespace.
http://stackoverflow.com/questions/352837/how-to-add-file-extensions-based-on-file-type-on-linux-unix/352973#352973Comment by Palmin on How to add file extensions based on file type on Linux/Unix?Palmin2008-12-09T16:01:47Z2008-12-09T16:01:47ZHmm... comments don't allow formatting, but I hope you get the idea. The error ^ is below the "for" statementhttp://stackoverflow.com/questions/352837/how-to-add-file-extensions-based-on-file-type-on-linux-unix/352973#352973Comment by Palmin on How to add file extensions based on file type on Linux/Unix?Palmin2008-12-09T16:00:31Z2008-12-09T16:00:31ZWhen I try to run your script I get the following error:
File "./get_extension.py", line 121
mime2ext = dict(x[:2] for x in mime2exts_list)
^
SyntaxError: invalid syntax
This is using Python 2.3.5
Any idea why that is?
http://stackoverflow.com/questions/262259/how-to-coordinate-subversion-client-configuration/262383#262383Comment by Palmin on How to coordinate subversion client configuration?Palmin2008-11-05T12:11:11Z2008-11-05T12:11:11ZAny chance that you'd share your pre-commit script?http://stackoverflow.com/questions/127555/what-new-svn-features-tools-do-you-need-most-of-allComment by Palmin on What new svn features/tools do you need most of all?Palmin2008-09-24T14:49:38Z2008-09-24T14:49:38ZWhat sense does it make to accept the first answer on a poll-like question?http://stackoverflow.com/questions/117484/svn-versioning/117497#117497Comment by Palmin on SVN VersioningPalmin2008-09-24T14:23:10Z2008-09-24T14:23:10ZWell, the initial poster said that he'd checked out the repository inside a "Projects" folder. You can not "create repositories" within a checked-out folder, since this is client-side only. As such, the answer could be misunderstood.http://stackoverflow.com/questions/117484/svn-versioning/117497#117497Comment by Palmin on SVN VersioningPalmin2008-09-23T20:25:37Z2008-09-23T20:25:37ZThis is not really correct, the question was about keeping the revisions for the different projects separate, your example will not do this