Hi all!
i'm giving away to a friend of mine that have a garage (he repair car) my
old computer. He will use it essentialy to create estimates of the work
via an ods file (i've made a simple ods file to be filled with the cost of
materials and a description of the work).
He's totally new with com
Hellmut Weber wrote:
> Hi Peter and Jean-Michel,
> thanks for all your hints and pieces of code.
>
> It took me a while to play around with what I got from you (and some
> study of Vinay's module documentation.
>
> Now I have come up with a more complete solution I'm quite satisfied
> with. And
On Wed, Mar 31, 2010 at 12:47 AM, Tracubik wrote:
> Hi all!
> i'm giving away to a friend of mine that have a garage (he repair car) my
> old computer. He will use it essentialy to create estimates of the work
> via an ods file (i've made a simple ods file to be filled with the cost of
> materials
"Jobs in Kuwait" "Kuwait jobs" "accounts jobs in kuwait" "MEDICAL JOBS
IN KUWAIT" "FINANCE JOBS IN KUWAIT" "ENGINEERING JOBS IN KUWAIT"
"ADVERTISED JOBS ION KUWAIT" ON http://jobsinkuwait-net.blogspot.com/
"Jobs in Kuwait" "Kuwait jobs" "accounts jobs in kuwait" "MEDICAL JOBS
IN KUWAIT" "FINANCE JO
Pierre Quentel wrote:
> I'm surprised nobody proposed a solution with itertools ;-)
next(itertools.takewhile(lambda _: a == b, ["yes"]), "no")
You spoke to soon :)
Peter
--
http://mail.python.org/mailman/listinfo/python-list
Strange issue, I find that the dialog utility has an editbox function but
the python-dialog module doesn't provide this and there's no mention of
the reason for the omission of this important functionality.
Is there no easy and simple way to create a multi-line input dialog in
ANY of the text m
On Mar 31, 7:49 am, "Frank Millman" wrote:
> Hi all
>
> I needed something similar to, but not quite the same as,
> collections.namedtuple.
>
> The differences are that namedtuple requires the 'names' to be provided at
> creation time, and then lends itself to creating multiple instances of
> itse
"lbolla" wrote in message
news:f8011c0b-0b1b-4a4f-94ff-304c16ef9...@q16g2000yqq.googlegroups.com...
On Mar 31, 7:49 am, "Frank Millman" wrote:
Hi all
When subclassing immutable types, you need to override __new__;
otherwise you need to override __init__.
Perfect. Thanks very much.
Fra
Hi
You cannot add 'NOW() - '29 days'::INTERVAL' as a query because
cursor.execute() will try to mogrify it.
You can do :
import datetime
idays = psycopg2.extensions.adapt(datetime.timedelta(days=29))
self.dyndb.orderdb.query('update set creation_date=(NOW() - %s) where
id_order=%s',
Hello,
are there any python bindings for libpst?
http://www.five-ten-sg.com/libpst/
https://alioth.debian.org/projects/libpst/
Kind Regards
Richi
--
http://mail.python.org/mailman/listinfo/python-list
On Mar 31, 3:10 am, "D'Arcy J.M. Cain" wrote:
> On Tue, 30 Mar 2010 15:46:12 -0700 (PDT)
>
> ASh wrote:
> > > > new_start_date = "NOW() - '29 days'::INTERVAL"
> > > > self.dyndb.orderdb.query('''update set creation_date
> > > > = %s
> > > > where id_order
lbolla a écrit :
class MyList(list):
def __init__(self, names, values):
list.__init__(self, values)
for name, value in zip(names, values):
setattr(self, name, value)
names = ['A', 'B', 'C']
values = ['a', 'b', 'c']
lst = MyList(na
Frank Millman wrote in news:mailman.1360.1270018159.23598.python-
l...@python.org in comp.lang.python:
> I came up with a simple solution that seems to work -
>
class MyTuple(tuple):
> ... def __new__(cls, names, values):
> ... for name, value in zip(names, values):
> ... setattr
On Mar 31, 2:02 am, Rob Williscroft wrote:
> Frank Millman wrote in news:mailman.1360.1270018159.23598.python-
> l...@python.org in comp.lang.python:
>
> > I came up with a simple solution that seems to work -
>
> class MyTuple(tuple):
> > ... def __new__(cls, names, values):
> > ... fo
Hi all,
I have just released Shed Skin 0.4, an experimental (restricted) Python-to-C++
compiler. Please see my blog for more details about the release:
http://shed-skin.blogspot.com/
Thanks,
Mark Dufour.
--
"Overdesigning is a SIN. It's the archetypal example of what I call 'bad
taste'" - Linu
Mike C. Fletcher wrote:
Chris Withers wrote:
Hi All,
Using easy_install to get PyDispatcher results in:
...
Who's the maintainer of PyDispatcher nowadays? Would be handy if they
removed the sourceforge link from pypi.
...
Thanks for the report. I've released a 2.0.2 version on PyPI. That
Hi everyone,
I have a slightly complicated/medium sized regular expression and I
want to generate all possible words that it can match (to compare
performance of regex against an acora based matcher). Using the
regular expression as a grammar to generate all words in its language.
I was wondering
On Mar 31, 11:29 am, Michael Ricordeau
wrote:
> Hi
>
> You cannot add 'NOW() - '29 days'::INTERVAL' as a query because
> cursor.execute() will try to mogrify it.
>
> You can do :
> import datetime
> idays = psycopg2.extensions.adapt(datetime.timedelta(days=29))
> self.dyndb.orderdb.query('u
"Frank Millman" writes:
class MyList(list):
> ... def __new__(cls, names, values):
> ... for name, value in zip(names, values):
> ... setattr(cls, name, value)
> ... return list.__new__(cls, values)
Did you really mean to setattr the class here? If I'm guessing
your intenti
On Mar 31, 8:49 am, "Frank Millman" wrote:
Hi all
Thanks to all for the helpful replies.
Rob, you are correct, I had not realised I was adding attributes to the
class instead of the instance. Your alternative does work correctly. Thanks.
Carl, I understand your concern about modifying attr
En Wed, 31 Mar 2010 07:49:14 -0300, Nathan Harmston
escribió:
I have a slightly complicated/medium sized regular expression and I
want to generate all possible words that it can match (to compare
performance of regex against an acora based matcher). Using the
regular expression as a grammar t
Nathan Harmston wrote:
I have a slightly complicated/medium sized regular expression
and I want to generate all possible words that it can match
(to compare performance of regex against an acora based
matcher). Using the regular expression as a grammar to
generate all words in its language. I was
You have no guarantee that on the next run the directories will be
visited in the same order as in the first run (this could depend on the
filesystem). So then remembering a last directory won't do it. You could
write each completed directory name to a file, and then on the second
run check whether
Richard Lamboj wrote:
Hello,
are there any python bindings for libpst?
http://www.five-ten-sg.com/libpst/
https://alioth.debian.org/projects/libpst/
Kind Regards
Richi
http://www.lmgtfy.com/?q=libpst+python
3rd hit
Cheers,
JM
--
http://mail.python.org/mailman/listinfo/python-list
Hi
Could anyone give me a hint about a problem I have. I want to wrap
data from newsgroups like comp.lang.python. Is there anywhere out
some module for this or does google has something for this.
--
http://mail.python.org/mailman/listinfo/python-list
azrael wrote:
> Hi
>
> Could anyone give me a hint about a problem I have. I want to wrap
> data from newsgroups like comp.lang.python. Is there anywhere out
> some module for this or does google has something for this.
nntplib would be the normal starting point. I've used it, and it works
reaso
On 2010-03-31, Nathan Harmston wrote:
> I have a slightly complicated/medium sized regular expression and I
> want to generate all possible words that it can match
>
> I was wondering if this possible in Python or possible using
> anything. Google doesnt seem to give any obvious answers.
We did
On Mar 31, 5:49 am, Nathan Harmston
wrote:
> Hi everyone,
>
> I have a slightly complicated/medium sized regular expression and I
> want to generate all possible words that it can match (to compare
> performance of regex against an acora based matcher).
The pyparsing wiki Examples page includes t
Dear all,
I'm a newbie in python and would be acknowledge if somebody could shed
some light on associative arrays.
More precisely, I would like to create a multi-dimensional associative
array. I have for example a list of students which are identified
uniquely by their student IDs. Additionally, f
On Wed, Mar 31, 2010 at 10:10 PM, Javier Montoya wrote:
> Dear all,
>
> I'm a newbie in python and would be acknowledge if somebody could shed
> some light on associative arrays.
> More precisely, I would like to create a multi-dimensional associative
> array. I have for example a list of students
I tried to use some servers I know but they have a limited amount of
stored threads. not like google that has every thread ever opened. so
I tried to wrap google's html but I get a 403 error. any sugesstions?
On Mar 31, 3:28 pm, Steve Holden wrote:
> azrael wrote:
> > Hi
>
> > Could anyone gi
I must be having a brain cramp. Given a list of objects, how can I
sort the list on one attribute in descending order, then sort within
each group in ascending order on another attribute.
For example:
class Foo:
def __init__(self, a, b, c):
self.a = a
self.b = b
self.
On 2010-03-31 00:57:51 -0700, Peter Otten <__pete...@web.de> said:
Pierre Quentel wrote:
I'm surprised nobody proposed a solution with itertools ;-)
next(itertools.takewhile(lambda _: a == b, ["yes"]), "no")
You spoke to soon :)
I salute you, sir, for upholding the standards of this group.
Video is very funny
http://www.youtube.com/watch?v=-cKvPp71QFY
--
http://mail.python.org/mailman/listinfo/python-list
On 31/03/2010 18:08, Chris Curvey wrote:
I must be having a brain cramp. Given a list of objects, how can I
sort the list on one attribute in descending order, then sort within
each group in ascending order on another attribute.
For example:
class Foo:
def __init__(self, a, b, c):
Javier Montoya wrote:
Dear all,
I'm a newbie in python and would be acknowledge if somebody could shed
some light on associative arrays.
More precisely, I would like to create a multi-dimensional associative
array. I have for example a list of students which are identified
uniquely by their stud
Alf P. Steinbach wrote:
* Jean-Michel Pichavant:
John Nagle wrote:
Jonathan Hayward wrote:
I've posted "Usability, the Soul of Python: An Introduction to the
Python Programming Language Through the Eyes of Usability", at:
http://JonathansCorner.com/python/
No, it's just a rather verbo
Chris Curvey wrote:
> I must be having a brain cramp. Given a list of objects, how can I
> sort the list on one attribute in descending order, then sort within
> each group in ascending order on another attribute.
>
> For example:
>
> class Foo:
> def __init__(self, a, b, c):
> self
I was just wondering, why the list/generator and standard "for" have
disparities?
It would be really nice to be able to do:
for x in y if foo:
...
rather than:
for x in (x for x in y if foo):
...
Also, from a style standpoint, I prefer to extract the loop logic into a
function if it's
Need to get up-to-speed with Python as quickly as possible? Come join
me, Wesley Chun, author of Prentice-Hall's bestseller "Core Python
Programming," for a comprehensive intro course coming up this May in
beautiful Northern California! Please pass on this note to whomever
you think may be interest
Robert Kern wrote:
> second[first.argsort()]
Really cool. Thanks.
> Ask numpy questions on the numpy mailing list.
I will. I thought that this question would have an answer in a generic
python idiom.
Victor.
--
Victor Eijkhout -- eijkhout at tacc utexas edu
--
http://mail.python.org/mailman
On Mar 31, 12:08 pm, Chris Curvey wrote:
> I must be having a brain cramp. Given a list of objects, how can I
> sort the list on one attribute in descending order, then sort within
> each group in ascending order on another attribute.
>
> For example:
>
> class Foo:
> def __init__(self, a, b,
On 2010-03-31 13:58 PM, Victor Eijkhout wrote:
Robert Kern wrote:
second[first.argsort()]
Really cool. Thanks.
Ask numpy questions on the numpy mailing list.
I will. I thought that this question would have an answer in a generic
python idiom.
When dealing with numpy arrays, the generic
On Mar 31, 1:18 am, Lawrence D'Oliveiro wrote:
> In message <7316f3d2-bcc9-4a1a-8598-
>
> cdd5d41fd...@k17g2000yqb.googlegroups.com>, Joaquin Abian wrote:
> > (a==b) and 'YES' or 'NO'
>
> > Yes, ugly
>
> Why would you say that’s ugly?
>
> By the way, you don’t need the parentheses.
Lawrence,
mayb
Lawrence D'Oliveiro wrote:
> In message <20100331003241.47fa9...@vulcan.local>, Robert Fendt wrote:
>
>
>> The braces are gone, and with them the holy wars.
>>
>
> Let me start a new one. I would still put in some kind of explicit indicator
> of the end of the grouping construct:
>
> c
Victor Eijkhout wrote:
> Robert Kern wrote:
>
>> second[first.argsort()]
>
> Really cool. Thanks.
>
>> Ask numpy questions on the numpy mailing list.
>
> I will. I thought that this question would have an answer in a generic
> python idiom.
>
> Victor.
Not an unreasonable assumption, but it
On Mar 30, 4:25 pm, s...@sig.for.address (Victor Eijkhout) wrote:
> I have two arrays, made with numpy. The first one has values that I want
> to use as sorting keys; the second one needs to be sorted by those keys.
> Obviously I could turn them into a dictionary of pairs and sort by the
> first m
Genuine Google Adsense Account for Rs.300/-
We will approve your google adsense approval.
We will help you till you get the first adsense check.
Please send your mobile number to pramesh0...@gmail.com , i will call
you with in 15 minutes and give you the google adsense account.
High Price Reduc
Nathan Rice wrote:
> I was just wondering, why the list/generator and standard "for" have
> disparities?
>
> It would be really nice to be able to do:
>
> for x in y if foo:
> ...
>
> rather than:
>
> for x in (x for x in y if foo):
> ...
>
But it's not much of an issue when you can ea
On Mar 31, 2:47 am, Tracubik wrote:
> Hi all!
> i'm giving away to a friend of mine that have a garage (he repair car) my
> old computer. He will use it essentialy to create estimates of the work
> via an ods file (i've made a simple ods file to be filled with the cost of
> materials and a descrip
On Wed, Mar 31, 2010 at 4:21 PM, bobicanprogram wrote:
> On Mar 31, 2:47 am, Tracubik wrote:
> > Hi all!
> > i'm giving away to a friend of mine that have a garage (he repair car) my
> > old computer. He will use it essentialy to create estimates of the work
> > via an ods file (i've made a simp
On Mar 30, 2:41 pm, MRAB wrote:
> LX wrote:
> > On Mar 29, 6:34 pm, MRAB wrote:
> >> LX wrote:
> >>> Hi all, I have a question about decorators. I would like to use them
> >>> for argument checking, and pre/post conditions. However, I don't want
> >>> the additional overhead when I run in non-deb
LX wrote:
On Mar 30, 2:41 pm, MRAB wrote:
LX wrote:
On Mar 29, 6:34 pm, MRAB wrote:
LX wrote:
Hi all, I have a question about decorators. I would like to use them
for argument checking, and pre/post conditions. However, I don't want
the additional overhead when I run in non-debug mode. I co
subprocess works fine on my win pro 32-bit, but not on vista 64-bit.
am i doing some wrong, or it just won't work for win64? If that's
true, will it be extended to win64 in teh future?
thanks in advance
wk
--
http://mail.python.org/mailman/listinfo/python-list
On 2010-03-31 13:59:01 -0700, LX said:
pass_decorator will be called when the decorated function is _defined_,
but not when the decorated function is _called_.
Why is it then that during runtime, with a breakpoint in some
arbitrary main() in main.py, I get something similar to the following
cal
On Wed, Mar 31, 2010 at 2:26 PM, wukong wrote:
> subprocess works fine on my win pro 32-bit, but not on vista 64-bit.
> am i doing some wrong, or it just won't work for win64? If that's
> true, will it be extended to win64 in teh future?
Please characterize exactly how it is not working for you.
Is there any way to tell PyDev in Eclipse to run a script that doesn't
end in .py? Even if I have to go and manually set something for each
file...
I've inherited (in a manner of speaking) a dev project that is done in
python2.6... I pulled the latest dev branch and have it opened as a
project in
On Mar 31, 2:33 pm, Chris Rebert wrote:
> On Wed, Mar 31, 2010 at 2:26 PM, wukong wrote:
> > subprocess works fine on my win pro 32-bit, but not on vista 64-bit.
> > am i doing some wrong, or it just won't work for win64? If that's
> > true, will it be extended to win64 in teh future?
>
> Please
On 3/31/2010 5:26 PM, wukong wrote:
subprocess works fine on my win pro 32-bit, but not on vista 64-bit.
You are more likely to get a helpful answer if you give a minimal
example and explain exactly what 'not [works fine]' means. What did
happen? Include full error traceback if there was one.
On Mar 31, 10:08 am, Chris Curvey wrote:
> I must be having a brain cramp. Given a list of objects, how can I
> sort the list on one attribute in descending order, then sort within
> each group in ascending order on another attribute.
>
> For example:
>
> class Foo:
> def __init__(self, a, b,
> WindowsError: [Error 14001] The application has failed to start
> because its side-by-side configuration is incorrect. Please see the
> application event log for more detail
This is a configuration error on your system. The application you are
trying to start is incorrectly installed - it's not
I wanted to know if there was a way I could get a Python program to
run off of my flash drive as soon as the computer (Windows) detected
the device?
For example I could have a a simple program that would create a text
document on the computers desktop when my flash drive is detected.
--
http://ma
On Wed, 31 Mar 2010 22:27:05 +0100, MRAB wrote:
> LX wrote:
[...]
>> It looks to me the call stack still includes the additional level of
>> the decorator... what am I missing? Thank you for your time.
>
> Are you still defining your decorators in the same way as in your
> original post?
>
> A d
On Wed, 31 Mar 2010 12:05:24 -0700, Patrick Maupin wrote:
> You can provide a cmp function to the string sort method, e.g. cmp =
> lambda x,y: -cmp(x.a, y.a) or cmp(x.b, y.b)
String sort method?
>>> ''.sort
Traceback (most recent call last):
File "", line 1, in
AttributeError: 'str' object ha
On Mar 31, 5:48 pm, Abethebabe wrote:
> I wanted to know if there was a way I could get a Python program to
> run off of my flash drive as soon as the computer (Windows) detected
> the device?
>
> For example I could have a a simple program that would create a text
> document on the computers desk
* Abethebabe:
I wanted to know if there was a way I could get a Python program to
run off of my flash drive as soon as the computer (Windows) detected
the device?
For example I could have a a simple program that would create a text
document on the computers desktop when my flash drive is detecte
Steven D'Aprano wrote:
On Wed, 31 Mar 2010 22:27:05 +0100, MRAB wrote:
LX wrote:
[...]
It looks to me the call stack still includes the additional level of
the decorator... what am I missing? Thank you for your time.
Are you still defining your decorators in the same way as in your
original
On Mar 31, 2:28 pm, Stephen Hansen wrote:
> On 2010-03-31 13:59:01 -0700, LX said:
>
>
>
>
>
> >> pass_decorator will be called when the decorated function is _defined_,
> >> but not when the decorated function is _called_.
>
> > Why is it then that during runtime, with a breakpoint in some
> > ar
"fizzi" wrote in message
news:48469e2f$...@news.tm.net.my...
> Worst thing could happen to your laptop is its been stolen, there is an
> easy way to recover back your missing property. LocatePC is a software
> that sends you a secret email message from your computer containing vital
> informa
On Mar 31, 5:57 pm, Steven D'Aprano wrote:
> Did you mean list sort method?
Why, yes. Yes, I did. Yes, I'm an old forgetful man who sometimes
misspeaks or mistypes, and you're the smartest, sharpest guy in the
world. Most helpful, too. It's much more useful to show how I'm wrong
than to provi
On Mar 31, 7:00 pm, rantingrick wrote:
> On Mar 31, 5:48 pm, Abethebabe wrote:
>
> > I wanted to know if there was a way I could get a Python program to
> > run off of my flash drive as soon as the computer (Windows) detected
> > the device?
>
> > For example I could have a a simple program that
On Mar 31, 7:04 pm, "Alf P. Steinbach" wrote:
> * Abethebabe:
>
> > I wanted to know if there was a way I could get a Python program to
> > run off of my flash drive as soon as the computer (Windows) detected
> > the device?
>
> > For example I could have a a simple program that would create a tex
Hi there,
Years ago I wrote a LAMP app using python. I find I need a simple web
data entry tool to store records (stock research) and when I enter a
stock ticker, to pull up all the past research I have done. I am
imagining fields like ticker, date, pulldown menus for various
options, long text fo
On 03/31/10 22:37, J wrote:
Is there any way to tell PyDev in Eclipse to run a script that doesn't
end in .py? Even if I have to go and manually set something for each
file...
I've inherited (in a manner of speaking) a dev project that is done in
python2.6... I pulled the latest dev branch and
On Wed, Mar 31, 2010 at 6:37 PM, J wrote:
> Is there any way to tell PyDev in Eclipse to run a script that doesn't
> end in .py? Even if I have to go and manually set something for each
> file...
>
> I've inherited (in a manner of speaking) a dev project that is done in
> python2.6... I pulled th
On Thu, 01 Apr 2010 00:27:51 +0100, MRAB wrote:
>>> A decorator shouldn't call the function it's decorating.
>>
>> *raises eyebrow*
>>
>> Surely, in the general case, a decorator SHOULD call the function it is
>> decorating? I'm sure you know that, but your wording is funny and could
>> confuse
On Wed, 31 Mar 2010 17:21:18 -0700, Patrick Maupin wrote:
> Doesn't matter though. The OP was sorting lists, not strings, so he
> knew what I meant.
I have found that when people ask basic questions about fundamental
Python operations like sorting, it is risky to assume that they will know
wha
Steven D'Aprano wrote:
> On Wed, 31 Mar 2010 17:21:18 -0700, Patrick Maupin wrote:
>
>> Doesn't matter though. The OP was sorting lists, not strings, so he
>> knew what I meant.
>
> I have found that when people ask basic questions about fundamental
> Python operations like sorting, it is risky
On 2010-03-31 19:38 , KB wrote:
Hi there,
Years ago I wrote a LAMP app using python. I find I need a simple web
data entry tool to store records (stock research) and when I enter a
stock ticker, to pull up all the past research I have done. I am
imagining fields like ticker, date, pulldown menus
In article ,
Alf P. Steinbach wrote:
>
>I think it was EMI who once distributed a nasty rootkit (and yes, it
>was theirs, it was not an accident) as a copy protection scheme on a
>music CD.
Sony, and I still (mostly) boycott Sony
The following is on Linux.
I'd like to build python with ./configure --enable-shared. And
install in a non-standard place (an nfs-mounted directory).
However, the binary is then not usable, since it can't find the
library. I can fix this by defining LD_LIBRARY_PATH, but I don't want
to do that.
On Mar 31, 2:47 am, Tracubik wrote:
> Hi all!
> i'm giving away to a friend of mine that have a garage (he repair car) my
> old computer. He will use it essentialy to create estimates of the work
> via an ods file (i've made a simple ods file to be filled with the cost of
> materials and a descrip
On Wed, 31 Mar 2010 22:19:27 -0400, Steve Holden wrote:
> Steven D'Aprano wrote:
>> On Wed, 31 Mar 2010 17:21:18 -0700, Patrick Maupin wrote:
>>
>>> Doesn't matter though. The OP was sorting lists, not strings, so he
>>> knew what I meant.
>>
>> I have found that when people ask basic questions
On Mar 31, 10:33 pm, a...@pythoncraft.com (Aahz) wrote:
> In article ,
> Alf P. Steinbach wrote:
>
>
>
> >I think it was EMI who once distributed a nasty rootkit (and yes, it
> >was theirs, it was not an accident) as a copy protection scheme on a
> >music CD.
Ok, I will take your advice and implemented in my project.
Thank you all for your help.
On Mar 31, 2010 3:03am, Dennis Lee Bieber wrote:
On Wed, 31 Mar 2010 00:47:47 +, hid...@gmail.com declaimed the
following in gmane.comp.python.general:
> I did that but i want to know if i have
On Wed, 31 Mar 2010 22:19:27 -0400, Steve Holden wrote:
> I'm the same myself, and I know from personal experience that while I am
> (simply?) seeking accuracy and truth it sometimes bugs the hell out of
> people ...
By the way, why are we acting as if seeking accuracy and truth is a bad
thing?
d d gmail.com> writes:
> I found this:
>
http://koansys.com/tech/building-python-with-enable-shared-in-non-standard-location
> It recommends LDFLAGS="-rpath ", and mentions that you
> get a "compiler cannot create executables" error unless you first
> create the empty directory. But I get that e
On Mar 31, 11:28 pm, Steven D'Aprano
wrote:
> I wouldn't so much say "literal" as "precise".
Being precise in your own words is an admirable trait. Asking others
to be more precise can be done politely when necessary, but in this
case it obviously wasn't necessary, since even you, who deliberat
On Mar 31, 11:40 pm, Steven D'Aprano
wrote:
> By the way, why are we acting as if seeking accuracy and truth is a bad
> thing?
I don't think anybody is acting like that is a bad thing. It's all
how you choose to interpret things.
> Personally, if I were interviewing job applicants, one of the
Patrick Maupin wrote:
> On Mar 31, 11:28 pm, Steven D'Aprano
> wrote:
>
>> I wouldn't so much say "literal" as "precise".
>
> Being precise in your own words is an admirable trait. Asking others
> to be more precise can be done politely when necessary, but in this
> case it obviously wasn't
Steven D'Aprano wrote:
> On Wed, 31 Mar 2010 22:19:27 -0400, Steve Holden wrote:
>
>> I'm the same myself, and I know from personal experience that while I am
>> (simply?) seeking accuracy and truth it sometimes bugs the hell out of
>> people ...
>
> By the way, why are we acting as if seeking ac
On Wednesday 31 March 2010 22:50:02 Steve Holden wrote:
> "When I say 'use soap'
"*use* soap"? Sounds awfully Perlish to me, perhaps you meant "import soap" ;-)?
Rami Chowdhury
"Ninety percent of everything is crap." -- Sturgeon's Law
408-597-7068 (US) / 07875-841-046 (UK) / 01819-245544 (B
"jobs in australia" "jobs in australia for pakistanis" "jobs in
australia melbourne" "jobs in australia for immigrants" "jobs in
australia for international students" "jobs in australia for
foreigners" ON http://jobsinaustralia-net.blogspot.com/ "jobs in
australia" "jobs in australia for pakistani
On Wed, 31 Mar 2010 21:54:40 -0700, Patrick Maupin wrote:
> There is a (not very subtle) difference between saying "Oh, you meant a
> list, not a string" (especially when the context was a discussion of
> list processing), and printing a traceback for something that nobody was
> discussing, based
94 matches
Mail list logo