473,385 Members | 1,292 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Ideas for master's thesis

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
Jun 27 '08 #1
8 2802
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.
Jun 27 '08 #2
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
Jun 27 '08 #3
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
Jun 27 '08 #4
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
Jun 27 '08 #5
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

Jun 27 '08 #6
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.
Jun 27 '08 #7

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
Jun 27 '08 #8
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/.
Jun 27 '08 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
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 choose to help The Python Software Foundation,...
2
by: sudhakar | last post by:
Hi, Iam interested in doing thesis on XML. can anybody suggest some thesis topics in XML? sudhakar
3
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. I've been programming in .NET for two years now and...
0
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 read. It can be implementation, integration or...
0
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 in Applied Information Technology where we...
12
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 moment I have to graduate for my master in Business...
0
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 proposal/project. Somehow, I would like to have...
0
by: Terry Reedy | last post by:
"Filip Gruszczynski" <gruszczy@gmail.comwrote in message news:1be78d220806021653k12099b69s7888db0adb187c07@mail.gmail.com... | Hello there, | | I am student of CS at the University of Warsaw,...
0
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 Windows. To this end I have developed a performance...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.