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

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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
  Newest  |  < Newer  |  Older >  |  Oldest
Topics   (List as Individual Messages) Messages Latest Post

my perl and python tutorial http://xahlee.org/perl-python/index.html is now available for download for offline reading. Download link at the bottom. Xah ∑...
1 Jun 30, 2008
4:39 pm

xah lee
p0lyglut
Offline Send Email

Addendum to the tutorial on Sorting in Perl and Python at: http://xahlee.org/perl-python/sort_list.html Language and Sort Optimization:...
1 Aug 30, 2006
12:32 am

xah lee
p0lyglut
Offline Send Email

The Condition of Industrial Programers Xah Lee, 2006-05 Before i stepped into the computing industry, my first industrial programing experience is at Wolfram...
1 May 19, 2006
10:31 pm

xahlee
p0lyglut
Offline Send Email

Tabs versus Spaces in Source Code Xah Lee, 2006-05-13 In coding a computer program, there’s often the choices of tabs or spaces for code indentation. There...
1 May 14, 2006
2:30 am

xahlee
p0lyglut
Offline Send Email

Python, Lambda, and Guido van Rossum Xah Lee, 2006-05-05 In this post, i'd like to deconstruct one of Guido's recent blog about lambda in Python. In Guido's...
1 May 6, 2006
12:37 am

xahlee
p0lyglut
Offline Send Email

I have a website of photo gallery. It consists of many HTML pages with inline images. There are about 400 of photos and images. However, the site lacks a...
1 Apr 19, 2006
11:27 pm

xahlee
p0lyglut
Offline Send Email

What is Expressiveness in a Computer Language Xah Lee, 200502. In languages human or computer, there's a notion of expressiveness. English for example, is very...
1 Mar 22, 2006
9:12 pm

xahlee
p0lyglut
Offline Send Email

The Concepts and Confusions of Pre-fix, In-fix, Post-fix and Fully Functional Notations http://xahlee.org/UnixResource_dir/writ/notations.html A side note: the...
1 Mar 18, 2006
2:34 pm

xahlee
p0lyglut
Offline Send Email

The Concepts and Confusions of Pre-fix, In-fix, Post-fix and Fully Functional Notations Xah Lee, 2006-03-15 Let me summarize: The LISP notation, is a...
1 Mar 16, 2006
3:50 pm

xahlee
p0lyglut
Offline Send Email

Examples of Quality Documentation Xah Lee, 200512 I had the pleasure to read the PHP's manual today. http://www.php.net/manual/en/ Although Pretty Home Page is...
1 Dec 6, 2005
5:00 pm

xahlee
p0lyglut
Offline Send Email

One-Liner Loop in Functional Style Xah Lee, 200510 Today we show a example of a loop done as a one-liner of Functional Programing style. Suppose you have a...
1 Oct 20, 2005
11:11 am

xah lee
p0lyglut
Offline Send Email

Split File Fullpath Into Parts Xah Lee, 20051016 Often, we are given a file fullpath and we need to split it into the directory name and file name. The file...
1 Oct 17, 2005
12:44 am

xah lee
p0lyglut
Offline Send Email

Perl-Python-a-Day: Sort a List Sort a List Xah Lee, 200510 In this page, we show how to sort a list in Python & Perl and also discuss some math of sort. To...
2 Oct 13, 2005
7:11 am

xah lee
p0lyglut
Offline Send Email

continued from sorting in Python at http://xahlee.org/perl-python/sort_list.html ... Sorting in Perl In Perl, to sort a list, do like this: @li=(1,9,2,3); @li2...
1 Oct 13, 2005
3:26 am

xah lee
p0lyglut
Offline Send Email

New material has been added to the Python's documentation problem example on sort(). The following post is archived at: ...
1 Oct 11, 2005
11:09 pm

xah lee
p0lyglut
Offline Send Email

The following script takes a directory and print all the sizes of html files, counting the sizes of inline images. This script is useful in making sure that...
1 Oct 7, 2005
12:13 pm

xah lee
p0lyglut
Offline Send Email

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...
2 Oct 2, 2005
12:08 am

xah lee
p0lyglut
Offline Send Email

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...
1 Sep 21, 2005
12:42 pm

xah lee
p0lyglut
Offline Send Email

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...
3 Sep 20, 2005
5:41 pm

xah lee
p0lyglut
Offline Send Email

The official documentation for Python is http://docs.python.org/ The doc is downloadable. However, this official documentation is very lousy. A excellent quick...
1 Sep 10, 2005
11:32 am

xah lee
p0lyglut
Offline Send Email

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...
2 Sep 9, 2005
10:56 pm

danny staple
orionrobots@...
Send Email

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...
1 Sep 7, 2005
10:27 am

xah lee
p0lyglut
Offline Send Email

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...
1 Sep 5, 2005
12:15 am

xah lee
p0lyglut
Offline Send Email

20050830 Here is a example of how to decompress a gzip file using Python. # -*- coding: utf-8 -*- # Python import gzip inF =...
2 Sep 2, 2005
3:55 pm

danny staple
orionrobots@...
Send Email

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...
1 Sep 1, 2005
11:17 am

xah lee
p0lyglut
Offline Send Email

Why OpenSource Documentation is of Low Quality Xah Lee, 200508 previously i've made serious criticisms on Python's documentations problems. (see...
2 Aug 30, 2005
4:53 pm

danny staple
orionrobots@...
Send Email

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 #...
1 Jun 21, 2005
10:40 am

Xah Lee
p0lyglut
Offline Send Email

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...
1 Jun 19, 2005
10:08 am

Xah Lee
p0lyglut
Offline Send Email

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...
1 Jun 12, 2005
10:13 pm

Xah Lee
p0lyglut
Offline Send Email

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...
4 May 31, 2005
10:26 am

Xah Lee
p0lyglut
Offline Send Email
  Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

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