Re: [PHP] I need ideas for things to code - webbytedd examples

2009-04-28 Thread Shawn McKenzie
Paul M Foster wrote:
 On Mon, Apr 27, 2009 at 03:16:10PM -0700, Daevid Vincent wrote:
 
 This is tripping me out! i feel so duped! :)
 http://webbytedd.com/b1/photo-retouch/

 this didn't work, maybe due to some JS errors. tried in FF3 and IE6.
 http://webbytedd.com/b/watermark/

 I like your arrow captch idea:
 http://webbytedd.com/aa/assorted-captcha/

 also the date and clock are nice:
 http://webbytedd.com/b/kewl-date/
 http://webbytedd.com/b/binary-clock/

 the transparent bg is green in FF3/XP and IE6/XP
 http://webbytedd.com/ccc/dragdrop/

 http://webbytedd.com/b/color-rows/
 you know you can do this too:
 tr class=?= (($r = !$r) ? 'row0' : 'row1' ) ?

 How come you don't have a way to see/download the source code for all these
 examples?
 
 I noticed that, too. But I have to say, this is one of the coolest sites
 I've ever seen. If you wanted to convince someone (a prospect) you could
 do something, this site would do it. Next time I talk to a prospect, I'm
 gonna call myself Tedd and refer them to this site. ;-}
 
 Paul
 

You would need to call yourself tedd not Tedd :-)

-- 
Thanks!
-Shawn
http://www.spidean.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] I need ideas for things to code - webbytedd examples

2009-04-28 Thread tedd

At 3:16 PM -0700 4/27/09, Daevid Vincent wrote:

http://webbytedd.com/b/color-rows/
you know you can do this too:
tr class=?= (($r = !$r) ? 'row0' : 'row1' ) ?


No -- never use the short tag.

Use:

tr class=?php echo( (($r = !$r) ? 'row0' : 'row1' )); ?


How come you don't have a way to see/download the source code for all these
examples?



With some of my samples I do, but the main point here is for ME to 
have a place to fall back to for reference.


Cheers,

tedd

PS: My site is down at the moment.


--
---
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] I need ideas for things to code - webbytedd examples

2009-04-28 Thread tedd

At 9:20 PM -0400 4/27/09, Paul M Foster wrote:

I noticed that, too. But I have to say, this is one of the coolest sites
I've ever seen. If you wanted to convince someone (a prospect) you could
do something, this site would do it. Next time I talk to a prospect, I'm
gonna call myself Tedd and refer them to this site. ;-}

Paul


Paul:

Thanks.  :-)

But that's one of the points here and that is to have something you 
can show a client that you've done. Keep in mind, that it's better to 
have them in your office so you can control what they see and guide 
them through your examples. But if nothing else, you can show them 
something you've done without showing a client's site.


I don't like showing client sites because: a) the site is not usually 
100% yours; b) some of the sites I've worked on I don't want to be 
associated with (horrible front ends); c) and sometimes prospective 
clients want to contact your past employers and you may not want that.


For example, your past client may not want to be contacted -- after 
all, it's their time -- what are you doing wasting their time? Also, 
who knows what they are going to say? Even good clients who like your 
service may look at someone inquiring as to your service and think 
Hey, what happens when I need something and my programmer is working 
for them? Belive me it happens.


So, my recommendation is keep your experience and examples under your control.

Cheers,

tedd

--
---
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] I need ideas for things to code - webbytedd examples

2009-04-28 Thread tedd

At 9:10 AM -0500 4/28/09, Shawn McKenzie wrote:


You would need to call yourself tedd not Tedd :-)

--
Thanks!
-Shawn


That's true.

I went by the name Tedd in my previous life, see:

http://geophysics.com (I think the site is down at the moment)

In my current life, I much less important so I go by the name tedd.

Cheers,

tedd

--
---
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] I need ideas for things to code

2009-04-27 Thread Govinda

I'd love a good time log/billing app.

I currently use
http://www.getharvest.com/

but it is too expensive for such a small operation as me.  But I LOVE  
the features.


BTW, what are you all (especially you who are one-man contractors like  
me) using to keep track of your time..  billing clients, etc.?
Doesn't have to be free, but maybe there already is some great stuff  
out there that is?


-Govinda

On Apr 24, 2009, at 5:00 PM, Andrew Hucks wrote:

I've been coding PHP for about a year, and I'm running out of things  
to code
that force me to learn new things. If you have any suggestions, I'd  
greatly

appreciate it.




Re: [PHP] I need ideas for things to code

2009-04-27 Thread Nitsan Bin-Nun
IMO all you need is a cellphone with some normal calendar features.
I do also tend to use Google Calendar from time to time to text me whenever
something shows up on the board.

Google Apps is also very useful for email managing, etc.

HTH,
Nitsan

On Mon, Apr 27, 2009 at 10:29 PM, Govinda govinda.webdnat...@gmail.comwrote:

 I'd love a good time log/billing app.

 I currently use
 http://www.getharvest.com/

 but it is too expensive for such a small operation as me.  But I LOVE the
 features.

 BTW, what are you all (especially you who are one-man contractors like me)
 using to keep track of your time..  billing clients, etc.?
 Doesn't have to be free, but maybe there already is some great stuff out
 there that is?

 -Govinda


 On Apr 24, 2009, at 5:00 PM, Andrew Hucks wrote:

  I've been coding PHP for about a year, and I'm running out of things to
 code
 that force me to learn new things. If you have any suggestions, I'd
 greatly
 appreciate it.





RE: [PHP] I need ideas for things to code -- Roach vs Bugzilla

2009-04-27 Thread Daevid Vincent
 

 -Original Message-
 Sent: Friday, April 24, 2009 4:31 PM
 Subject: Re: [PHP] I need ideas for things to code
 
 how about:
 
 a better bugzilla replacement in php

I got that one done for you:
http://www.daevid.com/content/examples/roach.php

p.s. the PHP code is absolute crap by the way. I inherited the start of this
and just had to keep building on top of it, so i never got time to re-write
it properly, only fix as I went.

It's a dead project at this point, so someone is free to pick up where I
left off as Lockdown is no more.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] I need ideas for things to code

2009-04-27 Thread Lists

Govinda wrote:

I'd love a good time log/billing app.

I currently use
http://www.getharvest.com/

but it is too expensive for such a small operation as me.  But I LOVE 
the features.


BTW, what are you all (especially you who are one-man contractors like 
me) using to keep track of your time..  billing clients, etc.?
Doesn't have to be free, but maybe there already is some great stuff out 
there that is?


-Govinda



Govinda!, what are you doing on a PHP forum! ;-)

I wrote my billing app about 4 years ago in WebDNA. It contains:

1.) Customer db
2.) quoting
 The quoting system replaces emails that are sent back and
 forth between you and your client, as managing emails really,
 really is not fun. (Client visits the website to interact with
 the quoting system)
3.) invoicing
4.) a full proposal system that links to the quoting features
(it's like a glorified quoting system that looks pretty to the
 client.. so instead of seeing numbers, they see numbers and
 moch-ups/designs.
5.) Job clock that links to the invoicing system. (invoices know
if a job has 'job clock' records.
6.) Budgeting system.
7.) Reports (for dreaded tax days)
8.) Client Payment system
9.) hmmm what else, emailing, searching all db's, etc.


My sanity is already a sensitive issue when it comes to client billing
etc.. and I'm pretty sure I'd be living in a padded room by now if I 
didn't have this app. ;-)


hmmm... since this is the PHP forum, I have to say something that will
steer this back to politically correctness... I'm sure you could build 
these features in PHP... just allow yourself a bit more time.  ;-)


To the O.P., I agree with someone who said; much of the time, client 
work will drive creativity and new projects (and keep you eating). 
However, I guess if you are starting out, it wouldn't hurt to zap 
something out that will show people what you can do. I would suggest

that, whatever you do, maybe integrate some client-side stuff as well..
like Flash,CSS,or JS. 'Pretty' brings them in, then function makes the
sale.

my ¢.02

Donovan



--
  =o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o
  D. BROOKE   EUCA Design Center
   WebDNA Software Corp.
  WEB: http://www.euca.us  |   http://www.webdna.us
  =o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o
  WebDNA: [** Square Bracket Utopia **]

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] I need ideas for things to code -- Roach vs Bugzilla

2009-04-27 Thread Michael Shadle
On Mon, Apr 27, 2009 at 2:47 PM, Daevid Vincent dae...@daevid.com wrote:

 I got that one done for you:
 http://www.daevid.com/content/examples/roach.php

 p.s. the PHP code is absolute crap by the way. I inherited the start of this
 and just had to keep building on top of it, so i never got time to re-write
 it properly, only fix as I went.

 It's a dead project at this point, so someone is free to pick up where I
 left off as Lockdown is no more.

Well, thanks for that; it seems like it's got a lot of features. A big
one to examine would be looking at its integration with svn. But I
like the triage assignment by default.

It's a little disappointing though if you're selling it with the note
of the code is crap ... :)

I'll toss it over to my boss who is the one messing around with
trac/redmine/etc and see what he has to say.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] I need ideas for things to code - webbytedd examples

2009-04-27 Thread Daevid Vincent
This is tripping me out! i feel so duped! :)
http://webbytedd.com/b1/photo-retouch/

this didn't work, maybe due to some JS errors. tried in FF3 and IE6.
http://webbytedd.com/b/watermark/

I like your arrow captch idea:
http://webbytedd.com/aa/assorted-captcha/

also the date and clock are nice:
http://webbytedd.com/b/kewl-date/
http://webbytedd.com/b/binary-clock/

the transparent bg is green in FF3/XP and IE6/XP
http://webbytedd.com/ccc/dragdrop/

http://webbytedd.com/b/color-rows/
you know you can do this too:
tr class=?= (($r = !$r) ? 'row0' : 'row1' ) ?

How come you don't have a way to see/download the source code for all these
examples?

cheers,

http://daevid.com
Some people, when confronted with a problem, think 'I know, I'll use XML.'
Now they have two problems. 

 -Original Message-
 From: Charles Harvey [mailto:linux...@gmail.com] 
 Sent: Saturday, April 25, 2009 11:56 AM
 To: php-general@lists.php.net
 Subject: Re: [PHP] I need ideas for things to code
 
 This was a surprisingly good idea that works for me, as I 
 haven't coded in
 about 3 years and need to get my hand back in.  Trying to 
 make use of one
 idea led to several others.  Thanks, tedd!
 
 Charles
 
 On Sat, Apr 25, 2009 at 4:54 AM, tedd tedd.sperl...@gmail.com wrote:
 
  At 7:00 PM -0400 4/24/09, Andrew Hucks wrote:
 
  I've been coding PHP for about a year, and I'm running out 
 of things to
  code
  that force me to learn new things. If you have any suggestions, I'd
  greatly
  appreciate it.
 
 
  Andrew:
 
  Here's an idea. Go through the php manuals and make small 
 examples of
  everything you find.
 
  That way not only do you learn, but you have examples to 
 fall back on when
  the need rises.
 
  Here's a small (believe me) portion of the demo's I've 
 written over the
  years:
 
  http://webbytedd.com/a.php
 
  These cover different languages, but it will give you the 
 idea. Just make a
  inventory of examples and post them with code. Not only 
 will it help you,
  but might help others when you answer questions on this 
 list showing the
  solution.
 
  Cheers,
 
  tedd
  --
  ---
  http://sperling.com  http://ancientstones.com  
 http://earthstones.com
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] I need ideas for things to code -- Roach vs Bugzilla

2009-04-27 Thread Daevid Vincent
 

 -Original Message-
 From: Michael Shadle [mailto:mike...@gmail.com] 
 Sent: Monday, April 27, 2009 2:59 PM
 To: Daevid Vincent
 Cc: php-general@lists.php.net
 Subject: Re: [PHP] I need ideas for things to code -- Roach 
 vs Bugzilla
 
 On Mon, Apr 27, 2009 at 2:47 PM, Daevid Vincent 
 dae...@daevid.com wrote:
 
  I got that one done for you:
  http://www.daevid.com/content/examples/roach.php
 
  p.s. the PHP code is absolute crap by the way. I inherited 
 the start of this
  and just had to keep building on top of it, so i never got 
 time to re-write
  it properly, only fix as I went.
 
  It's a dead project at this point, so someone is free to 
 pick up where I
  left off as Lockdown is no more.
 
 Well, thanks for that; it seems like it's got a lot of features. A big
 one to examine would be looking at its integration with svn. But I
 like the triage assignment by default.
 
 It's a little disappointing though if you're selling it with the note
 of the code is crap ... :)
 
 I'll toss it over to my boss who is the one messing around with
 trac/redmine/etc and see what he has to say.

I just didn't want someone to think this was the caliber of code I wrote!
;-)

I cleaned up what I could, when I could, but we're not in the business of
writing a CR tracker -- so it got a small percentage of my time.

I am using Trac personally, but I'm not a fan of Trac's ticket system. Roach
is way more powerful in that respect, but the overall Wiki/SVN/Ticket/Plugin
integration outweighs the lacking Ticket system.

Roach is the best ticket system I've ever used -- and I say that honestly.
I'm stuck with FogBugz here at work and really don't like it. I hated
Bugzilla. I've tried a few others as well and didn't like them either. For
sure Roach isn't as polished or pretty or fancy-pants web 2.0 ajaxy. But it
is solid. it works well and shows the info you want when/where you want it.
It's fast. It's flexible. And IMHO it works the way developers work. Like I
said, 6 years of daily use by 25 developers really helped to refine what
mattered and what didn't. 

The hooks with SVN are also great. For example someone couldn't commit to
SVN without the corresponding CR in Roach in the commit message. I thought I
had the SVN pre-commit and post-commit hooks in the tarball, but apparently
not. They were written in Ruby, so maybe not so useful to you anyways. I'm
sure i have them somewhere if you really wanted them.

d


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] I need ideas for things to code - webbytedd examples

2009-04-27 Thread Andrew Hucks
The watermark worked in FF3...(for me, at least.)

On Mon, Apr 27, 2009 at 6:16 PM, Daevid Vincent dae...@daevid.com wrote:
 This is tripping me out! i feel so duped! :)
 http://webbytedd.com/b1/photo-retouch/

 this didn't work, maybe due to some JS errors. tried in FF3 and IE6.
 http://webbytedd.com/b/watermark/

 I like your arrow captch idea:
 http://webbytedd.com/aa/assorted-captcha/

 also the date and clock are nice:
 http://webbytedd.com/b/kewl-date/
 http://webbytedd.com/b/binary-clock/

 the transparent bg is green in FF3/XP and IE6/XP
 http://webbytedd.com/ccc/dragdrop/

 http://webbytedd.com/b/color-rows/
 you know you can do this too:
 tr class=?= (($r = !$r) ? 'row0' : 'row1' ) ?

 How come you don't have a way to see/download the source code for all these
 examples?

 cheers,

 http://daevid.com
 Some people, when confronted with a problem, think 'I know, I'll use XML.'
 Now they have two problems.

 -Original Message-
 From: Charles Harvey [mailto:linux...@gmail.com]
 Sent: Saturday, April 25, 2009 11:56 AM
 To: php-general@lists.php.net
 Subject: Re: [PHP] I need ideas for things to code

 This was a surprisingly good idea that works for me, as I
 haven't coded in
 about 3 years and need to get my hand back in.  Trying to
 make use of one
 idea led to several others.  Thanks, tedd!

 Charles

 On Sat, Apr 25, 2009 at 4:54 AM, tedd tedd.sperl...@gmail.com wrote:

  At 7:00 PM -0400 4/24/09, Andrew Hucks wrote:
 
  I've been coding PHP for about a year, and I'm running out
 of things to
  code
  that force me to learn new things. If you have any suggestions, I'd
  greatly
  appreciate it.
 
 
  Andrew:
 
  Here's an idea. Go through the php manuals and make small
 examples of
  everything you find.
 
  That way not only do you learn, but you have examples to
 fall back on when
  the need rises.
 
  Here's a small (believe me) portion of the demo's I've
 written over the
  years:
 
  http://webbytedd.com/a.php
 
  These cover different languages, but it will give you the
 idea. Just make a
  inventory of examples and post them with code. Not only
 will it help you,
  but might help others when you answer questions on this
 list showing the
  solution.
 
  Cheers,
 
  tedd
  --
  ---
  http://sperling.com  http://ancientstones.com
 http://earthstones.com
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] I need ideas for things to code -- Roach vs Bugzilla

2009-04-27 Thread Michael Shadle
On Mon, Apr 27, 2009 at 3:27 PM, Daevid Vincent dae...@daevid.com wrote:

 I just didn't want someone to think this was the caliber of code I wrote!
 ;-)

totally understood. i don't like people getting the wrong idea of my code too :)

 I am using Trac personally, but I'm not a fan of Trac's ticket system. Roach
 is way more powerful in that respect, but the overall Wiki/SVN/Ticket/Plugin
 integration outweighs the lacking Ticket system.

Me too. The whole wiki style is a bit funky for ticketing.

I think bugzilla is nasty and I hate supporting old CGI programs. It
just seems like they never change design-wise, definately UI but also
conceptually for the most part.

 The hooks with SVN are also great. For example someone couldn't commit to
 SVN without the corresponding CR in Roach in the commit message. I thought I
 had the SVN pre-commit and post-commit hooks in the tarball, but apparently
 not. They were written in Ruby, so maybe not so useful to you anyways. I'm
 sure i have them somewhere if you really wanted them.

Sure, you should include them in the package.

Worst case if we wind up doing something with hooks I can use them as
a cue on how to reject without including a ticket ID for example, etc.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] I need ideas for things to code -- Roach vs Bugzilla

2009-04-27 Thread Shawn McKenzie
Michael Shadle wrote:
 On Mon, Apr 27, 2009 at 5:46 PM, Shawn McKenzie
 nos...@mckenzies.net wrote:

 #1  Which one are we talking about?

 Tickets/trackers (Bugzilla, Mantis, Roach, you name it) and SCM
 integration tools (Redmine, Trac)

OK, so geared towards software bugs I assume (I haven't used any)?


 #2  Having rarely used either, what are the main (must have)
 features?

 For general purpose ticketing engine, it would need custom field
 support. For specifically designed solutions it depends. For us we
 only need a few fields, really. I've hacked together bits and pieces
 in only a few minutes, we're using a custom one right now, but one
 with active development would be nice - APIs and plugins for
 extensibility, XML/RSS feeds, etc. Those aren't required but should
 come standard nowadays...

OK, so I am not familiar with the bug tracking software or anything that
it needs to do, but I find it hard to believe that at the top of the
list would be APIs, plugins, RSS.  These don't sound like main
features of a bug tracking app.


 #3  What are the needed features that other OSS solutions don't
 offer?

 Clean interface, easy reporting, integration with SCM (i.e. svn) -
 various apps do various combinations of these. If it was done in PHP
 it would be perfect as we could bolt on our custom authentication
 into it. Trac is written in Python and Redmine in Ruby; we'd have to
 re-code our authentication integration into one of those languages
 for it.

 Oh, and multiple project support. Trac does not support this. Redmine
  claims to. (as in, multiple svn repositories as well)


I can dig it...

 #4  What are the great features missing from free and commercial
 apps?

 I am not sure I've seen a commercial PHP app that does this.


Doesn't matter PHP or other.  What is not available in any other product
that would be awesome to have (wish list)?

-Shawn

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] I need ideas for things to code - webbytedd examples

2009-04-27 Thread Paul M Foster
On Mon, Apr 27, 2009 at 03:16:10PM -0700, Daevid Vincent wrote:

 This is tripping me out! i feel so duped! :)
 http://webbytedd.com/b1/photo-retouch/
 
 this didn't work, maybe due to some JS errors. tried in FF3 and IE6.
 http://webbytedd.com/b/watermark/
 
 I like your arrow captch idea:
 http://webbytedd.com/aa/assorted-captcha/
 
 also the date and clock are nice:
 http://webbytedd.com/b/kewl-date/
 http://webbytedd.com/b/binary-clock/
 
 the transparent bg is green in FF3/XP and IE6/XP
 http://webbytedd.com/ccc/dragdrop/
 
 http://webbytedd.com/b/color-rows/
 you know you can do this too:
 tr class=?= (($r = !$r) ? 'row0' : 'row1' ) ?
 
 How come you don't have a way to see/download the source code for all these
 examples?

I noticed that, too. But I have to say, this is one of the coolest sites
I've ever seen. If you wanted to convince someone (a prospect) you could
do something, this site would do it. Next time I talk to a prospect, I'm
gonna call myself Tedd and refer them to this site. ;-}

Paul

-- 
Paul M. Foster

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] I need ideas for things to code -- Roach vs Bugzilla

2009-04-27 Thread Shawn McKenzie
Michael Shadle wrote:
 On Mon, Apr 27, 2009 at 3:27 PM, Daevid Vincent dae...@daevid.com wrote:
 
 I just didn't want someone to think this was the caliber of code I wrote!
 ;-)
 
 totally understood. i don't like people getting the wrong idea of my code too 
 :)
 
 I am using Trac personally, but I'm not a fan of Trac's ticket system. Roach
 is way more powerful in that respect, but the overall Wiki/SVN/Ticket/Plugin
 integration outweighs the lacking Ticket system.
 
 Me too. The whole wiki style is a bit funky for ticketing.
 
 I think bugzilla is nasty and I hate supporting old CGI programs. It
 just seems like they never change design-wise, definately UI but also
 conceptually for the most part.
 
 The hooks with SVN are also great. For example someone couldn't commit to
 SVN without the corresponding CR in Roach in the commit message. I thought I
 had the SVN pre-commit and post-commit hooks in the tarball, but apparently
 not. They were written in Ruby, so maybe not so useful to you anyways. I'm
 sure i have them somewhere if you really wanted them.
 
 Sure, you should include them in the package.
 
 Worst case if we wind up doing something with hooks I can use them as
 a cue on how to reject without including a ticket ID for example, etc.

OK, so I'm just now jumping into the conversation, not because I use or
need a ticketing system, quite the opposite.  I have rarely used a
ticketing system and wonder whether this discussion is more about a
ticketing system (I have a problem with this service/widget and need
help) or bug tracking (software has bug, from user or dev)?

#1  Which one are we talking about?
#2  Having rarely used either, what are the main (must have) features?
#3  What are the needed features that other OSS solutions don't offer?
#4  What are the great features missing from free and commercial apps?

-- 
Thanks!
-Shawn
http://www.spidean.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] I need ideas for things to code -- Roach vs Bugzilla

2009-04-27 Thread Michael Shadle
On Mon, Apr 27, 2009 at 5:46 PM, Shawn McKenzie nos...@mckenzies.net wrote:

 #1  Which one are we talking about?

Tickets/trackers (Bugzilla, Mantis, Roach, you name it) and SCM
integration tools (Redmine, Trac)

 #2  Having rarely used either, what are the main (must have) features?

For general purpose ticketing engine, it would need custom field
support. For specifically designed solutions it depends. For us we
only need a few fields, really. I've hacked together bits and pieces
in only a few minutes, we're using a custom one right now, but one
with active development would be nice - APIs and plugins for
extensibility, XML/RSS feeds, etc. Those aren't required but should
come standard nowadays...

 #3  What are the needed features that other OSS solutions don't offer?

Clean interface, easy reporting, integration with SCM (i.e. svn) -
various apps do various combinations of these. If it was done in PHP
it would be perfect as we could bolt on our custom authentication into
it. Trac is written in Python and Redmine in Ruby; we'd have to
re-code our authentication integration into one of those languages for
it.

Oh, and multiple project support. Trac does not support this. Redmine
claims to. (as in, multiple svn repositories as well)

 #4  What are the great features missing from free and commercial apps?

I am not sure I've seen a commercial PHP app that does this.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] I need ideas for things to code -- Roach vs Bugzilla

2009-04-27 Thread Michael Shadle
On Mon, Apr 27, 2009 at 6:09 PM, Shawn McKenzie nos...@mckenzies.net wrote:

 OK, so geared towards software bugs I assume (I haven't used any)?

Web site development, a little system administration. But yes,
basically software bugs.

 OK, so I am not familiar with the bug tracking software or anything that
 it needs to do, but I find it hard to believe that at the top of the
 list would be APIs, plugins, RSS.  These don't sound like main
 features of a bug tracking app.

APIs for bug insertion, deletion, reporting, etc. is not far off from
a core product. Especially in web 2.0 land nowadays. We have multiple
installations of bugzilla and other tracking mechanisms in and outside
of the company feeding off each other, with no clean interfaces.

Of course there are hundreds of generic bug tracking programs out
there. Anyone with a PHP book can make one. We'd like to align with an
industry standard type one, or one with an active community, but
there is no real big one I am aware of other than Bugzilla (if not
factoring in language) or Mantis (for PHP), or with SCM interaction
Redmine and Trac.

Trac won't work for us because we have multiple repositories/projects.
We'd have to hack together some sort of solution to manage all of them
from one, or install a bunch of instances, and then we'd have bugs in
multiple systems to track. Each developer on our team handles code for
at least one project, just FYI.

Redmine may work, but we need more time to determine if we can hack
our own auth layer on top of it. Even then I am not sure if it will
meet our needs 100% or not. We have not evaluated it enough yet.

 Doesn't matter PHP or other.  What is not available in any other product
 that would be awesome to have (wish list)?

Most products are bloated.

Part of my wish list would be that it is written in PHP, so our team
can extend it without writing beginner insert language here code to
try to customize the couple things we'd need to tweak (like the auth
layer)

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] I need ideas for things to code

2009-04-25 Thread tedd

At 7:00 PM -0400 4/24/09, Andrew Hucks wrote:

I've been coding PHP for about a year, and I'm running out of things to code
that force me to learn new things. If you have any suggestions, I'd greatly
appreciate it.


Andrew:

Here's an idea. Go through the php manuals and make small examples of 
everything you find.


That way not only do you learn, but you have examples to fall back on 
when the need rises.


Here's a small (believe me) portion of the demo's I've written over the years:

http://webbytedd.com/a.php

These cover different languages, but it will give you the idea. Just 
make a inventory of examples and post them with code. Not only will 
it help you, but might help others when you answer questions on this 
list showing the solution.


Cheers,

tedd
--
---
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] I need ideas for things to code

2009-04-25 Thread Charles Harvey
This was a surprisingly good idea that works for me, as I haven't coded in
about 3 years and need to get my hand back in.  Trying to make use of one
idea led to several others.  Thanks, tedd!

Charles

On Sat, Apr 25, 2009 at 4:54 AM, tedd tedd.sperl...@gmail.com wrote:

 At 7:00 PM -0400 4/24/09, Andrew Hucks wrote:

 I've been coding PHP for about a year, and I'm running out of things to
 code
 that force me to learn new things. If you have any suggestions, I'd
 greatly
 appreciate it.


 Andrew:

 Here's an idea. Go through the php manuals and make small examples of
 everything you find.

 That way not only do you learn, but you have examples to fall back on when
 the need rises.

 Here's a small (believe me) portion of the demo's I've written over the
 years:

 http://webbytedd.com/a.php

 These cover different languages, but it will give you the idea. Just make a
 inventory of examples and post them with code. Not only will it help you,
 but might help others when you answer questions on this list showing the
 solution.

 Cheers,

 tedd
 --
 ---
 http://sperling.com  http://ancientstones.com  http://earthstones.com


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] I need ideas for things to code

2009-04-24 Thread Andrew Hucks
I've been coding PHP for about a year, and I'm running out of things to code
that force me to learn new things. If you have any suggestions, I'd greatly
appreciate it.


Re: [PHP] I need ideas for things to code

2009-04-24 Thread Nathan Rixham

Andrew Hucks wrote:

I've been coding PHP for about a year, and I'm running out of things to code
that force me to learn new things. If you have any suggestions, I'd greatly
appreciate it.



a: get paid to do it; pick up work on freelance sites and they'll give 
you the ideas + you'll get paid to do it


b: see a

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] I need ideas for things to code

2009-04-24 Thread Michael Shadle
how about:

a replacement for mailman in php
a trac/redmine written in php
a better bugzilla replacement in php


On Fri, Apr 24, 2009 at 4:25 PM, Nathan Rixham nrix...@gmail.com wrote:
 Andrew Hucks wrote:

 I've been coding PHP for about a year, and I'm running out of things to
 code
 that force me to learn new things. If you have any suggestions, I'd
 greatly
 appreciate it.


 a: get paid to do it; pick up work on freelance sites and they'll give you
 the ideas + you'll get paid to do it

 b: see a

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] I need ideas for things to code

2009-04-24 Thread Phpster



On Apr 24, 2009, at 19:00, Andrew Hucks andrewphpm...@gmail.com wrote:

I've been coding PHP for about a year, and I'm running out of things  
to code
that force me to learn new things. If you have any suggestions, I'd  
greatly

appreciate it.


What have you coded? How about a chat app? How about a simple db based  
version control system? 


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] I need ideas for things to code

2009-04-24 Thread Adam Williams

Andrew Hucks wrote:

I've been coding PHP for about a year, and I'm running out of things to code
that force me to learn new things. If you have any suggestions, I'd greatly
appreciate it.

  


I'm currently writing an in-house PHP helpdesk ticket system.  I looked 
at all the open source ones i could find in a google search and they 
didn't do what I need (some had few features, others didn't support 
authentication against external sources (ldap, imap, etc)).  the 
commercial ones seemed like they'd do what I want, but the budget is 
tight with my employer currently.



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php