Explore >> Select a destination


You are here

denniskubes.com
| | eyakubovich.github.io
13.7 parsecs away

Travel
| | The guidance around function arguments and smart pointers is quite old, yet I still see it used incorrectly. In this post, we'll explore the guidance and the costs of not following the advice. C++ Core Guidelines make this point clear: F.7: For general use, take T* or T& arguments rather...
| | qsantos.fr
6.5 parsecs away

Travel
| | This article will quickly explain the Rust types [T; N], &[T; N], &[T], Vec, &Vec with C code, and what the str, &str, String, OsString and CString add. Arrays and Slices Rust C [T; N] (array)Example: [i32; 100]Allocated on the stack T[N]Example: int[100]Allocated on the stack &[T; N] (array reference)Example: &[i32; 100]N is tracked at ... Continue reading Rust Strings for C Programmers ?
| | golangbot.com
6.1 parsecs away

Travel
| | A pointer is a variable that stores the memory address of another variable. This tutorial covers pointer declaration, dereferencing and various other topics with examples.
| | acorwin.com
148.9 parsecs away

Travel
| Have you ever thought, "huh, I wonder how easily I could DDoS myself despite all the hard work of library and framework authors?" In that case, have I got news for you! In the vein of Uses and Abuses Of Python's Excessive Dynamism, I have found a way to DDoS yourself via hash collision in...