You are here |
jimpurbrick.com | ||
| | | |
lincolnmullen.com
|
|
| | | | I often have small snippets of Markdown that I want to copy to the clipboard and then paste as HTML. I thought about writing an extension for Visual Studio Code, or a custom script for Boop. But that seemed like a lot of work for a simple task. And then I remembered: Unix. pbpaste | pandoc | pbcopy There is a one-liner which will work on a Mac to paste Markdown into Pandoc and then copy the resulting HTML back to the clipboard. | |
| | | |
nodogmablog.bryanhogan.net
|
|
| | | | It is easy to debug an AWS Lambda function locally with Visual Studio Code, all you need to do is install one tool and make one change to the launch.json file. Read on to see how. | |
| | | |
www.foonathan.net
|
|
| | | | Let me share a useful insight with you: constexpr is a platform. Just like you write code that targets Windows or a microcontroller, you write code that targets compile-time execution. In both cases you restrict yourself to the subset of C++ that works on your target platform, use conditional compilation if your code needs to be portable, and execute it on the desired target platform. You can thus view constexpr as another platform you can target; it just so happens to be run by your compiler. This insig... | |
| | | |
www.jeremymorgan.com
|
|
| | In this guide, we will explore the different ways to convert a string into bytes in Python. We will discuss the most common methods and their applications, as well as provide examples and code snipp ... |