-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've been reading a few gaming books. And they always prefer to create the engine as a static library over dynamic link. I am new to c++ so I am not highly knowledge when it comes to static libraries and dynamic link libraries. All I know is static libraries increase the size of your program, where…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I develop a couple of open source projects licensed under MPL1.1. All projects depend on a lot of other open source tools. I avoid any GPL licensed libraries for the viral nature of GPL. The licenses of the libraries my tools depend on are Apache2, LGPL2, LGPL3, CPL, BSD, JSON, MIT and some personal…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a complicated project with multiple executable targets and multiple shared libraries. The shared libraries currently don't have their dependent shared libraries linked in, and the result is that linker arguments to build the executables are hideously long and hard to maintain. I'd like to…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello all, I'm trying to compile the minimal sample from the "Cross-Platform GUI Programming with wxWidgets" book but the following compile errors:
||=== minimal, Debug ===|
C:\SourceCode\Libraries\wxWidgets2.8\lib\gcc_lib\libwxmsw28u_core.a(corelib_frame.o):frame.cpp:(.text+0x918)||undefined reference…
>>> More
-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
Introduction NHibernate and Entity Framework are two of the most popular O/RM frameworks on the .NET world. Although they share some functionality, there are some aspects on which they are quite different. This post will describe this differences and will hopefully help you get started with the one…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
I've been told that code reuse and abstraction in OOP is far more difficult to do than it is in FP, and that all the claims that have been made about Object Orientedness (for lack of a better term) being great at reusing code have been flat out lies
So I was wondering if anyone here could tell me…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
I have a blog where users can post comments.
When creating a comment, various things happen:
creating the comment object, associations, persisting
sending notification emails to post's author given his preferences
sending notification to moderators given their preferences
updating a fulltext database…
>>> More
-
as seen on Geeks with Blogs
- Search for 'Geeks with Blogs'
Being a development team lead, the task of interviewing new candidates was part of my job. Like any typical interview, we started with some easy questions to get them warmed up and help calm their nerves before hitting the hard stuff. One of those easier questions was almost always: “Name some…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
What is the best tool(s) for tracking down "cut and paste reuse" of code in JavaScript and C#?
I've inherited a really big project and the amount of code that is repeated throughout the app is 'epic'. I need some help getting handle on all the stuff that can be refactored to base classes, reusable…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi, I have some sort of a design problem with my Django AJAX application.
I have a template where I initialize js variable from django context variable like so:
var test = "{{ test }}";
This variable is than used in a number of js functions that are needed for interface to work properly.
So now…
>>> More