1
vote
4answers
70 views
Help designing a order manager class
So I have an order manager class that looks like:
public class OrderManager
{
private IDBFactory _dbFactory;
private Order _order;
public OrderManager(IDBFactory dbFactory)
{
…
1
vote
1answer
23 views
How does rendering different formats/layouts in Rails affect SEO?
I have been reading a lot about cloaking and redirects, and am wondering how this fits into rendering and layouts in Rails...
Two parts:
1) If I have different data formats to render in (json, xml, …
4
votes
5answers
76 views
When to throw exceptions and when to log them ?
I have a three layer structure
1. Presentation layer
2. Business layer
3. Data Layer
The Presentation layer interacts with the business layer via a service facade . Now I am confused on where …
2
votes
2answers
39 views
Storing Ordered Child Documents/Values in CouchDB/JSON?
What is the best way to store ordered documents in CouchDB?
Say I have 100 articles and I want to order them by just visibly placing them in an order I like, or I have 10,000 images and I want them …
1
vote
2answers
37 views
Best practices for logging on top of logging levels
Generally, log levels can be switched to get different level of detailed logs. Usually a lowest level of log often can help one to identify which area of the codes could be wrong. To further debug, …
0
votes
2answers
26 views
Bash environment variables and finding installation directories
I have a bash script that basically initializes an application and sets parameters. One of these parameters is the location to OpenOffice. Now OpenOffice doesn't set an environment variable when you …
2
votes
2answers
57 views
Best plugin development practices to avoid polluting jQuery namespace?
I have created a jQuery plugin that allows the user to interact with a tree (creating, updating, deleting nodes). There are at least a dozen methods for interacting with the tree. Ideally, I don’t …
1
vote
3answers
80 views
Nested Routes and Parameters for Rails URLs (Best Practice)
Hey there,
I have a decent understanding of RESTful urls and all the theory behind not nesting urls, but I'm still not quite sure how this looks in an enterprise application, like something like …
