User Bernard - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T19:43:45Z http://stackoverflow.com/feeds/user/28067 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/385297/whats-wrong-with-c-compared-to-other-languages/717430#717430 1 Answer by Bernard for What's wrong with C++ compared to other languages? Bernard 2009-04-04T17:12:57Z 2009-10-12T00:35:10Z <p>The greatest pitfall of C++ is the all C++ code that has been written incorrectly. C++ is incredibly complicated and it doesn't offer much of a buffer from the complexity of writing code. Many things are blamed on C++ that has nothing to do with the language and everything to do with the usage of the language.</p> <p>To be fair developers are human, my C++ is far from perfect so I too have to pay close attention to ensure that I use it correctly.</p> <p>Regardless, I would be highly critical of any "you can't do X in C++" statements as this is almost always false for at least three reasons: 1) C++ is Turing complete thus if a certain functionality can be computed then it can be written in C++. 2) C++ is fast, if you need to do X in Y microseconds on Z hardware then C++ is often times your best bet. Even if the compiler isn't good enough C++ supports inline assembly and it doesn't get much faster than that. 3) Most of what people describe as language features are actually standard library features. Those same libraries in Java and C# can be ported to C++. Even GC can be done in C++.</p> <p>Also, while C++ is very complex there are ways to mitigate the complexity of it. With a good library (3rd party or in house) many things can be made much simpler. C++ offers an incredible amount of control over the implementation syntax (operator overloads, macros, templates). Furthermore, with good development practices the complexity of C++ can be managed.</p> <p>Now, some may suggest that this complexity is a pitfall of C++. However, the complexity exposed in C++ exists in the other languages as well, some languages just hide these issues better by providing a prepackaged solution. This will allow you to make things work quickly, but once one of those more complex and underlying issues becomes a problem it still needs to be understood and fixed. In C++ you can still still do those kinds of fixes.</p> <p>There are still many things that can be improved with C++ and there is definitely a need for extensions to the standard library. The syntax could be made more expressive, and the inclusion of C in C++ is a bit contradictory. Also the compilation model as someone else here suggested, may be in need of an update.</p> http://stackoverflow.com/questions/1422191/leveraging-hobby-experience-to-get-a-job 9 Leveraging hobby experience to get a job Bernard 2009-09-14T15:13:07Z 2009-09-14T16:42:19Z <p>Like many other's I began programming at an early age. I started when I was 11 and I learned C when I was 14 (now 26). While most of what I did were games just to entertain myself I did everything from low level 2D graphics, and binary I/O, to interfacing with free API's, custom file systems, audio, 3D animations, OpenGL, web sites, etc. I worked on a wide variety of things trying to make various games. Because of this experience I have tested out of every college level C/C++ programming course I have ever been offered. In the classes I took, my classmates would need a week to do what I finished in class with an hour or two of work.</p> <p>I now have my degree now and I have 2 years of experience working full time as a web developer however I would like to get back into C++ and hopefully do simulation programming. Unfortunately I have yet to do C++ as a job, I have only done it for testing out of classes and doing my senior project in college. So most of what I have in C++ is still hobby experience and I don't know how to best convey that so that I don't end up stuck doing something too low level for me.</p> <p>Right now I see a job offer that requires 2 years of C++ experience, but I have at least 9 (I didn't do C++ everyday for the last 14 years). How do I convey my experience? How much is it truly worth? and How do I get it's full value?</p> <p>The best thing that I can think of is a demo and a portfolio, however that only comes into play after an interview has been secured. I used a portfolio to land my current job.</p> <p>All answers and advice are appreciated.</p> http://stackoverflow.com/questions/843560/data-dictionary-or-orm 1 Data Dictionary or ORM? Bernard 2009-05-09T16:10:10Z 2009-05-09T18:56:47Z <p>I am in the processes of replacing the framework for a fairly complex business web application. Our application runs on a LAMP platform and the new framework will be an extension of <a href="http://www.codeigniter.com" rel="nofollow">CodeIgniter.</a> In my research for framework design I decided to look into ORM, I have never done ORM before and I wanted to know if it would be valuable for our application. Then I stumbled on a very interesting blog post entitled <a href="http://database-programmer.blogspot.com/2008/06/why-i-do-not-use-orm.html" rel="nofollow">"Why I Do Not Use ORM."</a> This blog seemed to confirm many of my worries about using ORM and it also presented a solution similar to what I was already planning.</p> <p>By "data dictionary" I plan to use this definition from <a href="http://database-programmer.blogspot.com" rel="nofollow">"The Database Programmer"</a> blog:</p> <blockquote> <p>The term "data dictionary" is used by many, including myself, to denote a separate set of tables that describes the application tables. The Data Dictionary contains such information as column names, types, and sizes, but also descriptive information such as titles, captions, primary keys, foreign keys, and hints to the user interface about how to display the field. </p> </blockquote> <p>So in choosing a "data dictionary" over ORM I may be exhibiting confirmation bias, regardless here are my reasons for being weary of ORM:</p> <ol> <li>I have never used ORM before, I don't know much about it.</li> <li>This framework needs to be built rather quickly, my boss has little time and I need to produce a working application that will allow for a smooth upgrade to a more modern framework.</li> <li>My boss already thinks that I am over engineering this framework (trust me, I am no where close to that) and is paranoid about the framework preventing us from being able to do things that we need to, and creating bugs that we can't solve in the required amount of time. So far I have done a poor job of convincing him that change is good, I am not a very effective salesman and while the other developers can help me the boss still needs a lot of assurance.</li> <li>Our old framework is procedural, our code is PHP, and our developers know SQL very well. ORM would be a big change.</li> <li>Our database has dozens of tables, many with hundreds of thousands of entries running on a fairly old server. In the past we have been burned by code that repeated polls the database in a loop instead of doing one query to pull all of the needed data at once. Avoiding this problem with hand coded SQL is rather straight forward. Ensuring that this always happens where necessary with ORM is a huge unknown to me and appears to be risky.</li> </ol> <p>Regardless, the solution of the data dictionary seems very promising to me as this blog post <a href="http://database-programmer.blogspot.com/2008/06/using-data-dictionary.html" rel="nofollow">"Using A Data Dictionary"</a> seems to provide a lot of useful features and some that are requirements of the new framework. Here are my reasons for preferring the data dictionary solution:</p> <ol> <li>Implementing access control rules on the table rows themselves would be invaluable.</li> <li>Auto-generating database changes, documentation, and schema checking would also be useful.</li> <li>One requirement of the framework is a generic data history/auditing feature that can be applied to any sub-feature within our application. A data dictionary or an equivalent is essentially required to provide such a feature. The history must have detailed information about the structure and data types within the database.</li> <li>Our systems hold a wide variety of data types that would more properly addressed if they treated as formal types within the application. For one, HTML fragments (of which we have many in our data, they are required) need to be encoded as entities in some cases, decoded as HTML in others, parsed for links and images in some cases, and always validated for correctness. Then there are dates, measurements, currency, and various other fields that could benefit from having a clear definition in the code of how this data should be manipulated.</li> </ol> <p>The data dictionary idea that I would like to implement would be series of objects in separate PHP files, and there will be plenty of OOP, however it will be used as in a manner very similar to the data dictionary concept presented in "The Database Programmer" blog. It would be the single source definition of the complete database schema for the entire framework.</p> <p>Now my question is, am I overlooking the value of ORM or is this a case where a data dictionary is the right tool for the job?</p> http://stackoverflow.com/questions/765459/how-can-you-do-c-when-your-embedded-compiler-doesnt-have-operator-new-or-stl-s 2 How can you do C++ when your embedded compiler doesn't have operator new or STL support? Bernard 2009-04-19T14:01:47Z 2009-04-19T18:22:28Z <p>I am working on a group senior project for my university and I have run into a major hurdle in trying to get my code to work.</p> <p>The compiler that we have for our 8 bit Atmel microcontroller does not support the new or delete operators, and it does not support the C++ STL. I could program it in C, but I have to implement an A* algorithm which I have never done before. While I have tried C initially I soon realized that I never did pure C before. Trying to model objects with structs and functions is slowing me down since I am so used to the much cleaner C++ syntax.</p> <p>Regardless, the exact wording for my compilers shortcomings can be found here: <a href="http://www.nongnu.org/avr-libc/user-manual/FAQ.html#faq_cplusplus" rel="nofollow">http://www.nongnu.org/avr-libc/user-manual/FAQ.html#faq_cplusplus</a></p> <p>To overcome them and still use C++ I have considered the following possibilities. 1) Don't allocate anything, just use templates to generate fixed arrays on the stack. 2) Allocate and find some hack to call the constructor for objects once I have allocated the space for them. Placement new isn't an option since new isn't an operator. 3) Just use C and suck it up, its a microcontroller why am I getting fancy? 4) Find a better compiler which will probably cost $$$.</p> <p>The second option is the hardest but it would have the biggest pay off in terms of how I can write this code. However, I imagine that debugging it could be a huge pain if I get it wrong. I'm thinking of creating objects on the stack, copying their bits into the allocated space, and then zeroing the bits in the object so it doesn't call its destructor. To do that I would access the bits directly with an unsigned char pointer and the sizeof operator to get the byte count.</p> <p>That sounds terrible and I don't know if it could work reliably, but I am considering it. I know vtables can be a problem but I don't intend on having any vtables since it is just an 8 bit microcontroller.</p> http://stackoverflow.com/questions/457884/what-are-the-things-java-got-wrong/740811#740811 1 Answer by Bernard for What are the things Java got wrong? Bernard 2009-04-11T21:36:29Z 2009-04-12T03:56:06Z <p><strong>GC</strong></p> <p>While GC is incredibly convenient, an unpredictable GC is not suitable for certain applications. One such example would be hard real time systems. In a hard real time system a single unexpected delay can result in mission failure.</p> <p>Examples of such hard real time system would be: fly by wire systems on a fighter jet, navigation systems on a missile, robotic arms that perform surgery, etc.</p> <p>Also, getting killed in a real time video game is also a mission failure. You don't want to GC right at the moment the player pressed the "dodge the giant fireball that will kill my character and force me to redo the 20 minute long level," button. That is a very important button. (Although it has been noted that in multi-tasking OS you cannot control the task priority which could easily be worse than a large GC operation.)</p> <p><strong>Static Polymophism</strong></p> <p>Ignoring static polymorphism. Static polymorphism could go beyond "C++ like" templates, and it is a very useful optimization. Generics as implemented in Java is still dynamic and it loses that opportunity to eliminate run-time type checking where compile time type checking would is enough. Of course is possible for increased code size to reduce performance more so than dynamic types would. As with all optimizations it should be profiled.</p> <p><strong>Everything is in a class</strong></p> <p>Although nit picky, there are times when you just want a function. Currently in Java you must put such functions in a class as a static function. A better solution would be a function in a namespace. While a class can work like a namespace, classes cannot span multiple files and libraries.</p> http://stackoverflow.com/questions/170259/should-programmers-be-able-to-write-clearly/562626#562626 1 Answer by Bernard for Should programmers be able to write clearly? Bernard 2009-02-18T20:12:14Z 2009-02-18T20:12:14Z <p>The task of programming involves two major parts. The first is communicating to a machine what is that you are trying to do with your code. That is the easy part, the compiler/interpreter/virtual machine does most of the work there. The hard part is communicating to the other programmers what you are trying to do with your code.</p> <p>Because of the human aspect of programming, it is vital that you are an effective writer to be an effective programmer. Making things work isn't good enough, the people who come after you need to be able to understand it and work with it just as well.</p> <p>Having good writing skills can help you write code in a more natural language way (although there are pit-falls to natural languages, so use as appropriate). It will also help you document, comment, and explain that code better.</p> <p>As Blair Conrad said, naming things is also important and is greatly benefited by having better writing skills. What you call things has an impact on the way people think about them. If other programmers can figure out how the code was thought out, then they have a better chance of using that code as intended.</p> http://stackoverflow.com/questions/503381/how-do-online-text-editors-work/503608#503608 0 Answer by Bernard for How do online text editors work? Bernard 2009-02-02T15:31:08Z 2009-02-02T18:09:45Z <p>I started an open source "sourceforge" project to make a rich text editor about a year and a half ago. I never figured out how to get my code on there, however to develop it I had to research how the "content editable mode" works in IE and Firefox. My research included mostly the firefox website and the microsoft website.</p> <p>The code that I saw to do this was ugly and not very OO friendly (sorry I'm an object bigot I can't help it) so it took a lot of re-factoring to get into to a form that I could develop from and extend.</p> <p>Unfortunately, even if you follow the functionality provided by the browser's "content editable mode" you will still end up with an editor that is full of bugs. The reason for that is that "content editable mode" doesn't work consistently with pasting from MS Word (everyone tries this) or creating numbered lists, and the mark up that it generates will be inconsistent and poorly formed.</p> <p>This is why I now use <a href="http://tinymce.moxiecode.com" rel="nofollow">TinyMCE</a>. TinyMCE is full of design decisions that I personally would have avoided, but they have fixed the majority of the bugs that you will get when trying to make your own editor. It is also full of features that will allow you to customize it to your needs.</p> <p>I can't recommend anything else because I haven't really tried the alternatives.</p> <p>While TinyMCE seems to be the best option, it is still a headache to me because pasting Word documents is still unpredictable, the WYSIWYG promise is not really possible in HTML but the customer expects it, and there are many issues that creep up once you start letting users put raw HTML in your database. (especially when your code base has parts last updated in 1993...)</p> http://stackoverflow.com/questions/498833/why-are-there-no-real-competitors-to-javascript/499098#499098 1 Answer by Bernard for Why are there no real competitors to Javascript? Bernard 2009-01-31T16:23:55Z 2009-01-31T16:23:55Z <p>Browser support. If its not an MS tech the it most likely will not go into IE. If it's not in IE then no one can use it. If it is an MS tech, then most likely only IE will have the right to use it as it will be closed source and proprietary. If only IE supports it then only some developers will use it.</p> <p>To challenge JavaScript it must work just as easily and more consistently across all of the major web browsers. Without browser support any new client side web tech is destined to fail.</p> http://stackoverflow.com/questions/493194/what-do-i-need-to-compile-the-kernel-on-ubuntu-eeee 1 What do I need to compile the kernel on Ubuntu Eeee? Bernard 2009-01-29T20:11:23Z 2009-01-30T10:24:01Z <p>I'm trying follow a tutorial to create a custom USB driver in Linux and I hope to develop this thing on my Eee PC with Ubuntu Eee using g++. Unfortunately to follow the tutorial I need the linux/module.h header file. From what I understand I will need to compile the kernel to get this to work. I never compiled a kernel before and all of the instructions I find are for the desktop Ubuntu.</p> <p>I am doing this on my Eee since I will get extra credit in a class if I can do this and use it in a class project.</p> <p>The tutorials that I am following is here: <a href="http://www.linuxjournal.com/article/7353" rel="nofollow">http://www.linuxjournal.com/article/7353</a> and here: <a href="http://www.linuxjournal.com/article/4786" rel="nofollow">http://www.linuxjournal.com/article/4786</a></p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/491942#491942 0 Answer by Bernard for What real life bad habits has programming given you? Bernard 2009-01-29T15:07:56Z 2009-01-29T15:40:56Z <p>Every time I see a numeric series that is a power of two I have to count out the rest of that series up to 65536.</p> <p>I refuse to do anything that can't be turned into an automated process.</p> <p>When I do math I can't start it with numbers, I have to derive the final F(x) formula and then plug in values.</p> <p>I never expect people to understand me so I over explain everything, even when they don't care.</p> http://stackoverflow.com/questions/444170/object-oriented-questions-in-javascript/444311#444311 6 Answer by Bernard for Object Oriented questions in Javascript Bernard 2009-01-14T19:21:15Z 2009-01-14T21:19:10Z <p>If you want to do OOP in JavaScript I'd highly suggest looking up closures. I began my learning on the subject with these three web pages:</p> <p><a href="http://www.dustindiaz.com/javascript-private-public-privileged/" rel="nofollow">http://www.dustindiaz.com/javascript-private-public-privileged/</a></p> <p><a href="http://www.dustindiaz.com/namespace-your-javascript/" rel="nofollow">http://www.dustindiaz.com/namespace-your-javascript/</a></p> <p><a href="http://blog.morrisjohns.com/javascript_closures_for_dummies" rel="nofollow">http://blog.morrisjohns.com/javascript_closures_for_dummies</a></p> <p>The differences between 1, 2, and 3 are as follows: 1) Is an example of adding new methods to an existing object. 2) Is the same as #1 except some methods are included in the object in the User function. 3) Is an example of defining an object using <a href="http://en.wikipedia.org/wiki/JSON" rel="nofollow">JSON</a>. The shortcoming is that you cannot use new (at least not with that example) to define new instances of that object. However you do get the benefit of the convenient JSON coding style.</p> <p>You should definitely read up on JSON if you don't know it yet. JavaScript will make a lot more sense when you understand JSON.</p> <p><em>edit</em> If you want to use new in function #3 you can write it as</p> <pre><code>function User() { return { name: "", age: 0, setName: function(name) { this.name = name; }, setAge: function(age) { this.age = age; }, getName: function() { return this.name; }, getAge: function() { return this.age; } }; } </code></pre> <p>Of course all of those functions and properties would then be public. To make them private you need to use closures. For example you could make age and name private with this syntax.</p> <pre><code>function User() { var age=0; var name=""; return { setName: function(name_) { name = name_; }, setAge: function(age_) { age = age_; }, getName: function() { return name; }, getAge: function() { return age; } }; } </code></pre> http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/428437#428437 6 Answer by Bernard for What's your favorite "programmer ignorance" pet peeve? Bernard 2009-01-09T15:15:44Z 2009-01-09T15:15:44Z <p>The idea that "intuitive" interfaces can actually exist. Sorry, but every interface is learned.</p> <p>Although it is true that this idea usually comes to me from a business analyst...</p> http://stackoverflow.com/questions/407739/what-to-include-in-a-utility-library/407867#407867 1 Answer by Bernard for What to include in a Utility Library Bernard 2009-01-02T19:57:26Z 2009-01-02T19:57:26Z <p>I'd suggest that instead of a "utility" library just make domain specific (graphics, authentication, validation, etc) libraries and only include them where they are needed. The key of course is decided how specific to be. More specificity is generally better.</p> <p>Irregardless if it has no domain then you probably don't understand it fully meaning that you should re-evaluate what you are doing and trying to accomplish first.</p> <p>Also, remember that what is useful in one or two projects may end up only being useful in one or two projects. Adding more classes than necessary only causes maintenance issues down the road.</p> http://stackoverflow.com/questions/403067/will-xslt-work-well-with-ajax/403155#403155 0 Answer by Bernard for Will XSLT work well with AJAX? Bernard 2008-12-31T15:04:29Z 2008-12-31T15:04:29Z <blockquote> <p>our whole site is rendered using XSLT to transform xml</p> </blockquote> <p>That thought makes me shudder. I've worked on two sites that have used XSLT to do heavy lifting in dynamically producing frequently accessed pages, and in both cases it required more development effort and CPU time per access than it was worth.</p> <p>Irregardless, <a href="http://www.w3schools.com" rel="nofollow">www.w3schools.com</a> has plenty of good tutorials on many web technologies. They even have tests.</p> <p>If you want to do AJAX while maintaining support for multiple web browsers I would strongly recommend that you check out: <a href="http://jquery.com/" rel="nofollow">JQuery</a>, <a href="http://www.prototypejs.org/" rel="nofollow">Prototype</a>, and <a href="http://dojotoolkit.org/" rel="nofollow">Dojo</a></p> <p>I think JQuery is the best but I will leave that determination up to you.</p> http://stackoverflow.com/questions/391580/recession-proof-tech-knowledge/391692#391692 0 Answer by Bernard for Recession Proof Tech Knowledge Bernard 2008-12-24T15:43:40Z 2008-12-24T15:43:40Z <p>There is one thing that is invulnerable to any recession, depression, chaos, or calamity. That is the ability to learn and adapt. The greatest IT skill is knowing how to learn and doing it quickly.</p> <p>Well, ok there is one other thing but love isn't an IT skill...</p> http://stackoverflow.com/questions/309160/what-programming-language-should-be-taught-in-computer-science-101/376423#376423 1 Answer by Bernard for What programming language should be taught in Computer Science 101? Bernard 2008-12-17T23:21:36Z 2008-12-17T23:21:36Z <p>As long as the student learns what a pointer is and how to approach problems mathematically the language doesn't matter much. Those two fundamentals are very important basic steps. Even in languages where pointers are GC'ed you still need to understand them.</p> <p>Of course you should learn control statements and loops, but that's in almost every language.</p> http://stackoverflow.com/questions/24270/whats-the-point-of-oop/376406#376406 1 Answer by Bernard for What's the point of OOP? Bernard 2008-12-17T23:12:32Z 2008-12-17T23:12:32Z <p>The point of OOP is to give the programmer another means for describing and communicating a solution to a problem in code to machines and people. The most important part of that is the communication to people. OOP allows the programmer to declare what they mean in the code through rules that are enforced in the OO language.</p> <p>Contrary to many arguments on this topic, OOP and OO concepts are pervasive throughout all code including code in non-OOP languages such as C. Many advanced non-OO programmers will approximate the features of objects even in non-OO languages.</p> <p>Having OO built into the language merely gives the programmer another means of expression.</p> <p>The biggest part to writing code is not communication with the machine, that part is easy, the biggest part is communication with human programmers.</p> http://stackoverflow.com/questions/317322/optimized-sql-for-tree-structures/375935#375935 2 Answer by Bernard for Optimized SQL for tree structures Bernard 2008-12-17T20:37:09Z 2008-12-17T20:37:09Z <p>Out of all the ways to store a tree in a RDMS the most common are adjacency lists and nested sets. Nested sets are optimized for reads and can retrieve an entire tree in a single query. Adjacency lists are optimized for writes and can added to with in a simple query.</p> <p>With adjacency lists each node a has column that refers to the parent node or the child node (other links are possible). Using that you can build the hierarchy based on parent child relationships. Unfortunately unless you restrict your tree's depth you cannot pull the whole thing in one query and reading it is usually slower than updating it.</p> <p>With the nested set model the inverse is true, reading is fast and easy but updates get complex because you must maintain the numbering system. The nested set model encodes both parentage and sort order by enumerating all of the nodes using a preorder based numbering system.</p> <p>I've used the nested set model and while it is complex for read optimizing a large hierarchy it is worth it. Once you do a few exercises in drawing out the tree and numbering the nodes you should get the hang of it.</p> <p>My research on this method started <a href="http://dev.mysql.com/tech-resources/articles/hierarchical-data.html" rel="nofollow">here: <a href="http://dev.mysql.com/tech-resources/articles/hierarchical-data.html" rel="nofollow">http://dev.mysql.com/tech-resources/articles/hierarchical-data.html</a></a></p> http://stackoverflow.com/questions/372700/get-set-in-the-c-world-faux-pas/372787#372787 4 Answer by Bernard for Get/Set in the c++ world, faux-pas? Bernard 2008-12-16T21:26:01Z 2008-12-16T21:32:21Z <p>Encapsulation is an OOP concept and it applies to all OOP languages. Public data members would break encapsulation. This may be fine if you have a very simple object which does not need encapsulation, however those situations are the exception and once you make the decision it can be hard to go back and undo it.</p> <p>For most objects you will want to have getters and setters but you should always consider how the object will actually be used when you write them. Boost and STL are full of getters and setters, they just do not use the names "get" and "set" instead they use names like "length," "end," "reserve," "capacity," etc. The reason they do not use the words get or set is because these functions serve a purpose greater than just setting a value in the object.</p> <p>Your getters and setters should do the same. Instead of designing the interface in terms of how an object works you should define it in terms of how it will be used.</p> http://stackoverflow.com/questions/114085/what-is-a-performant-string-hashing-function-that-results-in-a-32-bit-integer-wit/372732#372732 1 Answer by Bernard for What is a performant string hashing function that results in a 32 bit integer with low collision rates? Bernard 2008-12-16T21:11:27Z 2008-12-16T21:11:27Z <p>Why don't you just use <a href="http://www.boost.org/doc/libs/1_37_0/doc/html/hash/tutorial.html" rel="nofollow">Boost libraries?</a> Their hashing function is simple to use and most of the stuff in Boost will soon be part of the C++ standard. Some of it already is.</p> <p>Boost hash is as easy as</p> <pre><code>#include &lt;boost/functional/hash.hpp&gt; int main() { boost::hash&lt;std::string&gt; string_hash; std::size_t h = string_hash("Hash me"); } </code></pre> <p>You can find boost at <a href="http://www.boost.org" rel="nofollow">boost.org</a></p> http://stackoverflow.com/questions/201183/how-do-you-determine-equality-for-two-javascript-objects/302451#302451 1 Answer by Bernard for How do you determine equality for two JavaScript objects? Bernard 2008-11-19T16:20:00Z 2008-11-19T16:20:00Z <p>I'd advise against hashing or serialization (as the JSON solution suggest). If you need to test if two objects are equal, then you need to define what equals means. It could be that all data members in both objects match, or it could be that must the memory locations match (meaning both variables reference the same object in memory), or may be that only one data member in each object must match.</p> <p>Recently I developed an object whose constructor creates a new id (starting from 1 and incrementing by 1) each time an instance is created. This object has an isEqual function that compares that id value with the id value of another object and returns true if they match.</p> <p>In that case I defined "equal" as meaning the the id values match. Given that each instance has a unique id this could be used to enforce the idea that matching objects also occupy the same memory location. Although that is not necessary.</p> http://stackoverflow.com/questions/182637/how-should-i-install-linux-on-windows-pc/215130#215130 1 Answer by Bernard for How should I install Linux on Windows PC? Bernard 2008-10-18T15:01:24Z 2008-10-18T15:01:24Z <p>All you have to do is go to <a href="http://www.ubuntu.com/getubuntu/download" rel="nofollow">http://www.ubuntu.com/getubuntu/download</a> and follow the directions. I downloaded Ubuntu, burned it to CD, and rebooted with the CD in the drive. I did not have to get a second hard drive or worry about it messing with my Vista Home Premium installation.</p> <p>With Ubuntu (as with most distros with a Live CD install) all you need to do is pop in a disc, boot, and click through the menus. The dual boot is set up perfectly by default, you don't even have to think about it. I've done this with Ubuntu, Debian, PC Linux OS, Freespire, and Xandros on my Vista Home Premium machine and they all worked that way.</p> <p>If you are paranoid, then you should back up your PC. As cheap as hard drives (USB or internal) are these days, there really is no excuse to not have a full back up of your system. It's too easy. I use Acronis True Image, but I've heard good things about Norton Ghost as well.</p> <p>Regadless, you don't need Wubi or VMWare, or any virtual anything, a straight install with a dual boot set up is the default on a typical Live CD Linux install and it works even with Vista.</p> http://stackoverflow.com/questions/843560/data-dictionary-or-orm/843830#843830 Comment by Bernard on Data Dictionary or ORM? Bernard 2009-05-09T21:01:24Z 2009-05-09T21:01:24Z It is a fairly thorough overhall. None of the old server side code will be in the new system. But your answer seems correct. http://stackoverflow.com/questions/843560/data-dictionary-or-orm/843650#843650 Comment by Bernard on Data Dictionary or ORM? Bernard 2009-05-09T18:27:15Z 2009-05-09T18:27:15Z Python is definitely not an option. There's no way I could sell that to my boss, all of our developers do LAMP (Linux Apache MySQL and PHP). He'd have to invest in retraining all of us. http://stackoverflow.com/questions/765459/how-can-you-do-c-when-your-embedded-compiler-doesnt-have-operator-new-or-stl-s Comment by Bernard on How can you do C++ when your embedded compiler doesn't have operator new or STL support? Bernard 2009-05-09T16:13:17Z 2009-05-09T16:13:17Z I found out that I only had 1KB to play with, which essentially ruled out A* as a viable path finder for my robot. I am now using a simple DFS until I can get one with more RAM. http://stackoverflow.com/questions/765459/how-can-you-do-c-when-your-embedded-compiler-doesnt-have-operator-new-or-stl-s Comment by Bernard on How can you do C++ when your embedded compiler doesn't have operator new or STL support? Bernard 2009-04-19T18:42:55Z 2009-04-19T18:42:55Z If I can overload those operators then I can control where the memory comes from. It can be on the heap or the stack. http://stackoverflow.com/questions/765459/how-can-you-do-c-when-your-embedded-compiler-doesnt-have-operator-new-or-stl-s/765676#765676 Comment by Bernard on How can you do C++ when your embedded compiler doesn't have operator new or STL support? Bernard 2009-04-19T18:30:37Z 2009-04-19T18:30:37Z Who down voted this? This is useful stuff, I need A* help too. I have some Google code and a book on AI but I'm still figuring it all out. http://stackoverflow.com/questions/765459/how-can-you-do-c-when-your-embedded-compiler-doesnt-have-operator-new-or-stl-s/765480#765480 Comment by Bernard on How can you do C++ when your embedded compiler doesn't have operator new or STL support? Bernard 2009-04-19T18:28:58Z 2009-04-19T18:28:58Z My compiler supports all of C, and the link provided states that it supports C++. The only problem is that it doesn't support everything. But I just managed to get an operator new overload to compile. I don't have the hardware with me to test it, but I think I have a solution. Using C will only take me more time as I much more well versed in C++ with RAII and template metaprogramming tricks, than I am in C. Plus the A* example code I have is C++. http://stackoverflow.com/questions/765459/how-can-you-do-c-when-your-embedded-compiler-doesnt-have-operator-new-or-stl-s/765494#765494 Comment by Bernard on How can you do C++ when your embedded compiler doesn't have operator new or STL support? Bernard 2009-04-19T18:24:17Z 2009-04-19T18:24:17Z Wow, it looks like that works. I couldn't use the headers you supplied but those operator functions seem to work. From what I've read about those operators new[] and delete[] need to know the array size to call all the needed destructors, but in my test all of the destructors needed were called. http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in/745391#745391 Comment by Bernard on What are the worst working conditions you have written code in? Bernard 2009-04-18T19:20:43Z 2009-04-18T19:20:43Z You beat me too it, I wrote code in Iraq too. Although I never did it while mortars where impacting. It had nothing to do with my job but I did find time to do a little Java Script to keep my mind sharp. All I had was IE and notepad so I couldn't do much more. I wrote a simple arcade game that parodied the role I did in the Army. http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17900#17900 Comment by Bernard on Computer Language puns and jokes Bernard 2009-04-13T02:43:21Z 2009-04-13T02:43:21Z You stole that from a T-shirt. I can't remember where I saw it though... http://stackoverflow.com/questions/457884/what-are-the-things-java-got-wrong/740811#740811 Comment by Bernard on What are the things Java got wrong? Bernard 2009-04-12T03:31:14Z 2009-04-12T03:31:14Z Good point on the process scheduling, I'm still learning about real time systems. Regardless &quot;long pauses&quot; is a relative term, but I do see your point about Java serving a different purpose. For non-real time systems it seems to do a good job. http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/36619#36619 Comment by Bernard on Computer Language puns and jokes Bernard 2009-04-11T22:07:42Z 2009-04-11T22:07:42Z This is so true it hurts. http://stackoverflow.com/questions/457884/what-are-the-things-java-got-wrong/475089#475089 Comment by Bernard on What are the things Java got wrong? Bernard 2009-04-11T21:25:52Z 2009-04-11T21:25:52Z RAII is incredibly useful and Java cannot support it. Using finally is not a scalable solution and it must be done explicitly in the implementation which increases the risk of programmer error. http://stackoverflow.com/questions/457884/what-are-the-things-java-got-wrong/457942#457942 Comment by Bernard on What are the things Java got wrong? Bernard 2009-04-11T21:23:02Z 2009-04-11T21:23:02Z RAII would solve this. http://stackoverflow.com/questions/385297/whats-wrong-with-c-compared-to-other-languages/385474#385474 Comment by Bernard on What's wrong with C++ compared to other languages? Bernard 2009-04-04T17:46:51Z 2009-04-04T17:46:51Z The difficulty in writing GUI code in C++ for Windows has nothing to do with the language. That is about the available libraries. Considering that Windows and .NET are commercial products of the same corporation (MS), I would expect it to work better there. An equivalent library in C++ can be made. http://stackoverflow.com/questions/385297/whats-wrong-with-c-compared-to-other-languages/385316#385316 Comment by Bernard on What's wrong with C++ compared to other languages? Bernard 2009-04-04T17:37:23Z 2009-04-04T17:37:23Z There is no reason to write C++ that way if you don't intend to deal with the resulting undefined behavior. You can use std::vector for arrays, memcpy is a C function, and all of those casts are bad uses of C++ casting.