|
Registered User
|
|
|
Nov 25 |
revised |
php CMS system built with a framework - php framework AND php CMS typos |
|
Nov 24 |
comment |
php CMS system built with a framework - php framework AND php CMS who's denigrating what???? |
|
Nov 23 |
comment |
php CMS system built with a framework - php framework AND php CMS thanks, that's exactly what I'm looking for... symphony was certainly on the list of frameworks I'd like to peak at... |
|
Nov 23 |
comment |
php CMS system built with a framework - php framework AND php CMS yeap, I've heard lots of great things about django, I'm just concerned about the hosting availability... |
|
Nov 23 |
asked | php CMS system built with a framework - php framework AND php CMS |
|
Nov 21 |
comment |
Why are developers generally opposed to purchasing software tools? that's exactly the point, you are paying for the time that someone else spent developing something... It has nothing to do with your are able or not to do it by yourself... |
|
Nov 11 |
answered | Is there a Linux (Ubuntu) svn client that doesn’t suck?? |
|
Oct 31 |
comment |
how to debug a gsp page? (no grails, just gsp) good point about the tag libs, had no idea they could be debugged... |
|
Oct 30 |
asked | how to debug a gsp page? (no grails, just gsp) |
|
Oct 30 |
comment |
any experience with “Play” java web development framework? Thanks a lot for sharing your experience with grails. I'm also pretty impressed with Play's documentation... |
|
Oct 30 |
comment |
any experience with “Play” java web development framework? I think that their argument is that controller are just behaviour, that's is no data at all, something like a function library, so they aren't really objects... but anyway I see your point regarding mocking... |
|
Oct 29 |
comment |
recommendation for choosing a new web development stack thanks for the advice, I'll definetely give grails a try... totally out of topic, is it possible to dbug gsp pages??? I still couldn't find a way to do it? |
|
Oct 27 |
revised |
how do you diagram relations between several services? typos; added 1 characters in body |
|
Oct 27 |
asked | how do you diagram relations between several services? |
|
Oct 26 |
comment |
any experience with “Play” java web development framework? I wonder if it's possible to use groovy all the way... I guess so... Anyway, i think it might be worth giving scala a shot... |
|
Oct 25 |
comment |
recommendation for choosing a new web development stack Ether: I also agree with you, lamp is free and simple, I had a couple of personal projects I developed with php, and I have almost rewritten the whole framework in php, but php is not an option where I work, perhaps I should modify the question the let it be clear... |
|
Oct 25 |
comment |
recommendation for choosing a new web development stack sorry, I should have been more categoric about it... I agree with you, lamp (or wamp in this case) stack is less bloated far more deployment friendly than .net or java... I don't think I can convince the IT staff about it... |
|
Oct 25 |
comment |
recommendation for choosing a new web development stack You are absolutely right, in fact I feel pretty comfortable working with php, but as I said, lamp (nor ruby, nor python) is not an option where I work, it's either .net or java... |
|
Oct 25 |
comment |
recommendation for choosing a new web development stack YES! you are reading my mind... so... which one??? |
|
Oct 25 |
comment |
recommendation for choosing a new web development stack mmm... I think I'll give it a try... |
|
Oct 25 |
answered | Can anyone recommend a simple Java web-app framework? |
|
Oct 25 |
revised |
recommendation for choosing a new web development stack added related link |
|
Oct 25 |
answered | What Web Application Framework for Java is Recommended? |
|
Oct 25 |
comment |
recommendation for choosing a new web development stack We really like grails, but we are afraid of all the underneath frameworks (hibernate, spring, etc.) that we have no experience with. I've read that grails is ideal for teams with experience building java web apps the hard way... |
|
Oct 25 |
revised |
recommendation for choosing a new web development stack deleted 16 characters in body |
|
Oct 25 |
asked | recommendation for choosing a new web development stack |
|
Oct 25 |
comment |
where can I get the latest JRE / JDK as a zip file, I mean, no exe installer that's one step closer to what I'm looking for... |
|
Oct 25 |
comment |
where can I get the latest JRE / JDK as a zip file, I mean, no exe installer yeap, that's the sort of things I'm trying to avoid... |
|
Oct 25 |
comment |
Installing Java Manually on windows? maybe you can help me with this... stackoverflow.com/questions/1619662/… |
|
Oct 25 |
revised |
where can I get the latest JRE / JDK as a zip file, I mean, no exe installer added 122 characters in body |
|
Oct 25 |
comment |
where can I get the latest JRE / JDK as a zip file, I mean, no exe installer to ease deployment... |
|
Oct 25 |
revised |
where can I get the latest JRE / JDK as a zip file, I mean, no exe installer typos |
|
Oct 25 |
asked | where can I get the latest JRE / JDK as a zip file, I mean, no exe installer |
|
Oct 22 |
accepted | how to pass a null value to a rdoQuery.rdoParameter in VisualBasic 5 |
|
Oct 22 |
answered | how to pass a null value to a rdoQuery.rdoParameter in VisualBasic 5 |
|
Oct 20 |
asked | how to pass a null value to a rdoQuery.rdoParameter in VisualBasic 5 |
|
Oct 20 |
asked | any experience with “Play” java web development framework? |
|
Oct 1 |
comment |
Ruby: Shortest/most idiomatic way of determining whether a variable is any one of a list of values I wonder if implementing a isOneOf?( array ) method in the Object class is not considered a good practice in ruby, I mean, messing around with base classes (obviously, I have no experience with ruby)... anyway, it would be fine if someone can post such a method.... |
|
Sep 29 |
asked | difference between server.createObject and createobject in asp classic |
|
Sep 19 |
asked | what’s the difference between <% %> and <script language=”vbscript” runat=”server”> in classic asp? |
|
Sep 19 |
answered | Best examples of CRUD Web Form Design |
|
Sep 17 |
comment |
strategies / patterns for handling complex web crud forms? yes, the problem is specifically with the flow (the class doesn't generate the whole form, the layout is specified with asp / html), yours is a fine example, a "preview" mode, or some specific flow. I have to find a way to emulate "inheritance" in classic asp, or some other way to customize the class's behavior... |
|
Sep 17 |
comment |
strategies / patterns for handling complex web crud forms? that is, instead of saving the user data in an xml on the db, I just save the data with a "draft", "work in progress" or something of the sort... |
|
Sep 17 |
comment |
strategies / patterns for handling complex web crud forms? in fact, we try to reduce every interaction with the DB to single record operation. for example, if i have to manage a master invoice with several details, I save the invoice to the db in a "draft" state, or something like that. I let the user edit, suspend, resume, do whatever he likes, saving record by record to the db. When the invoice is "closed" I apply every validation to it... That way my db layer is pretty simpler, and my web pages just have to save one record at the time... |
|
Sep 17 |
comment |
Best examples of CRUD Web Form Design hey, that magento UI is really nice... I also like redmine's UI (redmine.org) even though is rather basic... |
|
Sep 17 |
answered | How can you find the rows with equal columns? |
|
Sep 17 |
asked | strategies / patterns for handling complex web crud forms? |
|
Sep 15 |
answered | SQL: What does =* mean? |
|
Sep 15 |
awarded | ● Popular Question |
|
Sep 11 |
awarded | ● Nice Question |
