You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
(9) |
May
(28) |
Jun
(54) |
Jul
(68) |
Aug
(34) |
Sep
(20) |
Oct
(62) |
Nov
(58) |
Dec
(77) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(91) |
Feb
(101) |
Mar
(73) |
Apr
(107) |
May
(56) |
Jun
(43) |
Jul
(68) |
Aug
(31) |
Sep
(35) |
Oct
(50) |
Nov
(20) |
Dec
(37) |
2004 |
Jan
(17) |
Feb
(3) |
Mar
(2) |
Apr
(7) |
May
(3) |
Jun
(11) |
Jul
(8) |
Aug
(22) |
Sep
(10) |
Oct
(9) |
Nov
(17) |
Dec
(6) |
2005 |
Jan
(14) |
Feb
(11) |
Mar
(6) |
Apr
(30) |
May
(17) |
Jun
(57) |
Jul
(18) |
Aug
(18) |
Sep
(32) |
Oct
(49) |
Nov
(19) |
Dec
(40) |
2006 |
Jan
(48) |
Feb
(68) |
Mar
(74) |
Apr
(92) |
May
(90) |
Jun
(60) |
Jul
(25) |
Aug
(47) |
Sep
(36) |
Oct
(64) |
Nov
(57) |
Dec
(21) |
2007 |
Jan
(74) |
Feb
(24) |
Mar
(49) |
Apr
(37) |
May
(56) |
Jun
(27) |
Jul
(23) |
Aug
(24) |
Sep
(24) |
Oct
(58) |
Nov
(13) |
Dec
(9) |
2008 |
Jan
(41) |
Feb
(16) |
Mar
(53) |
Apr
(19) |
May
(53) |
Jun
(20) |
Jul
(44) |
Aug
(12) |
Sep
(19) |
Oct
(22) |
Nov
(64) |
Dec
(14) |
2009 |
Jan
(16) |
Feb
(37) |
Mar
(30) |
Apr
(24) |
May
(3) |
Jun
(14) |
Jul
(39) |
Aug
(30) |
Sep
(38) |
Oct
(10) |
Nov
(9) |
Dec
(30) |
2010 |
Jan
(27) |
Feb
(9) |
Mar
(8) |
Apr
(38) |
May
(17) |
Jun
(2) |
Jul
(15) |
Aug
(3) |
Sep
(9) |
Oct
(3) |
Nov
(14) |
Dec
(6) |
2011 |
Jan
(1) |
Feb
(14) |
Mar
(18) |
Apr
(7) |
May
(3) |
Jun
(5) |
Jul
(3) |
Aug
|
Sep
(3) |
Oct
(3) |
Nov
(3) |
Dec
(2) |
2012 |
Jan
(2) |
Feb
(2) |
Mar
(1) |
Apr
|
May
(2) |
Jun
(1) |
Jul
(2) |
Aug
(2) |
Sep
(1) |
Oct
(4) |
Nov
(5) |
Dec
|
2013 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Jason R. <ja...@ho...> - 2008-10-08 12:55:53
|
couldn't you just do a grep on the filesystem to list the class names? i.e.: grep -r "class " Neil Rest wrote: > I'm crawling my way through a system which was built by a succession of Indians . . . I can see what their classes told them to do, what they didn't understand, and what they forgot. Today, I began running into classes with no relation between the name of the class and the name of the .php file which defined it. > Does anyone have any good (free or cheap) suggestions for a mill to feed stuff into which will list class and function definitions, and calls? > > > Neil > -- > Nei...@rc... > > The point of public relations slogans like "Support our troops" is that they don't mean anything... That's the whole point of good propaganda. You want to create a slogan that nobody's going to be against, and everybody's going to be for. Nobody knows what it means, because it doesn't mean anything. Its crucial value is that it diverts your attention from a question that does mean something: Do you support our policy? That's the one you're not allowed to talk about. > -- Noam Chomsky > > Neil Rest > -- > Nei...@rc... > > Decisions by the Secretary pursuant to the authority of this Act are non-reviewable and committed to agency discretion, and may not be reviewed by any court of law or any administrative agency. > -- Article 8 of the trillion dollar bailout > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss |
From: Jason R. <ja...@ho...> - 2008-10-08 12:55:04
|
sorry didnt read fully this will give you a complete inventory of all classes and vars and methods in the filesystem (just typed this in email without testing, you may need to tweak it to fit your environment): echo '<?php' > all_files_list.php find ./ -name "*.php" |awk '{print "include "$1";"}' >>all_files_list.php grep -r "class " *.php | tr -d '}'|awk '{print "$new"$2" = new "$2"();"}' >> all_files_list.php grep -r "class " *.php | tr -d '}'|awk '{print "print_r(get_class_methods(new "$2"());"}' >> all_files_list.php grep -r "class " *.php | tr -d '}'|awk '{print "print_r(get_class_vars(new "$2"());"}' >> all_files_list.php echo '?>' >> all_files_list.php Neil Rest wrote: > I'm crawling my way through a system which was built by a succession of Indians . . . I can see what their classes told them to do, what they didn't understand, and what they forgot. Today, I began running into classes with no relation between the name of the class and the name of the .php file which defined it. > Does anyone have any good (free or cheap) suggestions for a mill to feed stuff into which will list class and function definitions, and calls? > > > Neil > -- > Nei...@rc... > > The point of public relations slogans like "Support our troops" is that they don't mean anything... That's the whole point of good propaganda. You want to create a slogan that nobody's going to be against, and everybody's going to be for. Nobody knows what it means, because it doesn't mean anything. Its crucial value is that it diverts your attention from a question that does mean something: Do you support our policy? That's the one you're not allowed to talk about. > -- Noam Chomsky > > Neil Rest > -- > Nei...@rc... > > Decisions by the Secretary pursuant to the authority of this Act are non-reviewable and committed to agency discretion, and may not be reviewed by any court of law or any administrative agency. > -- Article 8 of the trillion dollar bailout > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss |
From: Jough D. <jou...@gm...> - 2008-10-08 12:50:48
|
Is the code documented at all? If so, you could run it through PHP Documentor (http://phpdoc.org) to generate API documentation. Even if it's not documented/commented, PHP Doc may be able to generate something useful for you for free. Of course, you can always iterate through the directories, use the Reflection classes to show the members, methods, and parameters of each class (hopefully assuming one file = one class) and build your own documentation. http://us.php.net/reflection On Tue, Oct 7, 2008 at 10:01 PM, Neil Rest <Nei...@rc...> wrote: > I'm crawling my way through a system which was built by a succession of Indians . . . I can see what their classes told them to do, what they didn't understand, and what they forgot. Today, I began running into classes with no relation between the name of the class and the name of the .php file which defined it. > Does anyone have any good (free or cheap) suggestions for a mill to feed stuff into which will list class and function definitions, and calls? |
From: <dav...@ce...> - 2008-10-08 12:34:04
|
Hello, I will be out of the office from October 3rd through October 7th. I will be checking email, but please allow time for my response. If you need immediate assistance in my absence, please contact one of the following people: SALES: Ilyssa Cohen, ily...@ce..., or call 800-790-6597 ext 709 BILLING: Andrew Nolan, and...@ce..., or call 800-790-6597 ext 708 TECHNICAL ISSUES: Trevor Oldak, tre...@ce..., or call 800-790-6597 ext 710 Thanks and I look forward to returning your message when I am able to do so. Best, David Wachs |
From: Neil R. <Nei...@rc...> - 2008-10-08 03:01:52
|
I'm crawling my way through a system which was built by a succession of Indians . . . I can see what their classes told them to do, what they didn't understand, and what they forgot. Today, I began running into classes with no relation between the name of the class and the name of the .php file which defined it. Does anyone have any good (free or cheap) suggestions for a mill to feed stuff into which will list class and function definitions, and calls? Neil -- Nei...@rc... The point of public relations slogans like "Support our troops" is that they don't mean anything... That's the whole point of good propaganda. You want to create a slogan that nobody's going to be against, and everybody's going to be for. Nobody knows what it means, because it doesn't mean anything. Its crucial value is that it diverts your attention from a question that does mean something: Do you support our policy? That's the one you're not allowed to talk about. -- Noam Chomsky Neil Rest -- Nei...@rc... Decisions by the Secretary pursuant to the authority of this Act are non-reviewable and committed to agency discretion, and may not be reviewed by any court of law or any administrative agency. -- Article 8 of the trillion dollar bailout |
From: <dav...@ce...> - 2008-10-07 13:11:02
|
Hello, I will be out of the office from October 3rd through October 7th. I will be checking email, but please allow time for my response. If you need immediate assistance in my absence, please contact one of the following people: SALES: Ilyssa Cohen, ily...@ce..., or call 800-790-6597 ext 709 BILLING: Andrew Nolan, and...@ce..., or call 800-790-6597 ext 708 TECHNICAL ISSUES: Trevor Oldak, tre...@ce..., or call 800-790-6597 ext 710 Thanks and I look forward to returning your message when I am able to do so. Best, David Wachs |
From: Matthew L. <ma...@le...> - 2008-10-06 18:03:13
|
You are invited to attend Drupal Camp Chicago. http://drupalcampchicago.org Who/Why: For over 2 years Chicago Drupal has truly highlighted the benefits of an open source initiative. We have built resourceful bridges between many local Chicago establishments including non-profits, entrepreneurs, Drupal development companies, independent consultants, hobbyist, and others in the mid-west. Our goal for this Drupal Camp is to bring everyone together for open communication, education, fun, and industry networking. What: An attendee-driven format with advanced resources available make this event truly unique. Need help with a problem, looking for work, or looking to hire Drupal talent? Someone can find a solution at Drupal Camp Chicago. Presentations for beginners and advanced topics will run simultaneously throughout both days. All skill levels are welcomed and laptops are encouraged. Seating is limited, register now - http://drupalcampchicago.org/user/register Where/When: UIC Innovation Center 1240 W. Harrison Chicago, IL 60607 (312) 355-5567 October Friday 24 & Saturday 25th 9am-6pm http://tinyurl.com/mapDCC Pricing: *Pre-Registration for 2-day event: $20 *Volunteering is fun! Contact us *Exception: Participants can request (in...@Dr...) a scholarship and explain their circumstances. Sponsor: *Individual Support, $50 *Community Support, $200 *Professional Support, $500 *Event Sponsors, $1000 Contact us to let us know your level of commitment - http://drupalcampchicago.org/contact Speaker: *Interested in presenting? please submit a request - http://drupalcampchicago.org/wiki *Highlight your Drupal knowledge to the mid-west *Share your experience and contribute to the growth of Drupal http://cdmug.org http://drupalcampchicago.org |
From: <dav...@ce...> - 2008-10-06 12:13:20
|
Hello, I will be out of the office from October 3rd through October 7th. I will be checking email, but please allow time for my response. If you need immediate assistance in my absence, please contact one of the following people: SALES: Ilyssa Cohen, ily...@ce..., or call 800-790-6597 ext 709 BILLING: Andrew Nolan, and...@ce..., or call 800-790-6597 ext 708 TECHNICAL ISSUES: Trevor Oldak, tre...@ce..., or call 800-790-6597 ext 710 Thanks and I look forward to returning your message when I am able to do so. Best, David Wachs |
From: <dav...@ce...> - 2008-10-05 12:09:11
|
Hello, I will be out of the office from October 3rd through October 7th. I will be checking email, but please allow time for my response. If you need immediate assistance in my absence, please contact one of the following people: SALES: Ilyssa Cohen, ily...@ce..., or call 800-790-6597 ext 709 BILLING: Andrew Nolan, and...@ce..., or call 800-790-6597 ext 708 TECHNICAL ISSUES: Trevor Oldak, tre...@ce..., or call 800-790-6597 ext 710 Thanks and I look forward to returning your message when I am able to do so. Best, David Wachs |
From: <dav...@ce...> - 2008-10-04 18:20:27
|
Hello, I will be out of the office from October 3rd through October 7th. I will be checking email, but please allow time for my response. If you need immediate assistance in my absence, please contact one of the following people: SALES: Ilyssa Cohen, ily...@ce..., or call 800-790-6597 ext 709 BILLING: Andrew Nolan, and...@ce..., or call 800-790-6597 ext 708 TECHNICAL ISSUES: Trevor Oldak, tre...@ce..., or call 800-790-6597 ext 710 Thanks and I look forward to returning your message when I am able to do so. Best, David Wachs |
From: <Mar...@na...> - 2008-10-01 22:16:52
|
I will be out of the office starting 10/01/2008 and will not return until 10/06/2008. I can be reached on my cell phone at 312-848-9843. Thank you! Best Regards, Marty Murphy ________________________________________________________________________ This e-mail and its attachments may contain Manpower Inc. proprietary information, which is PRIVILEGED, CONFIDENTIAL, or subject to COPYRIGHT belonging to Manpower Inc. This e-mail is intended solely for the use of the individual or entity to which it is addressed. If you are not the intended recipient of this e-mail, or the employee or agent responsible for delivering this e-mail to the intended recipient, you are hereby notified that any dissemination, distribution, copying, or action taken in relation to the contents of and attachments to this e-mail is STRICTLY PROHIBITED and may be UNLAWFUL. If you have received this e-mail in error, please notify the sender immediately and permanently delete the original and any copy of this e-mail and any printout. Thank you. ______________________________________________________________________ This email has been scanned by the MessageLabs Email Security System. For more information please visit http://www.messagelabs.com/email ______________________________________________________________________ |
From: <Mar...@na...> - 2008-10-01 20:42:57
|
I will be out of the office starting 10/01/2008 and will not return until 10/06/2008. I can be reached on my cell phone at 312-848-9843. Thank you! Best Regards, Marty Murphy ________________________________________________________________________ This e-mail and its attachments may contain Manpower Inc. proprietary information, which is PRIVILEGED, CONFIDENTIAL, or subject to COPYRIGHT belonging to Manpower Inc. This e-mail is intended solely for the use of the individual or entity to which it is addressed. If you are not the intended recipient of this e-mail, or the employee or agent responsible for delivering this e-mail to the intended recipient, you are hereby notified that any dissemination, distribution, copying, or action taken in relation to the contents of and attachments to this e-mail is STRICTLY PROHIBITED and may be UNLAWFUL. If you have received this e-mail in error, please notify the sender immediately and permanently delete the original and any copy of this e-mail and any printout. Thank you. ______________________________________________________________________ This email has been scanned by the MessageLabs Email Security System. For more information please visit http://www.messagelabs.com/email ______________________________________________________________________ |
From: Walter T. <php...@to...> - 2008-10-01 06:40:27
|
Quoting Walter Torres <php...@to...>: > Anyway, todays message is weeks old and out of date. Well, seems this message (looking for work) is not out of date after all... Due to "economic issues" I am ISO a "real gig" again. So, if anyone hears of anything, please let me know, I'd appreciate it. Thanks walter |
From: Trevor O. <tr...@gm...> - 2008-09-30 15:42:55
|
Hey, everyone, sorry to send another email on this, but we're still looking for a PHP developer * RECRUITERS NEED NOT CALL, NO THANK YOU, WE'RE NOT INTERESTED* The company I work for (Cellit) is looking for another PHP developer, so if you are a guy (or gal!), or know a guy, or know a guy who knows a guy who is well-versed with PHP, HTML/CSS/JavaScript, MySql, unix, etc., send me an email. About Cellit: Cellit is a marketing company that uses text messages to connect businesses with clients. Example: Chicago Tribune wanted people to be able to text in for more info on their classified jobs section. We've done similar for dozens of other clients. IKEA wanted people to be able to text in for coupons on their cell phone. Again, we've done similar for dozens of other clients. What you would expect working here: A very small, but stable and resilient company TONS of responsibility, but lots of satisfaction of seeing your work advertised on TV, newspapers, the internet, the el, billboards, etc. Fast pace, lots of variety in the projects you work on. Sometimes you gotta fly by the seat of your pants to meet deadlines. I can't say what the pay will be, because I don't know, but I will say we pay well and have decent benefits (health, gym membership, 401k) If you have any questions, send me an email. Thanks Trevor Oldak Lead Engineer Cellit, LLC |
From: derby <der...@gm...> - 2008-09-16 06:03:55
|
funny. On Sep 15, 2008, at 5:12 PM, Neil Young wrote: > Yikes. Luckily he is looking for a coding job and not a sys admin > job. ;) > > Neil > > > Walter Torres wrote: >> Wow! >> >> It seems my mail server is WAY behind! >> >> I have a few accounts that pass through different mail servers. The >> message that was "sent" today (or at least it came across the list >> today) was sent sometime ago. It seems that this mail server (a >> friends home linux box) has been having some issues and has finally >> decided to send mail out. >> >> I received dozens of messages today for this account, and I see >> several listserver messages show up that was sent weeks ago. I'm >> still >> going through about 2 hundred messages that just showed up this >> afternoon! >> >> Anyway, todays message is weeks old and out of date. >> >> Sorry, Walter >> >> >> >> --------------------------------------------------------------------- >> ---- >> This SF.Net email is sponsored by the Moblin Your Move Developer's >> challenge >> Build the coolest Linux based applications with Moblin SDK & win >> great prizes >> Grand prize is a trip for two to an Open Source event anywhere in >> the world >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> _______________________________________________ >> chiPHPug-discuss mailing list >> chi...@li... >> https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss >> > > > ---------------------------------------------------------------------- > --- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win > great prizes > Grand prize is a trip for two to an Open Source event anywhere in > the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss |
From: Arlo L. <ar...@ar...> - 2008-09-15 17:26:00
|
Congratulations to Ted Stresen-Reuter for having some of his work included in the latest version of BBEdit! I just installed it this weekend and noticed his name in the release notes: http://www.barebones.com/support/bbedit/arch_bbedit9.html Cheers, -Arlo _______________________________ Arlo Leach 773.769.6106 http://arlomedia.com Make friends with your computer http://compyschool.com |
From: Neil Y. <ny...@as...> - 2008-09-15 15:04:14
|
Yikes. Luckily he is looking for a coding job and not a sys admin job. ;) Neil Walter Torres wrote: > Wow! > > It seems my mail server is WAY behind! > > I have a few accounts that pass through different mail servers. The > message that was "sent" today (or at least it came across the list > today) was sent sometime ago. It seems that this mail server (a > friends home linux box) has been having some issues and has finally > decided to send mail out. > > I received dozens of messages today for this account, and I see > several listserver messages show up that was sent weeks ago. I'm still > going through about 2 hundred messages that just showed up this > afternoon! > > Anyway, todays message is weeks old and out of date. > > Sorry, Walter > > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > |
From: Walter T. <php...@to...> - 2008-09-15 15:02:01
|
Wow! It seems my mail server is WAY behind! I have a few accounts that pass through different mail servers. The message that was "sent" today (or at least it came across the list today) was sent sometime ago. It seems that this mail server (a friends home linux box) has been having some issues and has finally decided to send mail out. I received dozens of messages today for this account, and I see several listserver messages show up that was sent weeks ago. I'm still going through about 2 hundred messages that just showed up this afternoon! Anyway, todays message is weeks old and out of date. Sorry, Walter |
From: Chad P. <ch...@cr...> - 2008-09-15 13:18:01
|
Hi Walter, crowdSPRING is hiring a Senior Software Engineer (LAMP). Below is a URL to our job listing, please reply with your resume if you are interested. I look forward to hearing from you. http://chicago.craigslist.org/chc/eng/815816861.html Best, Chad --- Chad Paulson Senior Software Engineer crowdSPRING http://crowdspring.com On Mon, Sep 15, 2008 at 2:14 PM, Walter Torres <php...@to...> wrote: > Do you know anyone who could use someone with: > * 15 years of Internet development experience > * 8 years architecting large scale systems for Fortune 500 companies > * Process and workflow analysis > * Lead teams upwards of 20 members across 4 states (and a pair in > Canada!) > * designed and built CMS (content) before CMS was coined > * designed and built CRMS (contact) before CRMS was coined > * designed and build ASP(type) systems before Microsoft thought of it > * designed and built database driven sites before PHP and mySQL existed > * 10 years of Javascript, way before AJAX and JASON > * 5 years of intense mySQL and PHP OOP experience > * knowledgeable within the MVC paradigm > * Built and refactored dozens of systems for startups and > established alike. > > No: > * I'm not 28/32 > * I don't work for $35k or $25/hr > * I don't work less than 45 hours a week > * I'm not: (Yes, this list has been seen in more than 1 ad!) > * a mySQL DBA - I can configure, design and script the DB and > SQL. > * do master SQL - can craft complicated SQL, but not off the top of > my head and I know when to call in the big guns. > * "rock star" CSS - I know my way around enough to get it done, and I > know enough to know what I don't know and when to > call in a real guru. > * "Web Designer" - I'm a developer, not a graphics person. I know > UI, > and UIX, let me work with an excellent designer > and we can create some kick-ass sites > * "Captain Flash" - Backend has been my focus > * "Major AJAX" - yes I can do it, have done it, but not my focus > * System Admin - yes I can use Linux, I can maintain Windows, > configure > and admin Apache > > Seems that every opportunity I've come across is for a "Master of all > Trades". I've met many talented people in my years, but I've never met > a "Master Of It All." I'm damn good, but I'm not that good. > > So, if anyone knows of an opportunity for a senior/lead developer, > systems architect, someone who has a need for experience, please let > me know. > > Walter > > > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > |
From: Kevin W. <KW...@pr...> - 2008-09-15 12:45:48
|
Walter, I currently have a few .NET Developer job opportunities, but I do not have any in PHP. If you are interested in .NET Developer positions please give me a call at 312-443-6157. Sincerely, Kevin Welch Recruiter Prestige Staffing 105 West Adams Street, Suite 1410 - Chicago, IL 60603 Voice 312-443-6157 - Fax 312-345-1941 kw...@pr... - www.prestigestaffing.com -----Original Message----- From: chi...@li... [mailto:chi...@li...] On Behalf Of Walter Torres Sent: Monday, September 15, 2008 2:15 PM To: chi...@li... Subject: [chiPHPug-discuss] ISO (in search of) a meaningful project... Do you know anyone who could use someone with: * 15 years of Internet development experience * 8 years architecting large scale systems for Fortune 500 companies * Process and workflow analysis * Lead teams upwards of 20 members across 4 states (and a pair in Canada!) * designed and built CMS (content) before CMS was coined * designed and built CRMS (contact) before CRMS was coined * designed and build ASP(type) systems before Microsoft thought of it * designed and built database driven sites before PHP and mySQL existed * 10 years of Javascript, way before AJAX and JASON * 5 years of intense mySQL and PHP OOP experience * knowledgeable within the MVC paradigm * Built and refactored dozens of systems for startups and established alike. No: * I'm not 28/32 * I don't work for $35k or $25/hr * I don't work less than 45 hours a week * I'm not: (Yes, this list has been seen in more than 1 ad!) * a mySQL DBA - I can configure, design and script the DB and SQL. * do master SQL - can craft complicated SQL, but not off the top of my head and I know when to call in the big guns. * "rock star" CSS - I know my way around enough to get it done, and I know enough to know what I don't know and when to call in a real guru. * "Web Designer" - I'm a developer, not a graphics person. I know UI, and UIX, let me work with an excellent designer and we can create some kick-ass sites * "Captain Flash" - Backend has been my focus * "Major AJAX" - yes I can do it, have done it, but not my focus * System Admin - yes I can use Linux, I can maintain Windows, configure and admin Apache Seems that every opportunity I've come across is for a "Master of all Trades". I've met many talented people in my years, but I've never met a "Master Of It All." I'm damn good, but I'm not that good. So, if anyone knows of an opportunity for a senior/lead developer, systems architect, someone who has a need for experience, please let me know. Walter ------------------------------------------------------------------------ - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ chiPHPug-discuss mailing list chi...@li... https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss |
From: Walter T. <php...@to...> - 2008-09-15 12:14:46
|
Do you know anyone who could use someone with: * 15 years of Internet development experience * 8 years architecting large scale systems for Fortune 500 companies * Process and workflow analysis * Lead teams upwards of 20 members across 4 states (and a pair in Canada!) * designed and built CMS (content) before CMS was coined * designed and built CRMS (contact) before CRMS was coined * designed and build ASP(type) systems before Microsoft thought of it * designed and built database driven sites before PHP and mySQL existed * 10 years of Javascript, way before AJAX and JASON * 5 years of intense mySQL and PHP OOP experience * knowledgeable within the MVC paradigm * Built and refactored dozens of systems for startups and established alike. No: * I'm not 28/32 * I don't work for $35k or $25/hr * I don't work less than 45 hours a week * I'm not: (Yes, this list has been seen in more than 1 ad!) * a mySQL DBA - I can configure, design and script the DB and SQL. * do master SQL - can craft complicated SQL, but not off the top of my head and I know when to call in the big guns. * "rock star" CSS - I know my way around enough to get it done, and I know enough to know what I don't know and when to call in a real guru. * "Web Designer" - I'm a developer, not a graphics person. I know UI, and UIX, let me work with an excellent designer and we can create some kick-ass sites * "Captain Flash" - Backend has been my focus * "Major AJAX" - yes I can do it, have done it, but not my focus * System Admin - yes I can use Linux, I can maintain Windows, configure and admin Apache Seems that every opportunity I've come across is for a "Master of all Trades". I've met many talented people in my years, but I've never met a "Master Of It All." I'm damn good, but I'm not that good. So, if anyone knows of an opportunity for a senior/lead developer, systems architect, someone who has a need for experience, please let me know. Walter |
From: Ming Y. <mi...@vo...> - 2008-09-13 01:15:54
|
Dear Chicago PHP users, Druid (http://www.voiceroute.org) is an open source unified communications based on PHP, Asterisk, jabber & other OSS components. Voiceroute would like to invite PHP, OSS users & developers with interest in unified communications to join us at DruidCON 1-2 Oct 2008 in Atlanta GA. DruidCON is the premier meeting for Druid community users and developers with interest in Unified Communications. DruidCON 2008 attendees will include open source users of projects like Asterisk, PHP, OpenSER users and developers. http://www.voiceroute.org/druidcon Some of the cool topics we will be covering at DruidCON - Druid as a UC 2.0 platform for web, mobile and desktop applications with communications focus Example of UC 2.0 - Mozilla Ubiquity + Druid http://www.youtube.com/watch?v=f-5rDBPuGRc - Previews of Druid UCS 5.0, breakthrough new release with complete LDAP backend for hot standby implementation of Asterisk systems - Deployment options for Druid including hosted & contact center type applications Cost of conference tickets including DruidCON party and lunch - Early bird (end date: 20 Sept 2008) USD$50 - Normal ticket price: US$100 Interested attendees can purchase conference tickets at http://druidcon.eventbrite.com/ Hope to see you at DruidCON! Ming -- Ming Yong CEO, www.voiceroute.org Druid - Open Source Unified Communications DID: +1-877-242-3704 Office: +1-866-915-2407 ext 301 SIP/email: mi...@vo... ------------------------------------------------------------------ Attend Vikram's talk at ASTRICON 2008, 23-25 Sept 08, Glendale Arizona http://www.astricon.net/2008/glendale/web/confTracks.php#t193 Meet us at WEB 2.0 EXPO, 17-18 Sept 08, Booth #17 in Long Tail Pavilion, Javits Center, NYC http://druidweb20.eventbrite.com DruidCON 1-2 Oct Atlanta GA (The leading UC 2.0 Application platform) http://www.voiceroute.org/druidcon VoiceCON 08 San Francisco 10-13 Nov 08, Booth #738, Moscone North Convention Center, San Francisco, CA http://druidvoicecon.eventbrite.com UC 2.0 Video - Mozilla Ubiquity + Druid http://www.youtube.com/watch?v=f-5rDBPuGRc |
From: Jason R. <ja...@ho...> - 2008-09-10 14:08:51
|
Thought I would pass this along. Troy is a really great guy and very successful entrepreneur. Super smart and has a lot of backing, so whatever he is working on will probably be successful. He is also a great guy to learn the start-up ropes from. If you have any questions feel free to ping Troy directly. -------- Original Message -------- OK, so we all hear about how bad the economy is and how many people are out of work. Why then am I having trouble finding programmers??? As you may or may not know, we are getting closer to launching a very cool, Web 2.0 site that is backed by a Chicago PE firm (I can tell you more in Mid October). I have been working in “stealth mode” on this for 9 months. It is a great opportunity for developers to do some interesting consumer facing web development that will be fun and financially rewarding. We have a small core team of 6 right now and are building out the development team. The job description that we posted on Dice and Craig’s List is below. Please feel free to forward this to anyone that you think may be interested. Thanks for your help and sorry for the impersonal e-mail! - Troy Tr...@He... <mailto:Tr...@He...> (312) 278-3460 *Senior PHP/LAMP Software Engineer * A well funded Chicago based start up is putting together a top notch development team. We are building a platform for a series of web sites that will provide rich, multi-media content to users in very niche markets; deriving revenue from advertising and lead generation. The web 2.0 platform is built on PHP and Drupal. We need multiple developers that have the ability to play multiple roles on a small, but growing team. Ideal developers will have general skills across all the desired qualifications, but this is not required. Responsibilities: * Development: Develop user content driven functionality within a PHP and Drupal based environment. * Quality Assurance: Follow processes designed to eliminate all forms of defects with high efficiency. * Architecture: Bridge the gap between business problems and technology solutions. * Attitude: Bring high energy passion for software development, perfection and fun. Required qualifications: * Experience building PHP websites * 5+ years experience developing software on teams * 5+ years experience building object oriented systems * Experience working within highly structured or agile development methodology * Experience leading development efforts at any level * Hard working, self motivated with good communication skills Desired qualifications: * Affinity for open source solutions * Experience working with MVC and template frameworks within PHP * Experience designing high volume web applications for performance * Experience as MySQL DBA, including replication and optimizing for performance * Experience using automated test systems (PHPUnit) or other advanced QA techniques * Experience with CSS and javascript * Experience with Ajax * Experience with Linux system administration Job location: Chicago, IL Position type: Full time/Salary This is a great opportunity to get in on the ground floor of a growing company with a very experienced and proven management team. While it will not be easy, it will be fun - great work environment, bright people and a very challenging series of projects. (Inexperienced or lazy need not apply...) Send Resume to: Pro...@gm... <mailto:Pro...@gm...> * Location: Chicago, IL * Principals only. Recruiters, please don't contact this job poster. * Please, no phone calls about this job! * Please do not contact job poster about other services, products or commercial interests. |
From: Arlo L. <ar...@ar...> - 2008-09-08 19:35:54
|
Hello, > How do you add a CAPTCHA? This website has good instructions: http://recaptcha.net Cheers, -Arlo _______________________________ Arlo Leach 773.769.6106 http://arlomedia.com Make friends with your computer http://compyschool.com |
From: Trevor O. <tr...@gm...> - 2008-09-08 19:21:06
|
I joined the Cellit team 3 months ago, and I've been having a good time. The work is fast-paced, pay is competitive, work environment is tight-knit (and small), and chances to flex your creative muscles pop up every day If you have any questions, send me or David an email. 2008/9/8 David Wachs <dav...@ce...> > Cellit is hiring again! > > > > Please let me know if you are interested in applying for the following: > > > > We are a profitable mobile startup with clients including Chicago Tribune, > Blue Man Group, IKEA, and SUBWAY. We're looking for energetic web app > developers to join our growing team. > > > Required skills: > * 2-5 years of PHP 5, DHTML, CSS, and JavaScript > * Knowledge of relational database design and deployment for dynamic DB > driven sites using MySQL 5 > * Ability to estimate, prioritize and manage multiple projects in > deadline-driven environment > * Expert problem solving a must > * STRONG EYE FOR DESIGN AND UI CONSIDERATIONS > > Experience and Education: > * This position requires a BA/BS in computer Sciences or related field > (preferred) or 2+ years of full-time experience > > > > > > If you're interested, please send your resume, cover letter, and links to > work examples to me. If it looks like a match, we can set up an interview. > > > > Thanks, > > > > David Wachs > > President | Cellit > > toll free: 800.790.6597 ext 706 > > office: 312.492.4128 > > mobile: 312.282.0912 > > dav...@ce... > > <http://www.cellitmarketing.com/> http://www.cellitmarketing.com > > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > -- -Trevor Oldak |