Memory-safe malware: Rust challenges security researchers
the fact that the same features that make rust great in terms of memory safety also make it easier to hide the actual security vulnerabilities
we are in an era where malware is safer than most software. imagine using c++ these days π
the fact that the same features that make rust great in terms of memory safety also make it easier to hide the actual security vulnerabilities
we are in an era where malware is safer than most software. imagine using c++ these days π
π1π₯°1
A sequence expression takes the form x..y[..incr], where x and y are either integers or letters, and incr, an optional increment, is an integer. When integers are supplied, the expression expands to each number between x and y, inclusive. [..]. When letters are supplied, the expression expands to each character lexicographically between x and y, inclusive, using the C locale. Note that both x and y must be of the same type (integer or letter). When the increment is supplied, it is used as the difference between each term. The default increment is 1 or -1 as appropriate.
wtf
$ mkdir -p ~/Documents/ Work/ {notes, uploads}/
i wouldn't trust a person who knows this kind of stuff
π₯°Brace Expansionπ₯°
wtf
$ mkdir -p ~/Documents/ Work/ {notes, uploads}/
mkdir: created directory: '/home/user/Documents/Work
mkdir: created directory: '/home/user/Documents/Work/notes'
mkdir created directory: /home/user/Documents/Work/uploads'
i wouldn't trust a person who knows this kind of stuff
π₯°Brace Expansionπ₯°
β€2