active questions tagged organizing - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T13:55:59Zhttp://stackoverflow.com/feeds/tag/organizinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1799944/xcode-organising-files-and-folders-core-data-model-objects-iphone0Xcode organising files and folders (core data model objects - iPhone)Urizen2009-11-25T21:06:00Z2009-11-29T20:55:52Z
<p>I am developing for the iPhone and the prevailing advice on auto-generating files from entities, when using Core Data, is to select the *.xcdatamodel file and the create the new file(s) etc. This creates the *.m and *.h files in the Resources directory. These are then moved to the Classes directory or a subdirectory of Classes. </p>
<p>However, when viewing my github repository I notice that all of the model files which have been auto-generated in the above mentioned way are present on the root of the project folder (as if they were a resource). </p>
<p>The underlying file structure may or may not matter (I'm unsure on this point) but I would like to make my repository less disorganised. I can see entropy taking over as the project gets much bigger and there are more files to contend with. </p>
<p>My question is therefore: is there a way to organise the underlying file structure without messing up the project settings or the way github sees the project?</p>
<p>I hope the above isn't unclear and I look forward to your replies.</p>
http://stackoverflow.com/questions/1795128/best-practice-organize-unit-tests2Best Practice: Organize Unit Tests.Lukas Šalkauskas2009-11-25T07:01:16Z2009-11-25T08:28:53Z
<p>Hello there, </p>
<p>I have solution with >270 projects, it contains various folders and etc. Imagine each project have Unit Tests, what do you think what is the best way to organize them? Should each project have Unit Tests near by, or I should create special folder for them, or even different solution for just unit tests. </p>
<p>How do you organize them for such a big solutions/projects ? </p>
http://stackoverflow.com/questions/36862/how-do-you-organise-multiple-git-repositories13How do you organise multiple git repositories?dbr2008-08-31T13:54:20Z2009-11-21T16:39:12Z
<p>With SVN, I had a single big repository I kept on a server, and checked-out on a few machines. This was a pretty good backup system, and allowed me easily work on any of the machines. I could checkout a specific project, commit and it updated the 'master' project, or I could checkout the entire thing.</p>
<p>Now, I have a bunch of git repositories, for various projects, several of which are on github. I also have the SVN repository I mentioned, imported via the git-svn command..</p>
<p>Basically, I like having all my code (not just projects, but random snippets and scripts, some things like my CV, articles I've written, websites I've made and so on) in one big repository I can easily clone onto remote machines, or memory-sticks/harddrives as backup.</p>
<p>The problem is, since it's a private repository, and git doesn't allow checking out of a specific folder (that I could push to github as a separate project, but have the changes appear in both the master-repo, and the sub-repos)</p>
<p>I <em>could</em> use the git submodule system, but it doesn't act how I want it too (submodules are pointers to other repositories, and don't really contain the actual code, so it's useless for backup)</p>
<p>Currently I have a folder of git-repos (for example, ~/code_projects/proj1/.git/ ~/code_projects/proj2/.git/), and after doing changes to proj1 I do <code>git push github</code>, then I copy the files into ~/Documents/code/python/projects/proj1/ and do a single commit (instead of the numerous ones in the individual repos). Then do <code>git push backupdrive1</code>, <code>git push mymemorystick</code> etc</p>
<p>So, the question: How do your personal code and projects with git repositories, and keep them synced and backed-up?</p>
http://stackoverflow.com/questions/690033/best-practices-for-large-solutions-in-visual-studio-200827Best practices for large solutions in Visual Studio (2008)Eyvind2009-03-27T14:40:54Z2009-11-19T19:21:35Z
<p>We have a solution with around 100+ projects, most of them C#. Naturally, it takes a long time to both open and build, so I am looking for best practices for such beasts. Along the lines of questions I am hoping to get answers to, are:</p>
<ul>
<li>how do you best handle references between projects
<ul>
<li>should "copy local" be on or off?</li>
</ul></li>
<li><p>should every project build to its own folder, or should they all build to the same output folder(they are all part of the same application)</p></li>
<li><p>are solutions folders a good way of organizing stuff?</p></li>
</ul>
<p>I know that splitting the solution up into multiple smaller solutions is an option, but that comes with its own set of refactoring and building headaches, so perhaps we can save that for a separate thread :-)</p>
http://stackoverflow.com/questions/1719742/python-organizing-data-with-multiple-dictionaries2Python organizing data with multiple dictionariesChuck2009-11-12T03:42:50Z2009-11-12T04:02:35Z
<p>I am trying to create a small server type application and have a question regarding organizing data with dicts. Right now I am grouping the data using the connection socket (mainly to verify where it's coming from and for sending data back out). Something like this: <code>connected[socket] = account_data</code>. Basically, each connected person will have account data. Since certain fields will be used a lot for comparing and checking information, such as an account ID, I want to speed things up with another dict.</p>
<p>For example: to find an accountID with the above method, I would have to use a for loop to go through all available connections in connected, look at the accountID in account_data for each, and then compare it. This seems to be a slow way to do it. If I could create a dict and use the accountID as the key, I think it could speed things up a little. The problem is, I plan on using 3 different dicts all ordered differently. Some data may change frequently and it seems more of a hassle to update every single dict once information changes; is there anyway to link them together?</p>
<p>Maybe an easier way of trying to explain what I am asking is:
You have Dict A, Dict B, Dict C, and Data. Dict A, B, and C all contain the same Data. I want it so if something changes in Data, the Data in Dict A, B, and C all change. I can of course always do dict A = data, dict B = data, etc but would get repetitive in the code after awhile. I know the data is set once the dict is created so I'm not really sure if there is a solution to this. I am just looking for advice on the best way to organize data in this situation.</p>
http://stackoverflow.com/questions/1699700/group-commonly-used-solution-items-by-function-vs-add-in1Group commonly used solution items by function VS add-inMichaelD2009-11-09T08:19:34Z2009-11-09T08:26:42Z
<p>I am working i a big solution with much projects and items. It would come in very handy if there was an add-in in visual studio where i can group some items together according to their function. that way when i work on a specific functional task i can immediately see all items that i need.</p>
<p>Simple example:
I have a MVC project with</p>
<p><strong>-Customers</strong></p>
<ul>
<li>1 view</li>
<li>1 partial</li>
<li>2 controller methods</li>
<li>1 model</li>
</ul>
<p><strong>-Invoices</strong></p>
<ul>
<li>1 view</li>
<li>2 partial</li>
<li>2 controller methods</li>
<li>1 model</li>
</ul>
<p>In the add-in i would make 2 folders, Customers and Invoices. Opening the folder customer would show me all related items of the customer</p>
http://stackoverflow.com/questions/1661204/how-do-you-organize-your-work12How do you organize your work?Matthieu Cormier2009-11-02T13:04:55Z2009-11-05T10:04:05Z
<p>How do you work? More specifically, how do you keep your programming tasks organized.</p>
<p>When I do Mac development at home I use software called an outliner to organize, keep notes and prioritize the tasks I need to do. I started out using a program called <a href="http://amarsagoo.info/deepnotes/" rel="nofollow">Deep Notes</a> which is a nice simple free tool. But now I use <a href="http://www.potionfactory.com/thehitlist/" rel="nofollow">The Hit List</a>.</p>
<p>I’ve been looking for an equivalently good program on the Windows platform but so far have not found one. So far I’ve tried <a href="http://www.fusiondesk.com/" rel="nofollow">FusionDesk</a> and am not satisfied with it. I’m starting to get the urge to write my own software but thought I would ask around first and see if anyone knows of a good product that I have not been able to find on this vast internet.</p>
<p><strong>Updated</strong></p>
<p>If you've never used an outliner to organize ideas, here is a brief overview. <a href="http://en.wikipedia.org/wiki/Outliner" rel="nofollow">http://en.wikipedia.org/wiki/Outliner</a> A good outliner is more complicated than a simple flat hierarchical TODO list but simple enough to be a one trick pony.
One of the most important features of an outliner is being able to create a nested hierarchy of tasks. For example:</p>
<ul>
<li>Implement Feature A</li>
<li>--- Add support at the data level</li>
<li>--- Create quick interface for Feature A</li>
<li>--- Create business logic that connects interface to data layer</li>
<li>--- Refine the interface</li>
</ul>
<p>You can also collapse the nested tasks like a folder structure.
If I'm not working on Feature A then I should be able to collapse the tree so it's sub tasks are not viewable. </p>
http://stackoverflow.com/questions/247209/javascript-how-do-you-organize-this-mess57Javascript - How do you organize this mess?!?HBoss2008-10-29T15:19:32Z2009-11-01T16:53:39Z
<p>As Javascript Frameworks like jQuery make client side web applications richer and more functional, I've started to notice one problem...</p>
<p><strong>How in the world do you keep this organized?</strong></p>
<ul>
<li>Put all your handlers in one spot and write functions for all the events?</li>
<li>Create function/classes to wrap all your functionality?</li>
<li>Write like crazy and just hope it works out for the best?</li>
<li>Give up and get a new career?</li>
</ul>
<p>I mention jQuery, but it's really any Javascript in general. I'm finding that as lines upon lines begin to pile up, it gets harder to manage the script files or find what you are looking for. Quite possibly the biggest propblems I've found is there is so many ways to do the same thing, it's hard to know which one is best. </p>
<p>Is there any general recommendations on the best way to keep your <strong>.js</strong> files as nice and neat as the rest of your application? Or is this just a matter of IDE? Is there a better option out there?</p>
<p><hr /></p>
<p><strong>EDIT</strong></p>
<p>This question was intended to be more about code organization and not file organization. There has been some really good examples of merging files or splitting content around.</p>
<p>My question is what is the best way to organize your actual code. What is your way, or even a recommended way to interact with page elements and create reuseable code that doesn't conflict with each other.</p>
<p>Some people have listed <strong>namespaces</strong> which is a good idea. What are some other ways, more specifically dealing with elements on the page and keeping the code organized and neat?</p>
http://stackoverflow.com/questions/1644879/how-to-organizeand-catolog-a-small-library0How to organizeand catolog a Small LibrarySusan Waller2009-10-29T16:18:52Z2009-10-29T16:18:52Z
<p>I have a small library that includes hardback and softback books, research papers, newpaper clippngs, magazine articles, maps and census papers. I have no clue how to organize and catalog all these things. The common denominator is they all have to do with my county from 1860's through today.
Everything is folders and are labelled and are stored in boxes.<br />
I want to modernize the system, use a computer, catalog all items and be able to access subjects quickly.</p>
http://stackoverflow.com/questions/1639894/separating-code-to-be-organized0Separating Code To Be OrganizedNathan Campos2009-10-28T20:24:21Z2009-10-28T20:38:56Z
<p>I'm building a zipper application, but it has a declaration that I want to separate it in another file (compress-file.m), but only when I separate the files I got an error when compiling with a variable, see it:</p>
<pre><code>[ubuntu@eeepc:~/Desktop] make
This is gnustep-make 2.0.2. Type 'make print-gnustep-make-help' for help.
Making all for app LeafZip...
Creating LeafZip.app/....
Compiling file main.m ...
main.m: In function ‘main’:
main.m:7: error: ‘PATH_MAX’ undeclared (first use in this function)
main.m:7: error: (Each undeclared identifier is reported only once
main.m:7: error: for each function it appears in.)
main.m:12: warning: implicit declaration of function ‘compressFile’
main.m:7: warning: unused variable ‘outFileName’
make[1]: *** [obj/main.o] Error 1
make: *** [LeafZip.all.app.variables] Error 2
</code></pre>
<p>Also see the line 7 of main.m file:</p>
<pre><code>char outFileName[PATH_MAX] = { 0 };
</code></pre>
<p>And see some lines of compress-file.m:</p>
<pre><code>#include <stdio.h>
#include <zlib.h>
#include <limits.h>
/* Buffer to hold data read */
char buf[BUFSIZ] = { 0 };
size_t bytes_read = 0;
gzFile *out = gzopen(outFileName, "wb");
</code></pre>
<p>I know that is Objective-C extension, but it's only because when I solve this problem I will need to continue the development in Objective-C. <strong>What I need to do to correct this?</strong></p>
http://stackoverflow.com/questions/1479574/code-organization-style-for-c3Code organization style for C?bball2009-09-25T21:04:03Z2009-09-25T22:36:04Z
<p>I know some higher level languages, all web based (PHP, javascript, some python). I've finally decided to learn a lower level language, and I've decided to go with C. The problem is that all the languages I use are based heavily on OOP. Seeing as (based on the research I did) C doesn't have classes or inheritance. As a result, I ask you this: How should I organize my code in C in an organized manner like OOP, without having to switch languages or just have files with endless amounts of functions?</p>
http://stackoverflow.com/questions/1463348/what-kind-of-software-development-process-should-a-lone-developer-have15What kind of software development process should a lone developer have?Purple Tentacle2009-09-23T00:29:35Z2009-09-23T01:48:22Z
<p>I work as a lone developer in a very small company. My work is quite chaotic and I'm looking for ways to make it more organized.</p>
<p>One problem is that my projects have practically no management. Rarely anyone asks me what I'm doing, or if I have any problems. At some point there was talk about weekly status meetings, but that's some time ago. Seems that if I'd want something like that, I would have to arrange those myself.. Sometimes I'm a bit lost on what I should do next because I don't have tasks or a clear schedule defined.</p>
<p>From books and articles I have found many things that might be helpful. Like having a good coding standard (there exists only a rough style guide which is somewhat outdated in my opinion), code inspections, TDD, unit testing, bug database... But in a small company it seems there are no resources or time for anything that's not essential. The fact that I work in the embedded domain seems to make things only more complicated.</p>
<p>I feel there's also a custom of cutting corners and doing quick hacks on short notice. This leads to unfinished and unprofessional products and bugs waiting to emerge at a later date. I would imagine they are also a pain to maintain. So, I'm about to inherit a challenging code base, doing new development that requires learning a lot of new things and I guess trying to build a process for it all at the same time. It might be rewarding in the end, but as not too experienced I'm not sure if I can pull it off.</p>
<p>In a small shop like this the environment is far from optimal for programming. There's many other things needed to be done occasionally like customer support, answering the phone, signing parcels, hardware testing, assembly and whatever miscellaneous tasks might appear. So you get the idea about the resources. It's not all bad (sometimes it's enlightening to solve some customer problems) and I believe it can be improved, but it's the other things that I'm really concerned.</p>
<p>Is it possible to have a development process in a place like this?</p>
<p>Would it help to have some sort of management? What kind of?</p>
<p>Is it possible to make quality products with small resources?</p>
<p>How do I convince myself and others that the company which has worked successfully for decades needs to change? What would be essential?</p>
<p>Maybe there's someone working in a similar shop?</p>
http://stackoverflow.com/questions/1431123/naming-and-organizing-images0Naming and organizing imagesgAMBOOKa2009-09-16T05:33:35Z2009-09-16T05:38:04Z
<p>What's the general rule of thumb while naming dynamic / user-uploaded images. For instance, profile pictures.</p>
<p>Is there a benefit for filenames to be human-readable (joshmason_profile.jpg) and not something random (sjdir2311.jpg)?</p>
<p>And how do you organize them? All in a single folder with filenames in database? or dynamically generated folders (say one for each user)?</p>
http://stackoverflow.com/questions/1406882/what-is-the-most-effective-solution-you-used-to-label-cables1What is the most effective solution you used to label cables? [closed]cohortq2009-09-10T18:17:07Z2009-09-10T18:17:07Z
<p>Hello! I have a long and intensive rack cleanup project coming up, and I wanted to know what your most effective methods of labeling cables are. I currently use adhesive labels from a brother P-touch labeler, but all the adhesives are coming off after a couple days. When the exhaust fans are blowing heat on them, they all but lose their adhesiveness. I will be labeling monitor cables, ethernet cat-5 cables, and power cables. I looked into the <a href="http://cableorganizer.com/unitag/" rel="nofollow">http://cableorganizer.com/unitag/</a> and the kableflags, but they look too bulky and at times completely overkill for what I need, which is simple labeling that's easy to identify and doesn't come off. Any ideas would be great, Thanks!</p>
http://stackoverflow.com/questions/1383590/code-organization-in-python-where-is-a-good-place-to-put-obscure-methods2Code organization in Python: Where is a good place to put obscure methods?cool-RR2009-09-05T15:25:58Z2009-09-05T15:45:08Z
<p>I have a class called <code>Path</code> for which there are defined about 10 methods, in a dedicated module <code>Path.py</code>. Recently I had a need to write 5 more methods for <code>Path</code>, however these new methods are quite obscure and technical and 90% of the time they are irrelevant.</p>
<p>Where would be a good place to put them so their context is clear? Of course I can just put them with the class definition, but I don't like that because I like to keep the important things separate from the obscure things.</p>
<p>Currently I have these methods as functions that are defined in a separate module, just to keep things separate, but it would be better to have them as bound methods. (Currently they take the <code>Path</code> instance as an explicit parameter.) </p>
<p>Does anyone have a suggestion?</p>
http://stackoverflow.com/questions/1383279/how-to-locate-a-program-to-desktop-by-c0how to locate a program to desktop by C#devadam42009-09-05T12:56:42Z2009-09-05T13:27:10Z
<p>hi </p>
<p>i want to do a program that like daily organizer or agenda. i want that program runs on desktop like a wallpaper but as transparantly. (like the clock on vista). how can achieve this by c#. i only ask to locate program on desktop. </p>
<p>thanks.</p>
http://stackoverflow.com/questions/1358804/how-to-handle-images-during-software-development7How to handle images during software developmentJens Schauder2009-08-31T18:39:14Z2009-09-02T18:01:47Z
<p>For software development one often needs images. But when I start working on an image I very fast end up with dozens of versions, like so</p>
<ul>
<li>Start with a nice large scale image, let's say a photo from my camera(x.nef)</li>
<li>I do some adjustments on exposure correction and white balance, convert it to a x.jpg</li>
<li>start to add some little stuff by copying in various pieces from two other images. (a.jpg, b.jpg resulting in a layered image x.pdn</li>
<li>now I scale it to the required size and save it as x_small.jpg</li>
</ul>
<p>By now I have 6 different image files floating around, and nobody but me knows the process behind them.</p>
<p>So the question is: How do you handle images in the development process? </p>
<p>Edit:
Thx for all the great input. I combined various questions to my own personal best answer. But I accepted jiinx0r's answer because it really contained the missing idea for me to apply a naming convention for the kind of changes done.</p>
http://stackoverflow.com/questions/230789/keeping-track-of-opensource-freeweare-plugins-etc1Keeping track of opensource/freeweare/plugins/etc.Dan Malkinski2008-10-23T18:11:31Z2009-08-28T19:27:44Z
<p>Howdy. I'm a converting mainframe programmer with less than a year of PC programming experience (same company) with VS 2K5. I'm digging the new 'freedom' to try new tools on my PC and have become maybe what you'd call a utility packrat. I have all sorts of open source utilities, freeware utilities, VS plugins/add-ins/snippet collections and the like. What I don't have is a good system for ensuring I give each one a proper evaluation an making sure I only keep the good and throw out the bad. </p>
<p>To be sure there are a handful if items that have worked their way into daily/weekly use - but for the most part I'll come across an older (couple of months?) downloaded installer and just wonder "WTF did I download this for" and never get around to checking it out.</p>
<p>Surely I can't be the only one who grabs something from a link posted in forums(like this one) and makes a mental note to 'check it out later" but "later" never comes.</p>
<p>Anyone got any good suggestions for how to manage a stable of not-necessarily-related utilities and how to keep track of what works, what doesn't, and why? </p>
http://stackoverflow.com/questions/766400/ddd-organizing-100s-of-properties-on-an-entity2DDD: Organizing 100s of properties on an Entityeduncan9112009-04-19T23:37:24Z2009-08-26T02:55:28Z
<p>How would you organize an entity that has 100s of properties? One could go as far to say 100s of properties, with a few Value Objects (as a few of the properties have 2 or 3 properties of their own). But the point is, how to handle the large number of properties.</p>
<p>I am re-creating our model from the ground-up using DDD, and the current issue is how to organize one of main entities that is broken up into many many many subsets. Currently it was written to have about a dozen sub-sets of properties. Like CarInfo() with 50+ properties, CarRankings() with 80+, CarStats(), CarColor(), etc, etc. </p>
<p>Think of it as mass-data stored on a single entity root.</p>
<p>Is it appropriate to have a service for the simple purpose of grouping a large collection of properties? Like CarInfoService that would return a Car() object, along with a large collection or sort.</p>
<p>Another idea would be to look at how the data is displayed. There is no one view that shows all of this data. Instead, they are split up based on their subjective matter. Like CarInfo shows all information about the car. Another would be CarStats that shows all stats of the car. So in this sense, the Application layer can build the underlying details needed for the UI. But, I still need a way to store it in the domain.</p>
<p>I have a mind to just put a number of xml property bags on it and call in the day. lol</p>
http://stackoverflow.com/questions/1274104/drupal-staying-organized-with-module-changes3Drupal: Staying Organized with Module ChangesAK2009-08-13T19:31:09Z2009-08-14T16:50:30Z
<p>The deeper I get with Drupal the more I have to make changes to code within other people's modules. These are usually small changes, and so far it doesn't make sense to rewrite the module's functionality for my own needs.</p>
<p>I'm trying not to make any modifications to Drupal core since that just seems like asking for trouble.</p>
<p>But sooner than later, I'm going to need to update these modules with new releases and then repatch my changes back in. <strong>How do you stay organized when making these changes, upgrading modules, and re-applying your changes back?</strong></p>
<p>I'm taking as many notes as I can but the spiderweb is growing around me!</p>
http://stackoverflow.com/questions/1230904/xcode-using-pragma-mark1Xcode - Using #pragma markMk122009-08-05T02:33:39Z2009-08-05T02:36:51Z
<p>I'm pretty sure this isn't a duplicate.
Do you use #pragma mark? I've seen multiple ways, which is correct?</p>
<pre><code>#pragma mark -
#pragma mark === Actions ===
#pragma mark -
#pragma mark -
#pragma mark === Actions ===
#pragma mark - === Actions ===
#pragma mark Actions
</code></pre>
<p>? What is the way you do it?
How do you suggest dividing it up? What do you normally name your sections, for say, a view controller?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1015364/worth-the-headache-to-organize-sql-files-by-application-subject2Worth the headache to organize SQL files by application subject?RenMan2009-06-18T21:43:59Z2009-08-04T14:19:00Z
<p>At my company, we save each database object (stored proc, view, etc) as an individual SQL file, and place them under source control that way. </p>
<p>Up until now, we've had a very flat storage model in our versioned file structure:</p>
<ul>
<li><code>DatabaseProject</code>
<ul>
<li><code>Functions</code>
<ul>
<li>(all functions here; no further nesting)</li>
</ul></li>
<li><code>StoredProcedures</code>
<ul>
<li>(all stored procs in here; no further nesting)</li>
</ul></li>
<li><code>Views</code>
<ul>
<li>(ditto)</li>
</ul></li>
</ul></li>
</ul>
<p>For a big new project, another idea has occurred to me: why not store these files by subject instead of in these prefab flat lists? </p>
<p>For example:</p>
<ul>
<li><code>DatabaseProject</code>
<ul>
<li><code>Reports</code>
<ul>
<li>(individual stored procs, views, etc.)</li>
<li><code>SpecificReport</code>
<ul>
<li>(more objects here, further nesting as necessary)</li>
</ul></li>
</ul></li>
<li><code>SpecificApplication</code>
<ul>
<li>(all types of DB objects, with arbitrarily deep nesting)</li>
</ul></li>
<li>et cetera....</li>
</ul></li>
</ul>
<p>The obvious flaw is that this folder structure doesn't impose any kind of namespace hierarchy on the database objects; it's for organization only. Thus, it would be <strong>very easy to introduce objects with duplicate names</strong>. You'd need some kind of build tool to survey the database project and die on naming conflicts. </p>
<p>What I'd like to know is: has anyone tried this method of organizing SQL files by application subject in their versioned file structure? Was it worth it? Did you create a build tool that would police the project as I have described?</p>
http://stackoverflow.com/questions/1191455/get-organized-with-the-command-line-a-command-library1get organized with the command line: a command libraryluca2009-07-28T01:12:54Z2009-07-29T04:05:36Z
<p>we all create/discover new and useful commands every day (I do...) but I forget them the day after, above all those complicated command pipes.. I use history | grep but that's not enough.</p>
<p>I'd like a program to save and categorize my favorite commands, that lets you search them and execute them easily.</p>
<p>If you know any, that'd be cool
if not, I'm writing one.. don't you thing this is a good idea?</p>
http://stackoverflow.com/questions/1185108/should-a-programmer-try-to-list-their-next-actions4Should a programmer try to list their "Next Actions"?Evan Rogers2009-07-26T17:47:13Z2009-07-28T01:29:33Z
<p>David Allen's "Getting Things Done" recommends keeping a "Next Action" list to organize your work, where a "Next Action" is the next physical action you will do to make progress towards an objective.</p>
<p>In programming, determining what to do next is often almost as hard as doing it (sounds like the halting problem). Most of the work is examining the program to determine where and how to modify the code in order to achieve some objective. Physically writing code is the easy part. Once you know what to do, why stop to describe it when you could try it in a few minutes?</p>
<p>Is the next action list a useful way to organize programming work? If so, how would you define your next action? If not, how else would you organize what you are about to do?</p>
<p>There is a related question <a href="http://stackoverflow.com/questions/248159/how-can-i-apply-david-allens-getting-things-done-as-a-programmer">here</a>.</p>
http://stackoverflow.com/questions/1168565/recommended-ways-to-split-some-functionality-into-functions-modules-and-packages2Recommended ways to split some functionality into functions, modules and packages?Sridhar Ratnakumar2009-07-22T22:05:47Z2009-07-23T01:52:10Z
<p>There comes a point where, in a relatively large sized project, one need to think about splitting the functionality into various functions, and then various modules, and then various packages. Sometimes across different source distributions (eg: extracting a common utility, such as optparser, into a separate project).</p>
<p>The question - how does one decide the parts to put in the same module, and the parts to put in a separate module? Same question for packages.</p>
http://stackoverflow.com/questions/1137645/organizing-interfaces5Organizing interfacesThorsten Lorenz2009-07-16T13:35:38Z2009-07-16T14:11:20Z
<p>I am just reading <em>Agile Principles, Patterns and Practices in C#</em> by R. Martin and M. Martin and they suggest in their book, to keep all your interfaces in a separate project, eg. <em>Interfaces</em>.</p>
<p>As an example, if I have a <em>Gui</em> project, that contains all my custom Gui classes, I will keep their interfaces in the <em>Interfaces</em> project. Specifically I had a CustomButton class in <em>Gui</em>, I would keep the ICustomButton interface in <em>Interfaces</em>.</p>
<p>The advantage is, that any class that needs an ICustomButton does not need a reference to <em>Gui</em> itself, but only to the much lighter weight <em>Interfaces</em> project.</p>
<p>Also, should a class in the <em>Gui</em> project change and thus cause it to be rebuilt, only the projects directly referring to the CustomButton would need recompilation, whereas the ones referring to the ICustomButton may remain untouched.</p>
<p>I understand that concept, but see a problem:</p>
<p>Lets say I have this interface:</p>
<pre><code>public interface ICustomButton
{
void Animate(AnimatorStrategy strategy);
}
</code></pre>
<p>As you can see, it refers to AnimatorStrategy, which is a concrete class and therefore would sit in a different project, lets call it <em>Animation</em>.
Now the interface project needs to refer to <em>Animation</em>. On the other hand, if <em>Animation</em> uses an interface defined in <em>Interfaces</em>, it needs to refer to it. </p>
<p>Cyclic dependency - "Here we come".</p>
<p>The only solution for this problem, that I see, is, that all methods defined in the interfaces take inputs that are themselves interfaces. Trying to implement this, will most likely have a domino effect though and quickly require an interface to be implemented even for the most basic classes.</p>
<p>I don't know if I would like to deal with this overhead in development.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1128398/xcode-project-resource-organization-and-structure5Xcode Project Resource Organization and StructureBlaenk2009-07-14T22:26:07Z2009-07-15T07:28:43Z
<p>Hey guys I'm relatively new to Xcode and one thing that has bothered me is that when I add a resource it gets added to the top level directory of my project directory. So for example, at the moment, all of my images are at the top level directory and it makes things look messy. I rather would've liked, for example, to have an <strong>images/</strong> folder and then sub-folders within that to store images for certain things, like <strong>tab-bar/</strong> icons. Is this possible? Or is it convention to just keep everything in the top level directory?</p>
<p>Someone in the <code>#iphonedev</code> channel at freenode told me something about the build process rule or something, it just seemed too complicated I figured I shouldn't bother, and that most people just kept things at their root directory considering the complexity of the solution. Perhaps it isn't all that complicated though, I just felt it should be easier.</p>
<p>For example I would also like to have a sub-folder for my views, like <strong>views/</strong> that stores all of my nib files; currently they are all in the top level directory. And the same goes for my property lists.</p>
<p>I would appreciate it if you could tell me what the convention is, I doubt it is to just store everything in the top level directory. And I'm referring to the actual file system, not simply creating 'virtual folders' in Xcode to organize things, because the top level directory of my project will still be a mess. And if it is possible to organize things better, I would appreciate any detailed help on how to accomplish it.</p>
<p>I think I have heard that in the final build, the entire file structure gets squashed to the root directory. I don't mind so much about that, I just want things to be organized while I am working on my project. I think this is where that 'build rule' thing comes in, but I'm not sure how or what to do.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/98749/best-hosted-calendar0Best Hosted Calendar?Optimal Solutions2008-09-19T01:46:44Z2009-07-08T22:23:42Z
<p>Can anyone suggest or recommend a great online/hosted calendar system that is, hopefully, free, but if not then less than $10 per month? Anything other than Google? Must be accessible via any web browser.</p>
http://stackoverflow.com/questions/1096741/how-to-efectively-organize-your-web-project-specially-mutilanguage-websites0How to efectively organize your web project? (specially mutilanguage websites)janoChen2009-07-08T08:09:44Z2009-07-08T08:34:34Z
<p>I have my project folder, for instance, <strong>myWeb</strong>. In it there are various folders like <strong>styles</strong> (for CSS),
<strong>scripts</strong> (JS), <strong>php</strong> (for php scripts), and folders for 3 different languages, for instance: <strong>en</strong>(english), <strong>sp</strong> (spanish),
<strong>cn</strong> (chinese). This sometimes gives me problems because the index or default page should be in
the root directory but all my index pages are inside their language folder. </p>
<p>Is there a better way of organizing this?</p>
http://stackoverflow.com/questions/30376/getting-organised-the-todo-list12Getting organised; The TODO list.sparkes2008-08-27T15:04:34Z2009-07-02T14:37:34Z
<p>What's the best way to organise my personal TODO list?
and what tools are available for organising team TODO lists?</p>
<p>Should I still be thinking in terms of TODO or are there better ways to manage my time and projects?</p>
<p><a href="http://beta.stackoverflow.com/questions/1831/what-can-someone-do-to-get-organized-around-here" rel="nofollow">See also this question on Organization which is similar</a></p>