User Oren Shemesh - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T19:08:11Zhttp://stackoverflow.com/feeds/user/27333http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/558216/plese-help-me-write-a-function-to-determine-if-two-numbers-are-nearly-equal-when/558359#5583592Answer by Oren Shemesh for Plese help me write a function to determine if two numbers are nearly equal when rounded to n significant decimal digitsOren Shemesh2009-02-17T19:24:29Z2009-02-17T19:24:29Z<p>I believe your question is not enough well defined, and the unit-tests you present prove it:</p>
<p>If by 'round to N sig-fig decimal places' you mean 'N decimal places to the right of the decimal point', then the test "assert nearlyequal(1e9, 1e9 + 1 , 5)" should fail because even when you round 1000000000 and 1000000001 to 0.00001 accuracy, they are still different.</p>
<p>And if y 'round to N sig-fig decimal places' you mean 'The N most significant digits, regardless of the decimal point', then the test "assert nearlyequal(-1e-9, 1e-9, 5)" should fail, because 0.000000001 and -0.000000001 are totally different when viewed this way.</p>
<p>If you meant the first definition, then the first answer on this page (by Triptych) is good.
If you meant the second definition, please say it, I promise to think about it :-)</p>
http://stackoverflow.com/questions/440694/fortrue-different-from-whiletrue/440700#4407007Answer by Oren Shemesh for for(;true;) different from while(true)?Oren Shemesh2009-01-13T20:40:43Z2009-01-13T20:40:43Z<p>Yes, it is just taste.</p>
http://stackoverflow.com/questions/392142/how-would-you-list-the-available-functions-etc-contained-within-a-compiled-librar/392150#3921502Answer by Oren Shemesh for How would you list the available functions etc contained within a compiled library?Oren Shemesh2008-12-24T20:00:58Z2008-12-24T20:00:58Z<p>use this command:</p>
<p>objdump -t "your-library"</p>
<p>It will print more than you want - not just function names, but the entire symbol table. Check the various attributes of the symbols you get, and you will be able to sort out the functions from variables and stuff.</p>
http://stackoverflow.com/questions/276283/how-exactly-does-cin-work-with-stdin/276293#2762932Answer by Oren Shemesh for How exactly does cin work with stdinOren Shemesh2008-11-09T18:42:26Z2008-11-09T18:42:26Z<p>When you use operator >> from stdin to an integer, it reads an integer from the input stream. If the input stream is empty, it waits until it finds an integer. In your case, it is simply not empty. In the first step, it reads the two integers, and in the second step, it finds the next two integers so it does not need to wait.</p>
http://stackoverflow.com/questions/255813/free-personal-source-control-system/256066#2560665Answer by Oren Shemesh for Free "Personal" source control system?Oren Shemesh2008-11-01T20:28:38Z2008-11-01T21:47:45Z<p>Perforce (www.perforce.com) is intuitive, fast and great, and it is free for two users (With up to five workspaces). Good Linux and Windows support. Super-simple installation.</p>
<p>If you install the server on the same machine as the client (Which would be your PC), then you do not need the grid to use it (But this is probably true for any source-control product, not just Perforce)</p>
http://stackoverflow.com/questions/205348/source-code-analysis-what-do-you-do/229318#2293180Answer by Oren Shemesh for Source Code Analysis - what do you do?Oren Shemesh2008-10-23T10:59:25Z2008-10-23T10:59:25Z<p>If I understand your question correctly, the tool you need most is a good cross-referencing editor.</p>
<p>Where I work we use Visual Slick Edit, which in my opinion is a fantastic editor for C/C++ (And probably for other languages as well). You create a workspace, add the entire source code tree to it, wait a few minutes for it to create a tag file - and whops !
For every function call, you can easily just to the definition, or see the list of all other caller for that function. These two features are great for finding your way around a new code base. Is has many more features which are useful for a source-code browsing, but these two basic abilities are what seems to me like the core things you need.</p>
<p>I am told that Eclipse can also handle large C/C++ projects, and offers roughly the same functionality with respect to jumping to definitions/references, but I have not used it personally.</p>
http://stackoverflow.com/questions/214700/why-does-a-pointer-change-itself-during-function-transition/214709#2147091Answer by Oren Shemesh for Why does a pointer change itself during function transition?Oren Shemesh2008-10-18T07:22:53Z2008-10-18T07:22:53Z<p>In general, this should never happen. Problems that can cause this type of symptoms include incompatibility in the compilation options between the calling and the caller modules, bad casting of member function pointers, or simply compiler bugs.
You need to provide a lot more details about your problem: Show the real code, specify your compiler, specify what are the debug vs. production compilation flags, etc.</p>
http://stackoverflow.com/questions/196897/locking-executing-files-windows-does-linux-doesnt-why/196908#19690834Answer by Oren Shemesh for Locking Executing Files: Windows does, Linux doesn't. Why?Oren Shemesh2008-10-13T07:18:01Z2008-10-13T07:18:01Z<p>Linux has a reference-count mechanism, so you can delete the file while it is executing, and it will continue to exist as long as some process (Which previously opened it) has an open handle for it. The directory entry for the file is removed when you delete it, so it cannot be opened any more, but processes already using this file can still use it. Once all processes using this file terminate, the file is deleted automatically.</p>
<p>Windows does not have this capability, so it is forced to lock the file until all processes executing from it have finished.</p>
<p>I believe that the Linux behavior is preferable. There are probably some deep architectural reasons, but the prime (and simple) reason I find most compelling is that in Windows, you sometimes cannot delete a file, you have no idea why, and all you know is that some process is keeping it in use. In Linux it never happens.</p>