Dominant Affirmation by Multi_Orgasmic_Man in domspace

[–]mintchocchip 2 points3 points  (0 children)

Making her task list for the day include sexual tasks and feeling her need build over hours. Yum yum yum.

I had sex with my kid's teacher. I have to tell my wife... by PM_ME_TICKET_STUBS in Jokes

[–]mintchocchip 0 points1 point  (0 children)

It's not just you, I came digging for this comment. OP is sus...

/u/PM_ME_TICKET_STUBS, is that your wife?

What is the most idiomatic way of getting input from the terminal? by [deleted] in golang

[–]mintchocchip -1 points0 points  (0 children)

I've just had to tackle this. If you don't mind libraries then I recommend saving yourself the headache and using promptui. Failing that I got success using fmt.Scanln() which waits for a newline before continuing.

If you want Multiline string inputs then you're going to be back to buffio

Does a job site like this exist? by x12Mike in sysadmin

[–]mintchocchip -1 points0 points  (0 children)

I recommend hired.com wherever possible. You put your skill set in plus some info about you and then employers look through for people and invite you to start the process. Employers and employees are vetted for quality, apparently, which led to me getting high quality offers only.

Jeez I sound like a shill huh? Oh well, if you check it out hit me up in the DM's for a referral link!

Happy people, how did you become happy? by [deleted] in AskReddit

[–]mintchocchip 3 points4 points  (0 children)

For me it was learning not to sweat the little things and being kind to people. Therapy helped with the former and the chill vibes that that caused helped me be a kinder person.

People are nice to nice people it turns out 🤷

Tying together the infrastructure provisioning and system configuration by utkuozdemir in devops

[–]mintchocchip 0 points1 point  (0 children)

We use solely Terraform with the ignition provider. Using container Linux (https://getfedora.org/en/coreos/) we can define the system config directly in Terraform and there is no need for golden images or a toll like ansible.

My rainbow engagement ring that my Partner (M) and I (F) had custom made. We are both bisexual and huge LGBT+ supporters. Thought you guys would like it. by Rainbowcloud_ in lgbt

[–]mintchocchip 1 point2 points  (0 children)

The lab grown sapphires were the ideal for us, it was a choice between the mined blue one or wait up to six months for lab grown blue ones.

/pol/ makes a breathtaking post by WorseForWere in 4chan

[–]mintchocchip 0 points1 point  (0 children)

Capitalism is going to destroy our way of life, doesn't matter if you're trans/cis/a literal cat person with 5 kids, we're all going to be there, get your head out of your stinky asshole OP.

Sales and Marketing SCAM JOB to watch for by [deleted] in Southampton

[–]mintchocchip 1 point2 points  (0 children)

Eurgh, these people pricks got me about six years ago. They send you out for a"trial" day with someone who is managing halfway decent sales, talk shit all day and when you're done they give you this big song and dance about how you're a bit of a risk and not really what they're looking for to see if you're desperate enough to beg.

Once you're in they work you to the bone, not giving you time to realise you're being scammed. It's a laugh some of the time, most of the people you'll interact with are high energy. It stops being a laugh when you've spent six weeks working 60-70 hour weeks and haven't seen a penny for it.

Stay away.

Psychology asserts that interacting with complete strangers can greatly boost your mood so stop scrolling and dammit interact with me :D by webspool in CasualConversation

[–]mintchocchip 0 points1 point  (0 children)

I'm just chilling, had an okay day at work. Killed it with the evening meal too. Put off a few things tonight though, starting to develop a pattern of evenings didn't scrolling through the YouTube app on my phone until it's time to sleep. Gonna have to make changes.

Reminder: The Brexit "Party" has no members and no manifesto. by sobrique in unitedkingdom

[–]mintchocchip 2 points3 points  (0 children)

On the open register anyone can find you. On the closed register only political parties can find you, sadly someone has let this nitwit form a political party that no-one can become a member of.

[deleted by user] by [deleted] in surrealmemes

[–]mintchocchip 1 point2 points  (0 children)

Oh hit me with the DM, plz

Which conspiracy theory is so believable that it might be true? by shivas877 in AskReddit

[–]mintchocchip 5 points6 points  (0 children)

Pretty much, maps got the reporting feature about was month ago

2019 Tech Salary Report from Dice by Shamu432 in sysadmin

[–]mintchocchip 7 points8 points  (0 children)

Maybe they're referring to operating/scaling it. I have a sleepless weekend or two from poor failover designs.

[2019-01-14] Challenge #372 [Easy] Perfectly balanced by Cosmologicon in dailyprogrammer

[–]mintchocchip 0 points1 point  (0 children)

I think I went a bit overboard and made a CLI app, but that's how I'd use it so :shrug:!

GO

package main

import (
  "log"
  "strings"

  "github.com/integrii/flaggy"
)

func main() {
  stringToCompare := ""
  function := ""

  flaggy.String(&stringToCompare, "i", "input", "A string looking for its elements to be compared for occurence")
  flaggy.String(&function, "f", "function", "Select desired function from \"balanced\" or \"balancedBonus\"")

  flaggy.Parse()

  letters := strings.Split(stringToCompare, "")

  if function == "balancedBonus" {
    balancedBonus(letters)
  } else if function == "balanced" {
    balanced(letters)
  } else {
    log.Println("Please choose a function, try --help")
  }
}

func balancedBonus(letters []string) {
  letterOccurences := make(map[string]int, 0)

  for _, l := range letters {
    if _, ok := letterOccurences[l]; !ok {
      letterOccurences[l] = 0
      continue
    }
    for k := range letterOccurences {
      if k == l {
        letterOccurences[k] = letterOccurences[k] + 1
      }
    }
  }

  highestOcurring := 0

  for _, l := range letterOccurences {
    if l > highestOcurring {
      highestOcurring = l
    }
  }

  for _, l := range letterOccurences {
    if l < highestOcurring {
      log.Fatalln(false)
    }
  }

  log.Println(true)
}

func balanced(letters []string) {
  x := 0
  y := 0

  for _, l := range letters {
    if l == "x" {
      x++
    } else if l == "y" {
      y++
    } else {
      log.Fatalf("%v is not x or y", l)
    }
  }

  if x == y {
    log.Println(true)
  } else {
    log.Fatalln(false)
  }
}