utils-cli 1.1.1

a compilation of utility scripts for every day use in building applications and using certain features on my laptop
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub fn security_questions() -> [&'static str; 10] {
    [
        "What is your mother's maiden name?",
        "What is the name of your first pet?",
        "What city were you born in?",
        "What is your favorite movie?",
        "What street did you grow up on?",
        "What is the name of your favorite teacher?",
        "What is your favorite book?",
        "What is your favorite food?",
        "What is the model of your first car?",
        "What is your favorite color?",
    ]
}