Friday, January 13, 2012

Lakes

Plovdiv Dimitrovgrad Kyrjali Burgas Tsarevo Sliven Ruse Sofia Albena Nesebyr

Area th.sq.km, Height m, Depth m, Volume th cubic km, avge depth m
Lake Superior 82.4 183 393 12 147
Huron 59.6 177 228 3.54 59
Michigan 58 177 281 4.9 85
Erie 25.7 174 64 .48 19
Winnipeg 24.5 217 36 - 12
Ontario 19.5 75 237 1.64 86
Caspian Sea 371 -28 1025 78.2 184
Baikal 31.6 455 1620 23.6 744
Black Sea 436.4 0 2206 547

proverbs

A journey of a thousand miles begins with a single step, Lao Tzu, Chinese philosopher (604 BC – 531 BC).
He who laughs last, probably has a back-up.
As you sow so shall you reap. [Bible, Galatians VI (King James Version)]
He who lives by the sword shall die by the sword.
He who laughs last laughs longest. [originated in Tudor England but, for once, wasn't coined by Shakespeare. It is found in print in the play Christmas Prince, which was first performed, at Cambridge, around 1608:
Laugh on laugh on my freind
Hee laugheth best that laugheth to the end]
Blood is thicker than water.
Out of sight, out of mind.
A lie has no legs.
"We will either find a way or make one." - Hannibal

Never say never.

Man saying it cannot be done should not interrupt man doing it. (Chinese proverb)

srcs:
http://en.wikipedia.org/wiki/List_of_proverbial_phrases
http://www.phrases.org.uk/meanings/proverbs.html
http://proverbhunter.com

Friday, September 16, 2011

















http://ip.com/patapp/US20110111856

Andrew William White
Thomas Christopher Delibassis

Sunday, June 26, 2011

wipers: unipoint, champion

Peugeot 306 1.6
хечбек, употребяван автомобил 2,400 ЛЕВА

Година Януари 1998
Пробег 135,200 км
Гориво Бензин
Скорости Ръчни

Мощност 88 к.с.
Кубатура 1600 см3
Брой врати 2/3 врати
Цвят Лилав металик
Особености и Екстри
Комфорт: Климатик, Ел.стъкла, Стерео уредба
Сигурност: Airbag, Халогенни фарове, Аларма, Имобилайзер, Центр. заключване, Застраховка
Друго: Серво управление
Допълнителна информация
Колата е в много добро състояние, обслужена преди 3000km. Климатик, стъкла - всичко работи без грешка. Гражданска, преглед, данък платени до 01. 2012г. С много добри гуми - на не повече от 5000км. Колата е удобна, има качества, но имам още 2 коли и реших да се разделя с тази.

AMD A8-3850
Stojan EON

0899-008-088 sinia-trans.com
0888-202-066 052-501-030
089/664 0091

0878-932-964 0888-932-964 roadhelp.bg
0878-191-797 paqka.com
0878-393-971 patnapomosht.com
1733 088-1733 nirad.bg

Tuesday, June 14, 2011

StreamReader r = File.OpenText("cars.txt");
TextWriter tw = new StreamWriter("date.txt");
tw.WriteLine(System.DateTime.Now);
tw.WriteLine(new ad(r.ReadLine().Trim()));
r.Close();
tw.Close();

class ad
{
public ad(string dataLine)
{
string[] temp = dataLine.Split('|');
Phone = temp[0];
Model = temp[1];
Modif = temp[2];
Year = temp[3];
Price = temp[4];
Date = temp[5];
Note = temp[6];
}
public string Phone { get; set; }
public string Model { get; set; }
public string Modif { get; set; }
public string Year { get; set; }
public string Price { get; set; }
public string Date { get; set; }
public string Note { get; set; }
public override string ToString()
{
return string.Join("|", new object[]{Phone, Model, Modif, Year, Price, Date, Note});
}
}

public static class Bla123
{
public static T? To(this string val, CultureInfo culture = null)
where T : struct, IConvertible
{
if (culture == null)
{
culture = CultureInfo.CurrentCulture;
}

T? result = null;
if (!string.IsNullOrEmpty(val))
{
try
{
result = (T)Convert.ChangeType(val, typeof(T), culture);
}
catch { }
}

return result;
}
}