3-3.5hrs to cook + prep time: ingredients (yemista) 5 large tomatoes/peppers – red 5tsp olive oil 3-4 potatoes (optional) 193mls uncooked arborio rice 1 large onion (chopped fine) 3 tsp garlic 1 tsp salt 1/2 tsp pepper 5 cups water 1 tbsp tomato paste 1 tsp sugar Lots of edam and some parmesan (semmel knodel)Continue reading “Recipe: Yemista (greek stuffed tomatoes/red peppers) with wedges on the side and semmel knodel (bread dumplings)”
Author Archives: pflynt
how to make really tasty pizza dough for the everyman
Ingredients sugar: 1 tbsp hot water (not boiling or you’ll burn the yeast) 1 1/3 cup yeast 2 1/4 tsp 3.5 cups of all-purpose flour 1tsp salt 2tsp oil method
JS program 3 – more complicated than 2 (it does some calculations, that’s all)
the minus calculation doesn’t work because I haven’t learned how to do negative numbers yet. or loops. that’s next. <!DOCTYPE html> <html> <body> <h2>second game</h2> <script> var num1 = 0 var num2 = 0 var numplus = 0 var numMinus = 0 var numTimes = 0 var numDiv = 0 num1 = prompt (“Can youContinue reading “JS program 3 – more complicated than 2 (it does some calculations, that’s all)”
2nd decent program in JS
<!DOCTYPE html><html><body> <h2>second game</h2> <script>var num1 = 0var num2 = 0var num = 0 num1 = prompt (“Can you please give me a number?”);num2 = prompt (“How about a second number?”); num1 = eval(num1);num2 = eval(num2);num = num1 + num2; alert (“the total of your two numbers is ” + num);</script></body></html>
Super meat boy: level one
I got through the main stages of level 1 – forest, quite easily. Once I got to the boss stage, I found frustration. I gave up for a while. Recently I had another hardcore attempt at beating it. I succeeded but it took me two hours. I found that while earlier I had thought thatContinue reading “Super meat boy: level one”
program 3 of the new journey
my second program in JS
There is a flaw in the program. But that is on purpose. The book created a flaw so you can learn to see errors. This error is that there is a concatentation done by the computer, treating the numbers as strings and adding them instead of adding the tip to the meal price as aContinue reading “my second program in JS”
My first program in Javascript
Since the new start of my coding adventure. Read 12 pgs yesterday. Finished putting together my first exercise and after a few bug fixes and finding w3schools to use the blank html page compiler; here’s my code for my first program:
Total Car Price (#3 in Python)
carPrice = input (“what is the base price of the car?”) tax = int (carPrice) * .125insurance = 250totalcarPrice = int (carPrice) + int (insurance) + int (tax) print (“total cost of your car including: insurance $”,insurance,”,”)print (“and tax: $”,tax,” comes to $”,totalcarPrice)input () This is a program that figures out all your extra costs,Continue reading “Total Car Price (#3 in Python)”
my 2nd program in Python
tip15 = 0tip20 = 0price = input (“how much did your meal cost?”)tip15 = int (price) * .15tip20 = int (price) * .2print (“A 20% tip would be “,tip20,” and a 15% tip would be”,tip15)input () I wrote a tipper program for an exercise.It’s a simple program and it took 20mins to write including severalContinue reading “my 2nd program in Python”