How to Install boost on OS X
Get boost source files from boost.org.
- cd path/to/boost_1_37_0
- ./configure
- sudo make install
Boost libraries and header files will be installed to /usr/local/lib and /usr/local/include.
Get boost source files from boost.org.
Boost libraries and header files will be installed to /usr/local/lib and /usr/local/include.
See Make my MacBook Pro Hibernate for details.
Use SmartSleep to configure your MB.
find . -iname “*.cpp” -print | xargs grep “main(” -s
-s = silent – no error messages
Kostenlose deutsche Onlinelektüre zum Erlernen von Cocoa.
#include < windows.h>
#include <delayimp.h>
int cudaDetect()
{
// Try to load imports from NVIDIA runtime DLL
// If this is not possible then there’s no compatible driver installed
__try
{
if( FAILED( __HrLoadAllImportsForDll( “cudart.dll” ) ) )
return 0;
}
__except( EXCEPTION_EXECUTE_HANDLER )
{
return 0;
}
return 1;
}
Inside the Sausage Factory: PART 01 (Preamble)
Inside the Sausage Factory: PART 02 (Buy vs. Build?)
Inside the Sausage Factory: PART 03 (_DD)
Inside the Sausage Factory: PART 04 (Feature Driven Development)
Inside the Sausage Factory: PART 05 (Ranking Features)
Inside the Sausage Factory: PART 06 (Data by Design)
Inside the Sausage Factory: PART 07 (Refining the Data Model)
Inside the Sausage Factory: PART 08 (Scripting the Database)
Inside the Sausage Factory: PART 09 (Layers and Foundations)
Inside the Sausage Factory: PART 10 (Choosing The Vietnam of Computer Science…on purpose!)
Inside the Sausage Factory: PART 11 (Dynamic Data Transfer Layer)
Inside the Sausage Factory: PART 12 (UI Mockup)
Inside the Sausage Factory: PART 13 (Data Access Design)
Inside the Sausage Factory: PART 14 (One-liners: the power of libraries)
Inside the Sausage Factory: PART 15 (Strategies for dynamic, ad-hoc run-time queries)
Inside the Sausage Factory: PART 16 (burn-down rates — reality-check!)
Inside the Sausage Factory: PART 17 (Approach to testing the DAL)
Inside the Sausage Factory: PART 18 (Building Data-dependent Unit Tests)
Inside the Sausage Factory: PART 19 (Coding the Data-dependent Unit Tests)
Inside the Sausage Factory: PART 20 (Detour to fix NDbUnit Foreign Keys)
Inside the Sausage Factory: PART 21 (On Model-View-Presenter Patterns)
Inside the Sausage Factory: PART 22 (Mocking the View)
Inside the Sausage Factory: PART 23 (Detour…derailed by CIFactory)
Inside the Sausage Factory: PART 24 (NAnt MbUnit task filter detour)
Inside the Sausage Factory: PART 25 (Arrested by an FxCop)
Inside the Sausage Factory: PART 26 (Building The Dumb View)