Re: [nyphp-talk] OOP Newbie Building arrays in extended classes

2013-01-26 Thread CED
And I would say more secure. :) On 1/25/2013 6:18 PM, Jeff Slutz wrote: > Yes, as Brian said, go with protected. If you need to change the > value of the attribute from outside of the class then provide a public > setter method to set a new value. This approach makes the control of > the objects

Re: [nyphp-talk] PHP and keystores

2012-11-29 Thread CED
thony Ferrara wrote: > When you say "encryption and decryption of credentials", what are you > talking about? User credentials? If so, why aren't you hashing them > one-way instead of encrypting them (and therefore making them FAR > easier for an attacker to steal)?

Re: [nyphp-talk] PHP and keystores

2012-11-29 Thread CED
ed functions. > > On Thu, Nov 29, 2012 at 11:13 AM, CED <mailto:cons...@covenantedesign.com>> wrote: > > Just encryption and decryption of credentials. > > > On 11/28/2012 6:25 PM, Rob Marscher wrote: > > On Nov 28, 2012, at 7:23 PM, CED <

Re: [nyphp-talk] PHP and keystores

2012-11-29 Thread CED
Just encryption and decryption of credentials. On 11/28/2012 6:25 PM, Rob Marscher wrote: > On Nov 28, 2012, at 7:23 PM, CED wrote: > >> I have a need to use a private key within PHP... does anyone have any >> recommendations on this? >> I looked at http://phpkeysto

[nyphp-talk] PHP and keystores

2012-11-28 Thread CED
I have a need to use a private key within PHP... does anyone have any recommendations on this? I looked at http://phpkeystore.com/ but I'm not sure... any thoughts? ___ New York PHP User Group Community Talk Mailing List http://lists.nyphp.org/mailman/lis

[nyphp-talk] Hijacker

2011-02-02 Thread CED
Sorry, I accidentally hijacked that... my bad. ___ New York PHP Users Group Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk http://www.nyphp.org/Show-Participation

Re: [nyphp-talk] Pear::LiveUser (or other ACL / RBAC Package)

2011-02-02 Thread CED
I wasn't sure how many people are close enough to the Albany area, but we have a sweet happening coming up: http://barcampalbany.org Bar camps are super fun and a great way to learn a lot of cool things... hope to see you there. On 2/1/2011 1:55 PM, Bill P. wrote: > Hello, > > Does anyone hav

Re: [nyphp-talk] PHP Dynamic GET Variables , Do they exist?

2010-05-01 Thread CED
7;]])) { php { echo $_GET[$dynamic_vars['a']['b']]; php { } def As you can see I am on 5.2.10-2. -Anthony *From:* CED *To:* NYPHP Talk *Sent:* Fri, April 30, 2010 8:32:24 PM *Subject:* Re: [nyphp-talk] PHP

Re: [nyphp-talk] PHP Dynamic GET Variables , Do they exist?

2010-04-30 Thread CED
GET[$dynamic_vars['a']['b']])) { php { echo $_GET[$dynamic_vars['a']['b']]; php { } def As you can see I am on 5.2.10-2. -Anthony *From:* CED *To:* NYPHP Talk *Sent:* Fri, April 3

Re: [nyphp-talk] PHP Dynamic GET Variables , Do they exist?

2010-04-30 Thread CED
Chris Snyder wrote: On Fri, Apr 30, 2010 at 7:24 PM, CED wrote: What am I doing wrong? (this is obviously for demonstration purposes only, the actually variables have need for being stored in the manner that they are) -Ed Sample code works for me, php 5.3.2

[nyphp-talk] PHP Dynamic GET Variables , Do they exist?

2010-04-30 Thread CED
What am I doing wrong? (this is obviously for demonstration purposes only, the actually variables have need for being stored in the manner that they are) -Ed ___ New York PHP Users Group Community Talk Mailing List http://lists.nyphp.org/mailman/li

Re: [nyphp-talk] Fastest PHP Writing

2010-03-17 Thread CED
Michael B Allen wrote: Hi Ed, I very much doubt exec-ing and then backticking (which is forks and then execs again) would achieve the desired result. One thing that might, would be to write a long-lived daemon that opens the file(s) being appended to and waits for data on a named pipe. PHP call

Re: [nyphp-talk] Fastest PHP Writing

2010-03-17 Thread CED
Mitch Pirtle wrote: On Wed, Mar 17, 2010 at 7:45 PM, CED wrote: Basically I am trying to find the most incredibly fast way to append to a file, and support a massive potential concurrency (think huge logging system for an ISP etc.). Why not look into syslog-ng or mongodb's gridf

[nyphp-talk] Fastest PHP Writing

2010-03-17 Thread CED
List, I am doing some tests on PHP write speeds and concurrency and was wondering if anyone has done the same? I am currently testing - fopen('filethingy', 'a') passthru() exec() `echo "stuff" >> filethingy.txt` Basically I am trying to find the most incredibly fast way to append

Re: [nyphp-talk] MSSQL2008 Express and XAMPP

2010-02-15 Thread CED
CED wrote: Has anyone ever configured this? I have followed several online suggestions and still no luck, a fail authentication error is all i receive from this: CODE: Suggestions greatly appreciated. -Ed ___ New York PHP Users Group

Re: [nyphp-talk] Flex/AIR

2010-02-15 Thread CED
Paul A Houle wrote: Gary Mort wrote: I've never been able to justify buying a big flash developer package just to play around with flash To stick up for Adobe (which I rarely do), I will say that the flash authoring tool from Adobe is pretty awesome. The quality of the authoring to

[nyphp-talk] MSSQL2008 Express and XAMPP

2010-02-15 Thread CED
Has anyone ever configured this? I have followed several online suggestions and still no luck, a fail authentication error is all i receive from this: CODE: Suggestions greatly appreciated. -Ed ___ New York PHP Users Group Community Talk Mail

Re: [nyphp-talk] Is this XML valid?

2009-09-18 Thread CED
David Roth wrote: I've been using simplexml to parse XML and so far the XML I've had to deal with has been pretty straight forward. Then I run across this XML which I don't know what to call it or how it should be handled properly. Here is a fragment of what I'm talking about: I was ex

Re: [nyphp-talk] Java provides???

2009-08-12 Thread CED
Ben Sgro wrote: > What does Java provide that PHP can't do faster and with lighter resource usage? XSLT 2.0 support. PHP does not. - Ben Leam Hall wrote: Gang, I'll confess that I'm happy to support Java as it provides lots of reasons to upgrade hardware and buy newer/faster machines. How

Re: [nyphp-talk] Java provides???

2009-08-12 Thread CED
Paul A Houle wrote: Ajai Khattri wrote: Of course, you're ignoring the fact that these have little to do with Java - IDEs exist for PHP too. Personally, I dislike IDEs but to each their own. See, that's what PHPers, Pythoners, Ruby people always say... I did a lot of Java from 199

Re: [nyphp-talk] SSH2_CONNECT

2009-07-31 Thread CED
Leam Hall wrote: CED wrote: Leam Hall wrote: http://forums.fedoraforum.org/showthread.php?t=159677 [r...@leam ~]# grep -i tty /etc/sudoers Defaultsrequiretty That might help. :) Leam Please DO NOT use Leam's example... "Defaults requiretty" is a global sudoers s

Re: [nyphp-talk] SSH2_CONNECT

2009-07-31 Thread CED
Leam Hall wrote: http://forums.fedoraforum.org/showthread.php?t=159677 [r...@leam ~]# grep -i tty /etc/sudoers Defaultsrequiretty That might help. :) Leam Michele Waldman wrote: Thank you. sudo: sorry, you must have a tty to run sudo I don't know how to resolve this. Michele

Re: [nyphp-talk] SSH2_CONNECT

2009-07-31 Thread CED
I'll take the bait... No, you most certainly shouldn't do this at all. Adjusting the defaults to sudoers is a big no no. Whatever it is you are doing, the need to become root is far different than Ken's example of becoming Ken. The reason that you can't make this work properly has everythi

Re: [nyphp-talk] delete one element from array

2009-06-04 Thread CED
Chris Snyder wrote: On Thu, Jun 4, 2009 at 12:39 PM, wrote: yeah i think unset would work just fine. So much for my serialize() / preg_replace() / unserialize() hack. ___ New York PHP User Group Community Talk Mailing List http://lists.nyp

Re: [nyphp-talk] Periodic Browsercam.com group availability

2009-06-03 Thread CED
---Original Message- From: talk-boun...@lists.nyphp.org [mailto:talk-boun...@lists.nyphp.org] On Behalf Of CED Sent: Wednesday, June 03, 2009 10:23 PM To: NYPHP Talk Subject: Re: [nyphp-talk] Periodic Browsercam.com group availability Michele Waldman wrote: Browsershots restricts daily usage. I al

Re: [nyphp-talk] Periodic Browsercam.com group availability

2009-06-03 Thread CED
Michele Waldman wrote: Browsershots restricts daily usage. I also paid for extended use of like $15. That money was out the window. I got nothing. I tried it. Then I joined browsercam. Michele -Original Message- From: talk-boun...@lists.nyphp.org [mailto:talk-boun...@lists.nyph

Re: [nyphp-talk] delete one element from array

2009-06-03 Thread CED
Darryle Steplight wrote: unset($array['7']) doesn't work? On Wed, Jun 3, 2009 at 9:14 PM, Michael Southwell wrote: This has to be easy but I'm so pre-occupied with other stuff that I can't get it. I have an array, let's say 12 elements. I want to remove element 7. I could array_slice out t

Re: [nyphp-talk] Periodic Browsercam.com group availability

2009-06-03 Thread CED
ess it will be outside of my budget. Michele -Original Message- From: talk-boun...@lists.nyphp.org [mailto:talk-boun...@lists.nyphp.org] On Behalf Of CED Sent: Wednesday, June 03, 2009 8:07 PM To: NYPHP Talk Subject: Re: [nyphp-talk] Periodic Browsercam.com group avail

Re: [nyphp-talk] Periodic Browsercam.com group availability

2009-06-03 Thread CED
Have you looked into https://browserlab.adobe.com/index.html Michele Waldman wrote: For those of you that want to join my browsercam.com group, I have space available. There’s 2 of us, so I have 10 slots open. It’s roughly $40/mo for a regular membership. It’s like $60 bucks for a one time

Re: [nyphp-talk] NYPHP Tech

2009-05-27 Thread CED
Peter Sawczynec wrote: Good Day All: Would anyone support a new SIG called maybe "NYPHP Tech" or "NYPHP Techcetera". In this SIG we could all post w/o guilt all our tech and tech-related questions, things such as: 1) best laptop 2) best linux distro 3) best google map mashup 4) b

Re: [nyphp-talk] Zip code radius

2009-05-22 Thread CED
Edward Potter wrote: Yep, Geocode a list of addresses, export lat, lng file. Suck into the iPhone, parse the file, build a store locator that knows where I am, link those pins to a mysql db, spit out some more xml soup. Fun stuff. Mapkit 3.0 is wild. ;-) Search google + php + map + geocode

Re: [nyphp-talk] PHP 5.3 add_x_header Broken

2009-05-21 Thread CED
Daniel Convissor wrote: Hola: On Thu, May 21, 2009 at 06:23:43PM -0400, Hans Zaunere wrote: However, when the X-PHP-Originating-Script header is added, it's prefixed with a \r\n. This thus breaks some email clients, especially when sending from a Unix host where all the other headers are se

Re: [nyphp-talk] Integrated eCommerce/POS?

2007-07-22 Thread CED
What POS software? I've found Quickbooks to be pretty smoothy to script to. - Original Message - From: "Tim Lieberman" <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Sunday, July 22, 2007 11:41 PM Subject: [nyphp-talk] Integrated eCommerce/POS? > Just thought I'd ask here. > > I'm looking

Re: [nyphp-talk] Oh... Interviewing

2007-07-21 Thread CED
David Krings" <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Saturday, July 21, 2007 7:13 AM Subject: Re: [nyphp-talk] Oh... Interviewing > CED wrote: > > I recently sat down with a candidate for a Software Management/Architect > > position here is what I presen

Re: [nyphp-talk] Oh... Interviewing

2007-07-20 Thread CED
And just for the record... If interviewing for a 100K+ job NOT in NYC, I would have answered those questions. - Original Message - From: <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Friday, July 20, 2007 11:37 PM Subject: Re: [nyphp-talk] Oh... Interviewing > Frankly, I think that is an

Re: [nyphp-talk] Oh... Interviewing

2007-07-20 Thread CED
Mike, I received your first off-color flame, and am wondering if you read my email in its entirety, I by no means would 'pop-quiz' a candidate. If you just read the questions and are assuming that it was 'SURPRISE!', it explains alot. But if not, I'd ask you to justify your comments and character

Re: [nyphp-talk] Oh... Interviewing

2007-07-20 Thread CED
Mike, Did you read my email? My three closing comments at the end, speak completely contrary to what it seems you perceived. -Edward - Original Message - From: <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Friday, July 20, 2007 11:37 PM Subject: Re: [nyphp-talk] Oh... Interviewing > Fra

[nyphp-talk] Oh... Interviewing

2007-07-20 Thread CED
I recently sat down with a candidate for a Software Management/Architect position here is what I presented: Software Architecture a.. Name 3 design patterns. b.. c.. d.. e.. Which of the following general statements about a class are true? f.. Select Answer: g.. 1. A class repres

Re: [nyphp-talk] shell_exec security pitfalls?

2007-07-18 Thread CED
What is meant is that a shell/terminal session pops up to run the command, and a person on the terminal could see it running. -Ed - Original Message - From: "Dell Sala" <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Wednesday, July 18, 2007 9:20 PM Subject: [nyphp-talk] shell_exec security

Re: [nyphp-talk] Questions to ask at a job interview?

2007-07-07 Thread CED
I think 150 lines is huge, I want to do it in two. =D -Ed Edward JS Prevost II [EMAIL PROTECTED] www.EdwardPrevost.info - Original Message - From: "David Krings" <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Saturday, July 07, 2007 8:05 PM Subject: Re: [nyphp-talk] Questions to ask at a jo

Re: [nyphp-talk] Questions to ask at a job interview?

2007-06-28 Thread CED
Beautiful point Steve. Critical thinking is certainly a talent that is taken for granted, and often missed in the standard interviewing process. Although workspace cleanliness and code hygeine is 'nice-to-have' I'd trade it for the guy that I could drop an emergency project on, and is going to res

Re: [nyphp-talk] Removing Text from an Input Box

2007-06-06 Thread CED
or... function clearField(id, value) { if (id.value == value) { id.value = ""; } } function restoreField(id, value) { if (id.value == "") { id.value = value; } if (id.type == "text" && id.id == "pwrd" && id.value != "Password"){ id.type = "password"; } else { id.

Re: [nyphp-talk] Removing Text from an Input Box

2007-06-06 Thread CED
Andy's two functions cover it all, just make a third function that sets type. Although I'm not sure if changing the fields type will reveal the characters or not, it should. - Original Message - From: Andy Dirnberger To: 'NYPHP Talk' Sent: Wednesday, June 06, 2007 8:53 PM Su

Re: [nyphp-talk] Removing Text from an Input Box

2007-06-06 Thread CED
Don't forget to wrap teh onBlur to check if they entered something different. - Original Message - From: CED To: NYPHP Talk Sent: Wednesday, June 06, 2007 8:48 PM Subject: Re: [nyphp-talk] Removing Text from an Input Box Set the text as the value, then set it blank on

Re: [nyphp-talk] Removing Text from an Input Box

2007-06-06 Thread CED
Set the text as the value, then set it blank onFocus... onFocus(javascript:document.f.inputfield.value = ""); and onBlur(javascript:document.form.inputfield.value ="Username";); -Ed Edward JS Prevost II [EMAIL PROTECTED] www.EdwardPrevost.info - Original Message - From: Ben Sgro (Pro

Re: [nyphp-talk] A Form That Builds Itself

2007-06-06 Thread CED
ne 06, 2007 8:33 PM Subject: Re: [nyphp-talk] A Form That Builds Itself > You don't actually need to use ajax and talk to the server, just some > javascript DOM code to insert another input field. > > > On Jun 6, 2007, at 8:28 PM, CED wrote: > > > Asunchronous JAvascr

Re: [nyphp-talk] PHP a Toy?

2007-06-06 Thread CED
Hans, I'd like to buy a few. Edward JS Prevost II AlbanyPHP Founder [EMAIL PROTECTED] www.AlbanyPHP.org - Original Message - From: "Hans Zaunere" <[EMAIL PROTECTED]> To: "'NYPHP Talk'" Sent: Wednesday, June 06, 2007 12:16 PM Subject: [nyphp-talk] PHP a Toy? > > Hi all, > > While some

Re: [nyphp-talk] A Form That Builds Itself

2007-06-06 Thread CED
Asunchronous JAvascript that writes to a Div, and you run a loop intot hat div of form input elements incremented by each click. HTH, Ed Edward JS Prevost II [EMAIL PROTECTED] www.EdwardPrevost.info - Original Message - From: Nelly Yusupova To: 'NYPHP Talk' Sent: Wednesday, Jun

Re: [nyphp-talk] seeking backup/support programmer

2007-06-04 Thread CED
Rolan, I'm your man. And I'm cheap! -Edward - Original Message - From: "Rolan" <[EMAIL PROTECTED]> To: Sent: Monday, June 04, 2007 10:27 PM Subject: [nyphp-talk] seeking backup/support programmer > I'm looking for someone who can do light programming work or backup > support for me

Re: [nyphp-talk] random image selection

2007-05-28 Thread CED
OR foreach(glob("imageDirectory/*.gif") as $item){ $sort[] = end(explode('/',$item)); } $i = rand(0, count($sort); echo $sort[$i]; HTH, Ed Edward JS Prevost II [EMAIL PROTECTED] www.EdwardPrevost.info - Original Message - From: selyah To: NYPHP Talk Sent: Monday, May 28, 20

Re: [nyphp-talk] random image selection

2007-05-28 Thread CED
$i = rand( 0, count(imagesArray)); $imagesArray[$i]; - Original Message - From: selyah To: NYPHP Talk Sent: Monday, May 28, 2007 4:56 PM Subject: [nyphp-talk] random image selection is there a simple way of selecting random images to be displayed from a library of images

Re: [nyphp-talk] Support Ticket Sytem

2007-05-18 Thread CED
Rolan, Thats a good idea too for a homegrown. -Ed - Original Message - From: "Rolan Yang" <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Friday, May 18, 2007 1:09 AM Subject: Re: [nyphp-talk] Support Ticket Sytem > Michael B Allen wrote: > > There are a LOT of support ticket systems arou

Re: [nyphp-talk] Support Ticket Sytem

2007-05-17 Thread CED
E-V-E-N-T-U-M =D > > Hi Jon, > > Nope. That just converts between emails and trac tickets. > > Let me explain further what I'm interested in. What I want is very > simple actually. I will no doubt write it myself eventually but I would > be delighted if someone "stole" my idea (provided I c

Re: [nyphp-talk] Support Ticket Sytem

2007-05-17 Thread CED
HP Talk Sent: Thursday, May 17, 2007 6:34 PM Subject: Re: [nyphp-talk] Support Ticket Sytem Hello, I've also been looking for something: Eventum looks really great at first glance. - Ben - Original Message - From: CED To: NYPHP Talk Sent: Thursday, Ma

Re: [nyphp-talk] Support Ticket Sytem

2007-05-17 Thread CED
Eventum. Period. =D Edward JS Prevost II [EMAIL PROTECTED] www.EdwardPrevost.info - Original Message - From: Josh McCormack To: NYPHP Talk Sent: Thursday, May 17, 2007 6:19 PM Subject: Re: [nyphp-talk] Support Ticket Sytem Mantis is a PHP issue tracker that's pretty good.

Re: [nyphp-talk] wonderful presentation on Tuesday

2007-04-27 Thread CED
Thank you AJ. I have been holding my breath. =D - Original Message - From: "Ajai Khattri" <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Friday, April 27, 2007 11:15 AM Subject: Re: [nyphp-talk] wonderful presentation on Tuesday > On Thu, 26 Apr 2007, Susan Shemin wrote: > > > I'm not reall

Re: [nyphp-talk] Single Signon Multiple Domains

2007-03-27 Thread CED
Good recommendation Flavio! - Original Message - From: "Flavio daCosta" <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Tuesday, March 27, 2007 3:22 AM Subject: Re: [nyphp-talk] Single Signon Multiple Domains > On 03/26/2007 06:10 PM, Joseph Crawford wrote: > > The company I am working for

Re: [nyphp-talk] Single Signon Multiple Domains

2007-03-26 Thread CED
http://www.melbournechapter.net/wordpress/programming-languages/php/cman/2006/06/15/sharing-a-session-across-multiple-domainsservers-with-php/ - Original Message - From: Joseph Crawford To: NYPHP Talk Sent: Monday, March 26, 2007 5:31 PM Subject: Re: [nyphp-talk] Single Signon

Re: [nyphp-talk] Single Signon Multiple Domains

2007-03-26 Thread CED
Have a DB or filestructure(write a temp file) that stores the login info with particular authenticating information. Then whenever they move from one domain to another the Database is accessed and the login persisted. - Original Message - From: Joseph Crawford To: NYPHP Talk

Re: [nyphp-talk] speaking of IDE's

2007-02-27 Thread CED
http://www.eclipse.org/ Maybe I prefer it cause I like java? =D - Original Message - From: "Jon Baer" <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Tuesday, February 27, 2007 10:01 AM Subject: Re: [nyphp-talk] speaking of IDE's > Oh no ... it's Visual Basic for PHP, OO components everyw

Re: [nyphp-talk] PHP and running background tasks...

2007-02-24 Thread CED
exec(), or AJAX. But I think you need to give us some more info. Edward JS Prevost II [EMAIL PROTECTED] www.EdwardPrevost.info - Original Message - From: "Brian Dailey" <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Saturday, February 24, 2007 8:13 PM Subject: [nyphp-talk] PHP and running b

Re: [nyphp-talk] Google Maps Assistance

2007-02-22 Thread CED
I wouldn't use google maps for what you're trying to do on that page. I'd do somethign similar to this: http://reformedpresbytery.org/contacts.html And have the links call the Google API. it just seems like you need to manage the markers, or does the API allow you to change the markers size?

Re: [nyphp-talk] Encoding help?

2007-02-22 Thread CED
If it's the e in Montreal, just do what Chris suggests and iconv: iconv("ISO-8859-1", "UTF-8", $googleXMLResponse); OR iconv("UTF-8", "ISO-8859-1", $myGoogleAPIRequest); - Original Message - From: "csnyder" <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Thursday, February 22, 2007 9:39

Re: [nyphp-talk] Encoding help?

2007-02-22 Thread CED
What "e" Character? - Original Message - From: Joseph Crawford To: NYPHP Talk Sent: Thursday, February 22, 2007 9:23 AM Subject: Re: [nyphp-talk] Encoding help? ZIt is choking on the e charachter i figured that out but how to stop it from choking is the problem. After

Re: [nyphp-talk] Encoding help?

2007-02-22 Thread CED
What is wrong with Montréal ? It looks properly formatted. I believe that error is from the doc not being declared correctly in the header. If that's the case, edit the reponse and insert a header like: And make sure it's at line 1 HTH, Edward JS Prevost II [EMAIL PROTECTED] www.EdwardPrevost

Re: [nyphp-talk] Re: Upcoming Month of PHP Bugs (michael)

2007-02-21 Thread CED
I'd have to echo Chris' position. I don't find incredible weight to most of the complaints, and am certain that the first and foremost point of security failure just-so-happens to be typing this e-mail right now. I don't doubt that there is probably some personal offense and/or political motives in

Re: [nyphp-talk] testing a theory

2007-02-19 Thread CED
Why do you say that the end of file tag is a good standard? - Original Message - From: "Rob Marscher" <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Monday, February 19, 2007 11:07 PM Subject: Re: [nyphp-talk] testing a theory > >One day I discovered that I didn't need the "?>"... I c

Re: [nyphp-talk] PHP/SQL ECommerce Solutions

2007-02-15 Thread CED
Cliff, What feature is it that you only foun in lite? -Ed Edward JS Prevost II -President- www.CovenantEDesign.com [EMAIL PROTECTED] 518.331.5061 - Original Message - From: "Cliff Hirsch" <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Thursday, February 15, 2007 1:24 PM Subject: Re:

Re: [nyphp-talk] unbelievable

2007-01-30 Thread CED
II [EMAIL PROTECTED] www.EdwardPrevost.info - Original Message - From: "CED" <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Tuesday, January 30, 2007 11:12 PM Subject: Re: [nyphp-talk] unbelievable > Interesting that you'd go with Python. I've focuse

Re: [nyphp-talk] unbelievable

2007-01-30 Thread CED
Interesting that you'd go with Python. I've focused on Java, only by cause of bias. (My Own that is. =D) Any other reasons you think Python should be taking up my loverly reading time? Edward JS Prevost II [EMAIL PROTECTED] www.EdwardPrevost.info - Original Message - From: "edward potter"

Re: [nyphp-talk] unbelievable

2007-01-30 Thread CED
"Wow", is an understatement. Look at the tech outsourcing to Bombay and the salaries there sometime. Eventually US coders/Designers will be obsolete... sadly. Edward JS Prevost II [EMAIL PROTECTED] www.EdwardPrevost.info - Original Message - From: "Joseph Crawford" <[EMAIL PROTECTED]> To

Re: [nyphp-talk] Merry Christmas to All!

2006-12-23 Thread CED
Already in the works www.AlbanyPHP.org Edward JS Prevost II [EMAIL PROTECTED] www.EdwardPrevost.info - Original Message - From: "Dan Cech" <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Saturday, December 23, 2006 9:44 AM Subject: Re: [nyphp-talk] Merry Christmas to All! > David Krin