[nyphp-talk] Seeking Contract Work

2014-04-29 Thread Joseph Crawford
request. -- Joseph Crawford Jr. Zend Certified Engineer http://www.josephcrawford.com/ 1-781-346-9656 i...@josephcrawford.com ___ New York PHP User Group Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk http://www.nyphp.org/show

Re: [nyphp-talk] Downloading Zend Studio 8

2013-10-10 Thread Joseph Crawford
Ive used Zend Studio for years, recently made the switch to phpstorm and have been loving it. I would try out that IDE if you haven't yet boosts productivity a lot. Thanks, Joseph Crawford On Oct 10, 2013, at 1:29 AM, Daniel Krook wrote: > Hi Justin and Mike, > >

Re: [nyphp-talk] Back into the fray

2013-10-09 Thread Joseph Crawford
Backbone.js is amazing, you should check that out as well if you haven't already > Im been trying to build stuff in Go on Google App Engine. Im looking at > AngularJS for the front-end stuff :-) ___ New York PHP User Group Community Talk Mailing List htt

Re: [nyphp-talk] printing orders to a printer

2013-09-18 Thread Joseph Crawford
> -Original Message- > From: talk-boun...@lists.nyphp.org [mailto:talk-boun...@lists.nyphp.org] On > Behalf Of Joseph Crawford > Sent: Wednesday, September 18, 2013 11:13 AM > To: NYPHP Talk > Cc: NYPHP Talk > Subject: Re: [nyphp-talk] printing orders to a printer &g

Re: [nyphp-talk] printing orders to a printer

2013-09-18 Thread Joseph Crawford
, 2013 at 11:14 AM, Joseph Crawford wrote: >> I am curious why people are suggestion to use a web service that adds to the >> monthly bill for the company rather than a simple print using javascript > > I think I was the only one that suggested it. And I suggested it for this

Re: [nyphp-talk] printing orders to a printer

2013-09-18 Thread Joseph Crawford
have any corrections to my above statement that I am not aware of? Thanks, Joseph Crawford Sent from my iPad On Sep 17, 2013, at 12:56 AM, David Roth wrote: > Doesn't that assume the Point of Sale computer is connected directly to the > prin

Re: [nyphp-talk] printing orders to a printer

2013-09-18 Thread Joseph Crawford
sort of email to the printer like the HP one suggested. Thanks, Joseph Crawford Sent from my iPad On Sep 18, 2013, at 10:31 AM, selyah wrote: > thanks for the input > > From: Matthew Kaufman > To: NYPHP Talk > Sent: Tuesday, September 17, 2013 12:05 PM > Subject: Re: [ny

Re: [nyphp-talk] Favorite PHP debugger?

2013-08-04 Thread Joseph Crawford
I use zend studio with either zend debugger in zend server or xdebug. Sent from my iPad On Aug 4, 2013, at 6:06 PM, David Roth wrote: > I don't think I've seen a discussion of this. What is your favorite > PHP debugger? What do you find works best for stepping through your > PHP code while unde

Re: [nyphp-talk] style question: returning from a function while you're in a foreach

2013-03-15 Thread Joseph Crawford
code where the return value could > change based on multiple separate conditionals. I have seen it in some > legacy code. > > On Mar 15, 2013 5:50 PM, "Anthony Ferrara" wrote: > > > > The first is fine. There's no reason not to do it... > > >

Re: [nyphp-talk] style question: returning from a function while you're in a foreach

2013-03-15 Thread Joseph Crawford
; > On Fri, Mar 15, 2013 at 5:30 PM, Joseph Crawford wrote: >> >> There are a few things to learn from here. >> >> First it is not only a styling thing. In the first one you have several return >> statements and in the second you only have 1 return statement. >

Re: [nyphp-talk] style question: returning from a function while you're in a foreach

2013-03-15 Thread Joseph Crawford
a variable and have it continue to process through the rest of the function. If you only return after the entire function is complete but your known case was the first check in the function you are "over" processing and will only add time to your sites load time. Thanks, Joseph Crawfo

Re: [nyphp-talk] Test

2013-01-02 Thread Joseph Crawford
got it On Jan 2, 2013, at 3:05 PM, Gary Mort wrote: > Test e-mail - I seem to have no email since the start of december - just > want to check to see if I am still receiving mail. > ___ > New York PHP User Group Community Talk Mailing List > http://lis

Re: [nyphp-talk] contact us and handle forms

2012-09-11 Thread Joseph Crawford
Also add ini_set('display_errors', 1); in the same place you put error_reporting On Sep 11, 2012 10:35 AM, "I H" wrote: > Thanks Petros, It has being awhile that I have ventured back with php, and > have forgotten some of the commands and skills. I will do as you suggest > and try to find a reso

[nyphp-talk] Seeking A Remote Developer Position

2012-09-06 Thread Joseph Crawford
/uploads/2011/10/resume.pdf http://www.josephcrawford.com/wp-content/uploads/2011/03/resume.doc Thanks, -- Joseph Crawford Jr. Zend Certified Engineer http://www.josephcrawford.com/ 1-781-346-9656 i...@josephcrawford.com ___ New York PHP User Group

Re: [nyphp-talk] Fedex Server Telnet

2012-08-19 Thread Joseph Crawford
Why not open a connection using PHP sockets? On Aug 19, 2012 11:10 AM, "David Roth" wrote: > > > On Sun, Aug 19, 2012 at 10:13 AM, Nicholas Hart wrote: > >> Hi, >> >> I am trying to write a PHP front end for the Fedex Server which uses >> telnet to send/receive shipping data. I am hoping that so

[nyphp-talk] Seeking PHP Contract Work

2012-07-25 Thread Joseph Crawford
helped me out a lot through the years. You can see my resume (a bit outdated) at http://www.josephcrawford.com/ We can discuss rates and project details via phone after 6pm EST. -- Joseph Crawford Jr. Zend Certified Engineer http://www.josephcrawford.com/ i...@josephcrawford.com

Re: [nyphp-talk] Storing form options.

2012-07-11 Thread Joseph Crawford
I would personally store any form options in a database table, I would have a form table and then a form_options table and get all options by form id. Thanks, Joseph Crawford On Wed, Jul 11, 2012 at 4:26 PM, Anthony Wlodarski wrote: > When building lots of forms, irrespective of form size

Re: [nyphp-talk] What PHP tools are you using?

2012-05-30 Thread Joseph Crawford
io I would use Eclipse PDT for my IDE. I write PHP full-time and find that the benefits of code intellisense in my IDE for rapid development outweights a light editor like VIM, however for quick fixes I will use VIM. Thanks, Joseph Crawford Zend Certifie

Re: [nyphp-talk] Learning to program the right way

2012-01-23 Thread Joseph Crawford
Taken from Zend Framework A Beginners Guide which is the most up to date book about Zend Framework which targets ZF 1.10 mysql> CREATE TABLE IF NOT EXISTS user ( -> RecordID INT(4) NOT NULL AUTO_INCREMENT, -> Username VARCHAR(10) NOT NULL, -> Password TEXT NOT NULL, -> PRIMARY KEY (RecordID) -> )

Re: [nyphp-talk] Current PHP developer rates

2011-11-17 Thread Joseph Crawford
ina Anderson > wrote: > THANK YOU and yes, for the record that *is* what I meant. :) > > Kristina > > > On 11/17/2011 3:57 PM, Joseph Crawford wrote: > That makes more sense I think it was just the wording that threw me for a > loop lol > > > On Nov 17, 201

Re: [nyphp-talk] Current PHP developer rates

2011-11-17 Thread Joseph Crawford
ate (not an > increase) if the company she is working for is tight on funds or is a > start-up. > > Matt > > > -----Original Message- > From: Joseph Crawford > Sender: talk-boun...@lists.nyphp.org > Date: Thu, 17 Nov 2011 15:44:38 > To: NYPHP Talk > Reply-To:

Re: [nyphp-talk] Current PHP developer rates

2011-11-17 Thread Joseph Crawford
OH BOY remind me not to hire you :) > it depends on the length of the job, what's involved, how much money they > have... Why does how much money the client has determine what you are going to charge. Sounds to me like you don't have a solid figure on what you feel you are worth and just try

Re: [nyphp-talk] Current PHP developer rates

2011-11-17 Thread Joseph Crawford
as done as they were willing to pay that rate :) Thanks, Joseph Crawford On Nov 17, 2011, at 3:26 PM, Matt Juszczak wrote: >> I could charge $40/hr but take 3 times as long as the person charging $80/hr. > > And I've seen this often. It's very true. > __

[nyphp-talk] XPath Assistance

2011-10-14 Thread Joseph Crawford
ppreciated. Here is my example code: http://codepad.viper-7.com/BOz0Ak Note that my current xpath query fetches ALL log-entry's and not solely the siblings of the current h3 tag Thanks, Joseph Crawford ___ New York PHP Users Group Community Talk Ma

Re: [nyphp-talk] PHP 5 Interfaces

2009-05-26 Thread Joseph Crawford
/interface Cheers, On Tue, May 26, 2009 at 5:02 PM, Joseph Crawford wrote: Guys in the past I have used interfaces and have do not recall hitting this issue. I have the following interface getCurrentPage() - 1; } ... } I keep getting this error. Fatal error: Access type for interface method

[nyphp-talk] PHP 5 Interfaces

2009-05-26 Thread Joseph Crawford
/Applications/MAMP/ htdocs/yp/inc/Pagable.php on line 5 I am not sure what is causing it but if I remove the private keyword then it complains that it must be declared public in the class. Is there a reason I cannot declare a method as being private in the interface? Thanks, Joseph Crawford

Re: [nyphp-talk] [0T] Verizon FIOS -- comments?

2009-05-20 Thread Joseph Crawford
they were not at fault and had all rights to access the utility equipment. I'm sure this would not work at 3am or anything unless there was an emergency but you get the idea. Joseph Crawford On May 20, 2009, at 6:41 PM, Mitch Pirtle wrote: On Wed, May 20, 2009 at 1:06 PM, David K

Re: [nyphp-talk] [0T] Verizon FIOS -- comments?

2009-05-18 Thread Joseph Crawford
gh at some point :) Joseph Crawford On May 18, 2009, at 2:26 PM, David Mintz wrote: Looks like I am going to give Verizon FIOS a shot. Much gratitude to all for the info & advice. -- David Mintz http://davidmintz.org/ The subtle source is clear and bright The tributary streams fl

Re: [nyphp-talk] PHP hosting and standard tool-chain for newbie?

2009-04-23 Thread Joseph Crawford
Coda is nice, also is easy to publish the sites with. It does however require knowledge of hand coding sites, it's not a what you see is what you get. Nice CSS editor also :) On Apr 23, 2009, at 1:35 PM, Michael B Allen wrote: On Thu, Apr 23, 2009 at 12:27 PM, Chris Snyder wrote: On Thu

Re: [nyphp-talk] Non-Profit and Major Corporate PHP Users List

2009-01-30 Thread Joseph Crawford
Anthony, there are tons of major sites out there using PHP, one that i know if is www.ipro.org, I am not sure if they are non profit or not. Joseph Crawford On Jan 30, 2009, at 6:56 PM, Anthony Wlodarski wrote: Can’t really speak on who is using it but can point you to the whitepaper

Re: [nyphp-talk] Ajax UI, where to display a detailed view of a record

2008-12-09 Thread Joseph Crawford
I have always liked the way that ebay motors allows you to search, it uses a sidebar and then allows you to remove items by clicking an X Another method may be that of how politics.com does the login screen using a modal div that greys out the background page. Joseph Crawford On Dec 9

Re: [nyphp-talk] Downloading File Outside of the Root

2008-12-03 Thread Joseph Crawford
Like I said have a php script serve it as a download. Doing it this way allows you to make sure that the user logged in. On Dec 3, 2008, at 3:36 PM, Randal Rust wrote: On Wed, Dec 3, 2008 at 3:33 PM, Ben Sgro <[EMAIL PROTECTED]> wrote: Why not just email them the book (size permitting)?

Re: [nyphp-talk] Downloading File Outside of the Root

2008-12-03 Thread Joseph Crawford
If you want the file to live outside the www that's fine, but i doubt you can do it like you did in the rewrite. I would make the rewrite point to a php script that reads the file then outputs it for download using the appropriate headers etc. On Dec 3, 2008, at 3:23 PM, Randal Rust wrote:

[nyphp-talk] XSL with RSS 2.0

2008-10-30 Thread Joseph Crawford
document and that is when I put the tag into my RSS it set's the mime type to application/xml+xhtml and that is what throws things off. What I need to know is if there is a way to make XSL work while still including the tag. Thanks, Joseph Cra

Re: [nyphp-talk] Converting the pesky MS Word quotes and other characters

2008-10-29 Thread Joseph Crawford
I'm not sure why but neither suggestion seemed to work, here is what I found that does work /** * Remove unwanted MS Word high characters from a string * * @param string $string * @return string $string */ function sanitizeString($string = null) { if(is_null($string)) return false;

[nyphp-talk] Converting the pesky MS Word quotes and other characters

2008-10-29 Thread Joseph Crawford
Has anyone on here found a viable solution? Everything seems to work on the www side of things but as soon as i use the data in an RSS feed it does not seem to like the MS Word characters. Thanks, Joseph Crawford ___ New York PHP Community Talk

Re: [nyphp-talk] [OT] - Politics.com

2008-10-22 Thread Joseph Crawford
There would be no copyright issues if we linked to the source on the details page. On Oct 22, 2008, at 7:57 PM, Steve Manes wrote: Petros Ziogas wrote: You have to click on the "x comments" in order to stay in politics.com , every other link send to the actual story.

Re: [nyphp-talk] [OT] - Politics.com

2008-10-22 Thread Joseph Crawford
Petros, That is the annoyance I was talking about. Could you please click the feedback link in the header and send that to the PM :) They won't change it unless they get user feedback that it needs to change. Thanks, Joseph Crawford On Oct 22, 2008, at 6:49 PM, Petros Ziogas wrot

Re: [nyphp-talk] [OT] - Politics.com

2008-10-22 Thread Joseph Crawford
Michael, Unfortunately no it is not ZF, it is a custom framework that my employer has developed and uses for all their sites. Thanks, Joseph Crawford On Oct 22, 2008, at 4:12 PM, Michael Hernandez wrote: Looks cool. Is it Zend Framework? Or ? --Mike H On Oct 22, 2008, at 4:06 PM

Re: [nyphp-talk] [OT] - Politics.com

2008-10-22 Thread Joseph Crawford
No need to pick, please do. I will make sure all issues are addressed. Thanks, Joseph Crawford On Oct 22, 2008, at 4:11 PM, Steve Manes wrote: Joseph Crawford wrote: There is one minor annoyance for me and I have spoken up about it. While you are on the site in order to get to the detail

Re: [nyphp-talk] [OT] - Politics.com

2008-10-22 Thread Joseph Crawford
Sorry it should be unlocked now. I am not sure what delayed them. I said 3PM they were supposed to have it done at 2:30PM :) Thanks, Joseph Crawford On Oct 22, 2008, at 3:15 PM, Ajai Khattri wrote: On Wed, 22 Oct 2008, Joseph Crawford wrote: Today at 3PM EST a site that I have been

Re: [nyphp-talk] [OT] - Politics.com

2008-10-22 Thread Joseph Crawford
If you feel the same as Nestor and I please click the Feedback link in the header of the site and submit it there :) I would love to see that change but I doubt they will without the user input. Joseph Crawford On Oct 22, 2008, at 1:31 PM, Néstor wrote: I think that when you click on

Re: [nyphp-talk] [OT] - Politics.com

2008-10-22 Thread Joseph Crawford
you to the actual source of the article. If you also find this to be annoying and unclear please send an email to [EMAIL PROTECTED] but this was not my decision :) Thanks, Joseph Crawford On Oct 22, 2008, at 11:52 AM, Darryle Steplight wrote: Hey Joe, Looks like I need a username and passw

Re: [nyphp-talk] [OT] - Politics.com

2008-10-22 Thread Joseph Crawford
Darryle, that will be lifted at 3PM EST today :) On Oct 22, 2008, at 11:52 AM, Darryle Steplight wrote: Hey Joe, Looks like I need a username and password :) On Wed, Oct 22, 2008 at 11:49 AM, Joseph Crawford <[EMAIL PROTECTED]> wrote: I know this is not entirely on topic but I t

[nyphp-talk] [OT] - Politics.com

2008-10-22 Thread Joseph Crawford
last few months. Thanks, -- Joseph Crawford Zend Certified Engineer http://www.josephcrawford.com/ ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http://www.nyphpcon.com

Re: [nyphp-talk] Timeouts ... how to get around it?

2008-10-13 Thread Joseph Crawford
duplicates in the database by setting a UNIQUE on the email column. Doing these things should speed up the site however note that if you check this on every page load it will be resource intensive. also what is $email2Chk is it a string or your array of emails? Thanks, Joseph Crawfor

Re: [nyphp-talk] Freelancing

2008-10-08 Thread Joseph Crawford
The bestr i have used is guru.com but it's hard to get established. Once you get a few jobs it gets easier. On Oct 8, 2008, at 5:09 PM, Ajai Khattri wrote: What sites do people use to bid on freelance PHP projects? -- Aj. ___ New York PHP Commu

Re: [nyphp-talk] Determine if your site has been defaced

2008-10-08 Thread Joseph Crawford
there is a nice os x application that can be used for this, I am not sure if you use OS X though :) http://sunflower.coleharbour.ca/ On Oct 8, 2008, at 4:36 PM, Jeff Siegel wrote: Anyone know of a PHP script that can be run from a cron and which can check whether a website has been defaced

Re: [nyphp-talk] New browsercam group

2008-09-30 Thread Joseph Crawford
they have which is why the queue is so large. Sorry it has been a while since I used the service :) Joseph Crawford On Sep 30, 2008, at 4:25 PM, (Margaret) Michele Waldman wrote: Dude! J I live in CA too long. Browsershots only processes every 30 minutes. You can’t make changes and chec

Re: [nyphp-talk] New browsercam group

2008-09-30 Thread Joseph Crawford
I take it browsershots.org did not fulfill your needs :) On Sep 30, 2008, at 4:19 PM, (Margaret) Michele Waldman wrote: Hi all, I’m starting a browsercam group. I add people to the account and we split the cost of browsercam. Browsercam shows you your website, in up to over 200 browsers. An ab

Re: [nyphp-talk] 3.0.1 Support

2008-09-28 Thread Joseph Crawford
I am not sure if they do mobile devices (i'm sure it would not be difficult) but www.browsershots.org is a free service that I have used in the past. Looking at them now they are quick as they also support Google's new Chrome browser. why spend $40/mo when other places have it free? On S

Re: [nyphp-talk] Search function

2008-09-19 Thread Joseph Crawford
nt? I'm guessing I'm not going to cheaply or quickly write something as sophisticated. Michele -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] ] On Behalf Of Joseph Crawford Sent: Friday, September 19, 2008 6:24 PM To: NYPHP Talk Subject: Re: [nyphp-talk] Sea

Re: [nyphp-talk] Search function

2008-09-19 Thread Joseph Crawford
John, From my understanding this was not something she wanted for site users, I thought she was searching for a string. If you are going to deploy this to users then you don't want to use either method we spoke about and use John's suggestion and use Google Site Search On Sep 19, 2008,

Re: [nyphp-talk] Search function

2008-09-19 Thread Joseph Crawford
(); Joseph Crawford On Sep 19, 2008, at 6:07 PM, (Margaret) Michele Waldman wrote: Would instr get_file_contents be too slow? Michele From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] ] On Behalf Of Joseph Crawford Sent: Friday, September 19, 2008 5:52 PM To: NYPHP Talk Subject: Re: [nyphp-talk

Re: [nyphp-talk] Search function

2008-09-19 Thread Joseph Crawford
If you have SSH access you could use grep, if not write a php script that will exec() the grep command. This is providing the hosts security allows for exec() On Sep 19, 2008, at 5:49 PM, (Margaret) Michele Waldman wrote: Does anyone know of a function or code I could use to quickly search

Re: [nyphp-talk] escrow script

2008-09-04 Thread Joseph Crawford
If you are looking to hire someone you might be better off sending it to the NYPHP Jobs list. On Sep 4, 2008, at 2:25 PM, snir gal wrote: Hi all, I need to add escrow service to application Something similar to all freelance sites. (guru.com) Will appreciate any input. This script is all ove

Re: [nyphp-talk] calculating state taxes?

2008-08-13 Thread Joseph Crawford
Yes this makes sense if you are dealing with NYC but not many other places have county set tax rates ;) If you are dealing with NYC use Ken's suggestion Joseph Crawford On Aug 13, 2008, at 2:50 PM, Kenneth Downs wrote: Susan Shemin wrote: I have a shopping cart and need to calc

Re: [nyphp-talk] calculating state taxes?

2008-08-13 Thread Joseph Crawford
const('TAX_RATE', 0.06); $tax = $total * TAX_RATE; just set your own tax rate, that simple ;) Joseph Crawford On Aug 13, 2008, at 2:46 PM, Susan Shemin wrote: I have a shopping cart and need to calculate state taxes on the products for the state the business is in. Is there so

Re: [nyphp-talk] Scour.com invite from Joseph Crawford

2008-07-24 Thread Joseph Crawford
Ben, I am not sure what you mean. I imported my google contacts into scour and told it to only send to certain contacts but it sent to ALL contacts. Sorry for the spam Thanks, Joseph Crawford On Jul 24, 2008, at 2:42 PM, Ben Sgro wrote: Hey Joseph, You seem to have subscribed my email

Re: [nyphp-talk] Scour.com invite from Joseph Crawford

2008-07-24 Thread Joseph Crawford
Yea sorry about that Mitch :) This is not typical of me and YOU know that. Thanks, Joseph Crawford On Jul 24, 2008, at 11:05 AM, Mitch Pirtle wrote: I was starting to wonder about you Joe - you didn't seem the type to send an email and then send it again; and then send it

Re: [nyphp-talk] Scour.com invite from Joseph Crawford

2008-07-24 Thread Joseph Crawford
haha Rolan, I hear ya there. I dunno why it sent to everyone like it did, seems kinda retarded to me. Joseph Crawford On Jul 24, 2008, at 10:41 AM, Rolan Yang wrote: Hrm.. another web 2.0'ism is about to be born. We already have phishing, vishing (voip based phishing). I'd li

[nyphp-talk] Scour.com invite from Joseph Crawford

2008-07-24 Thread Joseph Crawford
redit card or airline points just for searching! Hit the link below to join for free and we will both get points! http://scour.com/invite/jcrawford/ I know you'll like it! - Joseph Crawford ___ New York PHP Community Talk Mailing List http://lists

Re: [nyphp-talk] Scour.com invite from Joseph Crawford

2008-07-24 Thread Joseph Crawford
Scott, This was not intentional. I imported my google contacts, choose which addresses to NOT send to and YET it STILL sent to them. I apologize this was not done on purpose. Thanks, Joseph Crawford On Jul 24, 2008, at 10:17 AM, Scott Mattocks wrote: Do you really plan to spam every list

[nyphp-talk] Seeking Designer Partner

2008-06-16 Thread Joseph Crawford
this project. If you are a good designer and are interested in hearing more about this project please email me back and I will go over the basic idea of what the site will be, etc. Thanks, Joseph Crawford http://josephcrawford.com/___ New York PHP

Re: [nyphp-talk] New York PHP on LinkedIn and Flickr

2008-05-29 Thread Joseph Crawford
I joined the Community one as there were more members :) On May 29, 2008, at 3:41 PM, Webmaster wrote: It looks as though we are forming 2 LinkedIn groups One entitled "NYPHP" http://www.linkedin.com/e/gis/81366/4871173BBA17 and One entitled "NYPHP Community" http://www.linkedin.com/e/gis/110

Re: [nyphp-talk] New York PHP on LinkedIn and Flickr

2008-05-29 Thread Joseph Crawford
I joined, pending approval glad to see nyphp on LinkedIn On May 29, 2008, at 12:05 PM, Webmaster wrote: Brian D. wrote: There are some new ways to show your involvement in the New York PHP Community! LinkedIn Group - If you're on LinkedIn joining the NYPHP Community group will allow you

Re: [nyphp-talk] Why IT Sucks

2008-04-17 Thread Joseph Crawford
from home. There are times I just do not want to work and have to force myself to do so. It is easier to say hey i am not working today when you don't have to worry about the boss face to face etc. Joseph Crawford On Apr 17, 2008, at 4:25 PM, Jerry B. Altzman wrote: on 2008-04-17

Re: [nyphp-talk] Why IT Sucks

2008-04-17 Thread Joseph Crawford
Jerry, with the days of video conferencing i really do not see the point of going in-house for anything. My employer likes to bring me down here so i go with the flow. Joseph Crawford On Apr 17, 2008, at 3:52 PM, Jerry B. Altzman wrote: on 2008-04-17 15:46 Tim Lieberman said the

Re: [nyphp-talk] Why IT Sucks

2008-04-17 Thread Joseph Crawford
t you want when you want and not actually looking at it as a real job because the boss cannot see their every move. Joseph Crawford ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations O

Re: [nyphp-talk] Passing JAVASCRIPT variables to PHP

2008-04-04 Thread Joseph Crawford
XAJAX is also something worth looking into. On Apr 4, 2008, at 10:01 AM, Brian D. wrote: I highly recommend jQuery. I've used prototype/scriptaculous for a while now but about three months ago I started working on a client's project that was already using jQuery. I was sold on it and I definite

Re: [nyphp-talk] Distance PHP training?

2008-03-20 Thread Joseph Crawford
Tedd, I have taken both oreilly and zend's courses (not the php one for oreilly) and I must say that Zend is a much better way to learn. ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Present

Re: [nyphp-talk] Distance PHP training?

2008-03-20 Thread Joseph Crawford
tedd, check out zend's courses on www.zend.com On Mar 20, 2008, at 11:39 AM, tedd wrote: At 9:09 PM -0400 3/19/08, leam wrote: O'Reilly has their PHP and MySQL training. I have a work sponsored business re-imbursement of $250 twice per year for training (staggeringly big budget, eh?). Anyone

Re: [nyphp-talk] Thank you NYPhP -- Kerbeaz launches!

2008-02-15 Thread Joseph Crawford
Yea I didn't get it at first either, I had to read the FAQ to understand it, maybe something should be on the front page to make people more aware so that they don't have to digg to find out what it is all about. Hows it going Rolan? On Feb 14, 2008, at 9:43 PM, Rolan Yang wrote: Cliff

Re: [nyphp-talk] Thank you NYPhP -- Kerbeaz launches!

2008-02-14 Thread Joseph Crawford
nah i think the name cliff came up somewhere :) On Feb 14, 2008, at 2:04 PM, Cliff Hirsch wrote: On 2/14/08 1:48 PM, "Joseph Crawford" <[EMAIL PROTECTED]> wrote: That is an interesting idea now you just have to get the rich folk with too much money on there to reward for s

Re: [nyphp-talk] Thank you NYPhP -- Kerbeaz launches!

2008-02-14 Thread Joseph Crawford
That is an interesting idea now you just have to get the rich folk with too much money on there to reward for stuff. seriously someone want to pay me to brush my dog everyday for a week, ill take it lol. It is an interesting idea and I hope it takes off. Joseph Crawford On Feb 14, 2008

Re: [nyphp-talk] Design Firm Recommendations

2007-09-26 Thread Joseph Crawford
www.jvmediadesign.com I've worked with these guys for years now. -- Joseph Crawford Jr. Zend Certified Engineer http://www.josephcrawford.com/ 1-315-820-4244 [EMAIL PROTECTED] ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/ma

Re: [nyphp-talk] Books & magazines

2007-09-08 Thread Joseph Crawford
i had php|architect and loved it but there is also PHP Magazine which I never subscribed to. -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.codebowl.com/ Blog: http://www.josephcrawford.com/ 1-802-671-2021 [EMAIL PROTECTED

Re: [nyphp-talk] Framework poll

2007-08-28 Thread Joseph Crawford
that last one threw me off, the only word i could think of was WOW -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.codebowl.com/ Blog: http://www.josephcrawford.com/ 1-802-671-2021 [EMAIL PROTECTED] ___ New York PHP

Re: [nyphp-talk] PHP a Toy?

2007-06-29 Thread Joseph Crawford
> > Show Your Participation in New York PHP > http://www.nyphp.org/show_participation.php ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Sho

Re: [nyphp-talk] PHP a Toy?

2007-06-07 Thread Joseph Crawford
ity Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.code

Re: [nyphp-talk] Database Design Patterns

2007-05-11 Thread Joseph Crawford
Jon, AFAIK CI does not have this ability, that's the issue with CI is that it is maintained by 1 person and not a community project. -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.codebowl.com/ Blog: http://www.josephcrawford.com/ 1-802-671-2021 [

Re: [nyphp-talk] Database Design Patterns

2007-05-11 Thread Joseph Crawford
joins are done for you as you put it. -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.codebowl.com/ Blog: http://www.josephcrawford.com/ 1-802-671-2021 [EMAIL PROTECTED] ___ New York PHP Community Talk Mailing List http

[nyphp-talk] Database Design Patterns

2007-05-11 Thread Joseph Crawford
nsight on the best practice when it comes to using these patterns. Any insight would be greatly appreciated. -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.codebowl.com/ Blog: http://www.josephcrawford.com/ 1-802-671-2021 [EMAIL PRO

Re: [nyphp-talk] PHP Sessions, Expiration, and all that

2007-05-03 Thread Joseph Crawford
You will want to look at the gc method for clearing the data. I am sure that you can set a lifetime in the php.ini as well but you should look into the custom session handler and see if the flexability meets your needs. -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc

Re: [nyphp-talk] PHP Sessions, Expiration, and all that

2007-05-03 Thread Joseph Crawford
custom handler allows much better flexability over the built in sessions. -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.codebowl.com/ Blog: http://www.josephcrawford.com/ 1-802-671-2021 [EMAIL PROTECTED] ___ New York

Re: [nyphp-talk] Overriding Array's

2007-05-03 Thread Joseph Crawford
[$key]) ? $a[$key] : array()), (isset($b[$key]) ? $b[$key] : array())); } // return the new, merged array return $new; } -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.codebowl.com/ Blog: http://www.jos

Re: [nyphp-talk] Overriding Array's

2007-05-02 Thread Joseph Crawford
ok let me try to clarify myself. I somehow need to loop over all elements and see if any of them contain numeric indexes like the stylesheets does. If it does we need to add the new element from the secondary array to the first. If it get's to the bottom element (without finding a numeric key f

Re: [nyphp-talk] Overriding Array's

2007-05-02 Thread Joseph Crawford
end result to add the values to the array since it is numeric keys and not replace. -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.codebowl.com/ Blog: http://www.josephcrawford.com/ 1-802-671-2021 [EMAIL PROTECTED] ___ N

[nyphp-talk] Overriding Array's

2007-05-02 Thread Joseph Crawford
t[$key], $page[$key]); else { if(isset($page[$key]) && $page[$key] !== "") $default[$key] = $val; } } return $default; } Any assistance

Re: [nyphp-talk] OT - mod_rewrite Assistance

2007-04-13 Thread Joseph Crawford
ne http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.codebowl.com/ Blog: http://www.josephcrawford.com/ 1-802-671-2021 [EMAIL PROTECTED] _

[nyphp-talk] OT - mod_rewrite Assistance

2007-04-11 Thread Joseph Crawford
://dev.sub.domain.com/folder/ in the background it will actually be calling http://dev.sub.domain.com/sub/folder/ I hope I have explained the issues clearly. Any help will be appreciated. -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.codebowl.com/ Blog: http

Re: [nyphp-talk] Single Sign On Questions

2007-04-09 Thread Joseph Crawford
. Although I am sure they would expand in the future I am not sure a system like this will be cost effective for them. -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.codebowl.com/ Blog: http://www.josephcrawford.com/ 1-802-671-2021 [EMAIL PROTECTED

[nyphp-talk] Single Sign On Questions

2007-04-09 Thread Joseph Crawford
will get into. Any ideas on how else to accomplish something like this? -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.codebowl.com/ Blog: http://www.josephcrawford.com/ 1-802-671-2021 [EMAIL PROTECTED] ___ New York PHP

Re: [nyphp-talk] Single Signon Multiple Domains

2007-03-27 Thread Joseph Crawford
I actually have George's book beu never had time to flip through it, guess this is as good a time as any. Thanks for the tip that it is between the covers :) -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.codebowl.com/ Blog: http://www.josephcrawford.c

Re: [nyphp-talk] Single Signon Multiple Domains

2007-03-26 Thread Joseph Crawford
header or something is that correct? On 3/26/07, Michael B Allen <[EMAIL PROTECTED]> wrote: On Mon, 26 Mar 2007 22:03:07 -0400 "Joseph Crawford" <[EMAIL PROTECTED]> wrote: > Mike, > > If i cam correct you cannot use cookies in this manner because > domainB

Re: [nyphp-talk] Single Signon Multiple Domains

2007-03-26 Thread Joseph Crawford
You cannot rely on the IP Address. Think about AOL, they use a proxy server and the users IP can change without a reboot of the modem. Also think about a computer lab that is on 1 IP address. -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.codebowl.com/ Blog

Re: [nyphp-talk] Single Signon Multiple Domains

2007-03-26 Thread Joseph Crawford
right but how will i know that it is the same user without being able to store a hash in a cookie etc. I know i can store the data for the user but associating the user with that data again could be tough -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http

[nyphp-talk] Single Signon Multiple Domains

2007-03-26 Thread Joseph Crawford
ends with passing a querystring in your links. Thanks, -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.codebowl.com/ Blog: http://www.josephcrawford.com/ 1-802-671-2021 [EMAIL PROTECTED] ___ New York PHP Community Talk

Re: [nyphp-talk] PHP on a Corporate IntrAnet w/ AD

2007-03-20 Thread Joseph Crawford
hmm wonder if there is anything like this for *nix Good work on this btw looks like it will be of use to people who run windows active directory. -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.codebowl.com/ Blog: http://www.josephcrawford.com/ 1-802-671-2021

Re: [nyphp-talk] Recursive Help?

2007-03-15 Thread Joseph Crawford
Andy, Thanks that was the issue duh I am not worried about keystrokes i use Zend Stduio and created a template ;) i type prde and it pushes out the code for that ;D Thanks Again, -- Joseph Crawford Jr. Zend Certified Engineer Codebowl Solutions, Inc. http://www.codebowl.com/ Blog: http

  1   2   >