2044
submitted 10 months ago by tromars@feddit.de to c/programmerhumor@lemmy.ml
you are viewing a single comment's thread
view the rest of the comments
[-] stephfinitely@artemis.camp 77 points 10 months ago

This person misunderstands a beautiful function code can be very sexy or maybe I'm a odd girl.

[-] nickwitha_k@lemmy.sdf.org 8 points 10 months ago* (last edited 10 months ago)
var LogicGate = map[string]string{
    "OR": "OR",
    "AND":  "AND",
    "NOT": "NOT",
    "NOR": "NOR",
    "NAND": "NOR",
    "XOR": "XOR",
}

func isLogicGate(inString string) (bool) {
    _, ok := LogicGate[strings.ToUpper(inString)]
    if ok {
        return true
    } else {
        return false
    }
}

func stringAsGateLogic(inString string) (bool, error) {
    inSplit := strings.Split(inString, " ")
    var phrase1 strings.Builder
    var phrase2 stringa.Builder
    var gateString string
    for word := range inSplit {
        if isLogicGate(word) {
            if len(gateString) < 1{
                gateString = word
            } else {
                phrase2.WriteString(word)
            }
        } else {
            if len(gateString) < 1{
                phrase1.WriteString(word)
            } else {
                phrase2.WriteString(word)
            }
        }
    }
    boolPhrase1 := bool(phrase1.String())
    boolPhrase2 := bool(phrase2.String())
    switch strings.ToUpper(gateString) {
        case "OR":
            return (boolPhrase1 || boolPhrase2), nil
        case "AND":
            return (boolPhrase1 && boolPhrase2), nil
        case "NOT":
            return (!boolPhrase2), nil
        case "NOR":
            return (!(boolPhrase1 || boolPhrase2)), nil
        case "NAND":
            return (!(boolPhrase1 && boolPhrase2)
        case "XOR":
            orRes := (boolPhrase1 || boolPhrase2)
            nandRes := (!(boolPhrase1 && boolPhrase2))
            return (orRes && nandRes), nil
        default:
            return false, fmt.Errorf("Why you do dis?: %v", inString)
    }
}

func main(){
    answer, err := stringAsGateLogic ("This person misunderstands a beautiful function code can be very sexy or maybe I'm a odd girl.")
    if err != nil {
        fmt.Println(err)
    }
    fmt.Println(answer)
}
[-] deegeese@sopuli.xyz 12 points 10 months ago

Sorry, Hungarian notation is not beautiful.

[-] qaz@lemmy.world 6 points 10 months ago
if ok {
    return true
} else {
    return false
}

Why?

[-] nickwitha_k@lemmy.sdf.org 4 points 10 months ago

Idiomatic Go way of checking for the presence of a key in a map.

[-] QuazarOmega@lemy.lol 3 points 10 months ago

You make want to cry, when are we marrying?

I want a divorce

[-] nickwitha_k@lemmy.sdf.org 2 points 10 months ago

Sorry, merge conflict :(

[-] wallmenis@lemmy.one 3 points 10 months ago

isLogicGate is not used. Maybe you mean to place it in "isGate" in the stringAsGateLogic for loop's if statement?

[-] nickwitha_k@lemmy.sdf.org 6 points 10 months ago

Thank you. That's what I get for writing a drawn-out shitpost program on my phone over several hours while away from home, instead of in a few minutes in vim.

[-] AVincentInSpace@pawb.social 3 points 9 months ago

Speaking of, Vim is actually quite easy to set up on Android. Simply download Termux from F-Droid (the version of Termux on Google Play is severely out of date) and pkg install vim (or nvim if you prefer). (Also, full aarch64 linux terminal on non-rooted Android, woo!) Using Vim with an onscreen keyboard is agonizing, of course, but it does work (Termux provides the Ctrl and Esc keys). The F-Droid app Unexpected Keyboard is a recommended addition -- it's an alternative on-screen keyboard with no predictive text and swiping to the corners of each key for alternate symbols. It makes using Vim on a touchscreen at least moderately less painful.

[-] AnarchistArtificer@slrpnk.net 2 points 9 months ago

From one odd girl to another, I think both can be true

this post was submitted on 01 Sep 2023
2044 points (98.2% liked)

Programmer Humor

31183 readers
194 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 4 years ago
MODERATORS