This soup is a compilation of many traditional Uzbekistan soups.
Of course, you need lamb and some special sour plums. Cherry plums? When was the last time you've seen these plums? They are out of season in produce section of my supermarket for the past 20+ years.
Anyway, for best results do the following.
Buy a lamb rack - a smaller one is better, it will have less fat - Costco is your best bet price-wise.
You'll also need salt, water, 3 onions, 5 potatoes, 1 of cup rice. Garlic, black pepper and cilantro are optional.
Put lamb rack whole into wide pot, cover with enough water to make soup and bring to boil. Add salt and simmer at low. Cube 3 medium onions (I don't know exactly how to cube onions, but this is one of the lines from one of the recipes, so I followed this line literally). Add to soup. Add 3 medium-size tomatoes whole. Peel 5 small-to-medium size potatoes of perfect shape and similar size. Add them to soup, bring to boil. In 20 minutes take out the rack and cut along the ribs - you'll get 7-8 bones with meat on. Return them to pot. Take out tomatoes, squish in colander above the pot, remove skin and whatever else you don't like from colander and return the rest of tomatoes to the pot. Add 2-3 chopped garlic cloves and simmer for another few minutes.
To serve on Day One
Each portion will have 1 rib, 1 potato and broth.
Top with chopped cilantro or something else green if you can get this time of the year.
To serve on Day Two
Put generous amount of boiled rice into the soup plate. Add broth remaining from day 1 to the plate. Heat in micro.
If you are especially lucky, you'll get a bone too.
Tastes great.
It's a different dish with a different name tough, I am not even sure it's called soup.
Please note that you can feed a family of 5 for 2 days with 1 lamb rack.
Labels
lifestyle
(68)
food
(60)
recipes
(43)
gadgets
(33)
society
(30)
diet
(27)
fashion
(21)
share
(19)
consumer review
(17)
sex
(12)
breakfast
(10)
childfree
(10)
dessert
(10)
soup
(9)
salad
(8)
cookware
(7)
popcorn
(7)
travel
(7)
gluten-free
(6)
plofl
(6)
sur la table
(6)
amazon
(5)
fear eats soul
(5)
fish
(5)
linux
(5)
vegan
(5)
vegetarian
(5)
advertising
(4)
baking
(4)
brunch
(4)
cats
(4)
garlic
(4)
local
(4)
shell scripting
(4)
3D printing
(3)
9 lives minus one
(3)
9 minus one
(3)
angry birds
(3)
austerity
(3)
de Buyer
(3)
dinner
(3)
dinnerware
(3)
dofd
(3)
education
(3)
eggs
(3)
films
(3)
meat
(3)
preview
(3)
williams-sonoma
(3)
beauty
(2)
bible
(2)
cascade
(2)
party
(2)
terror
(2)
things the Government doesn't want you to know
(2)
toys
(2)
AWS
(1)
art
(1)
bread
(1)
breasts
(1)
butter
(1)
casserole
(1)
costco
(1)
cult
(1)
iceland
(1)
le creuset
(1)
music
(1)
parve
(1)
plot from the news
(1)
potato
(1)
sed
(1)
shoes
(1)
time travel
(1)
tomcat
(1)
toys wooden puzzle
(1)
woman as an object
(1)
women
(1)
Sunday, March 10, 2013
Saturday, March 9, 2013
Resolving to port 80 instead of 8080 (AWS, Linux, Tomcat)
Launch AWS EC2 instance with Linux, securely connect to it
>yum -y install tomcat7
....
Compile and deploy your webapp / mobile app
Let's make it simple - for example, deploy helloworld.jsp
....
>service tomcat7 status
tomcat7 (pid <...>) is running...
....
Go to web browser / g.g. Google Chrome
http://<IP address or domain name>/helloworld.jsp
For example
http://hastasiempre-ismyfavourite.com
Oops! Google Chrome could not connect to <...>
My humble contribution in the form of sed script to switch from port 8080 to 80:
#!/bin/bash
tomcat=tomcat7
tomcat_conf=/usr/share/$tomcat/conf
cd $tomcat_conf
sed -e 's/="8080/="80/g' -e 's/="8443/="443/g' -i $tomcat_conf/server.xml
sed '/Connector port="80"/i\<!-- change user tomcat to root in tomcat7.conf, change ports 8080 and 8443 to 80 and 443 respectively -->/' -i $tomcat_conf/server.xml
sed -e '/TOMCAT_USER=/i\# Switch user from tomcat to root' -e 's/TOMCAT_USER="tomcat"/TOMCAT_USER="root"/' -e 's/="8080/="80/' -i $tomcat_conf/$tomcat.conf
>yum -y install tomcat7
....
Compile and deploy your webapp / mobile app
Let's make it simple - for example, deploy helloworld.jsp
....
>service tomcat7 status
tomcat7 (pid <...>) is running...
....
Go to web browser / g.g. Google Chrome
http://<IP address or domain name>/helloworld.jsp
For example
http://hastasiempre-ismyfavourite.com
Oops! Google Chrome could not connect to <...>
Darn! I mean, WTF?
Browse some forums. Figure that default port for Tomcat7 to listen on is 8080.
http://<IP address or domain name>:8080/helloworld.jsp
Hell of a world!
Go to .../tomcat7/conf. Edit server.xml with your editor of choice to change ports 8080 and 8443 to 80 and 443 respectively.
http://<IP address or domain name>/helloworld.jsp
Oops! Google Chrome could not connect to <...>
Browse even more forums. Figure out that you need to run tomcat as root to be allowed to use port under 1024. Edit tomcat7.conf with your editor of choice to change TOMCAT_USER="tomcat" to TOMCAT_USER="root".
http://<IP address or domain name>/helloworld.jsp
Hell of a world!
Bingo!
My humble contribution in the form of sed script to switch from port 8080 to 80:
#!/bin/bash
tomcat=tomcat7
tomcat_conf=/usr/share/$tomcat/conf
cd $tomcat_conf
sed -e 's/="8080/="80/g' -e 's/="8443/="443/g' -i $tomcat_conf/server.xml
sed '/Connector port="80"/i\<!-- change user tomcat to root in tomcat7.conf, change ports 8080 and 8443 to 80 and 443 respectively -->/' -i $tomcat_conf/server.xml
sed -e '/TOMCAT_USER=/i\# Switch user from tomcat to root' -e 's/TOMCAT_USER="tomcat"/TOMCAT_USER="root"/' -e 's/="8080/="80/' -i $tomcat_conf/$tomcat.conf
Subscribe to:
Posts (Atom)