Explore >> Select a destination


You are here

educatedguesswork.org
| | andybrown.me.uk
16.4 parsecs away

Travel
| | Here's the big one, the Transport Control Protocol (TCP) is the connection-oriented, reliable end-to-end messaging transport required by all the biggest internet protocols, most notably HTTP. My ex...
| | iosoft.blog
13.4 parsecs away

Travel
| | In part 5, we joined a WiFi network, and used 'ping' to contact another unit on that network, but this was achieved by setting the IP address manually, which is generally known as using a 'static' IP. The alternative is to use a 'dynamic' IP, that a central server (such as the WiFi Access Point)...
| | kaspars.net
15.3 parsecs away

Travel
| | Update: The protocol is now well understood and supported by the Neolink RTSP bridge software and this fork of the Camera Proxy project. Battery powered cameras from Reolink offer remote viewing and management even when cameras are behind mobile network data connections. Based on this research by Nozomi Networks Labs and the camera_proxy project, I've...
| | qsantos.fr
132.3 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 ?