Advertisement
Membership
Login
ACCU Buttons
Browse in : | > Topics |
• Blogs
ACCU Topics
(2)
+
- ACCU magic
in vivo, in vitro, in silico
Description : Frances Buontempo examines the idea of software vivisection. by Frances Buontempo
Category: [ CVu Journal Vol 27, #6 - January 2016 | Programming Topics ]
Description : Frances Buontempo examines the idea of software vivisection. by Frances Buontempo
Category: [ CVu Journal Vol 27, #6 - January 2016 | Programming Topics ]
"HTTPS Everywhere" considered harmful
Description : Silas S. Brown considers an unintended cost of security.
Category: [ CVu Journal Vol 27, #6 - January 2016 | Programming Topics ]
Description : Silas S. Brown considers an unintended cost of security.
Category: [ CVu Journal Vol 27, #6 - January 2016 | Programming Topics ]
Once Again on TCP vs UDP
Description : TCP and UDP have different properties. Sergey Ignatchenko weighs up their pros and cons. by Sergey Ignatchenko
Category: [ Overload Journal #130 - December 2015 | Programming Topics ]
Description : TCP and UDP have different properties. Sergey Ignatchenko weighs up their pros and cons. by Sergey Ignatchenko
Category: [ Overload Journal #130 - December 2015 | Programming Topics ]
Type Mosaicing with Consultables and Delegates
Description : If several classes need to work together lots of boilerplate code is often needed. Nicolas Bouillot introduces type mosaicing to avoid this. by Nicolas Bouillot
Category: [ Overload Journal #130 - December 2015 | Programming Topics ]
Description : If several classes need to work together lots of boilerplate code is often needed. Nicolas Bouillot introduces type mosaicing to avoid this. by Nicolas Bouillot
Category: [ Overload Journal #130 - December 2015 | Programming Topics ]
The Universality and Expressiveness of std::accumulate
Description : Folding is a highly generic operation available through std::accumulate. Paul Keir goes beyond reduction, with the help of C++14’s polymorphic lambdas. by Paul Keir
Category: [ Overload Journal #130 - December 2015 | Programming Topics ]
Description : Folding is a highly generic operation available through std::accumulate. Paul Keir goes beyond reduction, with the help of C++14’s polymorphic lambdas. by Paul Keir
Category: [ Overload Journal #130 - December 2015 | Programming Topics ]
QM Bites – The two sides of Boolean Parameters
Description : Boolean parameters are tempting but make life difficult. Matthew Wilson advises us to avoid them (almost) all the time. by Matthew Wilson
Category: [ Overload Journal #130 - December 2015 | Programming Topics ]
Description : Boolean parameters are tempting but make life difficult. Matthew Wilson advises us to avoid them (almost) all the time. by Matthew Wilson
Category: [ Overload Journal #130 - December 2015 | Programming Topics ]
Identify your Errors better with char[]
Description : Error codes still get used instead of exceptions. Patrick Martin and Dietmar Kühl consider how to use char arrays for better information. by Patrick Martin and Dietmar Kühl
Category: [ Overload Journal #130 - December 2015 | Programming Topics ]
Description : Error codes still get used instead of exceptions. Patrick Martin and Dietmar Kühl consider how to use char arrays for better information. by Patrick Martin and Dietmar Kühl
Category: [ Overload Journal #130 - December 2015 | Programming Topics ]
CPU Clocks and Clock Interrupts, and Their Effects on Schedulers
Description : Instructions to sleep for a second almost never result in precisely one second’s sleep. Bob Schmidt walks us through the mechanics of why. by Bob Schmidt
Category: [ Overload Journal #130 - December 2015 | Programming Topics ]
Description : Instructions to sleep for a second almost never result in precisely one second’s sleep. Bob Schmidt walks us through the mechanics of why. by Bob Schmidt
Category: [ Overload Journal #130 - December 2015 | Programming Topics ]
Bug Hunting
Description : Pete Goodliffe looks for software faults. by Pete Goodliffe
Category: [ CVu Journal Vol 27, #5 - November 2015 | Programming Topics ]
Description : Pete Goodliffe looks for software faults. by Pete Goodliffe
Category: [ CVu Journal Vol 27, #5 - November 2015 | Programming Topics ]
Building C & C++ CLI Programs with the libCLImate Mini-framework
Description : Matthew Wilson presents a framework for simplifying CLI programs. by Matthew Wilson
Category: [ CVu Journal Vol 27, #5 - November 2015 | Programming Topics ]
Description : Matthew Wilson presents a framework for simplifying CLI programs. by Matthew Wilson
Category: [ CVu Journal Vol 27, #5 - November 2015 | Programming Topics ]
Raspberry Pi Linux User Mode GPIO in C++ (Part 3)
Description : Ralph McArdell demonstrates the library with two peripherals on the Pi. by Ralph McArdell
Category: [ CVu Journal Vol 27, #5 - November 2015 | Programming Topics ]
Description : Ralph McArdell demonstrates the library with two peripherals on the Pi. by Ralph McArdell
Category: [ CVu Journal Vol 27, #5 - November 2015 | Programming Topics ]
One Definition Rule
Description : Roger Orr explains an often misunderstood aspect of C++. by Roger Orr
Category: [ CVu Journal Vol 27, #5 - November 2015 | Programming Topics ]
Description : Roger Orr explains an often misunderstood aspect of C++. by Roger Orr
Category: [ CVu Journal Vol 27, #5 - November 2015 | Programming Topics ]
Functional Programming in C++
Description : Richard Falconer reports on an ACCU talk by Kevlin Henney. by Richard Falconer
Category: [ CVu Journal Vol 27, #5 - November 2015 | Programming Topics ]
Description : Richard Falconer reports on an ACCU talk by Kevlin Henney. by Richard Falconer
Category: [ CVu Journal Vol 27, #5 - November 2015 | Programming Topics ]
Code Critique Competition 96
Description : Set and collated by Roger Orr. A book prize is awarded for the best entry. by Roger Orr
Category: [ CVu Journal Vol 27, #5 - November 2015 | Programming Topics ]
Description : Set and collated by Roger Orr. A book prize is awarded for the best entry. by Roger Orr
Category: [ CVu Journal Vol 27, #5 - November 2015 | Programming Topics ]
Introducing Concepts
Description : Concepts in C++11 had many false starts. Andrew Sutton show why they are a big deal now they are with us. by Andrew Sutton
Category: [ Overload Journal #129 - October 2015 | Programming Topics ]
Description : Concepts in C++11 had many false starts. Andrew Sutton show why they are a big deal now they are with us. by Andrew Sutton
Category: [ Overload Journal #129 - October 2015 | Programming Topics ]
Building and Running Software on an Ubuntu Phone
Description : Many of us has a smartphone. Alan Griffiths shows us how to hack an Ubuntu Touch phone. by Alan Griffiths
Category: [ Overload Journal #129 - October 2015 | Programming Topics ]
Description : Many of us has a smartphone. Alan Griffiths shows us how to hack an Ubuntu Touch phone. by Alan Griffiths
Category: [ Overload Journal #129 - October 2015 | Programming Topics ]
Password Hashing: Why and How
Description : Password hashing is important. Sergey Ignatchenko explains how to do it properly. by Sergey Ignatchenko
Category: [ Overload Journal #129 - October 2015 | Programming Topics ]
Description : Password hashing is important. Sergey Ignatchenko explains how to do it properly. by Sergey Ignatchenko
Category: [ Overload Journal #129 - October 2015 | Programming Topics ]
An Inline-variant-visitor with C++ Concepts
Description : Concepts are abstract. Jonathan Coe and Andrew Sutton provide us with a concrete example of their use. by Jonathan Coe
Category: [ Overload Journal #129 - October 2015 | Programming Topics ]
Description : Concepts are abstract. Jonathan Coe and Andrew Sutton provide us with a concrete example of their use. by Jonathan Coe
Category: [ Overload Journal #129 - October 2015 | Programming Topics ]
The Very Model of a Model Modern Programmer
Description : Pete Goodliffe asks what defines you as a programmer. by Pete Goodliffe
Category: [ CVu Journal Vol 27, #4 - September2015 | Process Topics ]
Description : Pete Goodliffe asks what defines you as a programmer. by Pete Goodliffe
Category: [ CVu Journal Vol 27, #4 - September2015 | Process Topics ]
Refactoring Guided by Duplo
Description : Thaddaeus Frogley gets to grips with duplicated code. by Thaddaeus Frogley
Category: [ CVu Journal Vol 27, #4 - September2015 | Programming Topics ]
Description : Thaddaeus Frogley gets to grips with duplicated code. by Thaddaeus Frogley
Category: [ CVu Journal Vol 27, #4 - September2015 | Programming Topics ]