[28265] in Perl-Users-Digest

home help back first fref pref prev next nref lref last post

Perl-Users Digest, Issue: 9629 Volume: 10

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Sun Aug 20 03:06:02 2006

Date: Sun, 20 Aug 2006 00:05:05 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)

Perl-Users Digest           Sun, 20 Aug 2006     Volume: 10 Number: 9629

Today's topics:
    Re: a promising hash bob_jenkins@burtleburtle.net
    Re: get() not working...need help <joe@inwap.com>
    Re: get() not working...need help <joe@inwap.com>
    Re: How to install module when I am not allowed to inst <zaifengwang@gmail.com>
    Re: How to install module when I am not allowed to inst <zaifengwang@gmail.com>
    Re: How to install module when I am not allowed to inst <mgarrish@gmail.com>
        new CPAN modules on Sun Aug 20 2006 (Randal Schwartz)
    Re: Perl5 AST <benmorrow@tiscali.co.uk>
    Re: Perl5 AST (Randal L. Schwartz)
    Re: regular expression strangeness <hjp-usenet2@hjp.at>
        simple examples for OpenGL weer1@gmx.net
    Re: simple examples for OpenGL <1usa@llenroc.ude.invalid>
    Re: simple examples for OpenGL weer1@gmx.net
    Re: simple examples for OpenGL <1usa@llenroc.ude.invalid>
    Re: simple examples for OpenGL <sherm@Sherm-Pendleys-Computer.local>
    Re: simple examples for OpenGL <jurgenex@hotmail.com>
    Re: simple examples for OpenGL weer1@gmx.net
        Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)

----------------------------------------------------------------------

Date: 19 Aug 2006 18:34:31 -0700
From: bob_jenkins@burtleburtle.net
Subject: Re: a promising hash
Message-Id: <1156037671.204802.327100@m73g2000cwd.googlegroups.com>

Sherm Pendley wrote:
> bob_jenkins@burtleburtle.net writes:
>
> > I've got to do some more tuning and timings and tests, but this strikes
> > me as a winner for Perl's internal hash function.
>
> I'd suggest bringing this up on p5p, aka the perl5-porters mailing list.
> Info on the list is here:
>
>   <http://lists.cpan.org/showlist.cgi?name=perl5-porters>
>
> Keep in mind that working patches and benchmark results will be taken a
> lot more seriously than ideas and theory.
>
> sherm--
>
> --
> Web Hosting by West Virginians, for West Virginians: http://wv-www.net
> Cocoa programming in Perl: http://camelbones.sourceforge.net

Nevermind.  At least on a Pentium 4 running gcc 3.3.3, my latest hash
(http://burtleburtle.net/bob/c/lookup3.c) can also give consistent
results regardless of endianness, is faster for 100-byte strings than
the crc-like hash I described above regardless of endianness (2x faster
on little endian, 1.5x faster on big endian), and its speed is roughly
the same for 4-byte strings.  Plus it has no tables instead of that 64k
lookup table, so caching would be less of an issue.

Last I checked Perl was using my one-at-a-time hash, which is slower
than either of those hashes.  Someone did benchmarks recently showing
Paul Hsieh's hash would be much faster than one-at-a-time, which is
true.  Which of Paul's and lookup3's hash was faster varied with the
chip and compiler I tried; but I can plug my lookup3 by saying it's
more thorough and you can extract a 64-bit result from it for the same
price as a 32-bit result.  All these hashes (the crc-like one, lookup3,
one-at-a-time, and Paul's) are thorough enough that you can use hash
tables that are powers of two and probably never notice any flaws in
the way they hash.



------------------------------

Date: Sat, 19 Aug 2006 08:15:23 -0700
From: Joe Smith <joe@inwap.com>
Subject: Re: get() not working...need help
Message-Id: <TvqdnQay9ciptnrZnZ2dnUVZ_qKdnZ2d@comcast.com>

Shan wrote:

> 	my $html = get($_)

If you're using the LWP::Simple module, you should have said
so in your posting.

> the INFILE is a list of URLs. The code works fine for all URLs except
> the ones that look like:
> http://news.google.com/news?hl=en&ned=us&q=ramsey&btnG=Search+News
> 
> Does anyone know why?

linux% wget 'http://news.google.com/news?hl=en&ned=us&q=ramsey&btnG=Search+News'
--08:14:11--  http://news.google.com/news?hl=en&ned=us&q=ramsey&btnG=Search+News
            => `news?hl=en&ned=us&q=ramsey&btnG=Search+News'
Resolving news.google.com... 72.14.203.99, 72.14.203.104
Connecting to news.google.com|72.14.203.99|:80... connected.
HTTP request sent, awaiting response... 403 Forbidden
08:14:11 ERROR 403: Forbidden.


------------------------------

Date: Sat, 19 Aug 2006 08:17:34 -0700
From: Joe Smith <joe@inwap.com>
Subject: Re: get() not working...need help
Message-Id: <TvqdnQGy9cgqtnrZnZ2dnUVZ_qKdnZ2d@comcast.com>

Shan wrote:
> Thank you very much
> Ben Morrow wrote:
>> ... quoting entire article including signature lines

Do _NOT_ quote the *entire* article just to say "Thank you".


------------------------------

Date: 19 Aug 2006 17:26:58 -0700
From: "pegasus" <zaifengwang@gmail.com>
Subject: Re: How to install module when I am not allowed to install moudule in system directory?
Message-Id: <1156033618.355227.67750@i42g2000cwa.googlegroups.com>


Brett.R.Davis@gmail.com wrote:
> If you download the package manually, you can do it this way:
>
> perl Makefile.PL PREFIX=/home/username/usr/local
> make
> make install
> make test
>
> This installs the package in your home direcotory, this implies that
> you need to set the PERL5LIB variable which sets your user defined
> include paths so that you can find it when you "use" the module.
>
> zaifengwang@gmail.com wrote:
> > I want to install module PDF::API2 under the environment of campus
> > network - the administor does not allow me install this module
> > system-wide.
> >
> > I used "PPM>set root u:\mydirectory" and  "PPM>set build
> > u:\mydirectory" to tell PPM that I want to install the module in my
> > private directory, the result is as following:
> > "unknown or ambiguous setting 'root'/'build'. see help setting".
> >
> > I appreciate very much if you can help me out with this question.
> > 
> > James



------------------------------

Date: 19 Aug 2006 17:35:42 -0700
From: "pegasus" <zaifengwang@gmail.com>
Subject: Re: How to install module when I am not allowed to install moudule in system directory?
Message-Id: <1156034142.354368.238090@i3g2000cwc.googlegroups.com>

To Brett:

> perl Makefile.PL PREFIX=/home/username/usr/local
> make
> make install
> make test

Must those commands be executed in Unix? I downloaded this package,
it's a file like "PDF-API2-0.55.tar.tar", I used "extract here" command
twice to find "Makefile.PL". but when I tried to execute the mentioned
commands in Windows, I failed. Do you think I can execute these
commands in Windows?

To all:

I tried to execute CPAN in windows by typing "perl -MCPAN -e shell" but
I failed. but it works in Linux. But still I can't install a module by
the command "o conf makepl_arg PREFIX="/mydic/perl/lib"". confusing.

I wonder how can use CPAN shell in Windows? what's the command?

Please forgive my ignorance.

Brett.R.Davis@gmail.com wrote:
> If you download the package manually, you can do it this way:
>
> perl Makefile.PL PREFIX=/home/username/usr/local
> make
> make install
> make test
>
> This installs the package in your home direcotory, this implies that
> you need to set the PERL5LIB variable which sets your user defined
> include paths so that you can find it when you "use" the module.
>
> zaifengwang@gmail.com wrote:
> > I want to install module PDF::API2 under the environment of campus
> > network - the administor does not allow me install this module
> > system-wide.
> >
> > I used "PPM>set root u:\mydirectory" and  "PPM>set build
> > u:\mydirectory" to tell PPM that I want to install the module in my
> > private directory, the result is as following:
> > "unknown or ambiguous setting 'root'/'build'. see help setting".
> >
> > I appreciate very much if you can help me out with this question.
> > 
> > James



------------------------------

Date: 19 Aug 2006 18:38:52 -0700
From: "Matt Garrish" <mgarrish@gmail.com>
Subject: Re: How to install module when I am not allowed to install moudule in system directory?
Message-Id: <1156037932.592448.198020@p79g2000cwp.googlegroups.com>


pegasus wrote:

[please stop top-posting]

> Brett.R.Davis@gmail.com wrote:
> > If you download the package manually, you can do it this way:
> >
> > perl Makefile.PL PREFIX=/home/username/usr/local
> > make
> > make install
> > make test
> >
>
> Must those commands be executed in Unix?

http://msdn2.microsoft.com/en-us/library/dd9y37ha.aspx

If you don't have it available, you're going to have to get your admin
to install it. If your admin won't install it then it sounds like you
need to find another environment to work in.

Matt



------------------------------

Date: Sun, 20 Aug 2006 04:42:09 GMT
From: merlyn@stonehenge.com (Randal Schwartz)
Subject: new CPAN modules on Sun Aug 20 2006
Message-Id: <J4A529.oC4@zorch.sf-bay.org>

The following modules have recently been added to or updated in the
Comprehensive Perl Archive Network (CPAN).  You can install them using the
instructions in the 'perlmodinstall' page included with your Perl
distribution.

BBS-UserInfo-Maple3-0.01
http://search.cpan.org/~gslin/BBS-UserInfo-Maple3-0.01/
Get user information of Maple3-style BBS
----
BBS-UserInfo-Ptt-0.01
http://search.cpan.org/~gslin/BBS-UserInfo-Ptt-0.01/
Get user information of PTT-style BBS
----
BBS-UserInfo-Ptt-0.02
http://search.cpan.org/~gslin/BBS-UserInfo-Ptt-0.02/
Get user information of PTT-style BBS
----
BBS-UserInfo-Ptt-0.03
http://search.cpan.org/~gslin/BBS-UserInfo-Ptt-0.03/
Get user information of PTT-style BBS
----
BBS-UserInfo-Ptt-0.04
http://search.cpan.org/~gslin/BBS-UserInfo-Ptt-0.04/
Get user information of PTT-style BBS
----
BBS-UserInfo-Ptt-0.05
http://search.cpan.org/~gslin/BBS-UserInfo-Ptt-0.05/
Get user information of PTT-style BBS
----
BBS-UserInfo-Ptt-0.06
http://search.cpan.org/~gslin/BBS-UserInfo-Ptt-0.06/
Get user information of PTT-style BBS
----
Business-OnlinePayment-InternetSecure-0.04
http://search.cpan.org/~fbriere/Business-OnlinePayment-InternetSecure-0.04/
InternetSecure backend for Business::OnlinePayment
----
CGI-Explorer-2.07
http://search.cpan.org/~rsavage/CGI-Explorer-2.07/
A class to manage displaying a hash tree of data, for use in CGI scripts
----
Cache-Static-0.100
http://search.cpan.org/~brianski/Cache-Static-0.100/
Caching without freshness concerns
----
Cache-Static-0.97
http://search.cpan.org/~brianski/Cache-Static-0.97/
----
Cache-Static-0.98
http://search.cpan.org/~brianski/Cache-Static-0.98/
Caching without freshness concerns
----
Cache-Static-0.99
http://search.cpan.org/~brianski/Cache-Static-0.99/
Caching without freshness concerns
----
Cache-Static-0.99.01
http://search.cpan.org/~brianski/Cache-Static-0.99.01/
Caching without freshness concerns
----
Cache-Static-0.9901
http://search.cpan.org/~brianski/Cache-Static-0.9901/
Caching without freshness concerns
----
Class-MOP-0.33
http://search.cpan.org/~stevan/Class-MOP-0.33/
A Meta Object Protocol for Perl 5
----
Games-Sudoku-SudokuTk-0.03
http://search.cpan.org/~cguine/Games-Sudoku-SudokuTk-0.03/
Perl extension for Sudoku with Tk
----
Geo-Ellipsoid-0.903
http://search.cpan.org/~jgibson/Geo-Ellipsoid-0.903/
Calculate positions, distances, and bearings on the surface of an ellipsoid.
----
HTML-Template-Pro-Extension-0.09
http://search.cpan.org/~ebruni/HTML-Template-Pro-Extension-0.09/
Extension modules for HTML::Template::Pro
----
Jabber-SimpleSend-0.02
http://search.cpan.org/~gmccar/Jabber-SimpleSend-0.02/
Send a Jabber message simply.
----
JavaScript-1.00_02
http://search.cpan.org/~claesjac/JavaScript-1.00_02/
Perl extension for executing embedded JavaScript
----
KinoSearch-0.13
http://search.cpan.org/~creamyg/KinoSearch-0.13/
search engine library
----
Linux-Statistics-1.14
http://search.cpan.org/~bloonix/Linux-Statistics-1.14/
Collect linux system statistics.
----
MediaWiki-1.07
http://search.cpan.org/~spectrum/MediaWiki-1.07/
OOP MediaWiki engine client
----
Net-Connection-Sniffer-0.14
http://search.cpan.org/~miker/Net-Connection-Sniffer-0.14/
gather stats on network connections
----
SQLite-Work-0.07
http://search.cpan.org/~rubykat/SQLite-Work-0.07/
report on and update an SQLite database.
----
Test-Count-0.01
http://search.cpan.org/~shlomif/Test-Count-0.01/
Module for keeping track of the number of tests in a Test Script.
----
WWW-Mechanize-1.20
http://search.cpan.org/~petdance/WWW-Mechanize-1.20/
Handy web browsing in a Perl object
----
Win32-Process-User-0.01
http://search.cpan.org/~rpagitsch/Win32-Process-User-0.01/
Perl extension for to get the user and domain name of a process
----
Win32-Process-User-0.02
http://search.cpan.org/~rpagitsch/Win32-Process-User-0.02/
Perl extension for to get the user and domain name of a process
----
ack-1.25_03
http://search.cpan.org/~petdance/ack-1.25_03/
grep-like text finder for large trees of text
----
scache98
http://search.cpan.org/~brianski/scache98/


If you're an author of one of these modules, please submit a detailed
announcement to comp.lang.perl.announce, and we'll pass it along.

This message was generated by a Perl program described in my Linux
Magazine column, which can be found on-line (along with more than
200 other freely available past column articles) at
  http://www.stonehenge.com/merlyn/LinuxMag/col82.html

print "Just another Perl hacker," # the original

--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!


------------------------------

Date: Sat, 19 Aug 2006 03:52:17 +0100
From: Ben Morrow <benmorrow@tiscali.co.uk>
Subject: Re: Perl5 AST
Message-Id: <10bir3-r3j.ln1@osiris.mauzo.dyndns.org>


Quoth romerun@gmail.com:
> Hi All,
> 
> I have been wondering for a long time if there exists any abstract
> syntax tree parser for Perl5 or any attempt to create it. In the CPAN
> there are some B:: modules that can give some kinds of Perl5 OP tree,
> which loses some important information to do some static checking such
> as type checking via type annotation, reference leaking, unreachable
> code, etc. Any suggest on where should I look ?

You could try looking at PPI, though that's more of a parser than an AST
builder. perl doesn't really have any intermadiate steps between parsing
the source and building the OP tree, so all the information that's kept
is available there; OTOH you may find something useful in the MAD stuff
that's gone into blead recently as the beginning of a p5-p6 converter.
IIRC it comes with a lot of caveats, though, like 'this doesn't really
work yet' and 'perl built with this option is not compatible with perl
built without'.

Ben

-- 
"If a book is worth reading when you are six,         * benmorrow@tiscali.co.uk
it is worth reading when you are sixty."  [C.S.Lewis]


------------------------------

Date: 19 Aug 2006 15:12:59 -0700
From: merlyn@stonehenge.com (Randal L. Schwartz)
Subject: Re: Perl5 AST
Message-Id: <86k654jrx0.fsf@blue.stonehenge.com>

>>>>> "romerun" == romerun  <romerun@gmail.com> writes:

romerun> I have been wondering for a long time if there exists any abstract
romerun> syntax tree parser for Perl5 or any attempt to create it. In the CPAN
romerun> there are some B:: modules that can give some kinds of Perl5 OP tree,
romerun> which loses some important information to do some static checking such
romerun> as type checking via type annotation, reference leaking, unreachable
romerun> code, etc. Any suggest on where should I look ?

You *are* aware that it's impossible to lex perl without actually being
prepared to execute Perl code, right?

Perl cannot be "statically analyzed".

 ... http://www.perlmonks.org/index.pl?node=44722

And this is also true for Perl6.  As long as / has two meanings (divide and
regex start, which hasn't changed for perl6), you need to know what state
you're in when you hit the char to know if it's standalone or the beginning of
something.  And that can affect the entire rest of the program.

print "Just another Perl hacker,"; # the original

-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!

-- 
Posted via a free Usenet account from http://www.teranews.com



------------------------------

Date: Sat, 19 Aug 2006 18:12:23 +0200
From: "Peter J. Holzer" <hjp-usenet2@hjp.at>
Subject: Re: regular expression strangeness
Message-Id: <pan.2006.08.19.16.12.23.77253@hjp.at>

On Thu, 17 Aug 2006 17:47:20 +0100, Ben Morrow wrote:
> Quoth "Peter J. Holzer" <hjp-usenet2@hjp.at>:
>> I don't think \1 is supposed to be a backreference inside a character
>> class (what if the first () matched more than one character?).
>> 
>> 
>> if ($s =~ /(")(.*?)\1/) { print "$2\n" }
>> 
>> works as expected.
> 
> ...but only if that is the whole regex; e.g.
> 
>     /(") (.*?) \1 foo/x
> 
> does *not* match "a double-quoted string followed by 'foo'". Applied to
> the string
> 
>     "xxx"bar "yyy"foo
> 
> $2 will be 'xxx"bar "yyy', which is (probably) not what was meant.

I don't know what was meant, but this is what I would expect. It's the
same result as you get with 

      /(") (.*?) " foo/x

so the backreference works "as expected".

> In the general case you need a negative look-ahead:

In the general case there is probably also some escape mechanism which
you need to consider.

	hp

-- 
   _  | Peter J. Holzer    | > Wieso sollte man etwas erfinden was nicht
|_|_) | Sysadmin WSR       | > ist?
| |   | hjp@hjp.at         | Was sonst wäre der Sinn des Erfindens?
__/   | http://www.hjp.at/ |	-- P. Einstein u. V. Gringmuth in desd



------------------------------

Date: 19 Aug 2006 08:29:15 -0700
From: weer1@gmx.net
Subject: simple examples for OpenGL
Message-Id: <1156001355.939479.190830@m73g2000cwd.googlegroups.com>

Hi,

I am trying to run the simple examples for OpenGL located on
bribes.org.
I have Perl 5.8 installed on Windows XP. I can run simple programs like
Hello World and I installed all related OpenGL-packeges ppm's from your
repository. Can you tell me what I do wrong here?

What are the minimum requirements to run a simple cube.pl or teapot.pl
on Windows?


Best regards,

Marcel Dijkman
The Netherlands



------------------------------

Date: Sat, 19 Aug 2006 16:11:52 GMT
From: "A. Sinan Unur" <1usa@llenroc.ude.invalid>
Subject: Re: simple examples for OpenGL
Message-Id: <Xns98247C2F2FF58asu1cornelledu@127.0.0.1>

weer1@gmx.net wrote in news:1156001355.939479.190830
@m73g2000cwd.googlegroups.com:

> I am trying to run the simple examples for OpenGL located on
> bribes.org.

Since you give absolutely no usable information, I decided to check out 
the web site to try and figure out what you are talking about:

http://www.bribes.org/

BRIBES
Petit dictionnaire des citations
BRIBES : des citations, des maximes morales, des anecdotes 
humoristiques, des mots d'esprit... accessibles par un lexique et un 
moteur de recherche. Toutes les citations sont exactes : les références 
complètes sont données. On peut télécharger ce dictionnaire (formats 
html et pdf). C'est gratuit et sans pub !

Now, what does that have to do with Perl and OpenGL???


> I have Perl 5.8 installed on Windows XP. I can run simple programs
> like Hello World and I installed all related OpenGL-packeges ppm's 
> from your repository. Can you tell me what I do wrong here?

You have not read the posting guidelines and you are not asking the 
question in a smart way. Reading the posting guidelines would help.

> What are the minimum requirements to run a simple cube.pl or teapot.pl
> on Windows?

How can we know given that we have absolutely no idea what is in the 
files? However, if your computer does not conform to the DS9000 (search 
Google for it) spec, you'll have a hard time running anything.

Sinan
-- 
A. Sinan Unur <1usa@llenroc.ude.invalid>
(remove .invalid and reverse each component for email address)

comp.lang.perl.misc guidelines on the WWW:
http://augustmail.com/~tadmc/clpmisc/clpmisc_guidelines.html



------------------------------

Date: 19 Aug 2006 09:30:14 -0700
From: weer1@gmx.net
Subject: Re: simple examples for OpenGL
Message-Id: <1156005013.945831.153960@h48g2000cwc.googlegroups.com>

What the hell do I need a DS9000 for? The guide of this group says: The
Perl language in general.

I can see why the URL I posted puzzled you, here is the exact link I
talk about:
http://www.bribes.org/perl/wopengl.html

Any success on the OpenGL for Windows-question I asked?

Regards,

M=2ED.

A=2E Sinan Unur schreef:

> weer1@gmx.net wrote in news:1156001355.939479.190830
> @m73g2000cwd.googlegroups.com:
>
> > I am trying to run the simple examples for OpenGL located on
> > bribes.org.
>
> Since you give absolutely no usable information, I decided to check out
> the web site to try and figure out what you are talking about:
>
> http://www.bribes.org/
>
> BRIBES
> Petit dictionnaire des citations
> BRIBES : des citations, des maximes morales, des anecdotes
> humoristiques, des mots d'esprit... accessibles par un lexique et un
> moteur de recherche. Toutes les citations sont exactes : les r=E9f=E9renc=
es
> compl=E8tes sont donn=E9es. On peut t=E9l=E9charger ce dictionnaire (form=
ats
> html et pdf). C'est gratuit et sans pub !
>
> Now, what does that have to do with Perl and OpenGL???
>
>
> > I have Perl 5.8 installed on Windows XP. I can run simple programs
> > like Hello World and I installed all related OpenGL-packeges ppm's
> > from your repository. Can you tell me what I do wrong here?
>
> You have not read the posting guidelines and you are not asking the
> question in a smart way. Reading the posting guidelines would help.
>
> > What are the minimum requirements to run a simple cube.pl or teapot.pl
> > on Windows?
>
> How can we know given that we have absolutely no idea what is in the
> files? However, if your computer does not conform to the DS9000 (search
> Google for it) spec, you'll have a hard time running anything.
>
> Sinan
> --
> A. Sinan Unur <1usa@llenroc.ude.invalid>
> (remove .invalid and reverse each component for email address)
>
> comp.lang.perl.misc guidelines on the WWW:
> http://augustmail.com/~tadmc/clpmisc/clpmisc_guidelines.html



------------------------------

Date: Sat, 19 Aug 2006 16:34:56 GMT
From: "A. Sinan Unur" <1usa@llenroc.ude.invalid>
Subject: Re: simple examples for OpenGL
Message-Id: <Xns98248017CCF28asu1cornelledu@127.0.0.1>

weer1@gmx.net wrote in news:1156005013.945831.153960
@h48g2000cwc.googlegroups.com:

[ Please do not top-post. 
  Please do not quote the previous messages in full.
  Please do not quote sigs.
]

> Any success on the OpenGL for Windows-question I asked?

Any success reading the posting guidelines for this group?

Sinan
-- 
A. Sinan Unur <1usa@llenroc.ude.invalid>
(remove .invalid and reverse each component for email address)

comp.lang.perl.misc guidelines on the WWW:
http://augustmail.com/~tadmc/clpmisc/clpmisc_guidelines.html



------------------------------

Date: Sat, 19 Aug 2006 13:05:06 -0400
From: Sherm Pendley <sherm@Sherm-Pendleys-Computer.local>
Subject: Re: simple examples for OpenGL
Message-Id: <m2lkpky7ul.fsf@Sherm-Pendleys-Computer.local>

weer1@gmx.net writes:

> I have Perl 5.8 installed on Windows XP. I can run simple programs like
> Hello World and I installed all related OpenGL-packeges ppm's from your
> repository. Can you tell me what I do wrong here?

How do you expect someone to tell you what's wrong with your script, when
you didn't post your script? This isn't the psychic hotline...

sherm--

-- 
Web Hosting by West Virginians, for West Virginians: http://wv-www.net
Cocoa programming in Perl: http://camelbones.sourceforge.net


------------------------------

Date: Sat, 19 Aug 2006 17:11:38 GMT
From: "Jürgen Exner" <jurgenex@hotmail.com>
Subject: Re: simple examples for OpenGL
Message-Id: <eDHFg.2048$Te.178@trnddc07>

weer1@gmx.net wrote:
> What are the minimum requirements to run a simple cube.pl or teapot.pl
> on Windows?

A Perl interpreter (aka perl) and the libraries/modules that your script is 
using.
A more detailed answer would require to see the code for cube.pl or 
teapot.pl.

jue





------------------------------

Date: 19 Aug 2006 13:13:11 -0700
From: weer1@gmx.net
Subject: Re: simple examples for OpenGL
Message-Id: <1156018391.698373.161140@p79g2000cwp.googlegroups.com>

Dear J=FCrgen,

Thanks for your detailed answer. Kindly appreciated.
I can't believe it... This afternoon I was trying to convert my
examples with perl2exe and that didn't work out. Now simply starting
the script with perl cube.pl works. And I see the rotating cube!

Thanks again for your time.

Regards,
Marcel Dijkman


J=FCrgen Exner schreef:

> weer1@gmx.net wrote:
> > What are the minimum requirements to run a simple cube.pl or teapot.pl
> > on Windows?
>
> A Perl interpreter (aka perl) and the libraries/modules that your script =
is
> using.
> A more detailed answer would require to see the code for cube.pl or
> teapot.pl.
>=20
> jue



------------------------------

Date: 6 Apr 2001 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin) 
Subject: Digest Administrivia (Last modified: 6 Apr 01)
Message-Id: <null>


Administrivia:

#The Perl-Users Digest is a retransmission of the USENET newsgroup
#comp.lang.perl.misc.  For subscription or unsubscription requests, send
#the single line:
#
#	subscribe perl-users
#or:
#	unsubscribe perl-users
#
#to almanac@ruby.oce.orst.edu.  

NOTE: due to the current flood of worm email banging on ruby, the smtp
server on ruby has been shut off until further notice. 

To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.

#To request back copies (available for a week or so), send your request
#to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
#where x is the volume number and y is the issue number.

#For other requests pertaining to the digest, send mail to
#perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
#sending perl questions to the -request address, I don't have time to
#answer them even if I did know the answer.


------------------------------
End of Perl-Users Digest V10 Issue 9629
***************************************


home help back first fref pref prev next nref lref last post