Recently I got an Yixing 宜兴 tea set, which is used for gongfu 功夫 preparation. It is recommended that this method is used for black 紅茶 and oolong 乌龙 teas. Also, the tea that I drink: silver needle ( 白毫银针 bái háo yín zhēn ) with jasmine is ideal for this type of tea preparation. These are the steps:
If the tea set is brand new, it must be prepared for using. This is done by putting some of the tea that will be used with this yixing set and poring hot water. Then it should be left like this for 24 hours with the tea. After that it should be washed with water and nothing else ( no soaps, detergents etc ) and left to dry on it’s own. The reason for not using cleaners is that the clay used in the yixing pots and sets is porous and absorbs aromas and taste ( as well as soap ). This is also the reason for people to say that after many years of usage, tea can be prepared in these yixing pots only by pouring water in them.
For the actual tea preparation, the leafs of the tea must be dipped into hot water for few seconds to remove the dust and to start the opening of the leafs and the aroma.
The set is also heated with hot water which will help in terms of keeping the temperature of the water constant while stepping the tea. The pot is then closed and for 2 minutes hot water should be poured over it again to keep the temperature constant inside. After 2-3 minutes (depending on the tea) the tea is transfered to a small pitcher from which it can be served for drinking. Right after you transfer the tea, you can pour some more water into the pot to prepare some more tea ( the entire tea set is pretty small, the pot is about 5-6 oz ). The tea is then served in the small cups and is ready for drinking right away ( it is not hot anymore)
After you are done with the drinking, the set is rinsed with water and left to dry by itself.
The second method uses a cup called gaiwan 盖碗. It looks like a somewhat bigger cup with a top, that can be closed very well. The procedure is the following:
The leafs are again rinsed in hot water to start the opening and to clean them from dust. Then they are put into the gaiwan and got water is added. The cup is closed and left for the time that is needed to prepare the tea. After that, without removing the top, the tea can be served directly or moved to a pitcher. The idea is to keep the top closed so that when you transfer the tea, the leafs stay in the gaiwan. This method is much faster and easier and is best for lighter and aromatic teas, because it preserves everything inside the cup while the tea is being prepared.
A little bit more than 2 weeks from the beginning of the semester I have an idea what are the courses going to be and what I’ll be doing during the semester. In my Economics course there is this old professor that “is teaching this course for 35 years” and since the beginning of the semester we’ve been watching videos of “Economic USA”. Pretty boring. In assembly language, we write programs like
; Georgi Todorov - 2006
; " Write a program that reads a digit entered at the KB, doubles it, then compares the result to 9.
; Your program will then print either twice the number or 9, whichever is larger."
;
; Copyright under the terms of the GPL
;
data segment
crlf db 0dh, 0ah, '$'
question db 'Enter a number? ', '$'
data ends
WORKING_STORAGE SEGMENT
dw 10h dup(?)
WORKING_STORAGE ENDS
CODE SEGMENT
assume SS:WORKING_STORAGE, CS:CODE
start:
mov ax, data
mov ds, ax
mov dx, offset question
mov ah, 9
int 21h
mov ah, 1
int 21h
sub al, 30h
mov bl, al
add bl,al
mov dx, offset crlf
mov ah,9
int 21h
cmp bl,9
jg number
mov dl,9
add dl,30h
mov ah,2
int 21h
jmp quit
number:
mov dl,1
add dl,30h
mov ah,2
int 21h
sub bl,10
mov dl,bl
add dl,30h
mov ah,2
int 21h
jmp quit
quit:
mov dx, offset crlf
mov ah,9
int 21h
mov ax, 4c00h
int 21h
CODE ENDS
end start
or:
; Georgi Todorov - 2006
; " Write a program to read in a single letter. If the letter is either y or Y
; your program will print YES, otherwise NO"
;
; Copyright under the terms of the GPL
;
data segment
crlf db 0dh, 0ah, '$'
question db 'Enter a letter? ', '$'
NOPE db 'NO','$'
YEAH db 'YES','$'
data ends
WORKING_STORAGE SEGMENT
dw 10h dup(?)
WORKING_STORAGE ENDS
CODE SEGMENT
assume SS:WORKING_STORAGE, CS:CODE
start:
mov ax, data
mov ds, ax
mov dx, offset question
mov ah, 9
int 21h
mov ah, 1
int 21h
cmp al,'Y'
jz yes
cmp al,'y'
jz yes
mov dx, offset crlf
mov ah, 9
int 21h
mov dx, offset NOPE
mov ah, 9
int 21h
jmp quit
yes:
mov dx, offset crlf
mov ah, 9
int 21h
mov dx, offset YEAH
mov ah, 9
int 21h
jmp quit
quit:
mov dx, offset crlf
mov ah, 9
int 21h
mov ax, 4c00h
int 21h
CODE ENDS
end start
In Environment the only topic is how bad humans are and how because of us the planet is in such a bad shape and there are so many illnesses around.
My last course, independent study – “Spectrum Analysis of Network Traffic” ( Sounds pretty cool ) I haven’t done much about. I’ve only read some big portion of the book Fourier Series by Georgi Tolstov. I didn’t do much more, because I had to finish my other Independent study – Networking. Fortunately the paper is almost finished. It just needs some polishing and it is done.
Yesterday was the first day of school! Nice I had a few things to take care on my schedule, but by the end of the day I managed to work finish them all. The classes this semester will be “Economic Thought & Modern World”, “Science of natural systems”, “Computer Organization” and аn independent study on Spectral Analysis of Network Traffic. The first two are core classes. The third is a substitution class for Assembly language. The last one is my idea but I’ll write about it later.
—
6th of September was a holiday in Bulgaria right? Happy holiday to all united and combined and to all Bulgarians!
I do not know a person that does not know Steve Irwin. The guy who chases the most dangerous snakes, lizards, spiders and all sorts of animals. Today, while filming his latest documentary, one of these animals managed to end Steve Irwin’s life. More @ http://www.news.com.au/
"The world had a beginning which we call the Great Mother. Once we have found the Mother, we begin to know what Her children should be.
When we know we are the Mothers child, we begin to guard the qualities of the Mother in us. She will protect us from all danger even if we lose our life.
Keep your mouth closed and embrace a simple life, and you will live care-free until the end of your days. If you try to talk your way into a better life there will be no end to your trouble.
To understand the small is called clarity. Knowing how to yield is called strength. To use your inner light for understanding regardless of the danger is called depending on the Constant."
- Lao Tzu (老子)