There is one problem when frying tomatoes. Usually they are cooked in a pan and after the are done, everything around it is covered in tomatoes. And because the idea is for the water to evaporate it is not convenient to cover the pan. That’s why I decided to make myself an enhanced version of my pan which resulted in clean kitchen. All I needed was a piece of thick aluminum foil (the thicker the better so that the tomatoes don’t dissolve it) long enough to go around the pan. Just take the foil and build a high wall around the pan. It should look something like that::


It works wonders.
This is the recipe btw:
2 big cans of petite diced tomatoes (or shredded tomatoes, or tomato juice)
5-6 eggs
3 cloves of garlic
2 tbsp oil
Add the oil in the pan and before it gets too hot just add the tomatoes so that you don’t get an eruption of burning oil and water later. If the tomatoes are in big chunks use the hand blender, but keep some chunks of tomatoes for texture. Cook the tomatoes until all the water is gone and they are well cooked. After that just add the eggs, stir well to incorporate the eggs and cook them. That’s it. Remove from the heat and add the mashed garlic. If the tomatoes are too sour, just add a little bit of sugar (1/2 tsp). At first the garlic will be strong, but the high temperature of the tomatoes will reduce the strength.

Both Dary and I love to skate, but the skates we have in Bulgaria are quite old and beaten up, at least mine are, so we decided to get ourselves new ones. Hers are Rollerblade Spiritblade III – 2008 (left on the picture), mine are K2 Moto – 2007 (right on the picture). I gave mine quite a run the other day in the park. Also I did try them here on the street. Dary only tried hers here, but not as much as I did.
Nothing fancy, just a few prompts and use of Net::SMTP::SSL and Authen::SASL
#!/usr/bin/perl -w
# Send email from Gmail
# Will not work on windows, because of the echo
# for the password. Just uncomment the two
# system lines and should be fine.
# Will wait for EOF (Ctrl+D) for the msg body.
# by GT
-
use Net::SMTP::SSL;
-
my $smtp;
my $username = 'youremail@gmail.com';
my $password;
my @lines;
my $msg = "";
my $to;
my $subject;
-
$smtp = Net::SMTP::SSL->new('smtp.gmail.com', Port => 465, Debug=>1) || die "Cannot connect to server" ;
-
system('stty -echo');
print "Enter password:";
$password = <STDIN>;
chomp $password;
system('stty echo');
-
$smtp->auth($username, $password) || die "Authentication failed";
-
print "\nTo:";
$to = <STDIN>;
chomp $to;
print "Enter subject:";
$subject = <STDIN>;
chomp $subject;
print "Enter message:\n";
@lines = <>;
foreach $line (@lines){
$msg = $msg.$line;
}
-
$smtp->mail($username."\n");
$smtp->to($to."\n");
$smtp->data();
$smtp->datasend("From: ". $username."\n");
$smtp->datasend("To: ".$to."\n");
$smtp->datasend("Subject: ".$subject."\n");
$smtp->datasend("\n");
$smtp->datasend($msg."\n");
$smtp->dataend();
$smtp->quit;
-
- Свалете този код/download this code: gmailsmtp.pl
- The easiest way to cook it is in a rice cooker, because it can monitor the temperature when the water is absorbed.
- Water needed for cooling long white rice: 1cup rice in 1.5cup water; 2c. rice in 2.75c. water, 3c. rice in 3.5c. water.
- Brown rice needs a little bit more water for cooking; short rice needs less
- Short rice releases more starch and becomes more sticky
- Long rice almost does not release starch and is more fluffy
- White rice cooks faster than brown rice
P.S. Saffron is the most expensive spice on earth (about $1000 per lb.)

Cast iron skillets are very durable, very heavy and disperses the heat very well. With it you can cook on high heat, in the oven, on the stove top, in the grill or basically anything that emits heat. When you buy a new cast iron cookware it has to be seasoned well. The standard procedure is to clean it very well, dry it very well, coat it with some vegetable oil and bake it in a 300 degree F. oven for about an hour. After that, just wipe the excess oil, if any, and the skillet is ready. The best part is, that you don’t have to clean it. Just put some salt in it, scrub it a little bit, wipe it and store it. After a few uses an excellent nonstick layer will form and you can even cook eggs in it.