From glezos at indifex.com Wed Sep 1 16:53:33 2010 From: glezos at indifex.com (Dimitris Glezos) Date: Wed, 1 Sep 2010 17:53:33 +0300 Subject: [TasPython] =?utf-8?b?zpTOuc6xzrvOrc6+z4TOtSDPhM6/IM+Dz4TPhc67?= =?utf-8?b?IM+DzrHPgg==?= Message-ID: ??? ?? ???????????? ??? self.cycle() ??? ???? ??? ?????; (code not necessarily 100% correct) LEVEL_VALUES = { 0: 'Normal', 1: 'High', 2: 'Top', } from django.db import models class Priority(models.Model): level = models.IntegerField() ### 1 -- "The One-liner Showoff" def cycle(self): self.level = (self.level + 1) % max(LEVEL_VALUES.keys()) ### 2 -- "The Readability Nazi" def cycle(self): if self.level == max(LEVEL_VALUES.keys()): self.level = 0 else: self.level++ ### 3 "The Re-usability Nerd" def increase(self): if self.level + 1 == max(LEVEL_VALUES.keys()): raise OverflowError('No higher priority') self.level++ def cycle_up(self): try: self.increase() except OverflowError: self.level = 0 ### 4 "The Iterator Abuser" class MyModel(): c = itertools.cycle(LEVEL_VALUES.keys()) level = model.Field(mpla, mpla, default=self.c.next()) def cycle(self): while self.level != self.c.next() # search for current key pass self.level = self.c.next() ### 5 -- "The lamda freak" cycle = lambda pos: (lambda x: 0, lambda x: x+1)[pos>max-1](pos) ### More? -- Dimitris Glezos Transifex: The Multilingual Publishing Revolution http://www.transifex.net/ -- http://www.indifex.com/ From mydimle at gmail.com Wed Sep 1 23:24:23 2010 From: mydimle at gmail.com (Dimitris Leventeas) Date: Thu, 2 Sep 2010 00:24:23 +0300 Subject: [TasPython] =?utf-8?b?zpTOuc6xzrvOrc6+z4TOtSDPhM6/IM+Dz4TPhc67?= =?utf-8?b?IM+DzrHPgg==?= In-Reply-To: References: Message-ID: <201009020024.23874.mydimle@gmail.com> ???? ????? ??? ???????????? ????! On Wednesday 01 September 2010 17:53:33 Dimitris Glezos wrote: > ### 1 -- "The One-liner Showoff" [edited] > > def cycle(self): > self.level = (self.level + 1) % len(LEVEL_VALUES) ?? ??? ??????? ??? ??? ????, ??? ??? ?????????? ??? ?? ????? ??? level ????? ???????? ??? ???????????. > ### 2 -- "The Readability Nazi" > > def cycle(self): > if self.level == max(LEVEL_VALUES.keys()): > self.level = 0 > else: > self.level++ ???? ???? ??? ????????? ???. ??? ?????????? ??????? ?? ?? ??????? ??????? ?? ??? ????? modulo ??? ??????? ?? ?????? ?????? bug. ?? if else ???? ????? ???? ??? ???? ??? ??? ????? modulo. > ### 3 "The Re-usability Nerd" > > def increase(self): > if self.level + 1 == max(LEVEL_VALUES.keys()): > raise OverflowError('No higher priority') > self.level++ > > def cycle_up(self): > try: > self.increase() > except OverflowError: > self.level = 0 ???? ?? ????? ???? ????? levels ???????? ???? ??? ????? performance*. ????? ????, ??? ??? ?? ?? ??????????. ??? ??????, ? ????????? ????????? increase. * ?? try ... except ????? ??? ??????? ?? ?????? ????? ??????? ??? ??????? ???? ??? try ??? ?????? ????????? ??? except. ?????? ???????? ?? if, else. > ### 4 "The Iterator Abuser" > > class MyModel(): > c = itertools.cycle(LEVEL_VALUES.keys()) > level = model.Field(mpla, mpla, default=self.c.next()) > def cycle(self): > while self.level != self.c.next() # search for current key > pass > self.level = self.c.next() ??? ???? ?????. ????? ??????? ?? ?????????? ?? ?????? ???. ????? ?? ????????. > ### 5 -- "The lamda freak" > > cycle = lambda pos: (lambda x: 0, lambda x: x+1)[pos>max-1](pos) Lol (?? ????? ?????). ?. -- -????? ????????????????! -???? ?? ???, ?????? ? ???? ?? ????? ?????? ?????;! From mpessas at freemail.gr Sat Sep 4 11:07:45 2010 From: mpessas at freemail.gr (Apostolos Mpessas) Date: Sat, 4 Sep 2010 12:07:45 +0300 Subject: [TasPython] =?utf-8?b?zpTOuc6xzrvOrc6+z4TOtSDPhM6/IM+Dz4TPhc67?= =?utf-8?b?IM+DzrHPgg==?= In-Reply-To: <201009020024.23874.mydimle@gmail.com> References: <201009020024.23874.mydimle@gmail.com> Message-ID: <201009041207.45700.mpessas@freemail.gr> On Thursday 02 of September 2010 00:24:23 Dimitris Leventeas wrote: > > ### 3 "The Re-usability Nerd" > > > > > > > > def increase(self): > > if self.level + 1 == max(LEVEL_VALUES.keys()): > > raise OverflowError('No higher priority') > > self.level++ > > > > > > def cycle_up(self): > > try: > > self.increase() > > except OverflowError: > > self.level = 0 > > ???? ?? ????? ???? ????? levels ???????? ???? ??? ????? performance*. > ????? ????, ??? ??? ?? ?? ??????????. ??? ??????, ? ????????? ????????? > increase. > > * ?? try ... except ????? ??? ??????? ?? ?????? ????? ??????? ??? ??????? > ???? ??? try ??? ?????? ????????? ??? except. ?????? ???????? ?? if, > else. ??? ????? ?? ??, ??? ?? ?????????? (as in OverflowError) "??????" ?? ???????????????? ??? ?????????? (as in "exceptions to the rule") ??? ??? ?? ????? ???????; :P ????????? PS ??????? #1, ????; From mpessas at freemail.gr Sat Sep 4 13:48:49 2010 From: mpessas at freemail.gr (Apostolos Mpessas) Date: Sat, 4 Sep 2010 14:48:49 +0300 Subject: [TasPython] =?utf-8?b?zpTOuc6xzrvOrc6+z4TOtSDPhM6/IM+Dz4TPhc67?= =?utf-8?b?IM+DzrHPgg==?= In-Reply-To: <201009041230.10086.mydimle@gmail.com> References: <201009041207.45700.mpessas@freemail.gr> <201009041230.10086.mydimle@gmail.com> Message-ID: <201009041448.50237.mpessas@freemail.gr> On Saturday 04 of September 2010 12:30:09 Dimitris Leventeas wrote: > On Saturday 04 September 2010 12:07:45 you wrote: > > ??? ????? ?? ??, ??? ?? ?????????? (as in OverflowError) "??????" ?? > > ???????????????? ??? ?????????? (as in "exceptions to the rule") ??? ??? > > ?? ????? ???????; :P > > ?? ?????? ?????? ??? ?????? ????? ??? ???? ???? ?????????? ?? ??????????. ? > Python ???? ????? ??? ????? ?????????? ?? ?? StopIteration ??? for loop > ???? ?? ???????????? ?? ???? ???????. ?? ????? ???? ????? ??? ????? ?? > ?????????. > ?????, ???? ???? ?? StopIteration ??? GeneratorExit ??? ????? ??? ???????? Error ? Warning ;) ????????, ???? ???????????????? ??? iteration protocol ??? Python ??? user-level ?????? ??? ??? PEP 234 ??????, ????? ?????????? ????? ? ??????. (?? ??? ? Python, ??? ?? ?????????, ???????????? exceptions ?? ??????? ?????? C-x ) ?????, ??????? ?? ?????? Exceptional C++ ??? ?????????? ?? exceptions ??????????? ??? ??????? ???????????? (?????? ????? ?? 2 ????). > ??????, ??????????, ??? ?? ?????????? ????? ??? ``??????????'' ?????? > ????????. ?????? ???????? ?????? ?????? ? ???????? *???* ??? ????? > ???????????? ??? ??????, ??? ???? ????? ? ????? ???. ?? catch (word pun > intended) ????? ??? ??? ? ??????? ??????? ??? ????????????? (???? ??? > ????????? ??? ??? ???? ?????? ????? ????? ???? ????? ?? ?? ????? > ??????????). > > ??????? ????? ??? ?????? ??? ??????. ??? ?? ???????? ?? ?????: > """ ?????? ???????? ??? counter ???? 1. """ ????? ?? ???? ????? ?? ??????? "?????????? ?????????*" (?? EOF ????? ?????????? ?????????; ). ?? ?? ??????????, ?? ???????????? ??? goto. ????????? * exceptional case From unfortunate42 at gmail.com Sat Sep 4 15:27:57 2010 From: unfortunate42 at gmail.com (Mikey Moose) Date: Sat, 4 Sep 2010 16:27:57 +0300 Subject: [TasPython] =?iso-8859-7?b?xOnh693u9OUg9O8g8/T16yDz4fI=?= In-Reply-To: References: <201009041207.45700.mpessas@freemail.gr> <201009041230.10086.mydimle@gmail.com> <201009041448.50237.mpessas@freemail.gr> Message-ID: ???? ?????? ?? ?? ?????? ??? ?????. ???? 4 ??????????? 2010 4:27 ?.?., ? ??????? Mikey Moose < unfortunate42 at gmail.com> ??????: > ?? ?? ??? ???? ???????? ??? ?? ???????? ??? ???? ??? ?? Exceptions ??? > ???????????? ?? ???? ??????? ???? ???? ??? ??? ????? ??????. ????? ??? ?? > ??? ???? ???????? ??? ?? Java ??? ????? ????? ??????. > > ??????? ?? ????? ?????? ???? Python; > > ?????????? > > ???? 4 ??????????? 2010 2:48 ?.?., ? ??????? Apostolos Mpessas < > mpessas at freemail.gr> ??????: > > On Saturday 04 of September 2010 12:30:09 Dimitris Leventeas wrote: >> > On Saturday 04 September 2010 12:07:45 you wrote: >> > > ??? ????? ?? ??, ??? ?? ?????????? (as in OverflowError) "??????" ?? >> > > ???????????????? ??? ?????????? (as in "exceptions to the rule") ??? >> ??? >> > > ?? ????? ???????; :P >> > >> > ?? ?????? ?????? ??? ?????? ????? ??? ???? ???? ?????????? ?? >> ??????????. ? >> > Python ???? ????? ??? ????? ?????????? ?? ?? StopIteration ??? for loop >> > ???? ?? ???????????? ?? ???? ???????. ?? ????? ???? ????? ??? ????? ?? >> > ?????????. >> > >> >> ?????, ???? ???? ?? StopIteration ??? GeneratorExit ??? ????? ??? ???????? >> Error ? Warning ;) ????????, ???? ???????????????? ??? iteration protocol >> ??? >> Python ??? user-level ?????? ??? ??? PEP 234 ??????, ????? ?????????? >> ????? ? >> ??????. (?? ??? ? Python, ??? ?? ?????????, ???????????? exceptions ?? >> ??????? >> ?????? C-x ) >> ?????, ??????? ?? ?????? Exceptional C++ ??? ?????????? ?? exceptions >> ??????????? ??? ??????? ???????????? (?????? ????? ?? 2 ????). >> >> > ??????, ??????????, ??? ?? ?????????? ????? ??? ``??????????'' ?????? >> > ????????. ?????? ???????? ?????? ?????? ? ???????? *???* ??? ????? >> > ???????????? ??? ??????, ??? ???? ????? ? ????? ???. ?? catch (word pun >> > intended) ????? ??? ??? ? ??????? ??????? ??? ????????????? (???? ??? >> > ????????? ??? ??? ???? ?????? ????? ????? ???? ????? ?? ?? ????? >> > ??????????). >> > >> > ??????? ????? ??? ?????? ??? ??????. ??? ?? ???????? ?? ?????: >> > """ ?????? ???????? ??? counter ???? 1. """ >> >> ????? ?? ???? ????? ?? ??????? "?????????? ?????????*" (?? EOF ????? >> ?????????? ?????????; ). ?? ?? ??????????, ?? ???????????? ??? goto. >> >> ????????? >> >> >> * exceptional case >> _______________________________________________ >> TasPython mailing list >> http://taspython.eu/ >> http://mail.python.org/mailman/listinfo/taspython >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kos.arav at gmail.com Sat Sep 4 14:30:18 2010 From: kos.arav at gmail.com (Aravanis Konstantinos) Date: Sat, 4 Sep 2010 15:30:18 +0300 Subject: [TasPython] =?utf-8?b?zpTOuc6xzrvOrc6+z4TOtSDPhM6/IM+Dz4TPhc67?= =?utf-8?b?IM+DzrHPgg==?= In-Reply-To: <201009041448.50237.mpessas@freemail.gr> References: <201009041230.10086.mydimle@gmail.com> <201009041448.50237.mpessas@freemail.gr> Message-ID: <201009041530.19166.kos.arav@gmail.com> ??? ??? ??? #1 ?? ???????... ??? ???????? ? ??? ????... ????????? ??? ????????? ?????? ??????????? ?? ??????? ??? ?????? ?? ?????? handle ?????? ??????????... ????? *???????* ???? ???? ??? ? ???????? ????? ??????? ??????????? ?? ??????? ??? ? ??????? ???? ?? ??? ??????????? ??????? ??? ????? ????? ??? ?????? ?? "?????????" ???? ???????????... ???????? ??????? ?? ??? ????????... :P -- Aravanis Konstantinos // sbosx My site & blog: AravanisKostas.com TasPython.eu ...because simplicity matters! From mpessas at freemail.gr Sat Sep 4 17:34:45 2010 From: mpessas at freemail.gr (Apostolos Mpessas) Date: Sat, 4 Sep 2010 18:34:45 +0300 Subject: [TasPython] =?utf-8?b?zpTOuc6xzrvOrc6+z4TOtSDPhM6/IM+Dz4TPhc67?= =?utf-8?b?IM+DzrHPgg==?= In-Reply-To: References: Message-ID: <201009041834.46056.mpessas@freemail.gr> On Saturday 04 of September 2010 16:27:57 Mikey Moose wrote: > ???? ?????? ?? ?? ?????? ??? ?????. > > ???? 4 ??????????? 2010 4:27 ?.?., ? ??????? Mikey Moose < > > unfortunate42 at gmail.com> ??????: > > ?? ?? ??? ???? ???????? ??? ?? ???????? ??? ???? ??? ?? Exceptions ??? > > ???????????? ?? ???? ??????? ???? ???? ??? ??? ????? ??????. ????? ??? ?? > > ??? ???? ???????? ??? ?? Java ??? ????? ????? ??????. > > ??????, ?? exceptions ?????????? ???? ??????? ??????????????? ??? ???????? (read, ??? ????) ?????? ????? ?? ????? ?? ?? C ??? ??? ?? ???? ???????, ????? ???????? ??? ?????. ?? ???? ??? ???????? ????? ?????????? ?????????????. ????????? ???? ?????? ????? ??? ???? ????? ???? ?????? ???? ????????? ??? http://en.wikipedia.org/wiki/Principle_of_least_astonishment (??????, ?????? ??? ??? ??? ????? ???????, ????, ??? ?? ???????????, ??? ????? ??????? ??? ?? ????? ?????). ????, ??? Java ?? ????? ??????, ?? ???????, ???? ???? ??????? Java ????? exceptions; > > ??????? ?? ????? ?????? ???? Python; ??????? ??? ?????????. ??? ?????????????? (?????? ?? ??? ??? ????? :P ) ???????? ??? ???????????, ??? ??? ???????????? exceptions ??? ??? ??? ?? ????????????. ???????? ??? ?? python -m timeit "import test_exceptions; test_exceptions.exceptions(t)" python -m timeit "import test_exceptions; test_exceptions.no_exceptions(t)" ???? t ????? ????????? ??? ???????????? (??? ??? ?????? ?? ?????). ???????? ??? ???????? ????? ??? t ?? ?????? ???????????? ??? ?? ??????? ???????????? :) Hint: ???? ??? << 1000, ~= 1000 ??? ??? >> 1000 ????????? -------------- next part -------------- A non-text attachment was scrubbed... Name: test_exceptions.py Type: text/x-python Size: 487 bytes Desc: not available URL: From themhs at gmail.com Sat Sep 4 17:45:17 2010 From: themhs at gmail.com (Themistoklis Savvidis) Date: Sat, 4 Sep 2010 18:45:17 +0300 Subject: [TasPython] =?iso-8859-7?b?xOnh693u9OUg9O8g8/T16yDz4fI=?= In-Reply-To: References: Message-ID: 2010/9/1 Dimitris Glezos > ??? ?? ???????????? ??? self.cycle() ??? ???? ??? ?????; > > LEVEL_VALUES = { > 0: 'Normal', > 1: 'High', > 2: 'Top', > } > > ### 1 -- "The One-liner Showoff" > > def cycle(self): > self.level = (self.level + 1) % max(LEVEL_VALUES.keys()) > ??? ?????? ????? ? c-like ??????. ??????????????, ?? ??????????? ??? ??????? ?? loop ??? ?? ?????? ?? ??????? ??????? ?????? ? ???? ??? ?????? ?? ??? ?????????? - ?? ???????? ?? ??? ???? ???????? ??? - ???????? ?? ?????????? (??? ?????? ??? 2) ????? 1 ???? ?? ???????????????? ?? ???????????? ?????? mod ?? ??? ???????? bitwise and: self.max_value = 255 def cycle(self): self.level = (self.level + 1) & self.max_value ????????, ??? ?????????? ????????? ?????? ?? optimization ???? ?? ????? ???????? ??????? ???? ???????? ????????? ??? ????????? ??????????? ??????? ?????? ????????????. -- Themis -------------- next part -------------- An HTML attachment was scrubbed... URL: From mydimle at gmail.com Sat Sep 4 20:47:41 2010 From: mydimle at gmail.com (Dimitris Leventeas) Date: Sat, 4 Sep 2010 21:47:41 +0300 Subject: [TasPython] =?iso-8859-7?b?xOnh693u9OUg9O8g8/T16yDz4fI=?= In-Reply-To: References: Message-ID: <201009042147.42118.mydimle@gmail.com> ?? ??????????, ??? ?? ????????????? ??????????, ??? ?????: ?) ?? ??????? ??? ???? ????????? ?????? (= ?? ?????? ????? ??????????) ?) ?? ???????? ?????? ? ??????? ?) ?? ?? ??????. On Saturday 04 September 2010 18:45:17 Themistoklis Savvidis wrote: > self.max_value = 255 > > def cycle(self): > self.level = (self.level + 1) & self.max_value ?? ????? ????? ?????? ?????????, ???? ???????? ?? ??????????? ?? ???? ???????, ???? ????? ??? ???????? ??? mod.py ???? ????? ??? ??? ?????????? vs ????? ???????: test_exceptions.py ?? ?????????? ?? ?????????? ????? ????? ??? ?????. ???????? -- meticulous: very careful and with great attention to every detail - Cambridge Advanced Learner's Dictionary -------------- next part -------------- A non-text attachment was scrubbed... Name: mod.py Type: text/x-python Size: 716 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: test_exceptions.py Type: text/x-python Size: 2215 bytes Desc: not available URL: From georgeportokaloglou at gmail.com Mon Sep 6 16:00:13 2010 From: georgeportokaloglou at gmail.com (George Portokaloglou) Date: Mon, 6 Sep 2010 17:00:13 +0300 Subject: [TasPython] Fosscomm 2011 Message-ID: ? ????? ????????? ??? ????????? Fosscomm ??? ??????????? ?? ????, ??? ?????? ? ??????? ????????????? ????? ??? 30 ??????????? ??? ?????????/??????????/?????? ??? ??????????? ?? ?? ???????? ????????? ???? ??????, ??? ????????????? ?? ???????????? ?? ??????? Fosscomm. ?? ???????? ?? ??????????????? ??? ?????? ??? 2011, ?? ?????????? ??? ?? ???????? ? ????????? ?????????? ????????. ? ?????????? ??? ? ????? ?????????? ?? ?????? ?? ????? ??? ???? ????????????: ?) ??? ????? ??????? ??????? ????????????? ??????????? 100 ?????? ?) ??? ???????? ?? ??????????? ??? ?? ??????????????? ??? workshops, ????????????? ??????????? 20 ?????? ??????. ?) ?????????? ??? ???????? ???????? ?? ????????? ??? ??????? ??????? ????????????/???????/workshops ?) ???????????? ????????????? (???????????) ???? ????? ??????? ????????????/??????? ?) ??????? ?? ????, ??????????, ???? ??? ????? ??????? (????) ?) ?? ??????? ?????????? ???????? ??? ??????? ?????????? ???? ??????? ??? ????? ???? ??????. ?) ????????? ??? ??????? ?? ?????? ??? ??????? ???? ???? ?????????? ??? ????????? ???? ??? ?????? ??????? ???????? ?? ????? Creative Commons. ?????????? ??????, ?? ??????? ? ?????????? ???????? ????????? ??? ????????? ??? ????????? ???? video streaming. ???? ??? ?????? ???, ? ?????????? ????????, ????????: ?) ?? ???????????? ??? ?????????? ??? ????? ??? domain ??? fosscomm.gr ?) ?? ??????????? ??? ?????????? ?????????? ??? ????????? ?) ?? ?????????? ??????? ??? ?????, ??? ???????????? ???????? ???? ? ???????? ???? ?? ????????, ???????? ???????? ???? ????, ??. ?) ?? ????????? ??? ??? ???????? ?????? ?????????? ??? ????????? ??? ??? ?????? ???, ?? ????????? ??? ??????? ??? ??? ???????? ??? ?????????? ??? ?? ??????????? Fosscomm, ???? ?? ?????????? ??? ?????????? ???????? ??? ??????? ???? ???. ?? email ??? ?? ????????? ??? ???????? ??? ????????????? ????? ?? omada [at] fosscomm [.] gr ?? ????, ? ????? Fosscomm -------------- next part -------------- An HTML attachment was scrubbed... URL: From kos.arav at gmail.com Sun Sep 19 21:38:35 2010 From: kos.arav at gmail.com (Aravanis Konstantinos) Date: Sun, 19 Sep 2010 22:38:35 +0300 Subject: [TasPython] =?utf-8?b?zpbOt8+EzrXOr8+EzrHOuSBQeXRob27Or8+Dz4Q=?= =?utf-8?b?zrHPgiDPg861IM6tz4HOs86/IGNsb3VkL25ldHdvcmtlZCBzdG9yYWdlIQ==?= Message-ID: <201009192238.35515.kos.arav@gmail.com> ?????? ?????? ?? ?????????? ??????? ???????? ??? http://goo.gl/xG0u : ???????? ??????????????? ?? Python ??? ?????? ??????????? ??? ??????? (http://www.ics.forth.gr/) ??? ???????? ??????, ??? ??????? ?? ???? cloud/networked storage. ?????????? ????????: - ??????????????? ?? Python - ????? ??? ???????! ????????? ????????: - ??????????????? Python cross-platform (?? Linux, Win, Mac ??? ?? Back-end) - ??????????????? ?? Django (??? ?? front-end) ??????????? flouris at ics.forth.gr -- Aravanis Konstantinos // sbosx My site & blog: AravanisKostas.com TasPython.eu ...because simplicity matters! From mydimle at gmail.com Wed Sep 29 19:00:28 2010 From: mydimle at gmail.com (Dimitris Leventeas) Date: Wed, 29 Sep 2010 20:00:28 +0300 Subject: [TasPython] =?utf-8?b?zpPOuc6xIM+Ezrcgzr3Orc6xIM+Hz4HOv869zrk=?= =?utf-8?b?zqw=?= Message-ID: <201009292000.29696.mydimle@gmail.com> ??? ??????????? ?????? ?? ???????????? ???? ????? ?????? ??? ? ????? ??? ??????,???? ????????? ??? ?????????? ???????? ?? ??? ????! ? ?????? ??? ??? ???????? ???? ???? ??? ??? ????? ??? ??????? ????? ?????? ?? ???????? ??? ?????????????? ?????... (?????, ?????) ???????? ???? ? ????????? ??? site, ? ???????? ?????????? ???????? ??? ?,?? ???? ?????? ?? ????????. ??? ???? ??????????? ? ????? ????????? ? ?????? ????? ??? ????? ??? ???? ???? ??? ??? ??? ???? ??? ???????????. ??? ??? ?????????? ??????? ?? ??????? ??? ????? ??? ????????. ????????, ??? ???????? ?????? ?? ???? ??? ?? ??? ??? ??????, ????? ???? ?????? ?? ????? ??????? ???????. ?? ???? ??????? ??? ??????? ????? ??? ???? ??? ?? ????? ?? ???????? ???? ?? ?? ????, ?? ??????????. ?? ??? ??????? ????? ????? ??? ?????????????? ??????????? (?????????) ?? ???????? ??? ????? ????? ?,?? ?????. ??????????? ???????? ??? ?? ????????, ?? ??????? ??????? ? ?????????? ???????????? ??? ??? ????? ? ??? ?????? ??? ????? ???????? ??? ???????????? ??????????? ??????????? ??? ???? ???????? ?? ???????????? ???? ?????? ?????????? ???????? ???. ?????, ???????????? ?? ??? ????? ??? ???????? ????? ?? ????? ????? ?? ??????????! ? ???????? ??????? ??? ??????????? ??? ??? ?????? ????? ??? ?? ????????????, ??? ??? ????. ?? ???????? ????????? ?? ??????????? ??????????, ?? ?????????? ????????? ????? ??? ???????, ??? ????? ??? ????????????? ???????. ?????, ???????, ????????? ??? ?? ??? ????????? ??????? ??? ?????? ??? ??? ???? ????????? ???? ?? ??????????? ??? ??? ???? ?????? ?????? ???????? ????????? ?? ?????? ??????? ??? ???? ??? ???????????. ???? ????? ??? ??????? ??????, ?? ???? ????????? ?? ??? ?????????????? ??? ?? ?????? ??? ????: ????????, ??????, ??????, ?????, ????????, ??????, ????????, ????????????? ??? ??? ???????? ???????? ????????????. ?????? ??? ???? ???? ??? ???? ??? ???? ?? ??????! ?????? ???????????? ?????? ???? ????? ???? ??? ???????????? ???? ??? ???????? ???? ??? ???? ?? ???????????? ??? ???? ??? ??????????? ?? ???? ??? ??????? ???? ??? ?? ???????????? ?? ??? ???. ???? ?????? ?????? ??? ????, ? ???? ?? ?????????? ???? ??? ?? ??????????? ????? ??????????! ???????? ??? ?????? -- ?? ?? ???? ??? ?????????, ???? ??? ??? ???????????? ???????! From nodarakis at gmail.com Thu Sep 30 21:15:04 2010 From: nodarakis at gmail.com (Nikos Nodarakis) Date: Thu, 30 Sep 2010 22:15:04 +0300 Subject: [TasPython] =?iso-8859-7?b?uO3h8e7nIPDh8e/18+nc8+X57SAtIOXq5N7r?= =?iso-8859-7?b?+fPnIOXt5Onh9t3x7+307/I=?= Message-ID: ???? ???? ?? ?????, ?? ???????????? ???????? ????????? ??? ???? ???? ????????? ??? ????????? ???? ???? ?? ??????? ??????, ????????, ????????, ??? (???? ??? ????? ???? ??? ???!). ???? ?????? ?? ????????? ?? ????????????? ?? ????? ??? ??? ?? ??????????? ???? ??? ???????? ?????. ?? ???????????? ??? taspython ?? ??????????? ??? ?????! ?????? ????? ??? ??? ????? ??????? ????????? ????? ?? ????? ????? ??? ???? ??? ??????? ??? ?????? ????? ??? ??????????? ??? ????? (??????? ?3 ????? ?????????? ?/?). ??? ??? ???? ?? ?????? ?????? ???????? ???? ??????? ???????? ??? ?? ???? ?? ????? ???????? ? ???????. ???? ????? ??? ?????????? ?????????? ??? ?????????? ??? ???? ??????????? ??? ?? ????????? ???? ??? ?? ???????????. ?????? ???????? ?? ????? ?????? ?????????? ???? ????? ??? ????????? ??? ????? ?? ??????? ??? mail ?? ?? ???? ??? ???????????. -- It's not that I don' t trust people,it's that I don' t trust the devil inside them. -------------- next part -------------- An HTML attachment was scrubbed... URL: