September 7, 2007
August 1, 2007
Fixing the Firefox memory leak
in case you didnt know Firefox has a small memory leakage problems that can cause your pc to freeze up. basically what happens is when you minimize Firefox it stops consuming memory, however when you maximize it again the memory usage will increase, sometimes even doubling. fortunately, there is a small fix that you can implement.
heres what you do:
1. Open Firefox and go to the Address Bar. Type in about:config and then press Enter.
2. Right Click in the page and select New -> Boolean.
3. In the box that pops up enter config.trim_on_minimize. Press Enter.
4. Now select True and then press Enter.
5. Restart Firefox.
via
March 30, 2007
Eric Niebler @ NWCPP: Text Processing with Boost
Eric Niebler - Text Processing with Boost February 2007 meeting of the Northwest C++ Users Group.
video here
The abysmal support in the C and C++ ... all » standard libraries for string handling has driven many programmers to other languages like Perl and Python. Boost aims to reverse that trend. Libraries such as Boost.Lexical_cast, Boost.String_algo, Boost.Regex, Boost.Xpressive and Boost.Spirit are invaluable tools for slicing and dicing strings. If your task is as simple as turning an integer into a string, or as complicated as developing a parser generator for a new scripting language, Boost has a library that can help. In addition to covering all the afore mentioned libraries from a user's perspective, we'll also look at how Boost can be used to get more out of the standard IOstreams, and discover some hidden gems in Boost for dealing with Unicode.
video here
Concepts Extending C++ Templates For Generic Programming
Concepts are a major addition to C++0x that make templates more robust, more powerful, ... all » and easier to write and use. At their most basic level, concepts provide a type system for templates. Using concepts, the C++ compiler is able to detect errors in the definition and use of templates before they are instantiated. One immediately obvious benefit of this separate type-checking capability is a dramatic improvement in error messages resulting from improper use of templates. Look a little deeper and we find that concepts support an entirely new programming paradigm, Generic Programming, enabling the construction of a new breed of generic libraries that provide better extensibility, composability, and usability than what is possible with today's C++.
This talk will provide an overview of the new features introduced by concepts and how they will benefit C++ programmers. We will see how concepts can be used to express the core components of the C++ Standard (Template) Library, and explore some of the new capabilities that concepts bring to the C++ language.
video here
New Features in the Next C++ Standard
New Features in the Next C++ Standard
The upcoming C++ standard will have many new features, several major and many minor. The ... all » major features are concurrency, template concepts, move semantics, generalized constant expressions, automatic variable typing, and garbage collection. We will present an overview of the major features and breeze through a list of other features, commenting on their likeliness to make the standard.
Subscribe to:
Posts (Atom)
