Re: project

2024-05-18 Thread karl
William: > What is the need to develop a project in Perl? Perl and some knowledge of what the project is about. You can, at your own convenience or requirement, add some version control system, some editor or progremming environment, etc. Regards, /Karl Hammar -- To unsubscribe, e-mail: begi

Re: project euler #8

2018-06-07 Thread John SJ Anderson
Hi Shlomi. A reminder that sometimes when somebody does something, you can just ignore the email and _not_ reply to it. Thanks, John the list mom. -- John Anderson // j...@genehack.org > On Jun 7, 2018, at 08:58, Shlomi Fish wrote: > > Hi, > > why did you resurrect a one year old's thr

Re: project euler #8

2018-06-07 Thread Shlomi Fish
Hi, why did you resurrect a one year old's thread for which there were proper replies here - https://www.nntp.perl.org/group/perl.beginners/2017/05/msg126502.html and here - https://github.com/shlomif/project-euler/tree/master/project-euler/8 . just let sleeping dogs rest. Some comments on your co

Re: project euler #8

2018-06-06 Thread John W. Krahn
On Tue, 2017-05-16 at 14:01 +0800, derr...@thecopes.me wrote: I am working on problem #8 of the euler project. see below. > > > > The four adjacent digits in the 1000-digit number that have the > greatest product are 9 × 9 × 8 × 9 = 5832. > > 73167176531330624919225119674426574742355349194934

Re: project euler #8

2017-05-26 Thread lee
Shlomi Fish writes: > Hi lee, > > I decided to try to give you another chance to be educated, despite Uri's > conclusion in the other thread. Hopefully you won't let me down. He has made a lot of conclusions and decided not to say anything further. I know it can be difficult to convince me of s

Re: project euler #8

2017-05-25 Thread Shlomi Fish
Hi lee, I decided to try to give you another chance to be educated, despite Uri's conclusion in the other thread. Hopefully you won't let me down. On Thu, 25 May 2017 16:48:13 +0100 lee wrote: > Shlomi Fish writes: > > > [...] > >> >> while ( my $numbline = ) { > >> >> chomp $numbline;

Re: project euler #8

2017-05-25 Thread lee
Shlomi Fish writes: > [...] >> >> while ( my $numbline = ) { >> >> chomp $numbline; >> >> my @numbline = split //, $numbline; >> > >> > You're processing the input number line-by-line, but it's one whole number >> > and the products may span across more than one line. You need to slurp

Re: project euler #8

2017-05-25 Thread Shlomi Fish
Hi lee! On Thu, 25 May 2017 02:24:05 +0100 lee wrote: > Shlomi Fish writes: > > > Hi all! > > > > Resending because the original message does not appear to have arrived at > > the list. > > > > = > > > > Hi Derrick, > > > > On Tue, 16 May 2017 14:01:34 +0800 > > derr...@thecopes.me wrote:

Re: project euler #8

2017-05-24 Thread lee
Ok, here's one more: [...] unless($ad) { print " * $ad = 0\n"; $start = $digit; next DIGITS; } [...] You can skip right away to behind the 0 which has already been found within the current range of adjacency. lee writes: > Sorry, I was too fast and I got

Re: project euler #8

2017-05-24 Thread lee
Sorry, I was too fast and I got it all wrong. It goes like this: [...] my $adjacency = 13; my $maxprod = 0; my $start = 0; my $exceed = length($data); my $end = $exceed - $adjacency; DIGITS: while($start < $end) { my $prod = substr($data, $start, 1); print $prod; if($prod) { my $ad

Re: project euler #8

2017-05-24 Thread lee
Shlomi Fish writes: > Hi all! > > Resending because the original message does not appear to have arrived at the > list. > > = > > Hi Derrick, > > On Tue, 16 May 2017 14:01:34 +0800 > derr...@thecopes.me wrote: > >> Hi All, >> >> I am working on problem #8 of the euler project. see below. >>

Re: project euler #8

2017-05-16 Thread Shlomi Fish
-- Shlomi > Derrick > > -- > 发件人:Shlomi Fish日 期:2017年05月16日 > 16:54:39收件人:抄 送:Beginners Perl > List主 题:Re: project euler #8Hi all! > > Resending because the original message does not appear to have arrived at the > list. &

Re: project euler #8

2017-05-16 Thread derrick
:Beginners Perl List主 题:Re: project euler #8Hi all! Resending because the original message does not appear to have arrived at the list. = Hi Derrick, On Tue, 16 May 2017 14:01:34 +0800 derr...@thecopes.me wrote: > Hi All, > > I am working on problem #8 of the euler project. see below.

Re: project euler #8

2017-05-16 Thread Shlomi Fish
Hi all! Resending because the original message does not appear to have arrived at the list. = Hi Derrick, On Tue, 16 May 2017 14:01:34 +0800 derr...@thecopes.me wrote: > Hi All, > > I am working on problem #8 of the euler project. see below. > > > I have the below solution below for thi

Re: project euler #8

2017-05-16 Thread Robertas Stankevič
What if you have not 1000 but 10-digit number, and you are asked to find max product of 4 adjacent digits. What answer will output your program for this test case: 11199 99111

Re: Project Management

2007-04-02 Thread Nigel Peck
Edi STOJICEVIC wrote: Hi, Here are some I gave a try : * Planner --> http://live.gnome.org/Planner * GanttProject --> http://ganttproject.biz/ Dunno if they have all the features you're looking for ... Thanks Edi I'll have a look at them. -- To unsubscribe, e-mail: [EMAIL PROTEC

Re: Project Management

2007-04-02 Thread Edi STOJICEVIC
* Nigel Peck <[EMAIL PROTECTED]> [2007-04-02 16:25:04 +0100] wrote : > > Hi all, > > I'm interested to hear about any tools you know of that are good for > managing perl development projects. > > Hope this is not off topic but it's Perl development that I want to > manage so hoping someone on

Re: getting authors' names right (was Re: Project planning)

2005-10-23 Thread Randal L. Schwartz
> "Jeff" == Jeff 'japhy' Pinyan <[EMAIL PROTECTED]> writes: Jeff> Granted, I'm not an author, and I rarely (if ever) see my name Jeff> misspelled, but as a matter of courtesy, I'd really appreciate seeing Jeff> Damian Conway's name spelled properly, and Randal (L.) Schwartz's name Jeff> spelle

Re: getting authors' names right (was Re: Project planning)

2005-10-22 Thread Alfred Vahau
Thanks Jeff. Apologies to Dr. Conway and the Perl community for the mistake. Alfred, Jeff 'japhy' Pinyan wrote: On Oct 23, Alfred Vahau said: The newly released book "Perl Best Practices" by Dr. Damien Conway may be helpful in addition to those recommended already. Granted, I'm not an au

getting authors' names right (was Re: Project planning)

2005-10-22 Thread Jeff 'japhy' Pinyan
On Oct 23, Alfred Vahau said: The newly released book "Perl Best Practices" by Dr. Damien Conway may be helpful in addition to those recommended already. Granted, I'm not an author, and I rarely (if ever) see my name misspelled, but as a matter of courtesy, I'd really appreciate seeing Damian

Re: Project planning

2005-10-22 Thread Alfred Vahau
Hi, The newly released book "Perl Best Practices" by Dr. Damien Conway may be helpful in addition to those recommended already. Alfred, Steve Bertrand wrote: Hi everyone, This question may seem odd, but here goes anyway. I've been working at an ISP for a few years now, and have been adding

Re: Project planning

2005-10-21 Thread Peter Scott
On Thu, 20 Oct 2005 11:59:08 -0400, Steve Bertrand wrote: > I've been working at an ISP for a few years now, and have been adding > to/modifying their current accounting system since I've got here. Of > course it is all Perl based. > > This isn't a technical problem I'm having, but the system has

Re: Project planning

2005-10-20 Thread Wiggins d'Anconia
Steve Bertrand wrote: > Hi everyone, > > This question may seem odd, but here goes anyway. > > I've been working at an ISP for a few years now, and have been adding > to/modifying their current accounting system since I've got here. Of > course it is all Perl based. > > This isn't a technical pr

Re: Project Advice Wanted

2004-03-30 Thread Daniel Staal
--As of Tuesday, March 30, 2004 10:59 AM -0500, Steve Gross is alleged to have said: 1) Any good Perl/other tool to create screens/web pages? 2) any recommended database interfaces? I've use ODBC and would like to make it general enough to handle a wide variety of conventional databases

Re: Project Advice Wanted

2004-03-30 Thread Chance Ervin
Save yourself a lot of headache, and use RT: http://www.bestpractical.com -- - InteleNet Communications Inc. "Help me help you." Chance Ervin - SCSA -- Jerry Maguire Oracle Certified Professional Operations Supervisor - Original Messa

RE: Project Advice Wanted

2004-03-30 Thread Marcos . Rebelo
1) Now the problem is to chose. ASP, PHP, Pyton, ... 2) If you consider to be free from OS use the DBD/DBI for DB. There is already installed module in Win32 package for ODBC if you just need Windows. 3) In the Template area I use HTML::Template. Marcos -Original Message- From: Steve Gr

Re: Project Advice Wanted

2004-03-30 Thread Chance Ervin
Save yourself a lot of headache, and use RT: http://www.bestpractical.com -- - InteleNet Communications Inc. "Help me help you." Chance Ervin - SCSA -- Jerry Maguire Oracle Certified Professional Operations Supervisor - Original Messa

Re: Project Management

2003-04-02 Thread Dennis G. Wicks
Greetings; Have you tried sourceforge.net? I just did a search there on "project management application" and got a lot of hits. Also, many of the things there are written in Perl and all are GPL'd or similar. Good Luck! Dennis On Tue, 1 Apr 2003, Paul Kraus wrote: > Date: Tue, 1 Apr 2003 16:4

Re: Project Management

2003-04-01 Thread Wiggins d'Anconia
Paul Kraus wrote: Anyone have a link for a good project management tool. I do a variety of tasks and would like a place to organize them for instance I want an app that will let me set a task (New Program) then allow my to write out the description of what I want it to do then branch that out into

Re: project

2003-01-23 Thread Nilesh
I thinks thats a good advice from Joseph! Bravo man Nilesh "R. Joseph Newton" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > kasi ramanathen wrote: > > > dear friends > > > > you can give me idea for any poject networking, using database, testing programm, writ

Re: project

2003-01-22 Thread R. Joseph Newton
kasi ramanathen wrote: > dear friends > > you can give me idea for any poject networking, using database, testing programm, >writting script for unix, simple or complex. say about a project that has value using >it i may get some good job. > > kasi Hi Kasi, I'd suggest that you look around you

RE: project

2003-01-22 Thread Dan Muey
I'd pay for this one : A tk sort of module that would allow you to write a script and use native MAC OSX GUI screens so that a perl script would look just like a cocoa program or any other app and be all creamy and sexxy like OS X! Shouldn't be impossible I just don't have time. And talk

Re: project

2003-01-22 Thread Mark Goland
How about a gui wraper for IPFW, that will run on say G-nome ?? Mark - Original Message - From: "kasi ramanathen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 22, 2003 12:18 PM Subject: project > > dear friends > > you can give me idea for any poject networking,

Re: project

2003-01-22 Thread David T-G
kasi -- ...and then kasi ramanathen said... % % dear friends % % you can give me idea for any poject networking, using database, testing programm, writting script for unix, simple or complex. say about a project that has value using it i may get some good job. I have one, then. Develop a da

Re: project

2003-01-22 Thread Rob Dixon
Kasi ramanathen wrote: > hellow friends, > > i want to submite a project to collage. can you give me some ideas > and guidence to do my project. > Hi Kasi We can give you ideas and guidance, but you must start the ball rolling. Only you know what kind of project you should do, what you are capabl

RE: Project Management - Maybe off topic

2002-12-24 Thread Mystik Gotan
Oops, it's only for Linux. But it looks good. I'll certainly recommend it for Linux ppl :) -- Bob Erinkveld (Webmaster Insane Hosts) www.insane-hosts.net MSN: [EMAIL PROTECTED] From: [EMAIL PROTECTED] To: "Paul Kraus" <[EMAIL PROTECTED]>, "'Pe

RE: Project Management - Maybe off topic

2002-12-24 Thread Mystik Gotan
Looks great! I think I'll be giving it a try. I forget things all the time ;) -- Bob Erinkveld (Webmaster Insane Hosts) www.insane-hosts.net MSN: [EMAIL PROTECTED] ## Well it is probably off topic, but a good discussion anyways. Seems like some combination of cvs/rcs+bugzilla

Re: Project Management - Maybe off topic

2002-12-24 Thread K. Brian Kelley
You might also try ChameleonLog from LockwoodTech Software. They also makes some nice Microsoft SQL Server software as well. http://www.lockwoodtech.com/ It's try before you buy and the 1 user license is < US$35.00. It may fit your needs if you need something between MS Outlook and Project. -- K

RE: Project Management - Maybe off topic

2002-12-23 Thread wiggins
Well it is probably off topic, but a good discussion anyways. Seems like some combination of cvs/rcs+bugzilla might do close to the job for you and free at that :-), though that may shift the burden from yourself to your developers and that may or may not go over so well with them. On top of u