Search the web
Sign In
New User? Sign Up
perl-python
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 81 - 110 of 127   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
81
Notes on rewriting the Python documentation Xah Lee, 200505. In 2005, i started to learn Python by reading its official documentation. In the process, i find...
xah lee
p0lyglut
Online Now Send Email
May 6, 2005
4:58 pm
82
HTML Problems in Python Doc I don't know what kind of system is used to generate the Python docs, but it is quite unpleasant to work with manually, as there...
xah lee
p0lyglut
Online Now Send Email
May 7, 2005
5:32 am
83
Here is a illustration of the Info Tech industry's need for inane formality and spurious jargons. The official Python doc on regex syntax (...
Xah Lee
p0lyglut
Online Now Send Email
May 9, 2005
7:02 am
84
Today we'll be writing a function called Range. The Perl documentation is as follows. Perl & Python & Java Solutions will be posted in 48 hours. Perl-Python...
xah lee
p0lyglut
Online Now Send Email
May 13, 2005
2:24 am
85
Here's the Python solution to the Range problem. ... # -*- coding: utf-8 -*- # Python # http://xahlee.org/tree/tree.html # Xah Lee, 2005-05 # implementation...
Xah Lee
p0lyglut
Online Now Send Email
May 15, 2005
10:07 am
86
Here's the Perl solution to the Range problem. ... # perl # http://xahlee.org/tree/tree.html # Xah Lee, 2005-05 #_____ Range _____ _____ _____ _____ =pod ...
Xah Lee
p0lyglut
Online Now Send Email
May 15, 2005
10:07 am
87
the previous posted solutions are badly botched. Here's a better solution. Any further correction will appear on the website instead. (http:// ...
Xah Lee
p0lyglut
Online Now Send Email
May 15, 2005
4:33 pm
88
The following is a new section of the article “What are OOP's Jargons and Complexities” at http://xahlee.org/Periodic_dosage_dir/t2/oop.html ... The Rise...
xah lee
p0lyglut
Online Now Send Email
May 23, 2005
7:47 pm
89
The following is a new section of the article “What are OOP's Jargons and Complexities” at http://xahlee.org/Periodic_dosage_dir/t2/oop.html ... The Rise...
xah lee
p0lyglut
Online Now Send Email
May 24, 2005
8:16 pm
90
The following is a new section of the article “What are OOP's Jargons and Complexities” at http://xahlee.org/Periodic_dosage_dir/t2/oop.html ... the Rise...
xah lee
p0lyglut
Online Now Send Email
May 26, 2005
1:02 am
91
The following is a new section of the article “What are OOP's Jargons and Complexities” at http://xahlee.org/Periodic_dosage_dir/t2/oop.html ... The Rise...
Xah Lee
p0lyglut
Online Now Send Email
May 31, 2005
10:26 am
92
the belated Java solution to previous Range exercise. import java.util.List; import java.util.ArrayList; import java.lang.Math; class math { public static List...
Xah Lee
p0lyglut
Online Now Send Email
Jun 12, 2005
10:13 pm
93
Here's the next tree functions exercise in Python, Perl, Java. The problem is to write a function named Table. Wolfram Research's Table function documentation...
Xah Lee
p0lyglut
Online Now Send Email
Jun 19, 2005
10:08 am
94
The Perl solution is posted. It is a bit long. See http://xahlee.org/tree/Table.html the code is pasted below. It uses several auxiliary functions. #! perl #...
Xah Lee
p0lyglut
Online Now Send Email
Jun 21, 2005
10:40 am
95
Why OpenSource Documentation is of Low Quality Xah Lee, 200508 previously i've made serious criticisms on Python's documentations problems. (see...
xah lee
p0lyglut
Online Now Send Email
Aug 30, 2005
2:25 am
96
My opinion on this is that coders dont like writing docs. And open source is mostly unheard of outside the developer/geek community. Technical writers are...
danny staple
orionrobots@...
Send Email
Aug 30, 2005
4:53 pm
97
On Python's Documentation Xah Lee, 20050831 I'm very sorry to say, that the Python doc is one of the worst possible in the industry. I'm very sick of Perl and...
xah lee
p0lyglut
Online Now Send Email
Sep 1, 2005
11:17 am
98
20050830 Here is a example of how to decompress a gzip file using Python. # -*- coding: utf-8 -*- # Python import gzip inF =...
xah lee
p0lyglut
Online Now Send Email
Sep 2, 2005
6:25 am
99
... You could shorten the Perl unix calls by using the backtick operator: `gzip x.txt` `gzip -d x.txt.gz` And for the same behaviour as the Python module,...
danny staple
orionrobots@...
Send Email
Sep 2, 2005
3:55 pm
100
Python Doc Problem Example: os.system Xah Lee, 2005-09 today i'm trying to use Python to call shell commands. e.g. in Perl something like output=qx(ls) in...
xah lee
p0lyglut
Online Now Send Email
Sep 5, 2005
12:15 am
101
Here's a example script that performs a simple task. The task is: suppose you a bunch of files named access_log.1.gz access_log.2.gz access_log.3.gz these are...
xah lee
p0lyglut
Online Now Send Email
Sep 7, 2005
10:27 am
102
200509: Making System Calls (with unix and Python 2.4) To make a system call, use: subprocess.Popen([r"gzip","-d", "x.txt.gz"]).wait() The subprocess module is...
xah lee
p0lyglut
Online Now Send Email
Sep 8, 2005
9:58 pm
103
Hi there, You could save recompressing an intermediate file on a unix system by changing your input to the gzip commnad to include the -c option This will then...
danny staple
orionrobots@...
Send Email
Sep 9, 2005
10:56 pm
104
The official documentation for Python is http://docs.python.org/ The doc is downloadable. However, this official documentation is very lousy. A excellent quick...
xah lee
p0lyglut
Online Now Send Email
Sep 10, 2005
11:32 am
105
Python Doc Problem Example: os.path.split() Xah Lee, 20050918 Quote from: http://www.python.org/doc/2.4.1/lib/module-os.path.html split(path) Split the...
xah lee
p0lyglut
Online Now Send Email
Sep 18, 2005
11:44 am
106
... Umm nearly - but the exceptions should be as follows: * If the last slash is repeated, and it is not the first set of slashes, it treated as single slash. ...
danny staple
orionrobots@...
Send Email
Sep 19, 2005
8:06 am
107
Addendum to the Python doc problem at http://www.python.org/doc/2.4.1/lib/module-os.path.html I was working on a program where i needed to split a path into...
xah lee
p0lyglut
Online Now Send Email
Sep 20, 2005
5:41 pm
108
Perl and Python Documentations Xah Lee, 20050921 Perl's documentation has come of age: http://perldoc.perl.org/ Python people really need to learn: • ample...
xah lee
p0lyglut
Online Now Send Email
Sep 21, 2005
12:42 pm
109
Lambda in Python 3000 Xah Lee, 200509 On Guido van Rossum's website: http://www.artima.com/weblogs/viewpost.jsp?thread=98196 dated 20050826, he muses with the...
xah lee
p0lyglut
Online Now Send Email
Sep 29, 2005
3:11 pm
110
http://xahlee.org/perl-python/python_3000.html addendum, 20051001 here i will try to illuminate some miscellaneous things regarding the lambda in Python issue....
xah lee
p0lyglut
Online Now Send Email
Oct 2, 2005
12:08 am
Messages 81 - 110 of 127   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help