active questions tagged strategy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T07:44:20Z http://stackoverflow.com/feeds/tag/strategy http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1886642/how-to-win-this-game 4 How to win this game? ZelluX 2009-12-11T08:34:47Z 2009-12-11T18:41:19Z <p>Support we have an n * m table, and two players play this game. They rule out cells <strong>in turn</strong>. A player can choose a cell (i, j) and rule out all the cells from (i,j) to (n, m), and who rules out the last cell <strong>loses</strong> the game. </p> <p>For example, on a 3*5 board, player 1 rules out cell (3,3) to (3,5), and player 2 rules out (2,5) to (3,5), current board is like this: (O means the cell is not ruled out while x mean it is ruled out)</p> <pre><code>3 O O x x x 2 O O O O x 1 O O O O O 1 2 3 4 5 </code></pre> <p>and after player 1 rules out cells from (2,1) to (3,5), the board becomes</p> <pre><code>3 x x x x x 2 x x x x x 1 O O O O O 1 2 3 4 5 </code></pre> <p>Now player 2 rules out cells from (1,2) to (3,5), which leaves only (1,1) clean:</p> <pre><code>3 x x x x x 2 x x x x x 1 O x x x x 1 2 3 4 5 </code></pre> <p>So player 1 has to rules out the only (1,1) cell, since one player has to rule out at least one cell in a turn, and he loses the game.</p> <p>It is clearly that in n*n, 1*n, and 2*n (n >= 2) cases, the one who plays the first wins.</p> <p>My problem is that, is there any strategy for a player to win the game in all cases? Should he plays first?</p> <p>P.S</p> <p>I think it is related to strategies like dynamic programming or divide-and-conquer, but has not come to an idea yet. So I post it here.</p> <p><strong>The answer</strong></p> <p>Thanks to <a href="http://en.wikipedia.org/wiki/Chomp" rel="nofollow" title="sdcwc's link">sdcwc's link</a>. For tables bigger than 1*1, the first player will win. The proof is follow: (borrowed from the wiki page)</p> <blockquote> <p>It turns out that for any rectangular starting position bigger than 1 × 1 the 1st player can win. This can be shown using a strategy-stealing argument: assume that the 2nd player has a winning strategy against any initial 1st player move. Suppose then, that the 1st player takes only the bottom right hand square. By our assumption, the 2nd player has a response to this which will force victory. But if such a winning response exists, the 1st player could have played it as his first move and thus forced victory. The 2nd player therefore cannot have a winning strategy.</p> </blockquote> <p>And <a href="http://tiny.cc/CJTrv" rel="nofollow" title="Zermelo's theorem">Zermelo's theorem</a> ensures the existence of such a winning strategy.</p> http://stackoverflow.com/questions/1882666/most-elegant-safe-easy-solution-to-store-and-edit-gui-a-directory-like-tree-str 1 Most elegant/safe/easy solution to store and edit (GUI) a directory-like tree structure? BastiBense 2009-12-10T17:36:36Z 2009-12-11T01:23:57Z <p>Hello,</p> <p>I've got a slightly tricky problem to solve; imagine this:</p> <p>One of my applications needs to make heavy use of scripting, so my idea was to provide the user a way to write script snippets and organize them in a directory-like tree structure. This is much like a source code directories with subdirectories and source files.</p> <p><strong>Data Classes/Storing</strong></p> <p>The first problem I come across is that I need to find a good way to store the whole tree structure (on the disk, and within the application at runtime). For this I had these ideas:</p> <ol> <li>Use a QObject derived class which can represent the tree using QObject's parent/child features. This way I don't have to worry about deleting those objects if they parents get deleted.</li> <li>Use a simple class which may contain a QList (without pointers) of children and a few properties which store the properties of each group/script.</li> <li>Use approach #2, but use pointers instead of static objects - this would avoid useless copying whenver I have to pass a group or part of a tree to a function, etc.</li> <li>Use a live backend to a SQLite (or similar) database, and query it at runtime. This would avoid loading the whole tree at once and keeping it in RAM.</li> <li>Use a flat file and directory structure on the file system; although I think this introduces more trouble than necessary because there is no way to store meta information about objects.</li> </ol> <p><strong>Editor</strong></p> <p>The next problem I come across is the fact that the user probably wants to edit the whole tree structure. He wants to click on a group or script, edit the script code and possibly Drag &amp; Drop directories and scripts around within the tree; thus changing the structure of the whole tree on the way.</p> <p>This raises the following problems:</p> <ol> <li>If the user closes the editor, it might be a good idea to provide him a "Do you want to save the changes?" dialog. Much like a text editor where you accidently typed something into an existing document, but you quit without saving the changes. - This would require that we edit a copy of the whole tree, and overwrite the existing tree within the application when needed.</li> <li>Allowing Drag &amp; Drop could be problematic... <ul> <li>... with the <em>storing approach #1</em>: currently no good way exists to change the order of children of QObjects. Also moving objects around at runtime while other parts of the program might access them is not a good idea.</li> <li>... this is easier with <em>storing approach #2</em>, since the whole tree is handled like a single value and there are no children I'd have to move and re-parent. Copying a part of the tree automatically copies all children and so on. Unfortunately this would mean a lot of overhead and loss in flexibility (I'd have to write the whole tree onto the disk again since I can't be sure what exactly changed).</li> </ul></li> </ol> <p>I'll probably update this question a little when more things come to my mind, but I'm really curious how other people solve this problem. Any suggestions and ideas are appreciated. :)</p> http://stackoverflow.com/questions/1857733/tdd-as-a-defect-reduction-strategy 1 TDD as a defect-reduction strategy smart.java6 2009-12-07T04:01:03Z 2009-12-09T16:10:34Z <p>Can TDD be successful as a defect-reduction strategy without incorporating guidance on test case construction and evaluation?</p> http://stackoverflow.com/questions/1770076/log4j-strategies-for-creating-logger-instances 6 Log4J: Strategies for creating Logger instances Adrian 2009-11-20T12:08:27Z 2009-12-08T12:54:10Z <p>I decided to use Log4J logging framework for a new Java project. I am wondering what strategy should I use for creating/managing Logger instances and why?</p> <ul> <li><p>one instance of Logger per class e.g.</p> <p>class Foo { private static final Logger log = Logger.getLogger( Foo.class ); }</p></li> <li><p>one instance of Logger per thread</p></li> <li>one instance of Logger per application</li> <li>horizontal slicing : one instance of Logger in each layer of an application (e.g. the view layer, the controller layer and the persistence layer)</li> <li>vertical slicing : one instance of Logger within functional partitions of the application </li> </ul> <p>Note: This issue is already considered to some extent in these articles:</p> <p><a href="http://firstclassthoughts.co.uk/java/getting%5Flog4j%5Floggers.html" rel="nofollow">The ultimate way to gettting [sic] Log4J loggers</a> </p> <p><a href="http://stackoverflow.com/questions/771675/whats-the-overhead-of-creating-a-log4j-logger">Whats the overhead of creating a Log4j Logger</a></p> http://stackoverflow.com/questions/1837117/use-strategy-pattern-for-billing-models-that-use-different-data-for-the-calculati 2 use strategy pattern for billing models that use different data for the calculation? huberto 2009-12-03T01:34:30Z 2009-12-04T05:25:50Z <p>we have an invoice model that bills clients in a few different ways. for brevity sake, i'm going to focus on two: cost per impression and cost per phone inquiry. my thought was to implement these (and the rest) as strategies and then dynamically mix them in to the invoice class. </p> <p>this seems appropriate because there are different sources of information used to determine the number of impressions/calls. this could be encapsulated in the strategy, while keeping the basic formula in the Invoice class.</p> <p>the caluclation for cost per impression is simple: num impressions X cost per impression</p> <p>the calculation for phone inquiries is a little more complicated: num calls X cost per call</p> <pre><code>class Invoice def self.strategy self.class_eval &lt;&lt;-EOS include #{billing_type} EOS end def invoice_amount # this will used the module mixed in above self.rate * calculate_impressions end end </code></pre> <p>then the modules could be</p> <pre><code>module PerImpressionCalculation def calculate_impressions # get the number of impessions from source a... end end module PerInquiryCalcuation def calculate_impressions # get the number of impessions from source b... end end </code></pre> <p>however, whether a call counts or not is based on the length of the call and this varies from model to model. thus, when i'm searching through the phone logs i need to have this value. </p> <p>my question is where does this value get stored? i could create a strategy for invoices that are based on 10 second calls and a separate one for 30 second ones, but that seems wasteful. if a deal came in that wants the threshold to be 15 seconds, i need to write a new strategy. </p> <p>insight? </p> <p>thanks, hubert</p> http://stackoverflow.com/questions/1771082/are-there-any-open-source-military-war-strategy-simulating-engines-frameworks 6 Are there any open-source military/war strategy simulating engines/frameworks? luvieere 2009-11-20T15:11:42Z 2009-11-30T06:46:42Z <p>Are there any open-source military/war strategy simulating engines or frameworks? Combat rules engines or weapon selection guides? I'm looking for something similar to a military strategy "unit testing" in a simulated field.</p> <p>What I'm trying to build is a combat advisor for troops deployed in the field. Intel' comes in with enemy's moves - software should advice about an optimal strategy - like in chess, only with two armies. The framework should be scalable - in an urban guerrilla warfare context it should advice upon tactical moves to make in order to counteract the enemy's assessed field tactics. That's why I'm wondering about any open source initiatives, so I could learn something from collective knowledge and gain insight upon such a project.</p> http://stackoverflow.com/questions/1772903/real-time-synchronization-of-database-data-across-all-the-clients 1 Real-time synchronization of database data across all the clients luvieere 2009-11-20T20:01:14Z 2009-11-21T18:21:21Z <p>What's the best strategy to keep all the clients of a database server synchronized?</p> <p>The scenario involves a database server and a dynamic number of clients that connect to it, viewing and modifying the data.</p> <p>I need real-time synchronization of the data across all the clients - if data is added, deleted, or updated, I want all the clients to see the changes in real-time without putting too much strain on the database engine by continuous polling for changes in tables with a couple of million rows.</p> <p>Now I am using a Firebird database server, but I'm willing to adopt the best technology for the job, so I want to know if there is any kind of already existing framework for this kind of scenario, what database engine does it use and what does it involve?</p> http://stackoverflow.com/questions/1191324/strategies-for-writing-expanding-ordered-files-to-disk 0 Strategies for writing expanding ordered files to disk James Matta 2009-07-28T00:18:35Z 2009-09-11T01:53:38Z <p>I an a graduate student of nuclear physics currently working on a data analysis program. The data consists of billions of multidimensional points.</p> <p>Anyways I am using space filling curves to map the multiple dimensions to a single dimension and I am using a B+ tree to index the pages of data. Each page will have some constant maximum number of points within it.</p> <p>As I read the raw data (several hundred gigs) in from the original files and preprocess and index it I need to insert the individual points into pages. Obviously there will be far too many pages to simply store them in memory and then dump them to disk. So my question is this: What is a good strategy for writing the pages to the disk so that there is a minimum of reshuffling of data when a page hits it's maximum size and needs to be split.</p> <p>Based on the comments let me reduce this a little.</p> <p>I have a file that will contain ordered records. These records are being inserted into the file and there are too many of these records to simply do this in memory and then write to the file. What strategy should I use to minimize the amount of reshuffling needed when I insert a record.</p> <p>If this is making any sense at all I would appreciate any solutions to this that you might have.</p> <p>Edit: <br> The data are points in multidimensional spaces. Essentially lists of integers. Each of these integers is 2 bytes but each integer also has an additional 2 bytes of meta-data associated with it. So 4 bytes per coordinate and anywhere between 3 and 20 coordinate. So essentially the data consists of billions of chunks each chunk somewhere between 12 and 100 bytes. (obviously points with 4 dimensions will be located in a different file than points with 5 dimensions once they have been extracted).</p> <p>I am using techniques similar to those discussed in this article: <a href="http://www.ddj.com/184410998" rel="nofollow">http://www.ddj.com/184410998</a></p> <p>Edit 2: I kinda regret asking this question here so consider it officially rescinded; but here is my reason for not using off the shelf products. My data are points that range anywhere from 3 to 22 dimensions. If you think of each point as simply a list you can think of how I want to query the points as what are all the numbers that appeared in the same lists as these numbers. Below are some examples with low dimensionality (and many fewer data points than normal) Example: Data 237, 661, 511, 1021 1047, 661, 237 511, 237, 1021 511, 661, 1047, 1021</p> <pre><code>Queries: 511 1021 237, 661 1021, 1047 511, 237, 1047 Responses: 237, 661, 1021, 237, 1021, 661, 1047, 1021 237, 661, 511, 511, 237, 511, 661, 1047 511, 1021, 1047 511, 661 _ </code></pre> <p>So that is a difficult little problem for most database programs, though I know of some that exist that can handle this well.</p> <p>But the problem gets more complex. Not all the coordinates are the same. Many times we just run with gammasphere by itself and so each coordinate represents a gamma ray energy. But at other times we insert neutron detectors into gammasphere or a detector system called microball, or sometimes the nuclides produced in gammasphere are channeled into the fragment mass analyzer, all those and more detector systems can beused singly or in any combination with gammasphere. Unfortunately we almost always want to be able to select on this additional data in a manner similar to that described above. So now coordinates can have different meanings, if one just has microball in addition to gammasphere you make make up an n dimensional event in as many ways as there are positive solutions to the equation x + y = n. Additionally each coordinate has metadata associated with it. so each of the numbers I showed would have at least 2 additional numbers associated with them, the first, a detector number, for the detector that picked up the event, the second, an effeciency value, to describe how many times that particular gamma ray counts for (since the percentage of gamma rays entering the detector that are actually detected, varies with teh detector and with the energy).</p> <p>I sincerely doubt that any off the shelf database solution can do all these things and perform well at the same time without an enourmous amount of customization. I believe that the time spent on that is better spent on writing my own, much less general, solution. Because of the loss of generality I do not need to implement a delete function for any of the databasing code, I do not need to build secondary indices to gate on different types of coordinates (just one set, effectively counting each point only once), etc.</p> http://stackoverflow.com/questions/1247915/how-to-generate-a-random-number-with-java-from-given-list-of-numbers 1 How to generate a random number with Java from given list of numbers. Tharindu Madushanka 2009-08-08T03:46:31Z 2009-08-17T10:55:40Z <p>Hi,</p> <p>Assume I have an array/vector of numbers like 1,3,7,9 then I need to guess a number from this list randomly. Using Random class in Java it seems like not possible to do this. Could anyone kindly help me to tell a way to do this kind of thing. I have to change the list of numbers used to generate random number. I am trying to implement a strategy to play battleship game automatically as an assignment. Kindly help me to do this ?</p> <p>Kind Regards,</p> <p>Tharindu Madushanka</p> http://stackoverflow.com/questions/1224830/difference-between-strategy-pattern-and-delegation-pattern 2 difference between strategy pattern and delegation pattern hIpPy 2009-08-03T21:55:52Z 2009-08-03T22:30:01Z <p>What is the difference between strategy pattern and delegation pattern (not delegates)?</p> http://stackoverflow.com/questions/1085742/after-having-started-a-project-and-suddenly-having-found-new-competition-how-do 7 After having started a project and suddenly having found new competition, how do you convince yourself to keep going? Artem Russakovskii 2009-07-06T07:01:22Z 2009-07-27T07:26:36Z <p>I understand this is a subjective question but I want to see how others dealt with this issue:</p> <p>How do you convince yourself and your teammates while trying to start a business or a project and suddenly faced with competition, whether due to lack of research or entirely new startups, that we should keep going?</p> <p>What are some motivational techniques, considering this quite specific situation?</p> <p>I'm trying to learn this in advance before getting burned.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1185441/zendauth-why-authenticate-object-named-adapter-and-not-strategy 3 Zend_Auth: why authenticate object named adapter and not strategy? koen 2009-07-26T20:15:28Z 2009-07-26T20:36:53Z <p>$Zend_auth->authenticate($adapter);</p> <p>Why is it called an adapter and not a strategy?</p> http://stackoverflow.com/questions/1177625/to-re-write-or-not 2 To re-write or not? OverClocked 2009-07-24T13:23:45Z 2009-07-24T13:57:38Z <p>This is a strategic question. I have a large piece of software, web based, that handles probably around 50 to 60 different tasks. The software uses about 100 MySQL tables, and can probably be considered as 3 big modules targeting 3 different sets of audiences. It runs very well.</p> <p>The software was started 5 years ago, and has gone through incremental improvements. I pretty much designed and wrote the system single-handedly. There are definitely places where the design is bad; and after 5 years I think I can definitely do a better job if I re-write parts of it. But we never did rewrite it from scratch, so some of the bad design is left there. Code works but design is not all pretty at all places.</p> <p>The system was built on a proprietary software platform; platform provide strong security (unparalleled in 99% of other web platforms, jailed silos, forced parameterized SQL, row based ACL on MySQL data) and performance (resources grow as number of applications, not number of concurrent hits). Turns out we don't need the performance benefits, but it was a nice thing to use.</p> <p>The problem I am running into now is this: for the good of the company and myself, I'd like to transition the system to the point where I no longer have to maintain it, where I can get someone else to come in and improve and build on it. It's been shown that it'd be hard to hire talent to work on this existing platform. From this perspective, it'd be easier to re-write it (say it takes a year) using Java and then have the system be maintainable by others.</p> <p>We are a small non-computer firm, and it'd be hard to attract top architects to do the re-design. I personally am too busy with other things to do the re-design. We can get outsourced contractors to do it, but I worry about quality of the system architecture. The system is also fairly complex, so it'd be hard to get all the requirements right (most requirements are in my head -- although you can make the case that the re-design and re-write would force us to do more documentation). </p> <p>I am leaning toward re-writing the whole thing, but have serious reservations. Any thoughts?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1144722/how-to-change-career-to-software-industry 2 How to change career to software industry [closed] Carlito 2009-07-17T17:40:18Z 2009-07-23T18:58:13Z <p>I am an MBA student with a mechanical engineering background who wants to redirect its career to software industry (business development, strategy or marketing). Employers now are not willing to take risks and they hire only people with relevant experience (which I dont really have). I'm looking for advice on:</p> <ol> <li>How to prepare myself and get the necessary knowledge</li> <li>How to convince potential employers that I have that knowledge</li> </ol> http://stackoverflow.com/questions/1145043/how-to-encapsulate-change-for-random-variations 0 How to Encapsulate Change For Random Variations Austin 2009-07-17T18:51:14Z 2009-07-22T13:16:46Z <p>I am writing a motor vehicle system for a county government that lets a user select many different types of car tags. The problem is that the state has built in a lot of special little exceptions for tag types. I realize it's very messy and inefficient to simply code if statements for each of these, but I can't seem to find a way to abstract this out because the variations on the tag types are so different. Does anyone have any ideas as to how one would do this? Thanks!</p> http://stackoverflow.com/questions/1125735/any-way-to-declare-routing-strategy-for-an-wpf-element 1 Any way to declare routing strategy for an WPF element? stefan 2009-07-14T14:22:49Z 2009-07-14T14:29:21Z <p>Suppose we have a WPF element, for instance StackPanel with Buttons, Textboxes etc. inside. Is there any way to say directly in XAML that I want a tunneling strategy?</p> <pre><code>&lt;StackPanel RoutinStrategy="Tunneling" ... </code></pre> http://stackoverflow.com/questions/1108552/how-to-be-good-at-ruby-on-rail 0 How to be good at Ruby on Rail pang 2009-07-10T09:11:29Z 2009-07-10T09:37:35Z <p>If I want to be good at Ruby on Rail, what is the good way to reach it?</p> <p>Which resource I should read?</p> <p>How Can I test myself that I good at it and what level am I?</p> http://stackoverflow.com/questions/498650/how-managers-choose-programming-languages 7 How managers choose programming languages stefan.ciobaca 2009-01-31T11:15:18Z 2009-07-02T12:58:44Z <p>It's not a secret to anyone that managers can and often will impose the programming language that will be used for a project.</p> <p>Being a programmer myself, I have never been able to understand this.</p> <p>But now I think I do: I've just had a revelation when Joel Spolsky said on the podcast that they should use QuickBooks because 'every accountant in the world knows it'. This struck me as being very similar to 'chose Java because every programmer in the world knows it'.</p> <p>Now that I've seen the same issue from another perspective (I don't know much about accounting, but I do know something about programming), I'm wondering how can a programmer help make sure the right programming language is chosen for a project.</p> http://stackoverflow.com/questions/729840/wordperfect-programmers-refusing-to-use-anything-but-assembler 9 WordPerfect programmers refusing to use anything but assembler Totophil 2009-04-08T12:53:10Z 2009-06-22T15:22:25Z <p>There is <a href="http://www.joelonsoftware.com/articles/fog0000000074.html" rel="nofollow">a version</a> (popularised by Joel Spolsky) attributing the demise of WordPerfect to a refusal of its programmers to use anything but assembler that led to delay of the first WPwin release and as result eventually to losing the all important battle with Microsoft.</p> <p>There are a few references to programming work being done using assembler in the autobiographical book "<a href="http://www.wordplace.com/ap/" rel="nofollow">Almost Perfect</a>" by W. E. Pete Peterson who used to have a major influence at running the corporation. But these references go back to early 80's when WordPerfect was trying to gain a significant market share by defeating WordStar and not early nineties when the battle with MS took place.</p> <p>I am looking for a second independent source to confirm the assumption. </p> <p>Maybe someone who worked for WordPerfect Corporation at a time, who was close to the company, or had a chance to see the source could clarify the issue.</p> <p>Your help is much appreciated, thanks!</p> <p>Please note that this question is not about any other theories or reasons behind WordPerfect demise. I really just need to clarify whether they used assembler as a primary language for WPwin and (as a bonus really) whether there were discussions held within the corporation about assembler being the right choice.</p> <p>Concisely: </p> <ul> <li>Did WPCorp use assembler as a primary language for WPwin?</li> <li>Were discussions held at a time amongst WP Corp staff about assembler being the right choice (was it management or programmers decision)?</li> </ul> http://stackoverflow.com/questions/1006801/successful-strategies-for-try-catch-in-sql-server-2005 0 Successful Strategies for TRY ... CATCH in SQL Server 2005 macleojw 2009-06-17T12:47:15Z 2009-06-17T13:11:17Z <p>I'm changing some code to take advantage of TRY ... CATCH in SQL Server 2005. What successful strategies have you found for using it? I'm thinking of creating a stored proc which calls the system functions which give details of the error, rolls back any open transaction and raises an error. Is there a better way?</p> http://stackoverflow.com/questions/985626/strangler-application-implementation-with-zendframework 1 Strangler Application implementation with ZendFramework f13o 2009-06-12T08:37:54Z 2009-06-13T21:34:35Z <p>I have current PHP codebase written in procedural (mainly) style that our client is using for some time now. What we want is to "strangle" (as in concept <a href="http://martinfowler.com/bliki/StranglerApplication.html" rel="nofollow">Strangler Application</a>) that code and add Zend Framework to enable new development.</p> <p>What I have now is custom route that routes all "old" HTTP request to one controller (i.e. Strangler Controller) and that controller will use cURL to make new request transferring that request to "old" application (this "old" code uses also .htaccess to do some rewrites...) and fetching response that I send directly to user browser. This is done because the old code already does all processing and templates and such stuff (session...). </p> <p>Next step will be to implement ZendSessions so we can mirror user experience through both applications.</p> <p>After writing some new features using ZF MVC we will route these new request to new code... Hopefully, this will all end in removing all old code in some reasonable time window.</p> <p>What I ask:</p> <p>"Is there anybody already doing this and if Yes, what are the advices with taking these step and implementations?"</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/990952/how-to-prove-to-our-users-that-they-are-not-being-cheated 5 How to prove to our users that they are not being cheated? krys 2009-06-13T16:17:24Z 2009-06-13T18:03:21Z <p>I have an information theory question about how to prove (or at least give statistical evidence) that an auction website is not shilling its users. </p> <p>We recently launched a pay-per-bid auction website. It is a new type of auction where the users pay to bid on timed auctions. Each bid raises the price and increases the time of the auction. The last bidder when the time runs out gets to buy the item.</p> <p>The problem is that users are suspicious that we may be cheating them. I have no such intentions as the trust of my users is of paramount importance to me. However, the model could be implemented by other unscrupulous sites and it would be straightforward to cheat bidders. I need to put measures in place that will show our users that we are legitimate.</p> <p>I am committed to running an honest operation. The challenge is how to prove this to the world? Any approach will need to be balanced with preserving the privacy of users.</p> <p>Some ideas I have are:</p> <ul> <li><p>show IP address of each user </p></li> <li><p>solicit testimonials from winners who have received their merchandise. Have them mail in photos of them with their merchandise and a recent cover copy of their local paper.</p></li> <li><p>show some broad information about each user, such as home state and country</p></li> </ul> <p>I am looking for any suggestions.</p> <p><strong>Update</strong></p> <p>Some great suggestions. So far:</p> <ul> <li><p>Provide behavioral information about each users:</p> <ul> <li>when joined</li> <li>which auctions took part of</li> <li>stats for auction - bids placed, cost</li> </ul></li> <li><p>do not publish personally identifiable information. No IP address, since people who did not win could exact retribution on the winner.</p></li> <li><p>public forum for discussion and address questions</p></li> <li><p>solicit testimonials from users to show that people do win and do receive products. </p> <ul> <li>how can we show in the testimonial that it is not "invented" by us? I am thinking of perhaps asking to include a photo with a recent local newspaper. This would be hard to fake on a large scale, and how distribution of winners through time and locality.</li> </ul></li> </ul> <p>Do you believe it would be OK to show the home State and Country of user, or would that be too much personal information?</p> http://stackoverflow.com/questions/945191/caching-strategy-for-queried-data 2 Caching Strategy for queried data TWith2Sugars 2009-06-03T14:43:25Z 2009-06-03T23:45:51Z <p>I'm currently in the process of building a repository for a project that will be DB intensive (Performance tests have been carried out and caching is needed hence why I'm asking )</p> <p>The way I've got it set up now is that each object is individually cached, if I want to do a query for them objects I pass the query to the database and return a the id's required. (For some simple queries I've cached and manage the ids)</p> <p>I then hit the cache with these ids and pull them out, any missing objects are bundle in to "where in" statement and fired to the database; at this point I repopulate the cache with the missing ids.</p> <p>The queries them selves are most likely to be about paging / ordering the data.</p> <p>Is this a suitable strategy? Or perhaps are there better techniques available?</p> <p>Thanks Tony</p> http://stackoverflow.com/questions/934124/cost-decorators 0 Cost decorators inanc 2009-06-01T09:29:50Z 2009-06-01T09:44:56Z <p>Hello,</p> <p>For each product there are associated cost calculators like: discount, discount by merchant, bonus by merchant, monthly discount etc. In future, more cost calculators would be added.</p> <p>We have a concrete product class and many decorators for each cost calculation. All products should use all of the calculators, because the calculators decide to apply their calculations by the product's properties like product merchant id, category id, color etc.</p> <p>And, there are millions of products in our system which needs to be calculated. So, we better cache the decorated calculators. Because, decorating each product entity in runtime would be expensive. But this is hard with decorator pattern. It seems like a smell to use this pattern in our situation.</p> <p>What do you suggest? Should we use decorators, strategy or chain-of-responsibility pattern? Or no-pattern.</p> http://stackoverflow.com/questions/916407/how-to-assign-different-concurrency-strategy-to-the-same-persistence-entity 2 how to assign different concurrency strategy to the same (persistence) entity? keweishang 2009-05-27T15:28:35Z 2009-05-29T09:45:55Z <p>I'm using JPA and I am using second-level cache for all the reference entities. Everything's working well, I can get the entities from second-level cache is they were already been selected before.</p> <p>Now, I have two applications, they both use the same database (so they both use the same table, values, etc). 1.The read-only application just read data from database, it doesn't modify the database at all. Therefore, I choose the <strong>"READ_ ONLY" concurrency strategy</strong> for the second-level cache, aiming at a better performance. 2.The read-write application read and write as well the data of database, it modify the database. Consequently, I have to choose the <strong>"READ_ WRITE" or "NONSTRICT_ READ_ WRITE" concurrency strategy</strong> for the second-level cache.</p> <p>However, the concurrency strategy is assigned in the annotation of each entity class, so I cannot change it programatically. (I don't use class mapping files for JPA, so I can't use two mapping files, each for a different concurrency strategy for the same entity class.)</p> <p>My Question is, <strong>is there a good way to change the concurrenty strategy of the second-level cache on the fly according to my 2 different applications?</strong> </p> http://stackoverflow.com/questions/869324/how-to-adapt-agile-to-different-companies-an-mba-thesis 16 How to adapt agile to different companies? An MBA thesis Keith 2009-05-15T15:21:40Z 2009-05-24T19:06:54Z <p>My master's thesis is to look at how to apply agile. </p> <p>There is an awful lot of corporate selling of agile - lots of management consultants selling their brand as 'best'. </p> <p>I'm not interested whether <a href="http://en.wikipedia.org/wiki/Extreme%5FProgramming" rel="nofollow">XP</a>, <a href="http://en.wikipedia.org/wiki/Scrum" rel="nofollow">Scrum</a>, <a href="http://www.agilekiwi.com/crystal%5Fclear.htm" rel="nofollow">Crystal Clear</a>, <a href="http://www.agilemanagement.net/Articles/Papers/StretchingAgiletoFitCMMIL.html" rel="nofollow">Agile-CMMI</a>, <a href="http://en.wikipedia.org/wiki/Six%5FSigma" rel="nofollow">Six Sigma</a> or any other brand/variant is best. I'm interested in what real, active developers (i.e. you guys) actually apply as agile.</p> <p>What I've investigated is how to tailor agile to different organisational requirements.</p> <p>From research into how different organisations apply agile I've developed the following guidelines - a recipe for what agile variations should be applied in what situations:</p> <ul> <li>Larger and more distributed or more flexible teams need stricter coding and testing standards, small teams can (and should) use less.</li> <li>Process documentation should be minimal, real-time and current. </li> <li>Detailed statistical control indicators are an unnecessary overhead: early release of incomplete software is a better indication of progress.</li> <li>Ideally developers should be close to the customer with no specialised intermediate roles. Additional roles should only be used if customers are specialised in a way that stops developers from also being users.</li> <li>Iterations should be flexible unless it benefits coordination of releases with other departments or other processes.</li> <li>Developers should be able to easily and regularly communicate but meetings should be infrequent (monthly and weekly, rather than daily).</li> <li>Pair programming should only be used for training and investigational tasks.</li> <li>These guidelines are a starting point only: continuous improvement should be used to further tailor the agile variant to the exact circumstances.</li> </ul> <p>These factors change when applied in an organisation with existing traditional (i.e. <a href="http://en.wikipedia.org/wiki/Big%5FDesign%5FUp%5FFront" rel="nofollow">BDUF</a> or <a href="http://en.wikipedia.org/wiki/Waterfall%5Fdevelopment" rel="nofollow">waterfall</a>) models, where agile teams must either coexist with or be adapted from teams using non-agile methods:</p> <ul> <li>Process documentation with sign off and structured steps will help other teams track the project.</li> <li>Statistical indicators (like velocity) can help reassure non-agile teams that the process is under control. </li> <li>Fixed iterations will help co-ordination across teams.</li> </ul> <p>These additional guidelines will help agile co-exist with traditional models, but they provide additional overhead and restrictions.</p> <p>What I want to know is what you - the people who write software, not agile consultants - think of this framework. </p> <p>What do you think is accurate? What do you think is wrong? What would you change? What have I missed?</p> <p>Most importantly: why? </p> <p><hr /></p> <p>I've added a bounty to this to offer an extra incentive to answer what is a rather long question. The bounty will go to whoever gets the most votes from the SO community - I realise that there's no single right answer, but I'm interested in what's closest to the community's consensus.</p> http://stackoverflow.com/questions/865832/fast-development-or-stable-results-which-is-more-important-for-public-web-site 0 Fast development, or stable results, which is more important for public web site/services? Serapth 2009-05-14T21:19:26Z 2009-05-21T23:52:00Z <p>This is really just me soliciting a number of opinions and as a relative newbie to this site, I hope I was correct in marking this post as a community Wiki. If I was mistaken, can someone please correct my mistake.</p> <p>Anyways, here is the scenario. I am developing a web application and a number of services in support of that application. I am having a nasty time of deciding how to do things. What I am working on is very feature oriented and to be honest, I can add new shiny features at a pretty good rate. Shiny new features obviously can be quite effective at attracting new users to my service.</p> <p>At the same time, for every feature I add, I increase my debugging, usability and other even more mundane tasks ( localization, graphics/UI development, documentation, etc... ).</p> <p>It really is a tightrope walk. I want enough functionality that people will use my services and to differentiate between possible competitors. I also want to generate a great deal of WOW factor, to create more person to person buzz, so I can grow organically. At the same time, I do not want to ship a flawed project, where people would run in to bugs/glitches/flaws and then never return, or worse, create a negative buzz.</p> <p>So, in a nutshell, that is my question. What is more important on a web based site/service... volume and speed of releasing features, or stability and polish?</p> <p>I would love to choose both, but resources are definitely finite! As it stands, I have tried my best to balance both and have gone way past my (self determined ) deadlines as a result.</p> http://stackoverflow.com/questions/875703/emailer-in-java-using-strategy-pattern 3 Emailer in Java using Strategy Pattern djunforgetable 2009-05-17T23:05:42Z 2009-05-20T19:44:46Z <p><strong>UPDATED:</strong> Added one more question (Question #4).</p> <p>Hi all,</p> <p>I'm building myself a custom emailing utility. Now, to obey Single Responsibility Principle, I want to have the following classes: MailerSender, MailProvider and EmailObject. The MailSender is more of a delegate, check it out below:</p> <pre><code>public class MailSender { private IMailProvider mailProvider; public void setMailProvider (IMailProvider provider) { this.mailProvider = provider; } // option to set it up during construction public MailSender (IMailProvider provider) { this.mailProvider = provider; } public void sendEmail(EmailObject obj) { if(mailProvider == null) throw new RuntimeException("Need a mail provider to send email."); try { mailProvider.send(obj); } catch (Exception e) { // do something here } } } </code></pre> <p>The MailSender requires an IMailProvider email provider that does the work of sending the email. Find it below:</p> <pre><code>public interface IMailProvider { public void sendEmail(EmailObject obj); } public class SMTPEmailProvider implements IMailProvider { public void sendEmail(EmailObject obj) { // use SMTP to send email using passed-in config } } public class JMSEmailProvider implements IMailProvider { public void sendEmail(EmailObject obj) { // push emails to JMS queue to be picked up by another thread } } </code></pre> <p>I have defined a few strategies above, but it can be extended to any number. Since the MailSender can change it's provider at any time, it effectively implements the strategy pattern right?</p> <p>The EmailObject is a POJO containing relavent email information:</p> <pre><code>public class EmailObject { private String to; private String from; private String cc; private String subject; private String body; // setters and getters for all } </code></pre> <p>Client code will then look like:</p> <pre><code>MailSender sender = new MailSender(new SMTPMailProvider()); sender.send(new EmailObject()); sender.setMailProvider(new JMSMailProvider()); sender.send(new EmailObject()); </code></pre> <p>My questions are: <br/><br/> 1. Have I implemented the Strategy Pattern?<br /> 2. Is this design good? Does it make sense for a MailProvider to be aware of an EmailObject?<br /> 3. What if I had a new EmailObject later on that required an attachment?<br /> 4. The client code now needs to acquire a specific MailProvider before creating a MailSender ... does this make sense?</p> http://stackoverflow.com/questions/439162/log4net-strategy-on-named-loggers 3 log4net strategy on named loggers? Jiho Han 2009-01-13T14:42:40Z 2009-05-19T19:22:35Z <p>I typically declare the following in every class:</p> <pre><code>private static readonly log4net.ILog log = log4net.LogManager.GetLogger( System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); </code></pre> <p>and use the static member within each class to log at different levels (info, debug, etc.)</p> <p>I saw that somewhere and have been using it somewhat mindlessly, reasoning that the setup is flexible enough to help me filter by namespace and log individual types if I wanted to in troubleshooting production issues and what not.</p> <p>But I've rarely had to use that "level" of fine logging. So, I would like to see what others are using. Do you use the above, as I have a feeling many are using just that, or do you create named loggers such as "debug", "trace", "error", "moduleA", etc. and share the logger among different types, assemblies?</p> http://stackoverflow.com/questions/883142/what-are-the-best-books-for-programming-theory 1 What are the best books for Programming Theory? [closed] Zachary Spencer 2009-05-19T14:30:51Z 2009-05-19T14:38:09Z <p><strong>Related:</strong></p> <blockquote> <p><a href="http://stackoverflow.com/questions/537855/what-books-to-take-programming-beyond-the-basics-closed">http://stackoverflow.com/questions/537855/what-books-to-take-programming-beyond-the-basics-closed</a></p> <p><a href="http://stackoverflow.com/questions/574001/what-books-do-you-suggest-for-understanding-object-oriented-programming-design-de">http://stackoverflow.com/questions/574001/what-books-do-you-suggest-for-understanding-object-oriented-programming-design-de</a></p> <p><a href="http://stackoverflow.com/questions/13781/computer-science-textbooks">http://stackoverflow.com/questions/13781/computer-science-textbooks</a></p> </blockquote> <p>I'm trying to build some good wish lists for the office. I'm looking for books that are more high level for now. More about programming strategy instead of tactics. I don't mind if the books are language specific, as long as they are strategy oriented.</p> <p>Thoughts?</p>