Advertisement
Membership
Login
ACCU Buttons
Browse in : | > Journals > Overload |
• Blogs
ACCU Topics
(2)
- ACCU magic
A Thorough Introduction to Distributed Systems
Description : What is a distributed system, and why is it so complicated? Stanislav Kozlovski explains. by Stanislav Kozlovski
Category: [ Overload Journal #149 - February 2019 | Design of applications and programs ]
Description : What is a distributed system, and why is it so complicated? Stanislav Kozlovski explains. by Stanislav Kozlovski
Category: [ Overload Journal #149 - February 2019 | Design of applications and programs ]
Don’t Use std::endl
Description : How do you add a new line in C++? Chris Sharpe suggests std::endl is a tiny utility that’s more trouble than it’s worth. by Chris Sharpe
Category: [ Overload Journal #149 - February 2019 | Design of applications and programs ]
Description : How do you add a new line in C++? Chris Sharpe suggests std::endl is a tiny utility that’s more trouble than it’s worth. by Chris Sharpe
Category: [ Overload Journal #149 - February 2019 | Design of applications and programs ]
Afterwood
Description : Good workers tidy up after themselves – it avoids accidents and makes them more productive. Chris Oldwood argues that good software developers should do the same. by Chris Oldwood
Category: [ Overload Journal #149 - February 2019 | Process Topics ]
Description : Good workers tidy up after themselves – it avoids accidents and makes them more productive. Chris Oldwood argues that good software developers should do the same. by Chris Oldwood
Category: [ Overload Journal #149 - February 2019 | Process Topics ]
Revolution, Restoration and Revival
Description : Trends cycle in seasons. Frances Buontempo wonders what programmers should on the lookout for. by Frances Buontempo
Category: [ Overload Journal #148 - December 2018 | Journal Editorial ]
Description : Trends cycle in seasons. Frances Buontempo wonders what programmers should on the lookout for. by Frances Buontempo
Category: [ Overload Journal #148 - December 2018 | Journal Editorial ]
Diseconomies of Scale
Description : Bigger is not always better. Allan Kelly considers when smaller is more productive. by Allan Kelly
Category: [ Overload Journal #148 - December 2018 | Design of applications and programs ]
Description : Bigger is not always better. Allan Kelly considers when smaller is more productive. by Allan Kelly
Category: [ Overload Journal #148 - December 2018 | Design of applications and programs ]
Flip Model: A Design Pattern
Description : Publishing dynamic, complex data to many clients in a threadsafe manner is challenging. Daniele Pallastrelli presents the Flip model pattern to overcome the challenges. by Daniele Pallastrelli
Category: [ Overload Journal #148 - December 2018 | Design of applications and programs ]
Description : Publishing dynamic, complex data to many clients in a threadsafe manner is challenging. Daniele Pallastrelli presents the Flip model pattern to overcome the challenges. by Daniele Pallastrelli
Category: [ Overload Journal #148 - December 2018 | Design of applications and programs ]
Memory Management Patterns in Business-Level Programs
Description : There are many memory management patterns. Sergey Ignatchenko considers these from an application level. by Sergey Ignatchenko
Category: [ Overload Journal #148 - December 2018 | Design of applications and programs ]
Description : There are many memory management patterns. Sergey Ignatchenko considers these from an application level. by Sergey Ignatchenko
Category: [ Overload Journal #148 - December 2018 | Design of applications and programs ]
Compile-time Data Structures in C++17: Part 3, Map of Values
Description : A compile time map of values allows code to be tested more easily. Bronek Kozicki demonstrates how to avoid a central repository of values. by Bronek Kozicki
Category: [ Overload Journal #148 - December 2018 | Design of applications and programs ]
Description : A compile time map of values allows code to be tested more easily. Bronek Kozicki demonstrates how to avoid a central repository of values. by Bronek Kozicki
Category: [ Overload Journal #148 - December 2018 | Design of applications and programs ]
Algol 68 – A Retrospective
Description : Algol 68 has influenced programming languages in many ways. Daniel James reminds us just how many. by Daniel James
Category: [ Overload Journal #148 - December 2018 | Programming Topics ]
Description : Algol 68 has influenced programming languages in many ways. Daniel James reminds us just how many. by Daniel James
Category: [ Overload Journal #148 - December 2018 | Programming Topics ]
Measuring Throughput and the Impact of Cache-line Awareness
Description : How do you measure throughput? Richard Reich and Wesley Maness investigate suitable metrics. by Richard Reich & Wesley Maness
Category: [ Overload Journal #148 - December 2018 | Design of applications and programs ]
Description : How do you measure throughput? Richard Reich and Wesley Maness investigate suitable metrics. by Richard Reich & Wesley Maness
Category: [ Overload Journal #148 - December 2018 | Design of applications and programs ]
Afterwood
Description : Renovation or redecorating throws up decisions. Chris Oldwood reminds us to make sympathetic changes. by Chris Oldwood
Category: [ Overload Journal #148 - December 2018 | Process Topics ]
Description : Renovation or redecorating throws up decisions. Chris Oldwood reminds us to make sympathetic changes. by Chris Oldwood
Category: [ Overload Journal #148 - December 2018 | Process Topics ]
Are we nearly there yet?
Description : Deciding if you are making progress can be a challenge. Frances Buontempo considers various metrics and their effects. by Frances Buontempo
Category: [ Overload Journal #147 - October 2018 | Project Management | Journal Editorial ]
Description : Deciding if you are making progress can be a challenge. Frances Buontempo considers various metrics and their effects. by Frances Buontempo
Category: [ Overload Journal #147 - October 2018 | Project Management | Journal Editorial ]
How to Write a Programming Language: Part 3, The Evaluator
Description : We’ve parsed our tokens: now we need turn them into values. Andy Balaam continues writing a programming language with the evaluator. by Andy Balaam
Category: [ Overload Journal #147 - October 2018 | Programming Topics ]
Description : We’ve parsed our tokens: now we need turn them into values. Andy Balaam continues writing a programming language with the evaluator. by Andy Balaam
Category: [ Overload Journal #147 - October 2018 | Programming Topics ]
P1063 vs Coroutines TS: Consensus on High-Level Semantics
Description : Dmytro Ivanchykhin, Sergey Ignatchenko and Maxim Blashchuk argue that we need coroutines TS now to improve-based-on-experience later. by Dmytro Ivanchykhin, Sergey Ignatchenko and Maxim Blashchuk
Category: [ Overload Journal #147 - October 2018 | Programming Topics ]
Description : Dmytro Ivanchykhin, Sergey Ignatchenko and Maxim Blashchuk argue that we need coroutines TS now to improve-based-on-experience later. by Dmytro Ivanchykhin, Sergey Ignatchenko and Maxim Blashchuk
Category: [ Overload Journal #147 - October 2018 | Programming Topics ]
Implementing the Spaceship Operator for Optional
Description : Comparison operators can get complicated. Barry Revzin explores how the new operator <=> helps. by Barry Revzin
Category: [ Overload Journal #147 - October 2018 | Programming Topics ]
Description : Comparison operators can get complicated. Barry Revzin explores how the new operator <=> helps. by Barry Revzin
Category: [ Overload Journal #147 - October 2018 | Programming Topics ]
Compile-time Data Structures in C++17: Part 2, Map of Types
Description : Compile time type selection allows static polymorphsim. Bronek Kozicki details an implementation of a compile time map. by Bronek Kozicki
Category: [ Overload Journal #147 - October 2018 | Programming Topics ]
Description : Compile time type selection allows static polymorphsim. Bronek Kozicki details an implementation of a compile time map. by Bronek Kozicki
Category: [ Overload Journal #147 - October 2018 | Programming Topics ]
Should I Lead by Example?
Description : Stuck on a problem? Frances Buontempo considers where to turn to for inspiration. by Frances Buontempo
Category: [ Overload Journal #146 - August 2018 | Journal Editorial ]
Description : Stuck on a problem? Frances Buontempo considers where to turn to for inspiration. by Frances Buontempo
Category: [ Overload Journal #146 - August 2018 | Journal Editorial ]
Cache-Line Aware Data Structures
Description : Structuring your program to consider memory can improve performance. Wesley Maness and Richard Reich demonstrate this with a producer–consumer queue. by Wesley Maness and Richard Reich
Category: [ Overload Journal #146 - August 2018 | Programming Topics ]
Description : Structuring your program to consider memory can improve performance. Wesley Maness and Richard Reich demonstrate this with a producer–consumer queue. by Wesley Maness and Richard Reich
Category: [ Overload Journal #146 - August 2018 | Programming Topics ]
miso: Micro Signal/Slot Implementation
Description : The Observer pattern has many existing implementations. Deák Ferenc presents a new implementation using modern C++ techniques. by Deák Ferenc
Category: [ Overload Journal #146 - August 2018 | Programming Topics ]
Description : The Observer pattern has many existing implementations. Deák Ferenc presents a new implementation using modern C++ techniques. by Deák Ferenc
Category: [ Overload Journal #146 - August 2018 | Programming Topics ]
(Re)Actor Allocation at 15 CPU Cycles
Description : (Re)Actor serialisation requires an allocator. Sergey Ignatchenko, Dmytro Ivanchykhin and Marcos Bracco pare malloc/free down to 15 CPU cycles. by Sergey Ignatchenko, Dmytro Ivanchykhin and Marcos Bracco
Category: [ Overload Journal #146 - August 2018 | Programming Topics ]
Description : (Re)Actor serialisation requires an allocator. Sergey Ignatchenko, Dmytro Ivanchykhin and Marcos Bracco pare malloc/free down to 15 CPU cycles. by Sergey Ignatchenko, Dmytro Ivanchykhin and Marcos Bracco
Category: [ Overload Journal #146 - August 2018 | Programming Topics ]