User davitenio - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T08:54:31Zhttp://stackoverflow.com/feeds/user/50765http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1043323/getting-the-pid-of-a-job-launched-in-the-background-remotely0Getting the pid of a job launched in the background remotelydavitenio2009-06-25T11:04:49Z2009-10-08T15:10:39Z
<p>I am trying to launch in the background a job on a remote machine and get its PID so that I can kill it later on. What I have come up with so far is the following:</p>
<pre><code>#!/bin/bash
IP=xxx.xxx.xxx.xx
REMOTE_EXEC="ssh $IP -l root"
# The following does NOT work, I am trying to get the PID of the remote job
PID=`$REMOTE_EXEC 'vmstat 1 1000 > vmstat.log & ; echo $!'`
# Launch apache benchmark
ab -n 10 http://$IP/
$REMOTE_EXEC "kill $PID"
</code></pre>
<p>Unfortunately it does not work. I am getting a</p>
<pre><code>bash: syntax error near unexpected token `;'
</code></pre>
<p>but I don't know what the right syntax would be.</p>
http://stackoverflow.com/questions/465042/is-it-possible-to-have-a-subversion-repository-as-a-git-submodule5Is it possible to have a subversion repository as a git submodule?davitenio2009-01-21T12:16:05Z2009-06-01T21:05:34Z
<p>Is there a way to add a subversion repository as a git submodule in my git repository?</p>
<p>Something like: git-svn submodule add https://svn.foo.com/svn/proj --stdlayout svn-project</p>
<p>Where https://svn.foo.com/svn/proj points to a subversion repository.</p>
<p>I know there is git-svn which allows one to interact with a subversion repository. So I am thinking, maybe there is a way to checkout a subversion repository with git-svn and then use it as a submodule.</p>
http://stackoverflow.com/questions/741542/show-function-parameters-in-vim/743851#7438512Answer by davitenio for show function parameters in vimdavitenio2009-04-13T13:09:31Z2009-04-13T13:09:31Z<p>As was already suggested, install the <a href="http://www.vim.org/scripts/script.php?script%5Fid=1879" rel="nofollow">autocomplpop</a> plugin. Then,
to trigger omincompletion as you type for C files, you could add the following to your .vimrc:</p>
<pre><code>let g:AutoComplPop_Behavior = {
\ 'c': [ {'command' : "\<C-x>\<C-o>",
\ 'pattern' : ".",
\ 'repeat' : 0}
\ ]
\}
</code></pre>
<p>If you don't want to trigger omnicompletion for every character typed, change the pattern value to suit your needs. For information on how to further customize, look at the documentation in the comment header of autocomplpop.vim</p>
<p>Moreover, to get a popup window with function parameters also add the following to your .vimrc:</p>
<pre><code>let g:AutoComplPop_CompleteoptPreview = 1
</code></pre>
<p>To make it work make sure you generated a tags file with ctags.</p>
http://stackoverflow.com/questions/678033/how-to-avoid-code-duplication-between-similar-isrs0How to avoid code duplication between similar ISRs?davitenio2009-03-24T15:48:50Z2009-03-24T16:29:36Z
<p>I have two interrupt service routines (ISR) which basically do the exact same
thing but each handles an interrupt from a different device (although the same type of device). Therefore, the logic is the same but they access different CPU registers and memory locations.</p>
<p>As a simple example consider the following code:</p>
<pre><code>extern volatile unsigned int dev1_rx_buffer;
extern volatile unsigned int dev2_rx_buffer;
volatile unsigned char data;
void __attribute__((__interrupt__)) _dev1_interrupt(void)
{
/* Clear interrupt flag */
dev1.IF = 0;
if (dev1.IS_FULL) {
/* Read data from device */
data = dev1_rx_buffer;
} else {
/* do something else using registers of device 1 */
}
/* More stuff using registers of device 1 */
}
void __attribute__((__interrupt__)) _dev2_interrupt(void)
{
/* Clear interrupt flag */
dev2.IF = 0;
if (dev2.IS_FULL) {
/* Read data from device */
data = dev2_rx_buffer;
} else {
/* do something else using registers of device 2 */
}
/* More stuff using registers of device 2 */
}
</code></pre>
<p>How can I avoid the code duplication with the restrictions that apply to ISRs
(i.e. I cannot pass parameters to the ISRs and function calls should be avoided
because of their overhead).</p>
<p>I have thought of writing a template from which to generate the two ISRs using a higher level scripting language, but I'd prefer a solution using only C or C preprocessor macros.</p>
http://stackoverflow.com/questions/446244/are-crlf-lines-ok-in-a-rails-project-deployed-on-linux/470783#4707833Answer by davitenio for Are CRLF lines ok in a Rails project deployed on Linux?davitenio2009-01-22T21:02:57Z2009-03-18T21:56:20Z<p>If it is ok for you to rewrite your repository's history (see <a href="http://www.kernel.org/pub/software/scm/git/docs/user-manual.html#problems-With-rewriting-history" rel="nofollow">problems with rewriting history</a>) you could use git filter-branch to convert CRLF to LF:</p>
<pre><code>git filter-branch --tree-filter 'find . -path './.git' -prune -o -type f -exec dos2unix \{} \;' HEAD
</code></pre>
<p>Note that if you have binary files in your repository you will have to refine the find command to exclude them.</p>
http://stackoverflow.com/questions/250238/collapsing-a-git-repositorys-history/475931#4759312Answer by davitenio for Collapsing a git repository's historydavitenio2009-01-24T12:08:30Z2009-01-24T12:08:30Z<p>You can use git filter-branch with grafts to make the commit number 4 the new root commit of your branch. Just create the file .git/info/grafts with just one line in it containing the SHA1 of commit number 4.</p>
<p>f you now do a git log or gitk you will see that those commands will display commit number 4 as the root of your branch. But nothing will have actually changed in your repository. You can delete .git/info/grafts and the output of git log or gitk will be as before. To actually make commit number 4 the new root you will have to run git filter-branch, with no arguments.</p>
http://stackoverflow.com/questions/461774/when-reusing-code-how-do-i-make-it-clear-who-the-copyright-holder-is-for-each-fi3When reusing code, how do I make it clear who the copyright holder is for each file?davitenio2009-01-20T15:31:55Z2009-01-22T13:41:08Z
<p>I want to reuse some code licensed under a BSD license but I don't know how to make it clear what I wrote, what I have reused and what I have modified.</p>
<p>Say the project I want to reuse code from has the following directory structure:</p>
<pre><code>project/
|-- LICENSE.txt
|-- module1/
| |-- file1.c
| |-- file2.c
| `-- file3.c
|-- module2/
`-- module3/
</code></pre>
<p>and the contents of LICENSE.txt is a BSD license, i.e. its contents are:</p>
<pre><code>Copyright (c) <year>, <copyright holder>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
[...]
</code></pre>
<p>(See <a href="http://en.wikipedia.org/w/index.php?oldid=264699273#Terms" rel="nofollow">wikipedia</a> for a template of the full text.)</p>
<p>Also, the copyright is only stated in the LICENSE.txt file and not in every individual source code file.</p>
<p>If I now copy everything under project/module1/ to my own project:</p>
<pre><code>my_project/
|-- module1/
| |-- file1.c
| |-- file2.c
| `-- file3.c
|-- my_file1.c
|-- my_file2.c
|-- my_source_code1/
`-- my_source_code2/
</code></pre>
<p>How should I state that I am not the copyright holder of the files under module1?
Would it be enough to copy the original LICENSE.txt, with the original copyright holder in it's header,
to the module1 subdirectory? Or should I add a copyright header to each individual file?</p>
<p>What if I modify any of the files under module1? Should I then somehow add myself as an additional copyright holder for the files I modified?</p>
<p>Note: I am perfectly fine with using the same (or a compatible) license for the code I wrote.</p>
http://stackoverflow.com/questions/461774/when-reusing-code-how-do-i-make-it-clear-who-the-copyright-holder-is-for-each-fi/469155#4691550Answer by davitenio for When reusing code, how do I make it clear who the copyright holder is for each file?davitenio2009-01-22T13:41:08Z2009-01-22T13:41:08Z<p>I just found <a href="http://www.softwarefreedom.org/resources/2007/gpl-non-gpl-collaboration.html" rel="nofollow">Maintaining Permissive-Licensed Files in a GPL-Licensed Project: Guidelines for Developers</a>, published by the Software Freedom Law Center. Although it talks specifically about incorporating BSD style licenses (they call them permissive) into GPL licensed code, I think the recommendation in section 2.1, <em>Including unmodified permissive-licensed files</em>, would be a good general recommendation. I quote:</p>
<blockquote>
<p>If the external project uses the
single COPYRIGHT file method, the
developer should copy the names of all
the copyright holders from that file
and place them, along with any
copyright, permission, and warranty
disclaimer notices required by the
permissive license, at the top of the
incorporated source file.</p>
</blockquote>
<p>In case you modify the included files and your project <strong>is</strong> GPL, there are two relevant sections in the mentioned document:</p>
<ul>
<li><a href="http://www.softwarefreedom.org/resources/2007/gpl-non-gpl-collaboration.html#x1-40002.2" rel="nofollow">2.2 Adding GPL’d modifications to permissive-licensed files</a></li>
<li><a href="http://www.softwarefreedom.org/resources/2007/gpl-non-gpl-collaboration.html#x1-50002.3" rel="nofollow">2.3 Keeping modified files permissive-licensed within larger GPL’d works</a></li>
</ul>
<p>The case were you modify the included files and your project <strong>is not</strong> GPL is obviously not addressed by the document. But from what I have gathered from the other answers I would say, as long as the license you use for your project is not viral, that the proper thing to do would be to just add yourself as a copyright holder to the copyright header of the file you modified and mention somewhere in your docs the origin of the included code.</p>
http://stackoverflow.com/questions/460496/whats-the-most-elegant-way-of-commenting-uncommenting-blocks-of-ruby-code-in-v/463711#4637111Answer by davitenio for What's the most elegant way of commenting / uncommenting blocks of ruby code in Vim?davitenio2009-01-21T00:35:11Z2009-01-21T00:35:11Z<p>After visually selecting, in block mode, the text you want to comment out, hit <strong>I</strong> (that is a capital i), type <strong>#</strong> and finally hit the escape key. It's basically the same procedure you are using currently, but using insert instead of replace.</p>
http://stackoverflow.com/questions/149558/recommended-vim-plugins-for-c-coding/463672#4636721Answer by davitenio for Recommended Vim plugins for C coding?davitenio2009-01-21T00:21:39Z2009-01-21T00:21:39Z<p>For code completion I would recommend <a href="http://www.vim.org/scripts/script.php?script_id=1318" rel="nofollow">snippetsEmu</a>. It is very easy to customize.</p>
http://stackoverflow.com/questions/210829/what-is-an-np-complete-problem/408377#4083771Answer by davitenio for What is an NP-complete problem?davitenio2009-01-03T00:18:24Z2009-01-03T00:18:24Z<p>There is a very good <a href="http://video.google.com/videoplay?docid=8526001457977475662&hl=en" rel="nofollow" title="arsdigita lecture on discrete mathematics">arsdigita lecture on discrete mathematics</a> that explains what an NP-complete problem is.</p>
<p>The first 50 minutes are mainly on boolean algebra. So jump right to the beginning of minute 53 if you are only interested in the concepts of P, NP, NP-completeness, the boolean satisfiability problem and reduction.</p>
http://stackoverflow.com/questions/1043323/getting-the-pid-of-a-job-launched-in-the-background-remotely/1043399#1043399Comment by davitenio on Getting the pid of a job launched in the background remotelydavitenio2009-06-25T11:42:46Z2009-06-25T11:42:46ZIt does work, even without using nohup. Thanks!http://stackoverflow.com/questions/1043323/getting-the-pid-of-a-job-launched-in-the-background-remotelyComment by davitenio on Getting the pid of a job launched in the background remotelydavitenio2009-06-25T11:16:15Z2009-06-25T11:16:15ZYes I know. So I either need a fix for 'vmstat 1 1000 > vmstat.log & ; echo $!' or I need to get the PID of the remote job through some other mechanism.http://stackoverflow.com/questions/678033/how-to-avoid-code-duplication-between-similar-isrs/678182#678182Comment by davitenio on How to avoid code duplication between similar ISRs?davitenio2009-03-24T17:36:16Z2009-03-24T17:36:16ZApparently I have to declare functions explicitly as inline and moreover add an "-finline" flag to the compiler to make sure that the compiler optimizes function calls away. thankshttp://stackoverflow.com/questions/678033/how-to-avoid-code-duplication-between-similar-isrs/678168#678168Comment by davitenio on How to avoid code duplication between similar ISRs?davitenio2009-03-24T17:30:56Z2009-03-24T17:30:56ZWith the compiler I am using I would have to declare CommonISR as inline explicitly to avoid a function call. Otherwise this is probably what I will do. Thanks.http://stackoverflow.com/questions/446244/are-crlf-lines-ok-in-a-rails-project-deployed-on-linux/470783#470783Comment by davitenio on Are CRLF lines ok in a Rails project deployed on Linux?davitenio2009-03-18T21:47:29Z2009-03-18T21:47:29ZJust tried it with dos2unix from Ubuntu's tofrodos package (version 1.7.6-2) and it does not leave binary files alone. So the find command should be refined to exclude binary files if you have any in your repository.http://stackoverflow.com/questions/221186/what-gnu-tools-for-refactoring-are-there/221201#221201Comment by davitenio on What GNU tools for refactoring are there?davitenio2009-01-26T11:19:09Z2009-01-26T11:19:09ZVim is Charityware: <a href="http://www.vim.org/htmldoc/uganda.html" rel="nofollow">vim.org/htmldoc/uganda.html</a>http://stackoverflow.com/questions/460496/whats-the-most-elegant-way-of-commenting-uncommenting-blocks-of-ruby-code-in-v/463711#463711Comment by davitenio on What's the most elegant way of commenting / uncommenting blocks of ruby code in Vim?davitenio2009-01-23T09:56:31Z2009-01-23T09:56:31ZIf you take a look at vim's visual operators (<a href="http://www.vim.org/htmldoc/visual.html#visual-operators" rel="nofollow">vim.org/htmldoc/visual.html#visual-operators/…</a>) you will see that there is no visual-characterwise insert operator nor a visual-linewise insert operator, but only a visual-block insert operator.http://stackoverflow.com/questions/461774/when-reusing-code-how-do-i-make-it-clear-who-the-copyright-holder-is-for-each-fi/461906#461906Comment by davitenio on When reusing code, how do I make it clear who the copyright holder is for each file?davitenio2009-01-21T10:39:23Z2009-01-21T10:39:23ZIf the code I am reusing was GPL licensed there would be a formal procedure? Can you give any pointers to that procedure or explain it yourself?http://stackoverflow.com/questions/461774/when-reusing-code-how-do-i-make-it-clear-who-the-copyright-holder-is-for-each-fi/461906#461906Comment by davitenio on When reusing code, how do I make it clear who the copyright holder is for each file?davitenio2009-01-20T20:43:18Z2009-01-20T20:43:18ZAnd if I modify any of the files in module1? Would you mention that explicitly somewhere?http://stackoverflow.com/questions/461774/when-reusing-code-how-do-i-make-it-clear-who-the-copyright-holder-is-for-each-fi/461887#461887Comment by davitenio on When reusing code, how do I make it clear who the copyright holder is for each file?davitenio2009-01-20T20:38:26Z2009-01-20T20:38:26ZSo, even though the original files I am reusing did not have a comment stating the copyright, you would add one? And in case I modify a file, you would add a comment stating that the file has been modified by me?