|
Duplicate of http://stackoverflow.com/questions/42670/i-have-an-idea-now-what
I'm not sure if is an appropriate question for Stackoverflow but since we're all programmers I think we've all have come across this problem once before and therefore I'm going...
Started by Luke on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
So, if you" is the right....
If you had that great one great idea that would take a substantial amount of time to realize, how a great idea, chances are a dozen people have thought of it first, but haven't implemented it.
|
|
What kind of compensation should be given to a developer that comes up with a new idea or business unit for a business they work for? Should they get stock options, salary inreases, percent ownership in their product, etc.?
I would like to hear experiences...
Started by Jeff Johnson on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
I think managing how the idea is fostered and promulgated is the biggest sticking and small, would argue that your great....
Created the idea (and it was really amazing), I'd want to see it through: That means a promotion raise, as well.
|
|
We occasionally get approached by people who want someone to write software for them. They often take the form of:
I have a great idea for a piece of software and I want to find someone to write it for me. I have money to fund a project. Can you help ...
Started by Rich Armstrong on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
In the case of a software idea that you don't want someone else to steal, I would probably make anyone then they really don't have an idea....
Based on a set of predetermined criteria including cost, expertise, feasibility of the idea etc.
|
Ask your Facebook Friends
|
Hello stackers.
For my university I (and three others), are searching for a project that utilizes at least one embedded device, web services or other web technology, and a Graphical User Interface.
Currently we are looking at developing a unified remote...
Started by Benjamin on
, 10 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Hi Benjamin,
The standout companies that have made great universal fresh."
Another idea (from the top....
This idea works will be up to the job ).
Coffee shoppe (or if you're particular, the nearest Peets/Starbucks/Whatever-ocino).
|
|
Using C#, asp.net 3.5, SqlServer 2005,
Trying to incorporate some inversion of control together with 3-tier architecture into my current assignment.
Don’t know enough to know if this is a great idea or an incredibly dumb one:
I have created a User Interface...
Started by Lill Lansey on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If you are doing something that reduces complexity in you and your team... .
Software's Primary Technical Imperative is to reduce complexity.
If it makes sense to you (and your team) and it works as intended, it's a fine design pattern, no matter what it is .
|
|
I have the following line in my IsapiRewrite.ini file:
RewriteRule ^/test-url.asp$ http://www.google.co.uk/ [R=301,L]
But it doesn't do anything...
However, this DOES work:
RewriteRule ^/test-url.asp$ /
Is it a case of enabling Redirect or something like...
Started by Tisch on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Just....
To do redirect, its not "RewriteRule", but instead "RedirectRule"...
Try this (slightly modified to be case insensitive):
RewriteRule ^/test-url.asp$ http\://www\.google\.co\.uk/ [I, R=301,L]
Turns out to be the documentation on the Isapi Readme.. .
|
|
Hey!!! I have a great idea!! lets all meet up at midnight this saturday and race down lakeshore and thru the x just like the INDY!!!
Started by gilligan on
, 16 posts
by 12 people.
Answer Snippets (Read the full thread at gtamotorcycle):
Instructor www.learningcurves.ca/ Re: Hey!!! I have a great idea!! too late been there done that
next I dive deep with The Dive Academy in Oakville come dive with us Re: Hey!!! I have a great idea ZXS650 "Lunatic Fringe"
Instructor....
|
|
I have to do this project for school, and the theme is "A successful business". And I'm really stuck because I have no idea where to start from. Initially the project was supposed to be some sort of educational thing, but the theme changed after 2 months...
Started by byte1918 on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
Sure, it may be tougher than doing work of graphic-making interface and wcf is some kind of network tool right?
I considered your idea, and then give them a better way to do it....
That a website may be better for your idea, then go for it.
|
|
Shadow Post subject: Re: I have a great idea to attract new people! Posted: Sun Apr 25, 2010 11:52 pm
Joined: Tue Apr 13, 2010 2:58 am
Posts: 33 Hmmm...
Answer Snippets (Read the full thread at freeforums):
Good idea friendly:P, anywhooo Good idea Bra.
Perhaps Shadow could decide on a spot, deep in the wild, like Agility Arena, so people would be discouraged to return, because of the distance .
But its a pretty good idea..
And crap.
|
|
Hi All !
I have to code below - works great in IE and Opera, but does not work at all in Firefox / Netscape. Any ideas?
The problem is that nothing happens when clicking printer friendly.
<html> <head> <script type="text/javascript">...
Started by Fero on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Document.getElementById("printForm").submit();
document.forms["printForm"].submit();
<....
You have to get form by id, not by name .
And in the form tag write "action" not "ction".
I think you should use document.printForm instead of window.printForm.
|