• 2 Posts
  • 219 Comments
Joined 2 years ago
cake
Cake day: January 13th, 2024

help-circle












  • The 20 mins meals are all pretty salty and meh, going beyond that is decent. I do it occasionally to force me out of my cooking comfort zone. It’s good as it lets you try things with ingredients you would never normally have.

    It has some plastic waste (was more than ‘normal’ cooking, but no where near others (Gusto is awful for waste). Some recipes are worse than others though.

    Don’t use it if your not getting a deal on it. If you quit they will offer you another discount.





  • I’m from C# that has the following for your list example:

    // If you add an item to this list, it will effect usages outside. You can't reassign it though.
    public void Example(List<string> exampleParam)
    
    //Full passing by ref, if you re-assign it to a complete new object, outside usages will be effected
    public void Example(ref List<string> exampleParam)
    
    //Output only, this acts as if the method assigned a variable named exampleParam. 
    public void Example(out List<string> exampleParam)