Paper Presentation Topics.
Our database posses huge collection of topics for paper presentations
in all areas.
Check all our paper presentation topics at http://pptcontent.blogspot.com/
Paper Presentation Topics
Paper presentation topics for ece
">Paper presentation topics for ece
http:/
In article ,
Robert Kern wrote:
>
>If you are storing the password instead of making your user remember
>it, most platforms have some kind of keychain secure password
>storage. I recommend reading up on the APIs available on your targeted
>platforms.
Are you sure? I haven't done a lot of resear
In article ,
Tim Chase wrote:
>Luis M. González wrote:
>>
>> If you want a list of items, you use tuples or lists. Examples:
>>
>> ('a', 'm', 'p') ---> this is a tuple, and it's made with
>> parenthesis ()
>
>Actually, a tuple is made with commas...the parens are just there
>to clarify the
Am 27.02.2010 10:00, schrieb alex23:
Michael Rudolf wrote:
In Java, Method Overloading is my best friend
Guido wrote a nice article[1] on "multimethods" using decorators,
which Ian Bicking followed up on[2] with a non-global approach.
1: http://www.artima.com/weblogs/viewpost.jsp?thread=1016
On Feb 27, 9:56 pm, staticd wrote:
> On Feb 27, 8:48 pm, gujax wrote:
>
> > I have been trying to install python on my Win ME system for over two
> > years - gave up for a while and now I am back with a resolve to solve
> > the problem.
>
> Dude. Give up. There are a ton of __free__ distroz of
* Dr. Phillip M. Feldman:
Stefan Behnel-3 wrote:
alexander@gmail.com wrote:
I think the speed function may be broken from the turtle graphics package
"from turtle import *
speed('fastest')
forward(50)"
I have tried all of the different speed settings, but I get no change
in the turtl
On Feb 27, 9:36 pm, Rick Dooling wrote:
> > Hi,
> > I have been trying to install python on my Win ME system
>
> Try this:
>
> http://tinyurl.com/w7wgp
>
> RD
I gave it a shot but the site installs the same version of
ActivePython which did install on my computer but does not open any
command win
Stefan Behnel-3 wrote:
>
> alexander@gmail.com wrote:
>> I think the speed function may be broken from the turtle graphics package
>>
>>
>> "from turtle import *
>>
>> speed('fastest')
>>
>> forward(50)"
>>
>>
>> I have tried all of the different speed settings, but I get no change
>>
Steven D'Aprano wrote:
def pinned_gaussian(a, b, mu, sigma):
"""Return a Gaussian random number pinned to [a, b]."""
return min(b, max(a, random.gauss(mu, sigma)))
def truncated_gauss(a, b, mu, sigma):
"""Return a random number from a truncated Gaussian distribution."""
while 1:
On Feb 27, 12:50 pm, Hal Styli wrote:
> Hello,
>
> Can someone please help.
> I have a sed solution to the problems below but would like to rewrite
> in python...
>
> I need to strip out some data from a quirky xml file into a csv:
>
> from something like this
>
> < . cust="dick" product=
> >Amusing how long those Python toes can be. In several replies I have
> >noticed (often clueless) opinions on Perl. When do people learn that a
> >language is just a tool to do a job?
>
> When do people learn that language makes a difference? I used to be a
> Perl programmer; these days, you'd h
On 28 Feb, 01:48, gujax wrote:
> Hi,
> I have been trying to install python on my Win ME system for over two
> years - gave up for a while and now I am back with a resolve to solve
> the problem. I tried all versions of python but having installation
> problems for all. Installation does not proce
On Feb 27, 8:48 pm, gujax wrote:
> I have been trying to install python on my Win ME system for over two
> years - gave up for a while and now I am back with a resolve to solve
> the problem.
Dude. Give up. There are a ton of __free__ distroz of linux out
there. Your troubles are not worth th
Rick Dooling wrote:
>> Hi,
>> I have been trying to install python on my Win ME system
>
> Try this:
>
> http://tinyurl.com/w7wgp
>
That explains how to install Python on Windows *XP*. Windows ME is no
longer a supported platform - the tools used to create it just aren't
able to support platform
Gregory Ewing wrote:
Mel wrote:
You could think of it as a not bad use of the design principle "Clear
The Simple Stuff Out Of The Way First". Destinations are commonly a
lot simpler than sources
That's not usually true in assembly languages, though,
where the source and destination are both
On Sat, 27 Feb 2010 15:57:15 -0800, dontspamleo wrote:
> I think a big part of the problem is that the scoping rules in Python
> are inconsistent because classes are a different kind of object. An
> example helps:
[...]
> But this doesn't work...
> class C:
> x = 1
> def f(self,y): return x +
> Hi,
> I have been trying to install python on my Win ME system
Try this:
http://tinyurl.com/w7wgp
RD
--
http://mail.python.org/mailman/listinfo/python-list
>> I do not even
>> know what to do next. I also tried Activepython. It installs but when
>> I try to open it from Start->Programs->ActivePython 2.6, I get an
>> error window saying - upgrade windows.
>
> Hmm, have you tried "upgrading windows, just a wild guess!
Hey, not everyone can afford to u
On Feb 27, 7:48 pm, gujax wrote:
> Hi,
> I have been trying to install python on my Win ME system for over two
> years -
Wow 2 years!, you must have the patience of a saint!
> Installation does not proceed and I get a message
> saying "dll required for installation could not be run".
Did it say
Aahz wrote:
monkeys paw wrote:
On 2/23/2010 3:17 PM, Tim Chase wrote:
Sure you don't need this to be 'wb' instead of 'w'?
'wb' does the trick. Thanks all!
import urllib2
a = open('adobe.pdf', 'wb')
i = 0
for line in
urllib2.urlopen('http://www.whirlpoolwaterheaters.com/downloads/6510413.pd
Mel wrote:
You could think of it as a not bad use of the design principle "Clear The
Simple Stuff Out Of The Way First". Destinations are commonly a lot simpler
than sources
That's not usually true in assembly languages, though,
where the source and destination are both very restricted
and o
tarek...@gmail.com wrote:
Hi,
I am currently using oauth2.py library, and it works fine on one of my
PC's (python2.5), but later on when I tried to use it with python2.4
the following line (line 332 in
http://github.com/simplegeo/python-oauth2/blob/master/oauth2/__init__.py)
showed a syntax err
On Sat, 27 Feb 2010 11:27:04 -0600, John Bokma wrote:
> When do people learn that a
> language is just a tool to do a job?
When do people learn that there are different sorts of tools? A
professional wouldn't use a screwdriver when they need a hammer.
Perl has strengths: it can be *extremely* c
On Sat, 27 Feb 2010 17:41:09 -0800, tarek...@gmail.com wrote:
> Hi,
>
> I am currently using oauth2.py library, and it works fine on one of my
> PC's (python2.5), but later on when I tried to use it with python2.4 the
> following line (line 332 in
> http://github.com/simplegeo/python-oauth2/blob/
darnzen wrote:
Well, I got around this mess by putting all those static callbacks
into a separate module in a new class. I set them up to call a bound
method of that class which passes the arguments to the appropriate
bound methods of other class instances. I just have to keep a little
dict of t
On Sat, Feb 27, 2010 at 5:41 PM, tarek...@gmail.com wrote:
> Hi,
>
> I am currently using oauth2.py library, and it works fine on one of my
> PC's (python2.5), but later on when I tried to use it with python2.4
> the following line (line 332 in
> http://github.com/simplegeo/python-oauth2/blob/mas
On Sat, 27 Feb 2010 12:50:38 -0800, Hal Styli wrote:
> Hello,
>
> Can someone please help.
> I have a sed solution to the problems below but would like to rewrite in
> python...
>
> I need to strip out some data from a quirky xml file into a csv:
>
> from something like this
>
> < . cust="
Hi,
I have been trying to install python on my Win ME system for over two
years - gave up for a while and now I am back with a resolve to solve
the problem. I tried all versions of python but having installation
problems for all. Installation does not proceed and I get a message
saying "dll require
On Sat, Feb 27, 2010 at 8:41 PM, tarek...@gmail.com wrote:
> Hi,
>
> I am currently using oauth2.py library, and it works fine on one of my
> PC's (python2.5), but later on when I tried to use it with python2.4
> the following line (line 332 in
> http://github.com/simplegeo/python-oauth2/blob/mast
Hi,
I am currently using oauth2.py library, and it works fine on one of my
PC's (python2.5), but later on when I tried to use it with python2.4
the following line (line 332 in
http://github.com/simplegeo/python-oauth2/blob/master/oauth2/__init__.py)
showed a syntax error
items = [(k, v if type(v
In article <2fwdnxofjat-whnwnz2dnuvz_rgdn...@insightbb.com>,
monkeys paw wrote:
>On 2/23/2010 3:17 PM, Tim Chase wrote:
>>
>> Sure you don't need this to be 'wb' instead of 'w'?
>
>'wb' does the trick. Thanks all!
>
>import urllib2
>a = open('adobe.pdf', 'wb')
>i = 0
>for line in
>urllib2.urlop
On Feb 27, 2010, at 6:57 PM, dontspamleo wrote:
>
>
> http://bioscreencastwiki.com/Python_Variable_scope_gymnastics
Broken link:
Site settings could not be loaded
We were unable to locate the API to request site settings. Please see below for
debugging information.
HTTP Response Status Cod
I think a big part of the problem is that the scoping rules in Python
are inconsistent because classes are a different kind of object. An
example helps:
This works:
x = 1
def f(y): return y + x
This works:
def f():
x = 1
def g(y): return x + y
return g(2)
But this doesn't work...
class
Hal Styli writes:
> Hello,
>
> Can someone please help.
> I have a sed solution to the problems below but would like to rewrite
> in python...
>
> I need to strip out some data from a quirky xml file into a csv:
>
> from something like this
>
> < . cust="dick" product="eggs" ... quantity
In article ,
Emile van Sebille wrote:
>On 2/24/2010 1:52 PM Arnaud Delobelle said...
>> a...@pythoncraft.com (Aahz) writes:
>>>
>>> That seems to miss the point to some extent. If I post my recipe for
>>> spinach lasagne here, is that spam?
>>
>> Are they really good? Sounds good, spinach lasag
Hello,
Can someone please help.
I have a sed solution to the problems below but would like to rewrite
in python...
I need to strip out some data from a quirky xml file into a csv:
from something like this
< . cust="dick" product="eggs" ... quantity="12" >
< cust="tom" pr
In article ,
Steven D'Aprano wrote:
>
>[st...@sylar ~]$ cat ws-example.rb
Ahhh, you're a Heroes fan. ;-)
--
Aahz (a...@pythoncraft.com) <*> http://www.pythoncraft.com/
"Many customs in this life persist because they ease friction and promote
productivity as a result of unive
In article <87mxyuzj13@castleamber.com>,
John Bokma wrote:
>
>Amusing how long those Python toes can be. In several replies I have
>noticed (often clueless) opinions on Perl. When do people learn that a
>language is just a tool to do a job?
When do people learn that language makes a differen
On 2/27/2010 3:21 AM, Pierre Quentel wrote:
Oops ! wrong group, sorry. It's for c.l.p.announce
Announcements also come to c.l.p and python-list. C.l.p.a should be a
low-traffic subset, perhaps with followups set to c.l.p for discussion.
--
http://mail.python.org/mailman/listinfo/python-lis
On Feb 27, 2010, at 1:15 PM, John Bokma wrote:
>> I sure don't want to maintain Perl applications though; even ones I've
>> written.
>
> Ouch, I am afraid that that tells a lot about your Perl programming
> skills.
Nah, it tells you about my preferences.
I can, and have, written maintainable
"sstein...@gmail.com" writes:
> I'm not sure how "use it for what it's good for" has anything to do
> with toes.
I've the feeling that some people who use Python are easily offended by
everthing Perl related. Which is silly; zealotism in general is, for
that matter.
> I've written lots of both
On Sat, 27 Feb 2010 07:29:46 -0800 (PST) John Pinner
wrote:
> A good way to control Python contractors is (given that firstly there
> are functional specifications to comply with, and tests to pass) is to
> impose the following condition:
>
> that all code delivered must reach a score of (say) 9
On 2010-02-27, @ Rocteur CC wrote:
>
> On 27 Feb 2010, at 12:44, Steven D'Aprano wrote:
>
>> On Sat, 27 Feb 2010 10:36:41 +0100, @ Rocteur CC wrote:
>>
>>> cat file.dos | python -c "import sys,re;
>>> [sys.stdout.write(re.compile('\r\n').sub('\n', line)) for line in
>>> sys.stdin]" >file.unix
>>
>
On Feb 27, 2010, at 12:27 PM, John Bokma wrote:
> "sstein...@gmail.com" writes:
>
>> On Feb 27, 2010, at 10:01 AM, @ Rocteur CC wrote:
>>> Nothing to do with Perl, Perl only takes a handful of characters to
>>> do this and certainly does not require the creation an intermediate
>>> file
>>
>>
On Sat, 27 Feb 2010 16:01:53 +0100, @ Rocteur CC wrote:
> On 27 Feb 2010, at 12:44, Steven D'Aprano wrote:
>
>> On Sat, 27 Feb 2010 10:36:41 +0100, @ Rocteur CC wrote:
>>
>>> cat file.dos | python -c "import sys,re;
>>> [sys.stdout.write(re.compile('\r\n').sub('\n', line)) for line in
>>> sys.std
* @ Rocteur CC:
On 27 Feb 2010, at 12:44, Steven D'Aprano wrote:
On Sat, 27 Feb 2010 10:36:41 +0100, @ Rocteur CC wrote:
cat file.dos | python -c "import sys,re;
[sys.stdout.write(re.compile('\r\n').sub('\n', line)) for line in
sys.stdin]" >file.unix
Holy cow!!! Calling a regex just fo
On 2/26/10, Victor Stinner wrote:
> Le vendredi 26 février 2010 15:37:43, Daniel Fetchinson a écrit :
>> >> pysandbox is a new Python sandbox project
>>
>> Out of curiosity, the python sandbox behind google app engine is open
>> source? If so, how is it different from your project, if not, anyone
On Feb 27, 11:11 am, Kevin Walzer wrote:
(...snip...)
> Kevin Walzer
> Code by Kevinhttp://www.codebykevin.com
Great post Kevin! The only thing i would like to add are my two
favorite references for learning Tkinter. They are not geared around
the new ttk stuff, but still 95% relevant to any Tk
"sstein...@gmail.com" writes:
> On Feb 27, 2010, at 10:01 AM, @ Rocteur CC wrote:
>> Nothing to do with Perl, Perl only takes a handful of characters to
>> do this and certainly does not require the creation an intermediate
>> file
>
> Perl may be better for you for throw-away code. Use Python f
Steven D'Aprano writes:
> Also, some assemblies perform the move in different directions according
> to the arguments. So you might have:
>
> mv AX,BX ; move contents of BX into AX
> mv @CX,DX ; move contents of @CX into DX
>
> Horrible, yes, but apparently some assembly languages did something
Will do.. Thanks again..
Sent from my iPhone
On Feb 27, 2010, at 8:36 AM, Rami Chowdhury
wrote:
On Friday 26 February 2010 21:49:00 Isaiah Coberly wrote:
Thanks for your help Rami.. I got it working.. I did some digging
around
and found out that I needed to install opencv as admin.. Now
On 2/27/10 3:05 AM, Fabiano wrote:
Hi,
I'm going to start my little journey into the Python's lands.
I have already red the old posts about but I suppose this is an evolving
topic.
I have understood Tk is the default Python's GUI toolkit, I have also
read that version 8.5 has native widgets and
On 2/24/2010 1:52 PM Arnaud Delobelle said...
a...@pythoncraft.com (Aahz) writes:
That seems to miss the point to some extent. If I post my recipe for
spinach lasagne here, is that spam?
Are they really good? Sounds good, spinach lasagne, I don't know a
recipe for them. Maybe you could post
On 2010-02-27, @ Rocteur CC wrote:
> Nothing to do with Perl, Perl only takes a handful of characters to do
> this and certainly does not require the creation an intermediate file,
Are you sure about that?
Or does it just hide the intermediate file from you the way
that sed -i does?
--
Gran
On Friday 26 February 2010 21:49:00 Isaiah Coberly wrote:
> Thanks for your help Rami.. I got it working.. I did some digging around
> and found out that I needed to install opencv as admin.. Now Im trying to
> run one of the samples and up against my next chalange.
>
> Argg.. There are so many pi
@ Rocteur CC, 27.02.2010 10:36:
> cat file.dos | python -c "import
> sys,re;[sys.stdout.write(re.compile('\r\n').sub('\n', line)) for line in
> sys.stdin]" >file.unix
See:
http://partmaps.org/era/unix/award.html
Stefan
--
http://mail.python.org/mailman/listinfo/python-list
On Feb 27, 2010, at 10:01 AM, @ Rocteur CC wrote:
> Nothing to do with Perl, Perl only takes a handful of characters to do this
> and certainly does not require the creation an intermediate file
Perl may be better for you for throw-away code. Use Python for the code you
want to keep (and read
On Feb 24, 8:23 pm, Andreas Waldenburger
wrote:
> Hi all,
>
> a company that works with my company writes a lot of of their code in
> Python (lucky jerks). I've seen their code and it basically looks like
> this:
>
> """Function that does stuff"""
> def doStuff():
> while not wise(up):
>
On 27 Feb 2010, at 12:44, Steven D'Aprano wrote:
On Sat, 27 Feb 2010 10:36:41 +0100, @ Rocteur CC wrote:
cat file.dos | python -c "import sys,re;
[sys.stdout.write(re.compile('\r\n').sub('\n', line)) for line in
sys.stdin]" >file.unix
Holy cow!!! Calling a regex just for a straight lite
Call For Manuscripts
The Journal is currently accepting original high-quality research
manuscripts for publication. The Journal welcomes the submission of
manuscripts that meet the scientific criteria of significance and
academic excellence. All research articles submitted for the journal
will be p
On 27 Feb 2010 03:33:57 GMT Steven D'Aprano
wrote:
> exec "'myPrefix_turquoise' = 42"
>
Not quite:
In [1]: exec "'myPrefix_turquoise' = 42"
File "", line 1
SyntaxError: can't assign to literal (, line 1)
I think you meant:
exec
On Fri, 26 Feb 2010 21:31:47 -0800, alex23 wrote:
> Mensanator wrote:
>> "You're" not getting the point.
>
> If every link has to be accompanied by a summary of all of the
> information at the end of it, what point is there to linking?
>
> (Programmers are the _only_ people I know of who compla
On Sat, 27 Feb 2010 10:36:41 +0100, @ Rocteur CC wrote:
> cat file.dos | python -c "import sys,re;
> [sys.stdout.write(re.compile('\r\n').sub('\n', line)) for line in
> sys.stdin]" >file.unix
Holy cow!!! Calling a regex just for a straight literal-to-literal
string replacement! You've been i
@ Rocteur CC wrote:
> But then I found
> http://wiki.python.org/moin/Powerful%20Python%20One-Liners
> and tried this:
>
> cat file.dos | python -c "import sys,re;
> [sys.stdout.write(re.compile('\r\n').sub('\n', line)) for line in
> sys.stdin]" >file.unix
>
> And it works..
- Don't build list
On 02/27/10 09:36, @ Rocteur CC wrote:
Hi a couple of fragmented things popped in my head reading your
question, non of them is very constructive though in what you actually
want, but here it goes anyway.
- Oneline through away script with re as a built in syntax, yup that
sounds like perl t
Hi,
This morning I am working though Building Skills in Python and was
having problems with string.strip.
Then I found the input file I was using was in DOS format and I
thought it be best to convert it to UNIX and so I started to type perl
-i -pe 's/ and then I though, wait, I'm learning
On Fri, 2010-02-26 at 13:49 -0300, Ricardo Aráoz wrote:
> Does pydoc only deal with ASCII?
UTF-8 in docstrings works for me.
Maybe:
* Its actually not UTF-8
* The console you're using doesn't support UTF-8 well
(note: I'm on linux, maybe its a problem with windows?)
code >>>
#!/usr/bin/env
Michael Rudolf wrote:
> In Java, Method Overloading is my best friend
Guido wrote a nice article[1] on "multimethods" using decorators,
which Ian Bicking followed up on[2] with a non-global approach.
1: http://www.artima.com/weblogs/viewpost.jsp?thread=101605
2: http://blog.ianbicking.org/more-o
Hi Pierre
> Oops ! wrong group, sorry. It's for c.l.p.announce
Well, I for one was happy to learn of this release here - thanks
J^n
--
http://mail.python.org/mailman/listinfo/python-list
> Are the new Tk comaprable with other toolkits(Qt, GTK,Wx?)?
> Does Tk lack other features compared to the Qt,GTK,Wx...?
> (Or: is there things you can't simply do with Tk?)
>
> Thanks in advance for replying
tkinter is a good starting point. You can get some definite benefits
going to wx or Qt
On 27 fév, 08:57, Pierre Quentel wrote:
> Hi,
>
> A new version of the web framework Karrigell is on line
>
> The main changes are :
> - more robust session management in multi-threaded and multi-process
> environments
> - Unicode management in the HTMLTags module (HTML generation in
> Python)
> -
Hi,
I'm going to start my little journey into the Python's lands.
I have already red the old posts about but I suppose this is an evolving
topic.
I have understood Tk is the default Python's GUI toolkit, I have also
read that version 8.5 has native widgets and visual improvements.
My question is:
Hi,
A new version of the web framework Karrigell is on line
The main changes are :
- more robust session management in multi-threaded and multi-process
environments
- Unicode management in the HTMLTags module (HTML generation in
Python)
- Unicode management and error reports in Karrigell Template
73 matches
Mail list logo