User avp - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T11:04:58Zhttp://stackoverflow.com/feeds/user/20514http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1841014/uniform-random-monte-carlo-distribution-on-unit-sphere0Uniform random (Monte-Carlo) distribution on unit sphere.avp2009-12-03T16:17:42Z2009-12-05T08:52:36Z
<p>Hi!<br>
I need a clarification with algorithm generating random values for my pet ray-tracer.<br>
I emit rays from one point. And I have the problem with distribution of these rays: I need the distribution to be uniform, but it isn't... </p>
<p>The problem I face now is that the distribution being uniform initially is not uniform after my distortions of the space of results. </p>
<p>So for example, I generate r and t angles if the polar coordinate system. The distribution is not uniform and it cannot be uniform: space close to each pole has much more density of results than, say, close to equator. The reason is pretty clear: I convert uniformly distributed points from cylindrical space to the spherical. And I distort results. The same problem is if I normalize points generated randomly in the cube. </p>
<p>My idea now is this: I want to create a tetrahedron, normalize its vertexes, split each face (triangle) with the point in the middle, normalize it and repeat recursively until I have enough points. Then I "distort" these points a little bit. Then I normalize them again. That's it. </p>
<p>I understand that this method is not pure mathematical Monte-Carlo method itself, because I do not use random distribution in any step except for the last one. And I do not like this solution for this complexity. </p>
<p>Can anyone suggest anything more simple yet still </p>
<ul>
<li>random</li>
<li>uniform</li>
<li>fast</li>
<li>simple</li>
</ul>
<p>Thanks!</p>
<p><strong>EDIT:</strong><br>
I need a fast method, not just the correct one. That's why I'm asking about Monte-Carlo. Answers provided are correct, but not fast. The method with tetrahedron is fast, but not very "random" => incorrect.<br>
I really need something more suitable.</p>
http://stackoverflow.com/questions/1841863/size-of-a-structure-in-c/1841912#18419120Answer by avp for Size of a structure in Cavp2009-12-03T18:29:57Z2009-12-03T18:29:57Z<p>Aligning to 6 bytes is not weird, because it is aligning to addresses multiple to 4.</p>
<p>So basically you have 34 bytes in your structure and the next structure should be placed on the address, that is multiple to 4. The closest value after 34 is 36. And this padding area counts into the size of the structure.</p>
http://stackoverflow.com/questions/1841007/templates-c-error-could-not-deduce-template-argument/1841119#18411190Answer by avp for Templates C++ error : could not deduce template argumentavp2009-12-03T16:29:54Z2009-12-03T16:29:54Z<p>Instead of passing the pointer: </p>
<pre><code>printInstrumentDetail(const I * const a)
</code></pre>
<p>you can pass the reference: </p>
<pre><code>printInstrumentDetail(const I& a)
</code></pre>
<p>Everything else stays unchanged.</p>
http://stackoverflow.com/questions/1807069/class-design-problem/1807746#18077460Answer by avp for Class Design Problemavp2009-11-27T09:47:04Z2009-11-27T09:47:04Z<p>I recommend the <a href="http://en.wikipedia.org/wiki/Strategy_pattern" rel="nofollow">Strategy pattern</a><br>
It looks like what you need.</p>
<p>Also, as far as I understood, you can separate the graphical setup data into independent structure.<br>
I think, this makes sense as well: you can use these presets later for different graphs. </p>
<p>Good luck!</p>
http://stackoverflow.com/questions/1807296/write-a-linked-listbased-variant-of-q2-following-will-be-the-function-prototyp/1807694#18076941Answer by avp for Write a Linked Listābased variant of Q2. Following will be the function prototype: avp2009-11-27T09:37:04Z2009-11-27T09:37:04Z<p>Dear Osama!<br>
You have two possibilities.<br>
Either you can iterate through the list (with "while") looking for the necessary element and return the found value afterwards, or you can recursively call the same function on the list which contains one element less each step and then look only for the first element of the list. In this case you should call this function unless you have no more elements or you have the necessary element found.<br>
If you provide the code you have created, the society definitely will help you to fix it.</p>
http://stackoverflow.com/questions/1807523/instantiation-of-function-object-with-different-inline-function-definitions-depen/1807645#18076450Answer by avp for Instantiation of function object with different inline function definitions depends on order of linkageavp2009-11-27T09:24:55Z2009-11-27T09:24:55Z<p>Linker deals with mangled names.
Please have a look here: <a href="http://en.wikipedia.org/wiki/Name%5Fmangling" rel="nofollow">http://en.wikipedia.org/wiki/Name%5Fmangling</a></p>
<p>So, as Johannes said, the behaviour is undefined, but details may be clarified:<br>
If pong() is defined outside of the namespace, its name becomes unique and the linker complains correctly.</p>
<p>But if the name is hidden into the namespace, which is overlapped with the same one from another translation unit - as you have figured out - the linker does not complain. It just uses one symbol instead.<br>
That's it. </p>
<p>I think, it is not specified and is implementation-specific for any compiler/linker.</p>
http://stackoverflow.com/questions/1741579/what-benefits-do-you-get-from-your-blog/1741652#17416521Answer by avp for What benefits do you get from your blog?avp2009-11-16T11:39:02Z2009-11-27T08:57:30Z<p>For me, it is just another way to communicate.<br>
It does not matter if you read or write. Anyway, you communicate.<br>
And I found that communication forces me to learn and to <em>challenge</em>.<br>
Writing and reading are so different, that it would take too much place to describe the difference... But the main reason still remains:</p>
<p><strong>communicate => challenge.</strong></p>
http://stackoverflow.com/questions/1796629/compile-issues-based-on-different-platforms/1796786#17967860Answer by avp for Compile issues based on different platformsavp2009-11-25T13:03:31Z2009-11-25T13:03:31Z<p>It is really unclear what is going on in your case, but I am pretty sure that you have different preprocessor scopes in your headers for different platforms. If you look in your header files, you can find the direct dependency on platform, like this:</p>
<pre><code> #if( OS == QNX )
#include <sys/types.h>
#elif( OS == WIN32 )
#include <windows.h>
#endif
</code></pre>
<p>I believe, this should be a root of the problem.</p>
http://stackoverflow.com/questions/1755384/please-recommend-good-reading-about-squirrel0Please recommend good reading about Squirrelavp2009-11-18T11:30:04Z2009-11-18T18:39:16Z
<p>Please, share your favorite links on this language where one can learn the best of it.</p>
<p>And also, please describe in few words the most important features of this language differing it form others languages like LUA.</p>
<p>I just cannot understand why to reinvent another LUA/python/etc. Maybe I just miss something...</p>
<p>But I like the idea of performance+scripting, so I have to understand it!</p>
http://stackoverflow.com/questions/1736734/circle-circle-collision/1749070#17490700Answer by avp for circle-circle collisionavp2009-11-17T13:57:17Z2009-11-17T13:57:17Z<p>I agree with provided answers, they are very good.<br>
I just want to point you a small pitfall: if the speed of balls is high, you can just miss the collision, because circles never intersect for given steps.<br>
The solution is to solve the equation on the movement and to find the correct moment of the collision. </p>
<p>Anyway, if you would implement your solution (comparisons on X and Y axes) you'd get the good old ping pong! <a href="http://en.wikipedia.org/wiki/Pong" rel="nofollow">http://en.wikipedia.org/wiki/Pong</a><br>
:)</p>
http://stackoverflow.com/questions/1710837/managing-cache-invalidation/1741576#17415760Answer by avp for Managing Cache Invalidationavp2009-11-16T11:22:45Z2009-11-16T17:29:07Z<p>For general solutions you can look at the link provided by Juha.</p>
<p>But following your question, I'd like to describe, how it is done in our project.<br>
We do not use any general solution for caches. Our cache grew eventually. Initially we had no intention to use the cache at all. But later the cache was born. As the cache was added to the system lately, it is not aware of any "database" or other "smart things". Instead, we carefully check if somebody changes the cache. So, I'd call our cache "algorithm-driven". </p>
<p>(The only really necessary general thing is the functionality to treat the miss in the cache.<br>
And another thing worth attention is identification with clients: if you have multiple clients, one cache can be not enough... But for both problems only specific solutions were added, not general!)</p>
<p>I know, to describe such a basic functionality may sound silly. One may say that "we had to use the normal cache in the first place". But you know, in reality sometimes some things are just out of your control and you just have to do the best you can. </p>
<p>So to summarize: we need no general solution. Our algorithms control the cache. This keeps the cache small (both in code and in memory during run time). That is our approach.</p>
http://stackoverflow.com/questions/188488/in-emacs-how-to-switch-to-other-buffer1In Emacs how to switch to other buffer?avp2008-10-09T18:16:37Z2009-10-31T19:58:02Z
<p>The problem is following: I want to automate the way my emacs starts.
It has to be split in two buffers and the slime-repl has to be started in the smallest (bottom) buffer. Plus, I want my file to be opened in the bigger (upper) buffer.
In my .emacs there are lines:</p>
<pre><code>(slime)
...
(split-window-vertically -6)
(switch-to-buffer (other-buffer))
(find-file "g:/Private/pa/pa2.lsp")
</code></pre>
<p>SLIME opens o.k. in the bottom buffer, but the file is opened in one of the background buffers, while I want it to be in front.</p>
<p>How to fix this?</p>
http://stackoverflow.com/questions/147918/sbcl-on-vista-crashes-do-you-know-how-to-make-it-work3SBCL on Vista crashes. Do you know how to make it work?avp2008-09-29T08:22:13Z2009-10-03T01:03:27Z
<p>I've searched a lot for an answer for this question in the web: they say it's true, SBCL doesn't work under Vista.
But I really need to work with lisp on my home Vista laptop and VM doesn't help really...
And CL is not so interesting because of speed...</p>
<p>If you have any recommendation, please share!</p>
http://stackoverflow.com/questions/1458835/rendering-large-numbers-of-meshes-objects/1458986#14589861Answer by avp for Rendering large numbers of meshes (objects)avp2009-09-22T09:16:00Z2009-09-22T09:16:00Z<p>I am not sure if this is your case, but what about impostors? As far as I remember, one can use 3D texture or something like that to fake a very large amount of geometry data. This can be just your case.<br />
It is used for rendering of the forests and the stuff like that.</p>
http://stackoverflow.com/questions/239368/recommend-a-laptop-for-programming-under-linux-ubuntu5Recommend a laptop for programming under linux (Ubuntu).avp2008-10-27T09:00:34Z2009-09-11T16:05:24Z
<p>I want to buy a laptop for programming under linux and I have no idea what specific problems can appear (like "no drivers for device", "impossible to hibernate" and so on...)</p>
<p>What should I think of when selecting new laptop for linux?</p>
<p>I will run Ubuntu, C++, SBCL, ghc.
This laptop is not gonna be graphics-oriented.</p>
<p>I've already owned Asus A9, Fujitsu-Siemens Amilo Li1718 and Samsung R40plus laptops and neither of them were good enough. All the time some problems with drivers appeared.</p>
<p>My requirements are:</p>
<ul>
<li><strong>long battery life;</strong> </li>
<li><strong>good drivers support for linux (Ubuntu);</strong> </li>
<li><strong>price not higher than $1500</strong> (so MacBook is not an option).</li>
</ul>
<p>About other requirements I would be glad to accept your opinion.</p>
<p>P.S. I've read <a href="http://stackoverflow.com/questions/9157/what-is-the-best-laptop-for-programmers">what-is-the-best-laptop-for-programmers</a>, but it doesn't answer my question...</p>
http://stackoverflow.com/questions/1368994/please-recommend-the-dictionary-application-or-the-file-format-to-start-with0Please recommend the dictionary application or the file format to start with.avp2009-09-02T17:09:05Z2009-09-04T18:49:48Z
<p>I want to write a simple application like the "stardict" (but not so huge), that searches for the phrase in the dictionary and provides the corresponding value. </p>
<p>I guess that it is kind of "bicycle" and that it was done many times by different people... But the thing is that all the suitable open software, that is available in the web is the "stardict" and it is just incredibly ugly for me personally.<br />
I think that I can write some back-end, that searches for articles in the dictionary and just provides the result in plain form. And the second app, the front-end would just present the result on the screen in acceptable form. </p>
<p><strong>Please recommend the dictionary application the file format to start with, I just want to hear suggestions from my fellow programmers.</strong> </p>
<p>Requirements: <em>free, open, has converters to and from popular formats</em>.</p>
<p>P.S. The Apple's "Dictionary" would be just perfect, but it cannot search for the phrase. So if anyone knows how to extend it with "plugins", just let me know. This app is not free, but it is acceptable also.</p>
http://stackoverflow.com/questions/1378245/test-printf-implementation/1379084#13790840Answer by avp for Test printf implementationavp2009-09-04T12:58:47Z2009-09-04T12:58:47Z<p>I would recommend to test it in the following way: use sprintf() to produce some testing templates and compare them to your "correct" one. </p>
<p>I did something like this using fprintf (just to avoid the caching in our embedded system). </p>
<p>I think that results would not differ for the printf and sprintf: the formatting algorithm is the same.</p>
http://stackoverflow.com/questions/1373062/what-are-the-known-c-c-optimizations-for-gcc/1373182#13731821Answer by avp for What are the known C/C++ optimizations for GCCavp2009-09-03T12:40:54Z2009-09-03T12:40:54Z<p>Well, there are two kinds/approaches to the optimization.<br />
First, one can optimize the architecture. You know, binary search instead of the bubble one and so on :) But seriously, I hope this point is clear.<br />
And the second, technical: one uses the profiler in any form and looks for the bottlenecks. Then, when bottlenecks are found, optimization is necessary only for them. </p>
<p>It is well known, that premature optimization is the root of the evil, so just don't care about minor tweaks like types/loops/virtuals-or-not/and so on. Mostly it is not so important while takes a lot of time. IMHO, the psychological impact is much higher here than the real one.<br />
Also, you can talk to game developers: they are really professional in this and I guess that they would repeat my words: optimize only what is necessary to optimize and then optimize the architecture of the problematic block.<br />
P.S. Also CPUs are different and your optimization can be just the waste of time for some of them...</p>
http://stackoverflow.com/questions/794462/posix-threads-experience-or-recommend-better-one2POSIX threads experience? (Or recommend better one)avp2009-04-27T17:24:08Z2009-05-15T00:42:31Z
<p>I am looking for lightweight multi-threading framework for C++. I found POSIX Threads.<br />
Please, share you practical experience with POSIX threads: before I start with it I want to know its pros and cons from real people, not from wiki.<br />
If you practically compared it with anything (maybe, better), it would be interesting to know either. </p>
<p><strong>UPD:</strong> cross platform features are really important for me, so I would appreciate this direction described. </p>
<p><strong>UPD2:</strong> I already have an experience with one framework for QNX / Win32, but it is not lightweight and - oh, I forgot to mention, - it is commercial, not free, but I need a free one.</p>
http://stackoverflow.com/questions/330757/transform-a-direct3d-mesh/784888#7848880Answer by avp for Transform a Direct3D Meshavp2009-04-24T07:55:32Z2009-04-24T07:55:32Z<p>I totally agree with Coincoin, contextual code would help.<br />
And if you want just to draw transformed mesh to the screen, you don't need to transform the mesh in this way. You can just change one of world, view, and projection matrices. This produces expected result. Like in the following sample code.</p>
<pre><code> // Clear the backbuffer to a Blue color.
device.Clear(ClearFlags.Target | ClearFlags.ZBuffer, Color.Blue,
1.0f, 0);
// Begin the scene.
device.BeginScene();
device.Lights[0].Enabled = true;
// Setup the world, view, and projection matrices.
Matrix m = new Matrix();
if( destination.Y != 0 )
y += DXUtil.Timer(DirectXTimer.GetElapsedTime) * (destination.Y
* 25);
if( destination.X != 0 )
x += DXUtil.Timer(DirectXTimer.GetElapsedTime) * (destination.X
* 25);
m = Matrix.RotationY(y);
m *= Matrix.RotationX(x);
device.Transform.World = m;
device.Transform.View = Matrix.LookAtLH(
new Vector3( 0.0f, 3.0f,-5.0f ),
new Vector3( 0.0f, 0.0f, 0.0f ),
new Vector3( 0.0f, 1.0f, 0.0f ) );
device.Transform.Projection = Matrix.PerspectiveFovLH(
(float)Math.PI / 4, 1.0f, 1.0f, 100.0f );
// Render the teapot.
teapot.DrawSubset(0);
// End the scene.
device.EndScene();
</code></pre>
<p>This sample is taken from <a href="http://msdn.microsoft.com/en-us/magazine/cc164112.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/637683/when-to-use-ellipsis-after-menu-items/637692#6376922Answer by avp for When to use ellipsis after menu itemsavp2009-03-12T08:08:53Z2009-03-12T08:08:53Z<p>As far as I understand this, (...) a the end usually means that user will be asked for some input. And no (...) means that no input is needed.</p>
http://stackoverflow.com/questions/564492/recommend-some-bresenhams-like-algorithm-of-sphere-mapping-in-2d1Recommend some Bresenham's-like algorithm of sphere mapping in 2D?avp2009-02-19T09:13:38Z2009-02-26T07:10:17Z
<p>I need the fastest sphere mapping algorithm. Something like Bresenham's line drawing one.<br />
Something like the implementation that I saw in Star Control 2 (rotating planets).<br />
Are there any already invented and/or implemented techniques for this? </p>
<p>I really don't want to reinvent the bicycle. Please, help... </p>
<p><strong>Description of the problem.</strong><br />
I have a place on the 2D surface where the sphere has to appear. Sphere (let it be an Earth) has to be textured with fine map and has to have an ability to scale and rotate freely. I want to implement it with a map or some simple transformation function of coordinates: each pixel on the 2D image of the sphere is defined as a number of pixels from the cylindrical map of the sphere. This gives me an ability to implement the antialiasing of the resulting image. Also I think about using mipmaps to implement mapping if one pixel on resulting picture is corresponding to more than one pixel on the original map (for example, close to poles of the sphere). Deeply inside I feel that this can be implemented with some trivial math. But all these thoughts are just my thoughts.</p>
<p>This question is a little bit related to this one: <a href="http://stackoverflow.com/questions/213147/textured-spheres-without-strong-distortion">Textured spheres without strong distortion</a>, but there were no answers available on my question.</p>
<p><strong>UPD:</strong> I suppose that I have no hardware support. I want to have an cross-platform solution.</p>
http://stackoverflow.com/questions/380438/what-is-the-zipper-data-structure-and-should-i-be-using-it7What is the Zipper data structure and should I be using it?avp2008-12-19T09:05:14Z2008-12-20T15:34:21Z
<p>The question is simple: I cannot understand the <a href="http://en.wikipedia.org/wiki/Zipper_(data_structure)" rel="nofollow">Zipper</a> data structure.</p>
<p>My question is related to its uses with a Tree.</p>
<p>I want to understand how can I change the tree node using zipper. And how not to copy the whole tree (or the most part of it).</p>
<p>Please, clarify if I'm wrong with zipper. Maybe it cannot help with the tree update?<br />
Or, maybe, it is possible to update the tree and I just cannot see the way?</p>
http://stackoverflow.com/questions/380442/what-is-the-point-of-pointer-types-in-c/381027#3810271Answer by avp for What is the point of pointer types in C++?avp2008-12-19T13:57:31Z2008-12-19T13:57:31Z<p>For this part:</p>
<blockquote>
<p>memcpy(pChar+5,pInt+5,2);</p>
</blockquote>
<p>First, "+" is evaluated, then, typecast. </p>
<p>So in bytes:</p>
<p>pChar+5 here "5" is 5 bytes,<br />
pInt+5 here "5" is 5 ints, so 5 * 4 = 20 bytes.<br />
Then everything is cast to void* and two bytes copied. </p>
<p>If instead of "5" you use counter, like here: </p>
<pre><code>for (int i = 0; i<100; i++)
memcpy(pChar+i, pInt+i, 2);
</code></pre>
<p>Then for pChar you will be overwriting one copied byte (the second) with the next copy command. And for pInt you will be jumping 4 bytes each step (which is ok for array of ints though).</p>
http://stackoverflow.com/questions/345838/ball-to-ball-collision-detection-and-handling/380527#3805273Answer by avp for Ball to Ball Collision - Detection and Handlingavp2008-12-19T09:44:04Z2008-12-19T09:44:04Z<p>Well, years ago I made the program like you presented here.<br />
There is one hidden problem (or many, depends on point of view): </p>
<ul>
<li>If the speed of the ball is too
high, you can miss the collision.</li>
</ul>
<p>And also, almost in 100% cases your new speeds will be wrong. Well, not <em>speeds</em>, but <em>positions</em>. You have to calculate new speeds <em>precisely</em> in the correct place. Otherwise you just shift balls on some small "error" amount, which is available from the previous discrete step.</p>
<p>The solution is obvious: you have to split the timestep so, that first you shift to correct place, then collide, then shift for the rest of the time you have.</p>
http://stackoverflow.com/questions/380442/what-is-the-point-of-pointer-types-in-c/380447#3804477Answer by avp for What is the point of pointer types in C++?avp2008-12-19T09:11:13Z2008-12-19T09:16:41Z<p>Hi,</p>
<p>"++" is just another name for X = X + 1;</p>
<p>For pointers it doesn't matter if you increment by 1 or by N.
Anyway, sizeof(type)*N is used. In the case of 1 it will be just sizeof(type).</p>
<p>So, when you increment by 2 (your second case):<br />
for char is 2*sizeof(char)=2*1=2 bytes,<br />
for int will be 2*sizeof(int)=2*4=8 bytes.</p>
http://stackoverflow.com/questions/334691/the-tool-for-visual-programming2The tool for visual programmingavp2008-12-02T16:59:39Z2008-12-07T16:13:13Z
<p>I need the tool for graphical representing of work flow in a program (like electronic circuits are described with graphical representation). The representation has to be like the following: functions are boxes and arrows between boxes are "messages". Like this:</p>
<p><img src="http://img372.imageshack.us/img372/8471/functionsqv0.png" alt="alt text" /></p>
<p>This picture shows the following: (c (a) (b))<br />
Where parameters of c() are named as d and e. On C it would be </p>
<pre><code>void c( someType1 d, someType2 e );
someType1 a( void );
someType2 b( void );
....
c( a(), b() );
</code></pre>
<p>So I think that I need the tool for manipulation and visual representation of s-expressions like these: </p>
<pre><code>(a (b c d) e)
</code></pre>
<p>or </p>
<pre><code>f(g(z(x,y))+5)
</code></pre>
<p>It is not about linked lists, it is about logical connections between functions.<br />
The tool has only to generate the textual representation from graphical one.<br />
Well, I've found a lot of stuff on the Wiki page about the "Visual programming" and "Graphical programming" and so on. Mostly all described tools are cool, but somewhat complicated. And the list is pretty long, so it would take a lot of time to test all of them. So I need an opinion of real, alive people.</p>
<p>Requirements are:</p>
<ul>
<li>Free</li>
<li>Simple</li>
<li>Can export to at least one real
language like XML or C++ or LISP or any
other.</li>
</ul>
<p>And it would be really good if this tool were configurable.</p>
<p>I like the FlowDesigner tool: it seems to be almost the thing I need, but it cannot export to any language... Alas.</p>
<p><strong>UPD</strong>: The wiki page I mentioned: <a href="http://en.wikipedia.org/wiki/Graphical_programming" rel="nofollow">Graphical Programming</a><br />
<strong>UPD2</strong>: well, I decided to write my own tool...</p>
http://stackoverflow.com/questions/343533/algorithm-2d-referential-traduction/343694#3436940Answer by avp for Algorithm 2D Referential traductionavp2008-12-05T12:40:15Z2008-12-05T12:40:15Z<ol>
<li>You can estimate the derivative (if you have one). </li>
<li>You can use bidirectional (dichotomic) approach: estimate the difference and split the segment if necessary.</li>
</ol>
http://stackoverflow.com/questions/157409/recommend-a-tool-for-graphics-please3Recommend a tool for graphics, please!avp2008-10-01T12:45:09Z2008-11-08T08:25:26Z
<p>I work on a (raytracer) graphics engine and during the development process I want to create a bunch of pictures describing algorithms in space.
First I thought about 3D packages (like 3DSMax and others), then about 2D (like Illustrator and others). But it all seems to be an overkill... (I'd like to use Rhino 4.0 Evaluation, but it is an evaluation version. On the other hand, I don't need all the features Rhino provides, but its license doesn't allow me to use it in Houdini-style for education, for example.)</p>
<p>So, here are my requirements:</p>
<ul>
<li>Free;</li>
<li>Has support of vector graphics so that I can draw lines with arrows and so on;</li>
<li>Has support of 3D graphics so that it can project it to the random plane (like Rhino or Autocad can do it);</li>
<li>Works on WindowsXP.</li>
<li>Also it would be good although no necessary if It could export the scene to either some kind of animation or interactive picture (like VRML or something, I don't care). So, again, this feature is not necessary. </li>
</ul>
http://stackoverflow.com/questions/138543/searching-for-a-job-c-programmer-what-can-you-recommend1Searching for a job (C++ programmer): what can you recommend?avp2008-09-26T09:57:21Z2008-10-22T20:24:06Z
<p>What is the effective way of searching for a job for C++ programmer?</p>
<p>Well. it's not too C++ question, but it is really important, I think.</p>
<p>I'm trying to find a job in Europe and I use XING and Monster sites with their opportunities.</p>
<p>I filled CV and put it there, I constantly skim through offers, but it seems to be just wrong approach: nothing works.</p>
<p>I have more than 10 years of experience in C++ and different technologies, so it seems that my CV is not the main problem (I followed many rules about CV writing).</p>
<p>So again, the question is: what is the <em>effective</em> way of searching for a job?</p>
<p>(P.S. For example, most of my friends received offers for their current job from some people they know or their friends. So <em>nobody</em> used any search engines.)</p>
http://stackoverflow.com/questions/1841014/uniform-random-monte-carlo-distribution-on-unit-sphere/1851623#1851623Comment by avp on Uniform random (Monte-Carlo) distribution on unit sphere.avp2009-12-07T13:09:31Z2009-12-07T13:09:31ZI mean, ompf.org =)http://stackoverflow.com/questions/1841014/uniform-random-monte-carlo-distribution-on-unit-sphere/1851623#1851623Comment by avp on Uniform random (Monte-Carlo) distribution on unit sphere.avp2009-12-07T13:08:58Z2009-12-07T13:08:58ZHey, really nice link!http://stackoverflow.com/questions/1841892/working-on-a-binary-search-treeComment by avp on Working on a binary search treeavp2009-12-03T18:43:12Z2009-12-03T18:43:12ZYou do not display items recursively, but call these: database.displayPreOrder(cout);
cout << endl;
database.displayInOrder(cout);
cout << endl;
database.displayPostOrder(cout);
cout << endl;
just once. Is it by intention?http://stackoverflow.com/questions/1841892/working-on-a-binary-search-treeComment by avp on Working on a binary search treeavp2009-12-03T18:40:14Z2009-12-03T18:40:14ZJIC: your assignment operator does not check if it is the same object assigned to itself.http://stackoverflow.com/questions/1841014/uniform-random-monte-carlo-distribution-on-unit-sphere/1841083#1841083Comment by avp on Uniform random (Monte-Carlo) distribution on unit sphere.avp2009-12-03T18:05:45Z2009-12-03T18:05:45ZYou are right, it is not really the answer, but it is pretty interesting reading though.http://stackoverflow.com/questions/33199/whats-the-condition-in-c-interview-question/33215#33215Comment by avp on What's the "condition" in C interview question?avp2009-12-02T18:07:12Z2009-12-02T18:07:12Zwhy buffer overflow, why so difficult? just a side-effect, like almost all people here showed: |printf("Hello"), 0| or equalhttp://stackoverflow.com/questions/192049/is-it-possible-to-have-an-alias-for-the-function-name-in-lisp/192293#192293Comment by avp on Is it possible to have an alias for the function name in lisp?avp2009-11-18T18:32:40Z2009-11-18T18:32:40ZI'd repeat what I've said to leppie. It is just... I don't know... It looks ugly. I mean, it takes effort, but provides just readability. Abbrev-mode & hippie-expand does similar job effortless... But anyway, thanks for input!http://stackoverflow.com/questions/192049/is-it-possible-to-have-an-alias-for-the-function-name-in-lisp/192143#192143Comment by avp on Is it possible to have an alias for the function name in lisp?avp2009-11-18T18:29:03Z2009-11-18T18:29:03ZWell... First, it is not automatic. Second, I need to care about it myself. Third, it is clunky... :(http://stackoverflow.com/questions/476800/comparing-two-integers-without-any-comparison/476971#476971Comment by avp on Comparing two integers without any comparisonavp2009-11-17T13:26:22Z2009-11-17T13:26:22ZHa-ha! Taking into account that kvphxga seems to be a newbie, it is very funny answer! :)http://stackoverflow.com/questions/1710837/managing-cache-invalidation/1743762#1743762Comment by avp on Managing Cache Invalidationavp2009-11-17T12:29:31Z2009-11-17T12:29:31ZBut what if the code is not "clean enough"? (Just in case that it is not your code, but legacy one).
And also, what if you have no database in the system, but slow devices you communicate with instead? http://stackoverflow.com/questions/1741368/a-language-that-doesnt-use-c/1741406#1741406Comment by avp on A language that doesn't use 'C' ?avp2009-11-16T11:30:03Z2009-11-16T11:30:03ZAnd what language was it written in? I mean, the first version, not the bootstrapped.http://stackoverflow.com/questions/1728307/c-deep-copying-structure-with-a-void-pointer/1728335#1728335Comment by avp on C: deep copying - structure with a void pointeravp2009-11-13T11:22:25Z2009-11-13T11:22:25ZHow can you make a deep copy? It is not known if the structure is homogeneous. It is not known if it is a linked list...http://stackoverflow.com/questions/1568654/arrange-numbers-in-ascending-order-using-if-and-swap-statement/1576785#1576785Comment by avp on Arrange numbers in ascending order using if and swap statementavp2009-10-16T14:53:06Z2009-10-16T14:53:06Z"Sorting Out Sorting" is great video! Thanks! Just curious: how do you find such a good things?..http://stackoverflow.com/questions/147918/sbcl-on-vista-crashes-do-you-know-how-to-make-it-work/1512481#1512481Comment by avp on SBCL on Vista crashes. Do you know how to make it work?avp2009-10-12T11:52:35Z2009-10-12T11:52:35ZCan you be a little bit more specific?http://stackoverflow.com/questions/1444528/why-is-this-code-so-slow/1444568#1444568Comment by avp on Why is this code so slow?avp2009-09-18T14:42:33Z2009-09-18T14:42:33ZYeah, that's cool, but look, Andrew Bainbridge has already profiled it for you :)