A new project I'm working on
by Becklin Haston
Hello, all!
wM here, and I'd like to show a new project that I'm working on in Python.
It's called Sue, and it's my pseudocode-to-Python translator; that is to
say, I'm essentially writing a programming language that takes natural
language input as its source code. I came up with the idea about a week and
a half ago, and then I started working on implementations. Though, it
wasn't until last night that I found out that I was not the first to start
out on a project like this. There is a programming language called
HyperTalk<http://en.wikipedia.org/wiki/HyperTalk> that
also takes natural language inputs. I think that HyperTalk has some good
ideas, such as the use of prepositional arguments for file and variable
manipulation, so I may take some inspiration from that language. I have
also been doing research on Lex and Yacc so that I can go deeper into
computational language development.
Without further ado, here's Sue. <https://github.com/PDFormat/Sue>
wM.
9 years, 6 months
Re: python-devel Digest, Vol 54, Issue 6
by Becklin Haston
All,
> Maybe take this opportunity for short self-introduction.
- Tadej
I suppose that would be a good idea.
Hello, all! I'm Beck, or, on this board, wM. I'm a student at Western
Washington University in Bellingham, WA, USA, and I'm majoring in
linguistics with a specialization in computational linguistics. This
quarter I've officially become a student of the computer science department
at WWU, and I'm loving the work so far. The class that I'm in right now is
an intro course for programming that uses Python, but the next courses in
the department range in their languages (the next class in CS that I am
scheduled to take will use Java, so, I'm going through the textbook for
that class to get a jump on the material.)
I would like to begin contributing to the Fedora community, and to the Open
Source community in general, because I simply want to be around code and
coders. I want, not only to do well in my work in computational
linguistics, but I also want to simply be the best programmer possible.
Given my current level of experience, I will probably be coming to this
messaging list with many questions. I hope that's welcome around here.
All the best,
wM
On Tue, May 13, 2014 at 5:00 AM,
python-devel-request(a)lists.fedoraproject.org <
python-devel-request(a)lists.fedoraproject.org> wrote:
> Send python-devel mailing list submissions to
> python-devel(a)lists.fedoraproject.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> https://admin.fedoraproject.org/mailman/listinfo/python-devel
> or, via email, send a message with subject or body 'help' to
> python-devel-request(a)lists.fedoraproject.org
>
> You can reach the person managing the list at
> python-devel-owner(a)lists.fedoraproject.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of python-devel digest..."
>
>
> Today's Topics:
>
> 1. Would like to post. (Becklin Haston)
> 2. Re: Would like to post. (Tadej Janež)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Mon, 12 May 2014 14:09:23 -0700
> From: Becklin Haston <hastonb(a)students.wwu.edu>
> To: python-devel(a)lists.fedoraproject.org
> Subject: Would like to post.
> Message-ID:
> <
> CAD7jYns0Aoyq1j7dyfJAG1JjscPV-TczZWhWpPGwTKVTP-Q7Dg(a)mail.gmail.com>
> Content-Type: text/plain; charset="utf-8"
>
> Hello,
>
> I have recently subscribed to the Python development mailing list, and I
> would like the opportunity to post. If I am following the instructions
> correctly, then simply sending my email address (hastonb(a)students.wwu.edu)
> should suffice for that purpose.
>
>
>
> Thank you.
>
>
>
> wM
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <
> http://lists.fedoraproject.org/pipermail/python-devel/attachments/2014051...
> >
>
> ------------------------------
>
> Message: 2
> Date: Mon, 12 May 2014 23:14:05 +0200
> From: Tadej Janež <tadej.janez(a)tadej.hicsalta.si>
> To: Fedora Python SIG <python-devel(a)lists.fedoraproject.org>
> Subject: Re: Would like to post.
> Message-ID: <1399929245.10970.4.camel@tlinux64>
> Content-Type: text/plain; charset="UTF-8"
>
> Becklin,
>
> On Mon, 2014-05-12 at 14:09 -0700, Becklin Haston wrote:
>
> > I have recently subscribed to the Python development mailing list,
>
> welcome to the python-devel mailing list.
>
> > and I would like the opportunity to post. If I am following the
> > instructions correctly, then simply sending my email address
> > (hastonb(a)students.wwu.edu) should suffice for that purpose.
>
> Subscribing is sufficient, you don't need to send your email address to
> the mailing list.
>
> Maybe take this opportunity for short self-introduction.
>
> Regards,
> Tadej
>
>
>
> ------------------------------
>
> _______________________________________________
> python-devel mailing list
> python-devel(a)lists.fedoraproject.org
> https://admin.fedoraproject.org/mailman/listinfo/python-devel
>
> End of python-devel Digest, Vol 54, Issue 6
> *******************************************
>
9 years, 6 months
Would like to post.
by Becklin Haston
Hello,
I have recently subscribed to the Python development mailing list, and I
would like the opportunity to post. If I am following the instructions
correctly, then simply sending my email address (hastonb(a)students.wwu.edu)
should suffice for that purpose.
Thank you.
wM
9 years, 6 months
Python 3.4 to rawhide
by Matej Stuchlik
Good day folks,
Python 3.4 is now [ready and tagged] in f21-python, so I'd like to ask you
to make whatever modifications that may be necessary and [rebuild] your
Python packages into the tag. Once we have sufficient fraction up and running,
we'll merge with rawhide.
Note that your spec file may require slight tweaks due to some file suffixes
changing:
* bytecode files from .cpython-33.py[co] to .cpython-34.py[co]
* extension modules from .cpython-33m.so to .cpython-34m.so and
.cpython-33dm.so to .cpython-34dm.so
There's also an upstream guide to [porting to Python 3.4] you may find helpful.
Finally, should you need help with your package, feel free to contact me and
I'll do my best to help... :)
Matt
[ready and tagged] http://koji.fedoraproject.org/koji/taskinfo?taskID=6794120
[rebuild] with fedpkg build --target f21-python
[porting to Python 3.4] https://docs.python.org/dev/whatsnew/3.4.html#porting-to-python-3-4
9 years, 6 months