Explore >> Select a destination


You are here

blog.nuculabs.de
| | qsantos.fr
12.0 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 ?
| | masnun.com
12.6 parsecs away

Travel
| | In Go or Golang, declaring an interface is pretty simple and easy. type Printer interface { Print(string) } We just defined an interface named Printerthat required an implementer to have a method named Printwhich takes a stringparameter and returns nothing. Interfaces are implemented implicitly in Go. Any type that has the Print(string)method implements the interface. [...]
| | markphelps.me
12.4 parsecs away

Travel
| | Converting a library that used code generation to generics in Go 1.18
| | labanskoller.se
75.7 parsecs away

Travel
| Inpired by Hackeriet's blog where Alexander Kjäll use to post CTF write-ups, I've decided to create a personal one for myself. Focus will be on IT security. Hackeriet's blog is powered by Jekyll which is a static site generator written in Ruby. See their post Creating a fast blog for how they set up their blog. I have decided to try another static site generator called Hugo, which is written in Go.