Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

51
votes
17answers
3k views

How to do version numbers?

My company is building a product. It's going to be versioned by SVN. It's a webapp so basically there will never be a version out which doesn't have some features in them and thus could always be ...
23
votes
12answers
824 views

How far do you go with YAGNI?

I am developing a new revolutionary web application for the enterprise market. Sure, many before me thought that their web app would be revolutionary only to find out it isn't. (Or it is, but the ...
19
votes
21answers
1k views

A company that had a successful product but went bust for not innovating?

At the company that I work we have a successful software product that did well but is now obsolete and unmaintainable. I am trying to explain that you need to innovate and replace this product with ...
15
votes
7answers
509 views

How to Design a generic business entity and still be OO?

I am working on a packaged product that is supposed to cater to multiple clients with varying requirements (to a certain degree) and as such should be built in a manner to be flexible enough to be ...
13
votes
4answers
854 views

What are some common things to consider when developing a web-based application to be sold

I'm developing an application for an internal customer. One of the requirements is that it be developed in such a way that it could potentially be sold to other organizations. The application is a ...
11
votes
11answers
613 views

Testers in Software Development

In my company we develop a software product. Until now we haven't had any testers, so basically the developers were the testers, and of course the customer and users (not good). Our team now consists ...
9
votes
3answers
137 views

Python - product in-built function

I've been looking through a tutorial and book but I can find no mention of a built in product function i.e. of the same type as sum(), but I could not find anything such as prod(). Is the only way I ...
9
votes
2answers
2k views

Alternatives to Amazon Product Advertising API

I need access to a product API that includes books, movies, and games. I want to get very simple data like images, titles, and descriptions by passing in keywords or (ideally) UPC. I'm willing to pay ...
9
votes
5answers
1k views

implementation for product keys

I'm implementing a small application in C, which I would like to sell as shareware for a reasonable price later on. It will start of with a 30-day trial, which I am already quite certain of how to ...
7
votes
1answer
2k views

What is the difference between plug-in, feature and product in eclipse rcp

What are the difference, what get's used for which purpose?
7
votes
3answers
1k views

How to promote a new product/service? [closed]

This is often a bit of a problem for lone developers working on a product or a service. How can they get the word out about their product? I recently finished a project of mine and I'm struggling a ...
6
votes
6answers
2k views

How do I interact with the Amazon Product Advertising API in my Rails app?

I'm building a Rails web app and was wondering what is the best way to get a list of products that Amazon would return based on a search term? For example, if I sent amazon the term "iphone", I'd ...
6
votes
4answers
1k views

Getting an iPhone app's product name at runtime?

How can this be achieved? I would like to get the name so i can display it within an app, without having to change it in code each time i change a name, of course.
6
votes
11answers
271 views

How do people create re-usable databases?

How do people make reusable databases that can be used for many products? For example,if we have a database designed for a school...Can it be easily modified to be given to a college? What is the ...
5
votes
1answer
212 views

Does `productElement(i)` on a case-class use reflection?

Considering the following Scala snippet: case class Foo(v1: String, v2: Int, v3: Any) def inspect(p: Product) = (0 until p.productArity).foreach(i => println(p.productElement(i))) ...
5
votes
3answers
109 views

Factoring product type assignments in OCaml

I'm generally unsatisfied with writing code like this: let load_record_field cursor gets geti gett a = function | 0x01 -> let c, s = gets () in (a.a_record_uuid <- s; `More_record c) | 0x02 ...
4
votes
4answers
223 views

Should a Product Owner look after more than one product?

In a Scrum or Agile team is it advisable for a Product Owner to be involved in more than one product? Is it good to have a Product Owner for the Enterprise System and "sub" Product Owners for the ...
4
votes
6answers
760 views

is NATURAL JOIN any better than SELECT FROM WHERE in terms of performance?

Today I got into a debate with my project manager about Cartesian products. He says a 'natural join' is somehow much better than using 'select from where' because the later cause the db engine to ...
4
votes
5answers
127 views

Should software development be separated from software design & usability?

In most of the commercial jobs I've had to date, my role has mostly been confined to "writing the code", whereas the reason I wanted to get into development in the first place was because I enjoyed ...
3
votes
3answers
185 views

Use of magento is_in_stock

What exactly is the function of the property is_in_stock in Magento? Whether a product is in stock can be determined on whether qty >= 1? It seems to automatically adjust to the current ...
3
votes
3answers
189 views

Can't get my head around primitive recursion definitions in haskell

I've got a good idea of what primitive recursive definitions are, however I still can't seem to get my head around it. For example, I can't seem to explain to myself how to do the following (yet I ...
3
votes
2answers
1k views

Magento Product Weight Unit

What is the default product weight unit in magento?How can i change it?
3
votes
2answers
977 views

Boost uBLAS matrix/vector product

can someone please provide an example of how to use uBLAS product to multiply things? Or if there's a nicer C++ matrix library you can recommend I'd welcome that too. This is turning into one major ...
3
votes
3answers
1k views

Magento - How to link the Configurable Product image to the Simple Product image?

This is the situation: I have a configurable product with several simple products. These simple products need to have the same product image as the configurable product. Currently I have to upload ...
3
votes
2answers
2k views

Magento API: Rebuild Indexes after adding new products

I am currently writing a script that lets me import multiple products in magento. $product = Mage::getModel('catalog/product'); $product->setSku($data['sku']); //etc etc $product->save(); ...
3
votes
1answer
405 views

Best practices to build a highly configurable software product

I am working on a software product that can substantially change behavior based on the configuration & meta-data supplied. I would like to know best practices to architect / build a highly ...
3
votes
2answers
831 views

All Addtional Attributes for Grouped Products in Magento

Similar to the question asked at: http://stackoverflow.com/questions/1005394/magento-show-custom-attributes-in-grouped-product-table I'd like to display attributes of simple products in the grouped ...
3
votes
8answers
177 views

Using .NET for Windows Forms based Product Development

.NET has become a popular technology among software developers and comsumers. I was thinking if it would be a wise decision to develop a Windows Forms based product in .NET that can be downloaded by ...
2
votes
1answer
46 views

What is the difference between isSaleable() and isAvailable()?

I'm working on the display of the stock availability on the (individual) product page of my Magento theme, and there's something I don't completely understand about this. I see two methods being used ...
2
votes
1answer
82 views

Extending product type in Magento

We are building a module which allows you to group several products into a set for a specified price. Seeing as this is not too different from the grouped product, we extended it so we wouldn't have ...
2
votes
1answer
76 views

Using Magento API to get Products

I'm using the Magento API to get product data for products from a certain category from another domain. I have made the API call etc... The code I'm currently using to get the product data looks like ...
2
votes
0answers
7 views

product model and category navigation model cannot be used simultanously

i have a category navigation page in the category page which uses category navigation model .I want the category navigation page in the product page which uses product model and also i cant use ...
2
votes
2answers
122 views

Naming an iOS app for submission

iTunes Connect accepts names for the app to include symbols like "+". But when I am trying to submit the app with an Xcode project name that includes "+" I receive the error that the name of the ...
2
votes
4answers
120 views

MySQL Many to Many Query. Is it possible?

Here's my problem: I have three tables that represent a many to many relationship which look like to following: table products product_id product_price, etc. (basic info same for every product) ...
2
votes
1answer
95 views

How long is the string of manufacturer of a USB device?

Exist a official documentation that talk about the maximum length assuming a string that represent Manufacturer (or Product Name, or Model Name, or Device Name, or Label, or Serial Number) of a USB ...
2
votes
2answers
104 views

Can't install FacultyStaffDirectory on Plone 4.1

I am using Plone 4.1 and FacultyStaffDirectory 3.0. My buildout failed with an error (archetypes.schema < 2.1) so I pinned archetypes.schemaextender = 2.0.3 and I was able to install the FSD 3.0. ...
2
votes
5answers
855 views

Magento Product Attribute Get Value

How to get specific product attribute value if i know product ID without loading whole product?
2
votes
1answer
257 views

Magento related items with custom options add to cart not working

In magento when i tried to add related items to cart it doesn't work. I have gone through some references and i found that it has problem only if it has custom options. Products without custom options ...
2
votes
1answer
74 views

What Perl code should I include when I ship the product?

When shipping a product to customers what code should I include? use strict; use warnings 'FATAL'; .etc
2
votes
2answers
513 views

Magento - Adding multiple types of images with a product

I need to add multiple types of image with a product like.. Product designer image (designed by), Product quality assurance logo... and also the product image. Other types of images can also be 0 or ...
2
votes
1answer
37 views

Discrepancy between Debug outcome and Build/Run outcome - C in Netbeans

(This is NOT a homework help question) I was asked by my professor to write a simple program for computing the dot product of two linear arrays. That was the easy part, so I thought. When I build and ...
2
votes
1answer
52 views

how to disable a product on invalid authentication?

I'm a bit stumped at this. I have a pretty unique hashing algorithm, etc. for key/license creation; i'm not worried about that part. what i do need ideas on is how to disable a product on ...
2
votes
5answers
3k views

Magento programmatically remove product images

This must be a such a simple programming task that I absolutely cannot find any information about it on the net. Basically, I'm trying to DELETE product images. I want to delete all images from a ...
2
votes
1answer
2k views

Magento: Get product price from another store?

I have multi-store Magento installation, and different product prices are set in different stores. I want to display on one page the actual product price from the current store, and the price from ...
2
votes
2answers
165 views

Creating a PHP application with a framework - profitable product? [closed]

I'm curently working as a developer for a chain of educational institutes. I'm developing a web application that will manage students processes (registration, Moodle integration, grades, ...
2
votes
2answers
60 views

Developing an API for a downloadable ASP.NET product?

We've got a product built using ASP.NET web forms (3.5), and are investigating adding an API to allow other applications to access data and business logic within the application. What is the best ...
2
votes
2answers
650 views

magento bundle product displaying as out of stock

I have created a bundle product in Magento 1.4.0.1. All the components of the bundle are in stock but when the bundle is displayed on the front end, it shows as out of stock? How do I get that product ...
2
votes
1answer
2k views

Delete unused product images in magento

The image-clean module lists unused images under /media/catalog/product and let you delete them. Is there a script that automatically delete unused images without user interaction? I want to run this ...
2
votes
3answers
247 views

Store huge data in MySQL?

I am trying to create a DB table in MySQL to store my product statistics data. Almost every days' stats should be in the database. Problem is the speed. Currently I am storing, for each product, ...
2
votes
2answers
127 views

Finding the product of a variable number of string arrays in Java

Is there a Java equivalent to Ruby's Array#product method, or a way of doing this: groups = [ %w[hello goodbye], %w[world everyone], %w[here there] ] combinations = ...

1 2 3 4 5 6