User Gerhard - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T19:39:19Zhttp://stackoverflow.com/feeds/user/34989http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1818309/how-to-speedup-udp-communications-in-windows-xp-applications1How to speedup UDP communications in Windows XP applicationsGerhard2009-11-30T07:28:04Z2009-12-13T16:08:42Z
<p>I am doing some maintenance on software and have a problem that I do not understand.</p>
<p>Application was developed using Microsoft Visual C++ 6 and runs on Windows XP. It consists of 21 applications that communicate to each other via UDP sockets. It is a simulation of an embedded avionics system used to debug the system in a PC environment. Each of the applications simulates a node in the embedded system and the embedded networked is simulated over UDP. The system originally ran on multiple PCs but can now runs on a single Quad core machine.</p>
<p>The system is working but the communication is annoyingly slow. However opening up Internet Explorer and visiting a web site or two set something that would cause my applications to suddenly communicate very fast to each other.</p>
<p>So my question is what did Internet Explorer set when visiting a web site so that my application can also set it? None of the original authors of the system is still around and I have very little windows programming experience.</p>
http://stackoverflow.com/questions/1872753/how-to-capture-lessons-learnt-after-a-project/1872810#18728101Answer by Gerhard for How to capture lessons learnt after a projectGerhard2009-12-09T09:55:56Z2009-12-09T09:55:56Z<p>Willingness to learn. Without it it is impossible tot capture it on any medium and add value. Sometimes people will cope with a problem for years that is easy to fix because it is easier to pretend everything is fine since you do not need to admit failure.</p>
http://stackoverflow.com/questions/1870029/wireless-communication-avr-based-embedded-system-and-iphone/1872500#18725001Answer by Gerhard for Wireless communication: AVR based embedded system and iPhoneGerhard2009-12-09T08:56:27Z2009-12-09T09:03:10Z<p>Some of the other people at the office have done AVR <- Bluetooth -> Symbian and AVR <- Bluetooth -> PC solutions without trouble. There is lots of info, reference designs and source available. I have no idea of how hard it would be to use Bluetooth on Iphone.</p>
<p>The exact module is probability also not important as long as it got some type of serial interface (I2C,SPI) to interface to the AVR and some source code show how to use the module.</p>
http://stackoverflow.com/questions/1870857/restart-a-career-for-ex-c-programmer/1872091#18720912Answer by Gerhard for Restart a career for ex-C programmerGerhard2009-12-09T07:00:02Z2009-12-09T07:29:33Z<p>C and SQL experience is a winner. Web programmers is every where and everybody has different buzz words. But C and SQL is still the same but there are very few programmers around that can still do that. It will be harder to find a job but there will be very little competition for that job. And you will definitely be able to charge a large premium. The money and opportunities are not all where the crowds are heading.</p>
<p>You might need to convince an employer that you will quickly get back up to speed and put in some effort to study at first but my personal opinion is that you never forget C. </p>
http://stackoverflow.com/questions/1866866/ruby-socks4-proxy-with-wwwmechanize-and-nethttpget/1871861#18718610Answer by Gerhard for Ruby - Socks4 proxy with WWW::Mechanize and NET::HTTP::GETGerhard2009-12-09T05:57:10Z2009-12-09T06:15:35Z<p>I used this with no problems previously:</p>
<pre><code>agent = WWW::Mechanize.new
agent.set_proxy('10.84.48.33', '80')
page = agent.get(url)
</code></pre>
http://stackoverflow.com/questions/1864578/what-are-good-tools-for-using-model-driven-development-with-embedded-work/1865532#18655325Answer by Gerhard for What are good tools for using Model Driven Development with Embedded work?Gerhard2009-12-08T08:34:27Z2009-12-08T11:16:20Z<p>We have used <a href="http://www.sparxsystems.com.au/products/ea/" rel="nofollow">Enterprise Architect</a> and <a href="http://www.ibm.com/software/awdtools/rhapsody/" rel="nofollow">IBM Software - Rational Rhapsody</a>. We have used the build in code generation engine and our own code generation engine that generate code suitable to Do178B qualification. With Rational Rhapsody we targeted VX Works as well as our own OS. These tools uses UML models. Since it generates code you can do unit testing with what ever you used to tools that provide integration into these tools.</p>
<p><a href="http://www.esterel-technologies.com/products/scade-suite/" rel="nofollow">Scade</a> is also a option if you write safety critical software. Some of the other divisions in our company has used this successfully. It is very logic orientated so it is not able to do everything but it can generate up to 70% of the code for some projects. Using a qualified tool eliminates most of the testing. It has an model verification tool and if the model is correct then code is correct. It integrates in requirement and configuration management tools.</p>
<p>For non safety critical development by experienced developers it is difficult to say if using model driven development will provide you with any saving. It is worth trying, as technology matures and more developers get used to model based development, we will see a lot more of this in the embedded environment.</p>
http://stackoverflow.com/questions/996843/when-is-crc-more-appropriate-to-use-than-md5-sha1/1005937#10059372Answer by Gerhard for When is CRC more appropriate to use than MD5/SHA1?Gerhard2009-06-17T09:01:47Z2009-12-03T08:36:56Z<p>For CRC information on implementation, speed and reliability see <a href="http://www.ross.net/crc/crcpaper.html" rel="nofollow">A painless guide to CRC error detection algorithms</a>. It has everything on CRCs.</p>
<p>Unless somebody is going to try and modify your data maliciously and hide the change CRC is sufficient. Just use a "Good" (standard) polinomial.</p>
http://stackoverflow.com/questions/1830704/lua-certified-for-use-on-an-airframe-or-road-vehicle/1831552#18315524Answer by Gerhard for Lua certified for use on an airframe or road vehicle?Gerhard2009-12-02T08:50:10Z2009-12-03T05:40:31Z<p>DO178 Level D would be doubtful and higher would be impossible. The Lua VM uses lots of dynamic memory allocation. For Level A you need to show source to object code tracability. I don't see you doing that in Lua.</p>
<p>Also there is no ready made tools for everything you need. Doing everything yourself is not really an option once you realise all the work required on level C or higher. Using recognized tools with ready certification packs makes it a lot easier. Is there any statement and branch coverage tools for Lua? Is this tool qualified?</p>
<p>As you said certification is like case law and authorities know C and is not going to question anything if you use C. As soon as you use anything else you are opening yourself up for all kinds of questions about interpretation and implementation. </p>
<p>I would love to use Ruby on a aircraft but I know it is not going to happen.</p>
http://stackoverflow.com/questions/1833154/is-it-possible-to-download-a-platfrom-specific-ruby-gem-without-installing-it1Is it possible to download a platfrom specific Ruby gem without installing it?Gerhard2009-12-02T14:16:26Z2009-12-02T15:37:16Z
<p>I read a answer the <code>gem fetch</code> answer on this question <a href="http://stackoverflow.com/questions/1401653/is-it-possible-to-download-a-ruby-gem-without-installing-it-automatically">is-it-possible-to-download-a-ruby-gem-without-installing-it-automatically</a>. But windows I do not always get the windows gem.</p>
<p>Using <code>gem install gosu --remote</code> installs the windows version <code>Successfully installed gosu-0.7.15-x86-mswin32-60</code>.</p>
<p>When downloading using <code>gem fetch gosu</code> I get <code>Downloaded gosu-0.7.15</code> which is the linux version and can not be installed on my windows PC.</p>
<p>Asking for the specific gem with <code>gem fetch gosu-0.7.15-x86-mswin32-60</code> and similar tries yields <code>ERROR: Could not find gosu-0.7.15-x86-mswin32-60 in any repository</code></p>
<p>Any ideas as to how to get the correct version for my PC when suing fetch versus install?</p>
http://stackoverflow.com/questions/1819540/return-index-of-all-occurances-of-a-character-in-a-string-in-ruby1Return index of all occurances of a character in a string in rubyGerhard2009-11-30T12:29:39Z2009-12-01T06:41:10Z
<p>I am trying to return the index's to all occurrences of a specific character in a string using Ruby. A example string is <code>"a#asg#sdfg#d##"</code> and the expected return is <code>[1,5,10,12,13]</code> when seaching for <code>#</code> characters. The following code does the job but there must be a simpler way of doing this?</p>
<pre><code>def occurances (line)
index = 0
all_index = []
line.each_byte do |x|
if x == '#'[0] then
all_index << index
end
index += 1
end
all_index
end
</code></pre>
http://stackoverflow.com/questions/1819540/return-index-of-all-occurances-of-a-character-in-a-string-in-ruby/1824384#18243840Answer by Gerhard for Return index of all occurances of a character in a string in rubyGerhard2009-12-01T06:36:08Z2009-12-01T06:36:08Z<p>annother solution derived from FM's answer:</p>
<pre><code>s = "a#asg#sdfg#d##"
q = []
s.length.times {|i| q << i if s[i,1] == '#'}
</code></pre>
<p>I love that Ruby never has only one way of doing something!</p>
http://stackoverflow.com/questions/1823874/embedded-app-and-wearing-out-flash-disks/1824276#18242760Answer by Gerhard for Embedded app and wearing out flash disksGerhard2009-12-01T06:04:01Z2009-12-01T06:04:01Z<p>I have used a Compact Flash card in a embedded system with great success. It has a onboard controller that does all the thinking for you. Not all Compact Flash controllers are equal so get one that is a recent design and was intended to be used as a hard drive replacement as they have better wear levelling algorithms.</p>
http://stackoverflow.com/questions/1808499/about-watch-dog-timer/1818068#18180680Answer by Gerhard for About Watch Dog TimerGerhard2009-11-30T06:02:40Z2009-11-30T06:02:40Z<p>The best practice would be to have the watchdog activate automatically on power up. If your hardware is not designed for that switch it on as soon as possible. Generally I set the watchdog up for long duration during bootup but once I am past boot up I go for a short time out and service the watchdog regularly.</p>
<p>You might not always be around to reset a board that hanged after a plant shut down and restart at a remote location. Or the board is located in a inaccessible basement crawl space and it did not restart after a power dip. Lab easy practices is not real world best practices. </p>
<p>Try and design your hardware so that your software can check the reset cause at bootup and report. If you get a watchdog timeout you need to know because it is a failure in your system and ignoring it can cause problems later.</p>
<p>It is easier to debug with the watchdog off but during development regularly test with the watchdog on to ensure everything is on track.</p>
http://stackoverflow.com/questions/1795257/high-speed-tracing/1795277#17952774Answer by Gerhard for high speed tracingGerhard2009-11-25T07:41:54Z2009-11-25T10:37:13Z<p>You probability want to determine why your RAM overflows when logging, you don't need much logging if you log only what you need to see. You can log into a circular buffer to prevent overflow. With Ram logging you probably can run at close to true speed. Logging to a communications link added latency, interrupts and task switches to the system.</p>
<p>Don't log everything from the start. Log only enough to understand when your problem occurs. Once you know when your problem occur log more detail as soon as the problem section is entered.</p>
<p>If you really want to solve the problem in no time get a <a href="http://www.ghs.com" rel="nofollow">Green Hills</a> Trace pod. Your hardware must be designed to allow the Pod to be connected and it is terribly expensive. However the results is incredible ...</p>
http://stackoverflow.com/questions/1750311/list-of-multicore-embedded-cpus/1754752#17547520Answer by Gerhard for List of multicore embedded CPUsGerhard2009-11-18T09:31:48Z2009-11-18T09:31:48Z<p>Some of the <a href="http://www.appliedmicro.com/Embedded/" rel="nofollow">AMCC / Applied Micro</a> PowerPC cores is designed to allow for multicore operation use two physical CPUs on board. These processor are more not very solutions specific.</p>
<p><a href="http://www.freescale.com/webapp/sps/site/homepage.jsp?code=QORIQ%5FHOME" rel="nofollow">Freescale</a> has Powerpc base embedded multi core processors that is communication application specific. These go up to 8 cores.</p>
http://stackoverflow.com/questions/910220/any-good-regular-expression-creator-software-or-online-tools-to-create-regular-ex/1742271#17422711Answer by Gerhard for Any good regular expression creator software or online tools to create Regular expressions..Gerhard2009-11-16T13:42:01Z2009-11-16T13:42:01Z<p>I use <a href="http://www.rubular.com/" rel="nofollow">Rubular</a>. It is not just for Ruby.</p>
http://stackoverflow.com/questions/1629123/to-write-a-bootloader-in-c-or-c/1629598#16295986Answer by Gerhard for To write a bootloader in C or C++?Gerhard2009-10-27T09:16:50Z2009-10-27T09:16:50Z<p>I would use C unless there is a specific reason to use C++. For a Bootloader you are not really going to need OO.</p>
<p>Use the simplest tool that will accomplish the job. </p>
http://stackoverflow.com/questions/1617398/problem-comprehending-c-style-ruby-loops/1623426#16234260Answer by Gerhard for Problem comprehending C-style ruby loopsGerhard2009-10-26T06:57:17Z2009-10-26T06:57:17Z<p>The problem with the end statement is related to <code>i++</code>. Ruby wants to add something. There is no increment operator in Ruby. You need to use <code>i += 1</code>. With that change you can use your <em>C style loop</em> as is.</p>
http://stackoverflow.com/questions/1588236/read-file-comments-from-a-zip-file-in-ruby1Read file comments from a zip file in RubyGerhard2009-10-19T11:48:22Z2009-10-21T19:04:36Z
<p>I am doing <a href="http://www.pythonchallenge.com/" rel="nofollow">Python challenge</a> in Ruby. I need to read the file contents and comments from a Zip file. The content is no problem with the <a href="http://rubyzip.sourceforge.net/" rel="nofollow">RubyZip</a> gem but I am unable to get the comments out. Any ideas?</p>
http://stackoverflow.com/questions/1600702/ruby-how-to-convert-a-string-to-binary-and-write-it-to-file0Ruby: How to convert a string to binary and write it to fileGerhard2009-10-21T13:03:34Z2009-10-21T13:24:36Z
<p>The data is a UTF-8 string:</p>
<pre><code>data = 'BZh91AY&SY\x94$|\x0e\x00\x00\x00\x81\x00\x03$ \x00!\x9ah3M\x13<]\xc9\x14\xe1BBP\x91\xf08'
</code></pre>
<p>I have tried <code>File.open("data.bz2", "wb").write(data.unpack('a*'))</code> with all kinds of variations for unpack put have had no success. I just get the string in the file not the UTF-8 encoded binary data in the string.</p>
http://stackoverflow.com/questions/1592457/how-to-debug-a-program-without-a-debugger/1592685#15926851Answer by Gerhard for How to debug a program without a debugger?Gerhard2009-10-20T05:46:12Z2009-10-20T05:46:12Z<p>Peer review. You have been looking at the code for 8 hours and your brain is just showing you what you want to see in the code. A fresh pair of eyes can make all the difference.</p>
<p>Version control. Especially for large teams. If somebody changed something you rely on but did not tell you it is easy to find a specific change set that caused your trouble by rolling the changes back one by one. </p>
http://stackoverflow.com/questions/1227045/c-code-coverage-tool-for-weird-target-platform/1496398#14963980Answer by Gerhard for C++ code coverage tool for weird target platformGerhard2009-09-30T06:27:35Z2009-10-04T10:26:43Z<p>I have used <a href="http://www.ipl.com/products/tools/pt400.uk.php" rel="nofollow">Cantata</a>. It works with Metroworks. It instruments your code so your application will no run at full speed. You just need rewrite the IO functions so output happens using the custom proprietary API.</p>
http://stackoverflow.com/questions/1487579/use-of-r1-stack-pointer-when-handling-external-exception-on-powerpc/1496371#14963711Answer by Gerhard for Use of r1 stack pointer when handling external exception on PowerPCGerhard2009-09-30T06:19:02Z2009-09-30T06:19:02Z<p>I have saved the current context to the current stack with out any problems.</p>
<p>You need to differentiate between exceptions from which you would want to return from and exceptions that are "Fatal Failures" from which there is no return or that stack can not be trusted.
If you are not going to return you have two options. Restart the stack and discard everything or if you have more RAM switch to an exception stack so the regular stack can be printed or ...</p>
http://stackoverflow.com/questions/1157129/interesting-problem-using-printf-scanf-only/1454568#14545682Answer by Gerhard for Interesting problem using printf & scanf only...Gerhard2009-09-21T13:43:04Z2009-09-21T13:55:45Z<p>I have used a unit converter previously.</p>
<ul>
<li>Convert temperatures to and from
Celsius, Fahrenheit, and Kelvin. </li>
<li>Change the base as mentioned by
<a href="http://stackoverflow.com/questions/1157129/interesting-problem-using-printf-scanf-only/1157147#1157147">Alex</a>.</li>
<li>Cooking weights and measures has lots of interesting conversions.</li>
</ul>
http://stackoverflow.com/questions/1403580/why-cant-cygwin-cvs-read-the-cvs-password-file-in-a-ruby-perl-script0Why can't Cygwin CVS read the CVS password file in a Ruby/Perl script?Gerhard2009-09-10T05:56:21Z2009-09-17T15:20:36Z
<p>On the Windows command line and cygwin bash I can execute the following without problems:</p>
<pre><code>cvs login
cvs -Q log -N -rVersion_01_00
</code></pre>
<p>A ruby script in the same directory contains the following:</p>
<pre><code>`cvs login`;
`cvs -Q log -N -rVersion_01_00`;
</code></pre>
<p>When I execute the ruby script on the Windows command line I get the following error:</p>
<pre><code>cvs log: warning: failed to open /cygdrive/c/Documents and Settings/za100744/.cvspass for reading: No such file or directory
</code></pre>
<p>If I run the script in a cygwin bash shell I get the same output I would as when I type in the commands manually.</p>
<p>I have no idea as to what is going wrong. The path generated by the Ruby script is wrong since it is a cygwin path but it works correctly directly on the command line. I use cvs that came as part of cygwin:</p>
<pre><code>which cvs
cvs is an external : C:\cygwin\bin\cvs.exe
</code></pre>
<p>Ruby is the one-click installer version:</p>
<pre><code>which ruby
/cygdrive/c/Ruby/bin/ruby
</code></pre>
<p>It seems like cvs under Ruby can not resolve /cygdrive/c to c: but works OK from the cmdline.</p>
<p>Perl gives me exactly the same problem.</p>
<pre><code>my $str = "cvs -Q log -N -r$cvs_tag|";
open(CVS_STATUS, $str) or die "\n##ERROR##";
</code></pre>
http://stackoverflow.com/questions/1403890/how-do-you-implement-a-class-in-c/1404249#14042492Answer by Gerhard for How do you implement a class in C?Gerhard2009-09-10T09:19:03Z2009-09-17T08:21:21Z<p>Also see <a href="http://stackoverflow.com/questions/351733/can-you-write-object-oriented-code-in-c">this answer</a> and <a href="http://stackoverflow.com/questions/415452/object-orientation-in-c">this one</a></p>
<p>It is possible. It always seems like a good idea at the time but afterwards it becomes a maintenance nightmare. Your code become littered with pieces of code tying everything together. A new programmer will have lots of problems reading and understanding the code if you use function pointers since it will not be obvious what functions is called. </p>
<p>Data hiding with get/set functions is easy to implement in C but stop there. I have seen multiple attempts at this in the embedded environment and in the end it is always a maintenance problem.</p>
<p>Since you all ready have maintenance issues I would steer clear.</p>
http://stackoverflow.com/questions/1424635/is-there-a-programmatic-way-to-check-stack-corruption/1431141#14311412Answer by Gerhard for Is there a programmatic way to check stack corruptionGerhard2009-09-16T05:43:45Z2009-09-16T05:43:45Z<p>Checkout these similar questions: <a href="http://stackoverflow.com/questions/1185997/handling-stack-overflows-in-embedded-systems/1186692">handling stack overflows in embedded systems</a> and <a href="http://stackoverflow.com/questions/960389/how-can-i-visualise-the-memory-sram-usage-of-an-avr-program/">how can I visualise the memory sram usage of an avr program</a>.</p>
<p>Personally I would use the Memory Management Unit of your Processor it it has one. It can do memory checking for you with minimal software overhead.</p>
<p>Set up a memory area in the MMU that will be used for the stack. It should be bordered by two memory areas where the MMU does not allow access. When your application is running you will receive a exception/interrupt as soon as you overflow the stack.</p>
<p>Because you get a exception at the moment the error occur you know exactly where in your application the stack went bad. You can look at the call stack to see exactly how you got to where you are. This makes it a lot easier to find your problem than trying to figure out what is wrong by detecting your problem long after it happened.</p>
<p>A MMU can also detect zero pointer accesses if you disallow memory access to the bottom part of your ram.</p>
<p>If you have the source of the RTOS you can build MMU protection of the stack and heap into it.</p>
http://stackoverflow.com/questions/1403580/why-cant-cygwin-cvs-read-the-cvs-password-file-in-a-ruby-perl-script/1425882#14258821Answer by Gerhard for Why can't Cygwin CVS read the CVS password file in a Ruby/Perl script?Gerhard2009-09-15T08:29:00Z2009-09-15T08:29:00Z<p>Using a <a href="http://ftp.gnu.org/non-gnu/cvs/binary/stable/x86-woe/" rel="nofollow">windows native compiled CVS</a> solves the problem. It is not ideal since I have to send a cvs executable with the script for users that has cygwin CVS but its better than nothing.</p>
http://stackoverflow.com/questions/1223710/we-have-to-use-c-for-performance-reasons/1227383#12273836Answer by Gerhard for We have to use C "for performance reasons"Gerhard2009-08-04T12:59:36Z2009-09-11T12:19:16Z<p>For C:<br></p>
<ul>
<li>C is often the only language that is supported by compilers for a processors.<br></li>
<li>Most of the libraries and example code is probability also in C.<br></li>
<li>Most embedded developers have years of C experience but very little experience in anything else.</li>
<li>Allows direct hardware interfacing and manual memory management.</li>
<li>Easy integration with assembly language.</li>
</ul>
<p>C is going to be around for many years to come. In embedded development its a monopoly that smothers any attempt at change. A language that need a VM like Java or Lua is never going to go mainstream in the embedded environment. A compiled language might stand a chance if it provide compelling new features.</p>
http://stackoverflow.com/questions/1376856/convert-asm-to-c-not-reverse-engineer/1392207#1392207-1Answer by Gerhard for convert ASM to C (not reverse engineer)Gerhard2009-09-08T05:48:37Z2009-09-09T11:44:02Z<p>It is difficult to convert a function from asm to C but doable by hand. Converting an entire program will give you code that is impossible to understand since to much of the structure was lost during compilation. Without meaningful variable and function names the resultant C code is still very difficult to understand.</p>
http://stackoverflow.com/questions/1833154/is-it-possible-to-download-a-platfrom-specific-ruby-gem-without-installing-it/1833685#1833685Comment by Gerhard on Is it possible to download a platfrom specific Ruby gem without installing it?Gerhard2009-12-03T08:29:57Z2009-12-03T08:29:57Z<code>gem fetch gosu --platform x86-mswin32</code> workshttp://stackoverflow.com/questions/1819540/return-index-of-all-occurances-of-a-character-in-a-string-in-ruby/1819585#1819585Comment by Gerhard on Return index of all occurances of a character in a string in rubyGerhard2009-11-30T13:10:44Z2009-11-30T13:10:44ZCool, however I am not sure how this works.http://stackoverflow.com/questions/1795257/high-speed-tracing/1795720#1795720Comment by Gerhard on high speed tracingGerhard2009-11-26T05:28:55Z2009-11-26T05:28:55ZPersonally I think that using a logic analyser to debug your software is a waste of time but I have done done it myself a few times ... when running out of options.http://stackoverflow.com/questions/1588236/read-file-comments-from-a-zip-file-in-ruby/1602929#1602929Comment by Gerhard on Read file comments from a zip file in RubyGerhard2009-10-22T05:26:26Z2009-10-22T05:26:26ZWhat I implemented was:
myzip = Zip::ZipFile.open("channel.zip")
comment += myzip.find_entry("#{name}.txt").commenthttp://stackoverflow.com/questions/1600702/ruby-how-to-convert-a-string-to-binary-and-write-it-to-file/1600797#1600797Comment by Gerhard on Ruby: How to convert a string to binary and write it to fileGerhard2009-10-21T13:31:29Z2009-10-21T13:31:29ZThanks. I solved it my self when I read the comment from sepp2k. The devil is in the details.http://stackoverflow.com/questions/1600702/ruby-how-to-convert-a-string-to-binary-and-write-it-to-file/1600723#1600723Comment by Gerhard on Ruby: How to convert a string to binary and write it to fileGerhard2009-10-21T13:13:03Z2009-10-21T13:13:03ZI need the binary values in the file not the string. This code is exactly the same as my code.http://stackoverflow.com/questions/1592457/how-to-debug-a-program-without-a-debugger/1592537#1592537Comment by Gerhard on How to debug a program without a debugger?Gerhard2009-10-20T05:40:34Z2009-10-20T05:40:34ZAlways using a debugger leads to a undesirable mindset of just stepping through code continuously until you see something. A debugger should only be used once you understand the problem and know where the problem lies. Some code (interaction between threads) is very hard to debug.http://stackoverflow.com/questions/1157129/interesting-problem-using-printf-scanf-only/1157165#1157165Comment by Gerhard on Interesting problem using printf & scanf only...Gerhard2009-09-21T13:46:32Z2009-09-21T13:46:32ZYou will need conditional and loop statements for most of these. First time programming students will not know how to solve these type of problems.http://stackoverflow.com/questions/1424635/is-there-a-programmatic-way-to-check-stack-corruption/1424726#1424726Comment by Gerhard on Is there a programmatic way to check stack corruptionGerhard2009-09-16T05:47:27Z2009-09-16T05:47:27ZThis is not going to help on an embedded platformhttp://stackoverflow.com/questions/1403580/why-cant-cygwin-cvs-read-the-cvs-password-file-in-a-ruby-perl-scriptComment by Gerhard on Why can't Cygwin CVS read the CVS password file in a Ruby/Perl script?Gerhard2009-09-16T05:16:56Z2009-09-16T05:16:56ZRuby and perl are non Cygwin.http://stackoverflow.com/questions/1403580/why-cant-cygwin-cvs-read-the-cvs-password-file-in-a-ruby-perl-script/1403978#1403978Comment by Gerhard on Why can't Cygwin CVS read the CVS password file in a Ruby/Perl script?Gerhard2009-09-10T08:17:42Z2009-09-10T08:17:42ZThe path is internal to the CVS executable, so cygpath.exe will not help. But I am filing the info for future use.http://stackoverflow.com/questions/1403580/why-cant-cygwin-cvs-read-the-cvs-password-file-in-a-ruby-perl-script/1403695#1403695Comment by Gerhard on Why can't Cygwin CVS read the CVS password file in a Ruby/Perl script?Gerhard2009-09-10T08:01:52Z2009-09-10T08:01:52ZThe file exists and is accessible. It seems like cvs under ruby can not resolve /cygdrive/c to <code>c:</code> but works OK from the cmdline.http://stackoverflow.com/questions/1376856/convert-asm-to-c-not-reverse-engineerComment by Gerhard on convert ASM to C (not reverse engineer)Gerhard2009-09-08T05:46:19Z2009-09-08T05:46:19ZFrankly, give a reason why it must be possible.http://stackoverflow.com/questions/1333514/gsl-libraries-on-the-spuComment by Gerhard on GSL Libraries on the SPU Gerhard2009-09-01T12:55:51Z2009-09-01T12:55:51ZWhat is a SPU? http://stackoverflow.com/questions/1345334/historical-debuggingComment by Gerhard on Historical debuggingGerhard2009-09-01T06:30:09Z2009-09-01T06:30:09ZAny specific language in mind?