project-planning

Efficient MySQL table structure for rating system

会有一股神秘感。 提交于 2019-12-05 02:57:12
问题 This post is a follow-up of this answered question: Best method for storing a list of user IDs. I took cletus and Mehrdad Afshari's epic advice of using a normalized database approach. Are the following tables properly set up for proper optimization? I'm kind of new to MySQL efficiency, so I want to make sure this is effective. Also, when it comes to finding the average rating for a game and the total number of votes should I use the following two queries, respectively? SELECT avg(vote) FROM

Project Ideas for course [closed]

谁都会走 提交于 2019-12-04 13:16:25
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I am going to start my Software Engineering course this semester. So I need a good project plan for it. Will have 3-4 months to complete the project. I am planning to develope a Remote Desktop Client or an Email client like gmail or yahoo. If anybody has any ideas please let me know. Assuming you have no specific requirements, I would advise you to: pick something that interest you that has a core

Automating a Job at Work: Importing Powerpoint Bullet Text into an Excel Sheet

∥☆過路亽.° 提交于 2019-12-04 09:39:30
I have been asked to automate a particular task at work today which takes up a lot of our time! The following is what needs to be done and I would appreciate any help on how I can do this (Implementation Advice) within the realms of my knowledge, if possible. Problem I have a PowerPoint document (.ppt). I would like to extract text from there (the text is in bullet point format). I would like to insert these bullets points into an Excel sheet, each bullet point should be a row. I would also like to put in the adjacent column the page this bullet point text was taken from. So, basically:

Time management tricks, tools & tips [closed]

匆匆过客 提交于 2019-12-04 07:35:14
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 8 years ago . Working with software day-to-day usually means you have to juggle project work, meetings, calls and other interrupts. What single

I have three projects that share the same DB, whats the best way to use EF across all?

我的梦境 提交于 2019-12-03 23:25:24
I have three projects (WCF projects, not clients), I have one database for all, now how will I use EF with this? should I make a fourth project which will have the db context and the entities and then add a reference to it in all three projects? or should I just have a separate context for each project and just add the tables i need for each project? some of the table are really used everywhere. so what's the best solution for this? Another question: should I expose the EF db context in the separate project so other projects can access it? something like: MySeparateProject myPr = new

What is your preferred boolean pair: 1/0 Yes/No True/False?

99封情书 提交于 2019-12-03 21:19:20
When dealing with MySQL, I typically use the BOOLEAN type, which is equivalent to TINYINT(1), or 1/0 In most languages I work with, true/false is preferred When displaying forms, sometimes "Yes / No" makes more sense enum Bool { True, False, FileNotFound }; http://thedailywtf.com/Articles/What_Is_Truth_0x3f_.aspx In code: true/false. In the UI: Yes/No or OK/Cancel true and false makes a lot more sense to me, in code - partly through familiarity, I'm sure. I suspect I'd get used to yes and no pretty quickly. 1 and 0 really doesn't work for me though. Consider the expression age == 5 It's a test

Efficient MySQL table structure for rating system

家住魔仙堡 提交于 2019-12-03 21:16:44
This post is a follow-up of this answered question: Best method for storing a list of user IDs . I took cletus and Mehrdad Afshari's epic advice of using a normalized database approach. Are the following tables properly set up for proper optimization? I'm kind of new to MySQL efficiency, so I want to make sure this is effective. Also, when it comes to finding the average rating for a game and the total number of votes should I use the following two queries, respectively? SELECT avg(vote) FROM votes WHERE uid = $uid AND gid = $gid; SELECT count(uid) FROM votes WHERE uid = $uid AND gid = $gid;

How to design/plan for web application development?

岁酱吖の 提交于 2019-12-03 04:30:51
问题 I'm interested in learning how to design/plan for web application development, in a multiple developer team scenario. Assuming the role of "Project Manager/Lead": What "documents" are needed for successful web application development? What UML diagrams are needed and to what degree? In the design/plan phase does each - as per use case - class need to be diagrammed? How detailed (depth and breadth) should the class diagrams be? If you have any helpful book/website recommendations, please share

Bugzilla or Mantis? [closed]

北慕城南 提交于 2019-12-03 00:35:39
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . As the title says, I'm starting one project right now, and trying to layout the infrastructure for the project (SVN, Email, Bug

How to deal with Concurrency before you start coding

喜你入骨 提交于 2019-12-02 18:20:47
I'm midway through programming a Java program, and I'm at the stage where I'm debugging far more concurrency issues than I'd like to be dealing with. I have to ask: how do you deal with concurrency issues when setting out your program mentally? In my case, it's for a relatively simple game, yet issues with threads keep popping up - any quick-fix almost certainly leads to a new issue. Speaking in very general terms, what techniques should I use when deciding how my application should 'flow' with out all my threads getting in a knot? Concurrency boils down to managing shared state. "All