User Borbus - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T21:57:23Zhttp://stackoverflow.com/feeds/user/104107http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/869593/compare-function-for-upperbound-lowerbound/869618#8696180Answer by Borbus for compare function for upper_bound / lower_boundBorbus2009-05-15T16:19:07Z2009-05-15T16:19:07Z<p>I think what you need is <code>std::bind2nd(std::less<MyClass>(), x)</code>. But, of course, the operator< must be defined for MyClass.</p>
<p>Edit: oh and I think you will need a constructor for MyClass that accepts only a float so that it can be implicitly converted. However, there might be a better way to do this.</p>
http://stackoverflow.com/questions/869558/recommendations-for-c-3d-vector-matrix-library-with-targeted-camera/869584#8695841Answer by Borbus for Recommendations for C++ 3d vector/matrix library with targeted cameraBorbus2009-05-15T16:11:34Z2009-05-15T16:11:34Z<p>Viewing is done with elementary transformations, the same way that model transformations are done. If you want some convenience functions like gluLookAt() in GLU, then I don't know, but it would be really easy to make your own.</p>
<p>If you do want to make your own Look At function etc. then I can recommend <a href="http://eigen.tuxfamily.org/" rel="nofollow">eigen</a> which is a really easy to use linear algebra library for C++.</p>
http://stackoverflow.com/questions/859867/static-linking-with-sunstudio/859901#8599010Answer by Borbus for Static linking with SunstudioBorbus2009-05-13T19:24:28Z2009-05-13T19:33:03Z<p>I assume you are using gcc. By default, gcc will use shared libraries (.so) if it can, so you must force it to statically link with the option -static.</p>
<p>Edit: Sorry, I thought sunstudio was the name of the library you are trying to link, I forgot that Sun Studio includes a compiler. There must be a similar option for sun studio, though.</p>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/845311#8453111Answer by Borbus for What's in your .emacs?Borbus2009-05-10T13:13:44Z2009-05-10T13:13:44Z<p>My .emacs is only 127 lines, here are the most useful little snippets:</p>
<pre><code>;; keep backup files neatly out of the way in .~/
(setq backup-directory-alist '(("." . ".~")))
</code></pre>
<p>This makes the *~ files which I find clutter up the directory go into a special directory, in this case .~</p>
<pre><code>;; uniquify changes conflicting buffer names from file<2> etc
(require 'uniquify)
(setq uniquify-buffer-name-style 'reverse)
(setq uniquify-separator "/")
(setq uniquify-after-kill-buffer-p t) ; rename after killing uniquified
(setq uniquify-ignore-buffers-re "^\\*") ; don't muck with special buffers
</code></pre>
<p>This sets up uniquify which changes those ugly file<2> etc. buffer names you get when multiple files have the same name into a much neater unambiguous name using as much of the whole path of the file as it has to.</p>
<p>That's about it... the rest is pretty standard stuff that I'm sure everyone knows about.</p>
http://stackoverflow.com/questions/844768/how-is-stl-iterator-equality-established/845022#8450221Answer by Borbus for How is STL iterator equality established?Borbus2009-05-10T09:48:20Z2009-05-10T09:48:20Z<p>The equality test is specific to the type of iterator you are using, or may not exist at all. If you really want to know, you can always check the source code of the implementation of STL you are using, look for operator==() in the iterator class.</p>
<p>Iterators are NOT always pointers, and indeed in some "safe" versions of the STL, are never pointers. Iterators for vectors and strings are commonly implemented as pointers because they can be. Iterators for deques, lists, sets and maps cannot be pointers in any half efficient implementation.</p>
<p>What iterators are is a type of smart pointer. They follow the generic principle that if they look and behave like a pointer, then they <em>are</em> a pointer as far as the user is concerned.</p>
http://stackoverflow.com/questions/843645/a-good-project-tree-browser-for-emacs/843838#8438382Answer by Borbus for A good project tree browser for Emacs?Borbus2009-05-09T19:00:50Z2009-05-09T19:00:50Z<p>The different parts of <a href="http://cedet.sourceforge.net/" rel="nofollow">cedet</a> will do what you want I think. Speedbar has the tree structure thing, and EDE handles projects etc.</p>
http://stackoverflow.com/questions/843618/failing-to-use-stl-containers-in-templated-functions-classes/843663#8436631Answer by Borbus for Failing to use stl containers in templated functions/classesBorbus2009-05-09T17:08:39Z2009-05-09T17:08:39Z<p>I agree it is confusing. Without the <code>typename</code> keyword, the name would be considered a static member. The book <em>C++ Templates</em> by Vandevoorde and Josuttis explains this in detail.</p>
http://stackoverflow.com/questions/840279/passwords-in-emacs-tramp-mode-editing/843567#8435670Answer by Borbus for Passwords in Emacs tramp mode editing Borbus2009-05-09T16:12:46Z2009-05-09T16:12:46Z<p>Using public key (RSA) authentication is more secure and much more convenient. On a GNU/Linux system (and maybe others, I don't know) you typically would unlock your private key once per login session with a password and then use it.</p>
http://stackoverflow.com/questions/859943/c-how-can-i-fix-warnings-like-comparison-between-signed-and-unsigned/859979#859979Comment by Borbus on C: how can I fix warnings like: "comparison between signed and unsigned"Borbus2009-05-13T19:39:03Z2009-05-13T19:39:03ZI agree with this answer. Also note that casting is not deprecated, but it's probably discouraged for a beginner because it can lead you into some bad habits.http://stackoverflow.com/questions/859501/learning-opengl-in-ubuntu/859740#859740Comment by Borbus on Learning opengl in UbuntuBorbus2009-05-13T19:05:33Z2009-05-13T19:05:33ZGLUT hasn't been actively developed for over 10 years. There is freeglut which is more recent, but I would recommend SDL for simply opening a window, and then getting out of your way.