frameworks

asp.net mvc blogging engine

I am looking for some open source blogging engine build on ASP.NET MVC. Is there any production ready projects available? Note from svinto: I want this as well, but rather something that plugs in to any asp.net mvc site, using any DI/IoC or ORM. - Instead of creating a new similar question, I'm using this one. These are the blogging e...

Choosing a PHP Framework for long-term deployment

Duplicate Question: What PHP Framework Would You Choose for a New Application and Why? We are starting a new project and I am wondering which PHP framework we should use and if we should use a framework. We decided to choose PHP instead of ASP.NET in part because we didn't want to get stucked in a unflexible paradigm (WebForms, every...

Flexible layered ASP.NET frameworks (Digg/Blog/CMS)

For my next web site I would prefer not to write everything from scratch. At the same time I don't want to be looked to much into a framework. So I would like something that I can use at all levels. Access the DB (SQL Server) directly (The DB layout should not be much more complex than a self written app) Business logic Interface com...

Is MVC good for mobile device?

Is it good for develop MVC Framework by using J2ME (Resource,Speed,Performance,...)? ...

What open source Cocoa/Cocoa Touch Frameworks are out there?

I just found the Omni Group's frameworks they make available for use under a modified MIT License: http://www.omnigroup.com/developer/ The OmniDataObjects framework seems especially useful, since there is no Core Data for the iPhone. I am new to the Cocoa platform, and don't know what other useful frameworks are out there. What framew...

RESTful webservice to sum a list of numbers.

PHP makes this sort of thing dirt simple but I'd like to know how other languages do it. To standardize on a simple example, how would you implement the following webservice to sum a list of numbers: http://server.com/sum?summands=LIST where LIST is a list of space-separated real numbers. For example, http://server.com/sum?summands...

One code, many websites

I need to develop a project that would allow me to instance many copies of a website, but each copy needs to be a separate website. I could upload the same code to many different accounts, but I would prefer to have only one copy of the code. Each website would be an "instance", so to speak. This way I could upload the code once and upda...

What can you NOT do in Rails that you can do in another framework?

I'd like to know situations in which I should consider using a framework other than Rails. ...

Dynamic websites quick and easy using ASP.NET without knowing ASP.NET

I am a developer with a strong .NET background. In my spare time I will soon have the task to build a small an simple website with some dynamic features. So I guess ASP.NET would be the right choice. The problem is here that I have almost no experience with ASP.NET and my time is very limited. What would you suggest how I should approach...

Are CSS Frameworks Really Worth Using?

Is there anything that CSS Frameworks give that its not easy to make yourself? ...

What jQuery annoyances should I be aware of as a Prototype user?

We're considering switching our site from Prototype to jQuery. Being all-too-familiar with Prototype, I'm well aware of the things about Prototype that I find limiting or annoying. My question for jQuery users is: After working with jQuery for a while, what do you find frustrating? Are there things about jQuery that make you think abou...

How can I add the gutter along a grid in the 960 css framework?

How can I add the 10 px gutter of a 40px grid(so that it will be 50px) in 960 css framework? ...

Why does MSTest and TestDriven.NET behave differently using this code?

Check out this code: internal static readonly Dictionary<Type, Func<IModel>> typeToCreator = new Dictionary<Type, Func<IModel>>(); protected static object _lock; public virtual void Register<T>(Func<IModel> creator) { lock (_lock) { if (typeToCreator.ContainsKey(typeof(T))) typeToCreator[typeof(T)] = creato...

MVC Framework - Server-side DOM manipulation

I'm building an MVC framework, and I'm looking for native solutions / frameworks / tag libraries to draw from or to replace my framework entirely. I'm interested in the following features specifically: server-side DOM manipulation server-side events (page reload, form submit, node insertion, etc.) traversing the DOM tree using css sel...

Run c# 3 app without .Net Framework installed????

This may seem like a dumb question, but can an app build with c# 3 (.Net Framework 3.5) be built and deployed to a machine that does not have the 3.5 framework installed? i.e. does bin deployment work for System.Core and other 3.5 dlls? I would really like to build my app using lambdas, linq, Func etc. but my client is not allowed to in...

Database framework developing

Hello everyone, I'm developing (another) java web framework for personal use, and in addition to that I also want to develop somekind of persistence framework. I have already developed and engine that in order to access the table, you must only extend a class and create your fields with the same type and name of those in the table. Ex:...

Is it OK to have two frameworks in the same project?

So I have taken over a Java Web project. The application was written by another developer who now works for another company. Generally speaking, the application is straightforward, well designed and the code is documented enough. The only issue is that the previous developer decided to built his own database access library instead of usi...

Limiting no of outputs in Hibernate query

I have a hibernate query in grails Book.findAllByRating(4) In the above query i want only 5 number of outputs.How do I limit the output to 5? ...

What are the advantages of using an MVC framework over e.g. Drupal to build a large website?

I am writing a comparison between 3 technology options for building our new website: Wordpress Drupal An MVC framework The boss is sure we should use Wordpress, but the site will be big, with many sections, subsections, pages, and complicated templates. I'm finding it easy to compare WP + Drupal, but not so easy to state the additio...

Is there a system or framework for non-programmer form creation?

Anyone know of a system or framework for a non-programmer form creation? Not a full implementation, but something that handles the designer aspect and something that handles the displaying for being filled in. All the logic we'll be doing. Maybe just a pair of widgets. We've got a client-server application into which normal users enter ...