$ echo $?
Option
type?use std::mem::size_of;
macro_rules! show_size {
=> (
(header) println!("{:<22} {:>4} {}", "Type", "T", "Option<T>");
;
)$t:ty) => (
(println!("{:<22} {:4} {:4}", stringify!($t), size_of::<$t>(), size_of::<Option<$t>>())
)}
fn main() {
show_size!(header);
show_size!(i32);
show_size!(&i32);
show_size!(Box<i32>);
show_size!(&[i32]);
show_size!(Vec<i32>);
show_size!(Result<(), Box<i32>>);
}
$ git checkout old-name
$ git branch -m new-name
$ git clone --depth 1 --branch <tag_name> <repo_url>
$ git checkout tags/<tag_name>
git log --all --decorate --oneline --graph
$ dart create -t package <PACKAGE_NAME>
$ amixer -D pulse sset Master 100%
#!/bin/bash
for i in *.avi;
do ffmpeg -i "$i" -c:v libx264 -preset ultrafast "$(basename "$i" .avi)".mp4;
done
wget -r <web address>
updated: 2022-12-31 14:16:41.569476892 UTC