Advertisement
Membership
Login
ACCU Buttons
Programming Topics or Design of applications and programs or Overload Journal #118 - December 2013
Browse in : |
All
> Topics
> Programming All > Topics > Design All > Journals > Overload > o118 All of these categories |
- Options:
- View Article Map
- View Archives
Making a Linux Desktop
Description : Alan Griffiths adds support for shell components to the desktop environment.
Category: [ Design of applications and programs | CVu Journal Vol 32, #4 - September 2020 ]
Description : Alan Griffiths adds support for shell components to the desktop environment.
Category: [ Design of applications and programs | CVu Journal Vol 32, #4 - September 2020 ]
Making a Linux Desktop – Launching Applications
Description : Alan Griffiths continues his series on the Mir desktop.
Category: [ Programming Topics | CVu Journal Vol 32, #1 - March 2020 ]
Description : Alan Griffiths continues his series on the Mir desktop.
Category: [ Programming Topics | CVu Journal Vol 32, #1 - March 2020 ]
Making a Linux Desktop: Painting Some Wallpaper
Description : Alan Griffiths continues his series on coding with the Mir library.
Category: [ Design of applications and programs | CVu Journal Vol 31, #5 - November 2019 ]
Description : Alan Griffiths continues his series on coding with the Mir library.
Category: [ Design of applications and programs | CVu Journal Vol 31, #5 - November 2019 ]
Making a Linux Desktop
Description : Alan Griffiths illustrates how to get started with Mir.
Category: [ Design of applications and programs | CVu Journal Vol 31, #4 - September 2019 ]
Description : Alan Griffiths illustrates how to get started with Mir.
Category: [ Design of applications and programs | CVu Journal Vol 31, #4 - September 2019 ]
Modern SAT solvers: fast, neat and underused (part 1 of N)
Description : SAT solvers can quickly find solutions to Boolean Logic problems. Martin Hořeňovský demonstrates how this can be used to solve arbitrary Sudoku puzzles.
Category: [ Design of applications and programs | Overload Journal #150 - April 2019 ]
Description : SAT solvers can quickly find solutions to Boolean Logic problems. Martin Hořeňovský demonstrates how this can be used to solve arbitrary Sudoku puzzles.
Category: [ Design of applications and programs | Overload Journal #150 - April 2019 ]
Memory Management Patterns in Business-Level Programs
Description : There are many memory management patterns. Sergey Ignatchenko considers these from an application level.
Category: [ Design of applications and programs | Overload Journal #148 - December 2018 ]
Description : There are many memory management patterns. Sergey Ignatchenko considers these from an application level.
Category: [ Design of applications and programs | Overload Journal #148 - December 2018 ]
Measuring Throughput and the Impact of Cache-line Awareness
Description : How do you measure throughput? Richard Reich and Wesley Maness investigate suitable metrics.
Category: [ Design of applications and programs | Overload Journal #148 - December 2018 ]
Description : How do you measure throughput? Richard Reich and Wesley Maness investigate suitable metrics.
Category: [ Design of applications and programs | Overload Journal #148 - December 2018 ]
miso: Micro Signal/Slot Implementation
Description : The Observer pattern has many existing implementations. Deák Ferenc presents a new implementation using modern C++ techniques.
Category: [ Programming Topics | Overload Journal #146 - August 2018 ]
Description : The Observer pattern has many existing implementations. Deák Ferenc presents a new implementation using modern C++ techniques.
Category: [ Programming Topics | Overload Journal #146 - August 2018 ]
Monitoring: Turning Noise into Signal
Description : Creating useful logging is a constant challenge. Chris Oldwood shows us how structured logging helps.
Category: [ Design of applications and programs | Overload Journal #144 - April 2018 ]
Description : Creating useful logging is a constant challenge. Chris Oldwood shows us how structured logging helps.
Category: [ Design of applications and programs | Overload Journal #144 - April 2018 ]
Marking Benches
Description : Too slow! Russel Winder reminds us that benchmarking code performance is a complicated issue.
Category: [ Design of applications and programs | Overload Journal #141 - October 2017 ]
Description : Too slow! Russel Winder reminds us that benchmarking code performance is a complicated issue.
Category: [ Design of applications and programs | Overload Journal #141 - October 2017 ]
Metaclasses: Thoughts on Generative C++
Description : Can you simplify C++ with minimal library extension? Herb Sutter shows how metaclasses could make this possible.
Category: [ Design of applications and programs | Overload Journal #140 - August 2017 ]
Description : Can you simplify C++ with minimal library extension? Herb Sutter shows how metaclasses could make this possible.
Category: [ Design of applications and programs | Overload Journal #140 - August 2017 ]
Myths about ‘Big Data’
Description : Reginald Garnepudi dispels some of the hype around one popular technology.
Category: [ Programming Topics | CVu Journal Vol 29, #2 - May 2017 ]
Description : Reginald Garnepudi dispels some of the hype around one popular technology.
Category: [ Programming Topics | CVu Journal Vol 29, #2 - May 2017 ]
Mean Properties
Description : Property based testing is all the rage. Russel Winder walks us through an example of properties an arithmetic mean function should have.
Category: [ Programming Topics | Overload Journal #137 - February 2017 ]
Description : Property based testing is all the rage. Russel Winder walks us through an example of properties an arithmetic mean function should have.
Category: [ Programming Topics | Overload Journal #137 - February 2017 ]
Multiprocessing and Clusters in Python
Description : Multiprocessing is possible in Python. Silas S. Brown shows us various ways.
Category: [ Programming Topics | Overload Journal #137 - February 2017 ]
Description : Multiprocessing is possible in Python. Silas S. Brown shows us various ways.
Category: [ Programming Topics | Overload Journal #137 - February 2017 ]
Modern C++ Features: User-Defined Literals
Description : User-defined literals were introduced in C++11. Arne Mertz walks us through their use.
Category: [ Programming Topics | Overload Journal #136 - December 2016 ]
Description : User-defined literals were introduced in C++11. Arne Mertz walks us through their use.
Category: [ Programming Topics | Overload Journal #136 - December 2016 ]
Multi-threading at Business-logic Level is Considered Harmful
Description : Multi-threaded code promises potential speed-up. Sergey Ignatchenko considers how it often slows things down instead.
Category: [ Programming Topics | Overload Journal #128 - August 2015 ]
Description : Multi-threaded code promises potential speed-up. Sergey Ignatchenko considers how it often slows things down instead.
Category: [ Programming Topics | Overload Journal #128 - August 2015 ]
Meet the Social Side of Your Codebase
Description : Programming requires collaboration. Adam Tornhill suggests some ways to uncover communication paths in your organisation.
Category: [ Programming Topics | Overload Journal #127 - June 2015 ]
Description : Programming requires collaboration. Adam Tornhill suggests some ways to uncover communication paths in your organisation.
Category: [ Programming Topics | Overload Journal #127 - June 2015 ]
Mocks are Bad, Layers are Bad
Description : Many people use mocks in their unit tests. Andy Balaam asks if there’s a better way.
Category: [ Programming Topics | Overload Journal #127 - June 2015 ]
Description : Many people use mocks in their unit tests. Andy Balaam asks if there’s a better way.
Category: [ Programming Topics | Overload Journal #127 - June 2015 ]
Make and Forward Consultables and Delegates
Description : Sometimes forwarding to a contained object requires lots of boilerplate code. Nicolas Bouillot introduces consultables and delegates to automate this.
Category: [ Programming Topics | Overload Journal #127 - June 2015 ]
Description : Sometimes forwarding to a contained object requires lots of boilerplate code. Nicolas Bouillot introduces consultables and delegates to automate this.
Category: [ Programming Topics | Overload Journal #127 - June 2015 ]
Making a Tool of Deception
Description : Is it possible to use modern C++ to make mocking easy? Björn Fahller introduces Trompeloeil, a header-only mocking framework for C++14.
Category: [ Programming Topics | Overload Journal #125 - February 2015 ]
Description : Is it possible to use modern C++ to make mocking easy? Björn Fahller introduces Trompeloeil, a header-only mocking framework for C++14.
Category: [ Programming Topics | Overload Journal #125 - February 2015 ]