473,785 Members | 2,811 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 2851
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...@g mail.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
1519
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, because I like a lot the language. I have read the proposed Ideas from http://wiki.python.org/moin/CodingProjectIdeas
2
1838
by: sudhakar | last post by:
Hi, Iam interested in doing thesis on XML. can anybody suggest some thesis topics in XML? sudhakar
3
325
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 I've brushed (at least) all componentes of the .NET Framework. I'm willing to learn a lot for this thesis and I would like to write something on the cutting edge of technology. Two fields are of my greatest interest: Web and Pocket PCs (I mean,...
0
1352
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 whatever... It's now up to me to choose the title of my master thesis so I ask wise people:) cheers, Lukasz
0
1297
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 specialize in security. As a part of this thesis we will do a survey where we compare general information about software organizations and software projects with certain aspects and activities specific for the creation of secure software. We would...
12
1862
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 Information Management and need to do a survey for my thesis. The thesis is about Web vs. Desktop based applications and the differences perceived by the user. So not from the management/technology point of view but from the end-user. I focus now...
0
1331
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 something connected to web development or something like that. and if you do have a suggestion, would you be willing to also help me out in doing the thesis? please do help me. thank you.
0
1025
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, 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...
0
2266
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 test script (DB2 pl/sql) and questionnaire to poll the DB2 database community; to see the viability in developing a generic relational database performance benchmark; that can be used during the database design phase of a project.
0
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10147
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10090
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9949
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8971
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5380
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3645
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2879
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.