So many interests, so little time and money. Always interested in talking to more like-minded people!


Where you can find me on the internet: nathanupchurch.com/me


Keyoxide: https://keyoxide.org/31E809FAEA1532AC91BBDCF1EC499D3513F69340

  • 1 Post
  • 26 Comments
Joined 2 years ago
cake
Cake day: February 3rd, 2022

help-circle







  • I usually buy the gardein nuggets as they have a really good texture for it. You can use the big TVP chunks. If you do, you should hydrate it in stock with a splash of vinegar, press the moisture out, sautee in lots of fat until a good sear develops, and then coat in breadcrumbs or corn-starch and fry.

    I’ll do tofu as well. You have to buy good tofu though, not that mealy garbage in the plastic container full of water.

    Fried cauliflower is delicious, but devoid of protein, so I never use it here as I don’t want to be hungry in an hour.







  • Why not try simple scripts at first? You could write a little script in Bash, JS, or Ruby to create folders or text files. Besides the very basic stuff I did on the high school robotics team, my first programming project was when I worked as a print broker and we invested in a digital press. I needed a program to calculate the cost of a print job, so I learned a little BASIC and wrote a program on my TI-98 to do it for me. It would ask a series of questions (eg - paper cost, single / double sided, color / black and white, how many imposed on an SRA3 sheet, etc) and spit out the cost of the job.

    As for how you use the code, say you write a ruby script; to run it, you’d navigate to the script directory in the terminal and type ./scriptName.rb to run it. If you’re using a compiled language, you’d compile it (your lessons would cover how to do this) and then you’d run the resulting binary the same way.