Just some dude.

  • 0 Posts
  • 36 Comments
Joined 1 year ago
cake
Cake day: June 11th, 2023

help-circle






  • Appreciate your taking the time to respond. Unfortunately, while I know all this, it doesn’t quite line up with my experience. I’ve seen the difference between an aged cheese like 3-year cheddar and American. But, there’s still a reaction to the cheddar, even if slight. (And, yes, I’ve had the allergy tests…)

    So, I’ve found it safest to go with vegan cheese, particularly when the cheese I really want is American (or, at least Gruyère). Unfortunately, I never could get into breakfast sandwiches or burgers with cheddar—the stuff just breaks too easily.





  • I think you’ve already gotten some good answers here regarding the function itself:

    It sits and waits for the user to input something and hit Enter, and returns the value the user entered, which is then assigned to your nam variable. (See the documentation for the function.

    I might also offer the advice of confirming your understanding of the flow of a program. That is, understand that, in the general sense, the computer must resolve the right-hand side of the equals sign to a value before it can assign it to the left.

    For example, if the right-hand side is a literal value, it’s already resolved. For example, a line like name = “Joe” is easy—assign the string literal “Joe” to the variable name, when the line is run.

    If the right hand side is a mathematical equation, it must be resolved to a value when the line is run. For example, for a line like value = 2+2, the 2+2 must be resolved to 4 before it can be assigned to the variable.

    Then, for something like name = input(“Who are you?”), in order to resolve the right-hand side, the computer must first run the function before it can assign a value to the variable name.

    It can, of course, get more complicated, where you can call multiple functions on a line, and the results of one feed into the next, and so on. But, that can be an exercise for the near future.










  • Make coming into the office worth it. Period, end of sentence.

    Here, I have my own quiet, private office, a ginormous monitor, a comfortable chair, and zero commute. I can make my own lattes, eat on the cheap, and take care of what I need to take care of while listening to a meeting.

    My experience coming into the office is an open, noisy floorplan, a monitor designed for ants, a nice-enough but ancient chair, and 75 minutes each way gone from my life—to say nothing of the $20 gone from my wallet for the privilege. The free coffee is dogshit, the food is expensive, and I can barely get a bathroom break as I’m locked into so many meetings.

    I’d happily work from the office if it had literally anything to recommend it over WFH.