Tags: #visualstudio #code #tutorial
"Over the last few months, we have heard a lot of requests with respect to adding capability to Visual Studio Code to allow developers to build their C/C++ application."
https://blogs.msdn.microsoft.com/vcblog/2016/10/24/building-your-c-application-with-visual-studio-code/
"Over the last few months, we have heard a lot of requests with respect to adding capability to Visual Studio Code to allow developers to build their C/C++ application."
https://blogs.msdn.microsoft.com/vcblog/2016/10/24/building-your-c-application-with-visual-studio-code/
Tags: #minimizing #code #declarative #vs #imperative
The idea of good code varies from person to person, from language to language, and also varies between problem domains.
http://blog.demofox.org/2016/11/13/minimizing-code-complexity-by-programming-declaratively/
The idea of good code varies from person to person, from language to language, and also varies between problem domains.
http://blog.demofox.org/2016/11/13/minimizing-code-complexity-by-programming-declaratively/
The blog at the bottom of the sea
Minimizing Code Complexity by Programming Declaratively
Writing good code is something all programmers aspire to, but the definition of what actually makes good code can be a bit tricky to pin down. The idea of good code varies from person to person, fr…
Tags: #cpp17 #tranformation #code #improve
"I've spent a bit of time today updating my own basic windowing library to use C++17 features. Some of the things have been simple transforms such as converting 'typedef' to 'using', others have been more OCD satisfying;"
http://www.gamedev.net/blog/42/entry-2262470-c-17-transformation/
"I've spent a bit of time today updating my own basic windowing library to use C++17 features. Some of the things have been simple transforms such as converting 'typedef' to 'using', others have been more OCD satisfying;"
http://www.gamedev.net/blog/42/entry-2262470-c-17-transformation/
www.gamedev.net
C++ 17 Transformation... - GameDev.net
Im basically really bad at working on my own projects, but with the recent release of Visual Studio 2017 RC and its improved C++17 support I figured...
Tags: #howto #writing #fast #code
I’m about to show you some of the fastest code there is.
http://blog.demofox.org/2016/12/06/the-secret-to-writing-fast-code-how-fast-code-gets-slow/
I’m about to show you some of the fastest code there is.
http://blog.demofox.org/2016/12/06/the-secret-to-writing-fast-code-how-fast-code-gets-slow/
The blog at the bottom of the sea
The Secret to Writing Fast Code / How Fast Code Gets Slow
This is a “soft tech” post. If that isn’t your thing, don’t worry, I’ll be returning to some cool “hard tech” and interesting algorithms after this. I̵…
Tags: #optimize #code
"In this post I would like to propose a technique based on levels of abstraction to transform an obscure piece of code into expressive and elegant one..."
http://www.fluentcpp.com/2017/01/03/super-expressive-code-by-raising-levels-of-abstraction/
"In this post I would like to propose a technique based on levels of abstraction to transform an obscure piece of code into expressive and elegant one..."
http://www.fluentcpp.com/2017/01/03/super-expressive-code-by-raising-levels-of-abstraction/
Fluent C++
Super expressive code by Raising Levels of Abstraction
Expressive code in C++
Tags: #code #example
http://www.techiedelight.com/find-pairs-given-difference-k-array-constant-space-solution/
http://www.techiedelight.com/find-pairs-given-difference-k-array-constant-space-solution/
Techie Delight
Find pairs with difference `k` in an array | Constant Space Solution | Techie Delight
Given an unsorted integer array, find all pairs with a given difference `k` in it without using any extra space.