Hello there,
I am student of CS at the University of Warsaw, currently 4th year. I
am attending Object Oriented Programming seminar and it is about time,
I started looking for an idea of my master's degree project. As I like
Python very much, I would like to do something with this language, yet
I don't know if there are any needs/science fields, that could be used
as a basis for a thesis. Therefore I would like to ask, if there is
any way to access any person involved in development, who would help
me find some field that need to be developed/researched (rather the
first one) and would be close enough to the OOP, so I could present it
to a mentor (he is cool with doing something for OSS community).
--
Filip GruszczyĆski 8 2688
On Jun 2, 7:53*pm, "Filip Gruszczyński" <grusz...@gmail.comwrote:
I am student of CS at the University of Warsaw, currently 4th year. I
am attending Object Oriented Programming seminar and it is about time,
I started looking for an idea of my master's degree project. As I like
Python very much, I would like to do something with this language, yet
I don't know if there are any needs/science fields, that could be used
as a basis for a thesis.
I'm sure you could probably find something having to do with Pypy
( http://codespeak.net/pypy/dist/pypy/doc/home.html) that would be both
manageable and significant enough to warrant a Master's thesis.
Filip GruszczyĆski wrote:
I am student of CS at the University of Warsaw, currently 4th year. I
am attending Object Oriented Programming seminar and it is about time,
I started looking for an idea of my master's degree project. As I like
Python very much, I would like to do something with this language, yet
I don't know if there are any needs/science fields, that could be used
as a basis for a thesis. Therefore I would like to ask, if there is
any way to access any person involved in development, who would help
me find some field that need to be developed/researched (rather the
first one) and would be close enough to the OOP, so I could present it
to a mentor (he is cool with doing something for OSS community).
There has been discussion of replacing/supplementing the
NumPy matrix class. The newmatrix class would still
subclass ndarray but would handle indexing differently.
I am confident that you could get a lot of guidance on the
NumPy list if you were interested in taking this on.
Cheers,
Alan Isaac
On Jun 2, 7:53 pm, "Filip Gruszczyński" <grusz...@gmail.comwrote:
Hello there,
I am student of CS at the University of Warsaw, currently 4th year. I
am attending Object Oriented Programming seminar and it is about time,
I started looking for an idea of my master's degree project. As I like
Python very much, I would like to do something with this language, yet
I don't know if there are any needs/science fields, that could be used
as a basis for a thesis. Therefore I would like to ask, if there is
any way to access any person involved in development, who would help
me find some field that need to be developed/researched (rather the
first one) and would be close enough to the OOP, so I could present it
to a mentor (he is cool with doing something for OSS community).
Check out the running thread about the lack of data hiding and try to
add such a mechanism, preferably as a pure python add-on package ala
zope.interface (only half-joking ;-))
George
On Jun 3, 2:27*am, miller.pau...@gmail.com wrote:
I'm sure you could probably find something having to do with Pypy
(http://codespeak.net/pypy/dist/pypy/doc/home.html) that would be both
manageable and significant enough to warrant a Master's thesis.
The Pypy will fade out. You can for example write a compiler for LISP
to CPython bytecode. Fits well for a master thesis.
Regards,
Jan Wicijowski
I would like to do something with this language, yet
I don't know if there are any needs/science fields, that could be used
as a basis for a thesis.
Personally, I'd like to see *optional* data typing added to Python
perhaps along the lines of what was done in Pyrex. You declare the
data type when you know it, or when it matters, and skip it
otherwise. Your paper could analyze its pros and cons, analyze any
potential performance gains, and recommend how to implement it. Your
professor will suggest some additional questions.
I suspect, if the type be known and declared, the interpreter could be
streamlined and quicker, you might get asserts for free, and perhaps,
Python becomes even more self-documenting. Perhaps I've missed it,
but I haven't seen a strong analytical case made for or against
optional data typing. Your paper?
Larry
2008/6/4 Larry Bugbee <eb*****@gmail.com>:
>I would like to do something with this language, yet I don't know if there are any needs/science fields, that could be used as a basis for a thesis.
Personally, I'd like to see *optional* data typing added to Python
perhaps along the lines of what was done in Pyrex. You declare the
data type when you know it, or when it matters, and skip it
otherwise. Your paper could analyze its pros and cons, analyze any
potential performance gains, and recommend how to implement it. Your
professor will suggest some additional questions.
I suspect, if the type be known and declared, the interpreter could be
streamlined and quicker, you might get asserts for free, and perhaps,
Python becomes even more self-documenting. Perhaps I've missed it,
but I haven't seen a strong analytical case made for or against
optional data typing. Your paper?
I think what you are talking about is already implemented in Python
3.0 as annotations. Forgive me if I missed your point.
>
Larry
-- http://mail.python.org/mailman/listinfo/python-list
--
Wbr, Andrii Mishkovskyi.
He's got a heart of a little child, and he keeps it in a jar on his desk.
On Jun 3, 2008, at 2:35 PM, Andrii V. Mishkovskyi wrote:
2008/6/4 Larry Bugbee <eb*****@gmail.com>:
>>I would like to do something with this language, yet I don't know if there are any needs/science fields, that could be used as a basis for a thesis.
Personally, I'd like to see *optional* data typing added to Python perhaps along the lines of what was done in Pyrex. You declare the data type when you know it, or when it matters, and skip it otherwise. Your paper could analyze its pros and cons, analyze any potential performance gains, and recommend how to implement it. Your professor will suggest some additional questions.
I suspect, if the type be known and declared, the interpreter could be streamlined and quicker, you might get asserts for free, and perhaps, Python becomes even more self-documenting. Perhaps I've missed it, but I haven't seen a strong analytical case made for or against optional data typing. Your paper?
I think what you are talking about is already implemented in Python
3.0 as annotations. Forgive me if I missed your point.
Close. I haven't followed Python 3 features that closely so had to go
back and read about annotations. If my read is correct, annotations
address only arguments and return values and do not affect runtime
code. They are there, principally, for documentation and library
argument checking purposes. That's a start.
In addition to arguments, I'd like the ability to optionally declare
the types for local and global variables, and going beyond doc and
external lib checking, I'd like to see the declarations affect the
compilation, potentially sidestepping runtime type checking. I
suspect performance could be improved if the intrepreter could make
some assumptions and not have to check type and every time. But, that
is a guess on my part and a paper doing a deeper analysis might prove
or disprove the hypothesis. (A good analysis would be non-trivial
which is why I'm thinking it could be a good Master's Project/Thesis.)
Larry
On Jun 3, 10:22 pm, Larry Bugbee <ebug...@gmail.comwrote:
I would like to do something with this language, yet
I don't know if there are any needs/science fields, that could be used
as a basis for a thesis.
Personally, I'd like to see *optional* data typing added to Python
perhaps along the lines of what was done in Pyrex. You declare the
data type when you know it, or when it matters, and skip it
otherwise. Your paper could analyze its pros and cons, analyze any
potential performance gains, and recommend how to implement it. Your
professor will suggest some additional questions.
I suspect, if the type be known and declared, the interpreter could be
streamlined and quicker, you might get asserts for free, and perhaps,
Python becomes even more self-documenting. Perhaps I've missed it,
but I haven't seen a strong analytical case made for or against
optional data typing. Your paper?
You might want to have a look at Boo at http://boo.codehaus.org/. This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: M1st0 |
last post by:
Hi to All!
I would like to join the Google summer code program
(http://code.google.com/summerofcode.html).
>From the sponsored links I have...
|
by: sudhakar |
last post by:
Hi,
Iam interested in doing thesis on XML. can anybody suggest
some thesis topics in XML?
sudhakar
|
by: MW |
last post by:
Hello,
I'w writing my B.Sc. thesis in half a year. I was wondering if anyone has
any suggestions what would be a good subject to write about....
|
by: podi |
last post by:
Hey!
If anyone found any interesting title of master thesis from any areas
as:.NET, webservices, biztalk...
ANY suggestions would be nice to...
|
by: luffmusse |
last post by:
We are two students from the Royal Institute of Technology in
Stockholm, Sweden (http://www.kth.se/eng/). We are currently doing our
masters thesis...
|
by: Gabriel |
last post by:
Hi All,
(First my apologies for this kind of "spam" message. But for my thesis
this will be my once in a lifetime spam moment... )
At the...
|
by: jrhitokiri |
last post by:
Hi! I am soon to be in my final year in computer science next school year, and I would like to ask for help in picking an undergraduate thesis...
|
by: Terry Reedy |
last post by:
"Filip Gruszczynski" <gruszczy@gmail.comwrote in message
news:1be78d220806021653k12099b69s7888db0adb187c07@mail.gmail.com...
| Hello there,
|
| I...
|
by: Eric Davidson |
last post by:
As part of my thesis for my MSc Course with the Open University UK, I
need to collect various performance statics for IBM's DB2 database on...
|
by: better678 |
last post by:
Question:
Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct?
Answer:
Java is an object-oriented...
|
by: teenabhardwaj |
last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was...
|
by: Matthew3360 |
last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function.
Here is my code.
...
|
by: AndyPSV |
last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand....
| |