Explore >> Select a destination


You are here

www.codeandunicorns.com
| | www.onetransistor.eu
15.9 parsecs away

Travel
| | How to control FV865ND VFD display with HT16515 controller using Arduino library.
| | diyelectromusic.com
18.0 parsecs away

Travel
| | After getting the Arduino and SP0256A-AL2 working I wondered if I could repeat the trick from the Arduino and AY-3-8910 and have the Arduino generate the required clock signal for the SP0256A-AL2. This post starts to look at that question. https://makertube.net/w/paGX4eiCAHgLU9mK2x3uyq Warning! I strongly recommend using old or second hand equipment for your experiments. I...
| | www.cppstories.com
22.7 parsecs away

Travel
| | What do you do when the code for a variable initialization is complicated? Do you move it to another method or write inside the current scope? In this blog post, I'd like to present a trick that allows computing a value for a variable, even a const variable, with a compact notation.
| | cppstories.com
24.7 parsecs away

Travel
| Some time ago I covered how to use custom deleters with smart pointers. The basic idea is to specify a dedicated method that will be called when a pointer is released. One logical application of custom deleters might be resource handles like files or the WinApi HANDLE type. Let's see how can we implement such thing.