User SumoRunner - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T13:06:18Zhttp://stackoverflow.com/feeds/user/18975http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/448310/combining-c-fortran-static-libraries0Combining C & Fortran static LibrariesSumoRunner2009-01-15T20:22:39Z2009-01-15T21:34:49Z
<p>I have a .net project with both C and Fortran sources and I want to produce one static lib. I'm using VS 2008 and Intel VF 10.1. They have to be two separate projects in visual studio so each one makes a separate static lib. How do I combine them into one resulting static lib?</p>
<p>EDIT
You guys are too slow. Here's what I figured out.
Set a dependency so you can control the order of build of the libs
In the last lib, use the lib command in the post build event to:
lib /out:combined.lib cfiles.lib ffiles.lib</p>
http://stackoverflow.com/questions/290799/how-can-i-find-out-which-library-is-home-to-a-given-object/295961#2959612Answer by SumoRunner for How can I find out which library is home to a given object?SumoRunner2008-11-17T15:56:49Z2008-12-01T18:21:11Z<p>I have a little lookfor script. Enter lookfor func_name</p>
<pre><code>#!/bin/csh
foreach i (*.o *.a *.so)
echo $i
nm $i | grep -i $1
end
</code></pre>
http://stackoverflow.com/questions/306371/bootable-linux-cd-that-can-be-modified-1bootable Linux cd that can be modified [closed]SumoRunner2008-11-20T18:33:14Z2008-11-20T18:36:13Z
<p>I want to make a bootable CD on a CD/RW that is not a compressed image so that all changes and additions to scripts I make will remain on the CD file system without having to remaster. I burned a DS Linux CD but it's a compressed image that overwrites the /home/dsl on every reboot. I want it to be a working read/write volume that keeps my work and it can't depend on having any hard disk at all.</p>
http://stackoverflow.com/questions/299392/how-do-i-create-a-batch-file-timer-to-execute-call-another-batch-throughout-the/302167#3021672Answer by SumoRunner for How do I create a batch file timer to execute / call another batch throughout the day SumoRunner2008-11-19T15:09:54Z2008-11-19T15:09:54Z<p>The AT command would do that but that's what the Scheduled Tasks gui is for. Enter "help at" in a cmd window for details.</p>
http://stackoverflow.com/questions/296717/zcat-wont-unzip-files-properly/296949#2969490Answer by SumoRunner for zcat won't unzip files properlySumoRunner2008-11-17T21:13:13Z2008-11-17T21:13:13Z<p>gzip --decompress /file/address/file.tar.gz</p>
http://stackoverflow.com/questions/284776/how-to-convert-the-value-of-username-to-lowercase-within-a-windows-batch-script/285405#2854050Answer by SumoRunner for How to convert the value of %USERNAME% to lowercase within a Windows batch script?SumoRunner2008-11-12T21:10:53Z2008-11-12T21:10:53Z<p>download some unix utilities for DOS from <a href="http://short.stop.home.att.net/freesoft/unix.htm" rel="nofollow">http://short.stop.home.att.net/freesoft/unix.htm</a>
and use tr.exe (translate characters)</p>
<p>echo %USERNAME% | tr "[A-Z]" "[a-z]" </p>
<p>I also use a DOS extended cmd replacement named 4NT which has a built in command @lower</p>
<p>echo %@lower[%USERNAME%]</p>
http://stackoverflow.com/questions/260192/mtrace-for-a-fortran-program/262180#2621800Answer by SumoRunner for mtrace for a fortran programSumoRunner2008-11-04T15:29:29Z2008-11-04T15:29:29Z<p>Valgrind is Linux only. For a windows product look at Forcheck.
<a href="http://www.forcheck.nl/features.htm" rel="nofollow">http://www.forcheck.nl/features.htm</a></p>
http://stackoverflow.com/questions/258509/etymology-of-linux-commands/259002#2590024Answer by SumoRunner for Etymology of linux commandsSumoRunner2008-11-03T15:35:05Z2008-11-03T15:35:05Z<p>The Unix biff cmd (announce arrival of emails) was named after someone's dog who barked whenever the mailman arrived. <a href="http://en.wikipedia.org/wiki/Biff" rel="nofollow">http://en.wikipedia.org/wiki/Biff</a></p>
<p>Many other such interesting tidbits from the early days of computing can be found in The Jargon File. <a href="http://en.wikipedia.org/wiki/Jargon_File" rel="nofollow">http://en.wikipedia.org/wiki/Jargon_File</a></p>
http://stackoverflow.com/questions/226703/how-do-i-prompt-for-input-in-a-linux-shell-script/226722#2267220Answer by SumoRunner for How do I prompt for input in a Linux shell script?SumoRunner2008-10-22T17:08:34Z2008-10-22T19:23:07Z<pre><code>inquire () {
echo -n "$1 [$2/$3]? "
read answer
finish="-1"
while [ "$finish" = '-1' ]
do
finish="1"
if [ "$answer" = '' ];
then
answer=""
else
case $answer in
y | Y | yes | YES ) answer="y";;
n | N | no | NO ) answer="n";;
*) finish="-1";
echo -n 'Invalid response -- please reenter:';
read answer;;
esac
fi
done
}
... other stuff
inquire ""Install now? " "y" "n"
...
</code></pre>
<p>Where'd my formatting go? I guess that shows what happens if you cut and paste from unix text.</p>
http://stackoverflow.com/questions/221170/private-function-in-fortran/222003#2220031Answer by SumoRunner for Private function in FortranSumoRunner2008-10-21T14:07:14Z2008-10-21T14:07:14Z<pre><code>Private xxx, yyy, zzz
real function xxx (v)
...
end function xxx
integer function yyy()
...
end function yyy
subroutine zzz ( a,b,c )
...
end subroutine zzz
...
other stuff that calls them
...
</code></pre>
http://stackoverflow.com/questions/209790/is-there-a-good-freeware-clone-of-the-vms-editor-edt-for-unix-or-the-pc/209977#2099771Answer by SumoRunner for Is there a good freeware clone of the VMS editor EDT for unix or the pc?SumoRunner2008-10-16T19:44:41Z2008-10-16T19:44:41Z<p><a href="http://sourceforge.net/projects/edt-text-editor/" rel="nofollow">http://sourceforge.net/projects/edt-text-editor/</a></p>
http://stackoverflow.com/questions/206286/how-do-you-tell-someone-theyre-writing-bad-code/206312#2063127Answer by SumoRunner for How do you tell someone they're writing bad code?SumoRunner2008-10-15T20:29:51Z2008-10-15T20:29:51Z<p>They may think your style stinks too. Get the team together to discuss a consistent set of coding style guidelines. Agree to something. Whether that fits your style isn't the issue, settling on any style as long as it's consistent is what matters.</p>
http://stackoverflow.com/questions/31672/learning-fortran-in-the-modern-era/116716#1167162Answer by SumoRunner for Learning FORTRAN In the Modern EraSumoRunner2008-09-22T18:46:37Z2008-09-22T18:46:37Z<p>There's something in the original question that I would caution about. You say the code is rife with "performance enhancing improvements". Since Fortran problems are generally of a scientific and mathematical nature, do not assume these performance tricks are there to improve the compilation. It's probably not about the language. In Fortran, the solution is seldom about efficiency of the code itself but of the underlying mathematics to solve the end problem. The tricks may make the compilation slower, may even make the logic appear messy, but the intent is to make the solution faster. Unless you know exactly what it is doing and why, leave it alone.</p>
<p>Even simple refactoring, like changing dumb looking variable names can be a big pitfall. Historically standard mathematical equations in a given field of science will have used a particular shorthand since the days of Maxwell. So to see an array named B(:) in electromagnetics tells all Emag engineers exactly what is being solved for. Change that at your peril. Moral, get to know the standard nomenclature of the science before renaming too.</p>
http://stackoverflow.com/questions/108327/what-fortran-compilers-are-there/116613#1166131Answer by SumoRunner for What Fortran compilers are there?SumoRunner2008-09-22T18:27:23Z2008-09-22T18:27:23Z<p>Intel Fortran is the best. It's heritage can be traced back to the 1960s. Intel bought it from HP and before that HP acquired it from Compaq who got it from Digital Equipment Corp. It was the old reliable Vax Fortran and prior to Vax was first developed on PDP-11 computers.</p>
<p>Gcc Gfortran also has a fork called G95, both are free of course. G95 also has an eclipse IDE called Photran. There's a discussion of the two here:
<a href="http://www.megasolutions.net/fortran/g95-versus-gfortran-50009.aspx" rel="nofollow">http://www.megasolutions.net/fortran/g95-versus-gfortran-50009.aspx</a></p>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/102949#1029490Answer by SumoRunner for What was your first home computer?SumoRunner2008-09-19T15:34:48Z2008-09-19T19:15:25Z<p>I got a <a href="http://oldcomputers.net/adam.html" rel="nofollow">Coleco Adam</a> as a Xmas gift in 1984. It was one of the greatest fiascoes of the early PC industry.</p>
<p><img src="http://oldcomputers.net/pics/adam.jpg" alt="alt text" /></p>
<p>I kept it for only a couple weeks and returned it for full refund, then went out and got a Commodore 64.</p>