Questions tagged [organization]

This tag pertains to the organization of source files and other assets in directory structures, organization of actual source code itself, logical organization of application data, and (occasionally) to organizing development projects.

782 questions
25
votes
5 answers

How do you organize 100+ projects in Eclipse?

When you have 5+ languages and 100+ projects, IMO the default of using one workspace is not acceptable because the one workspace becomes horribly disorganized. Having one huge unorganized workspace lowers your productivity. The question: What are…
Trevor Boyd Smith
  • 15,512
  • 24
  • 110
  • 159
25
votes
4 answers

How should I structure my settings table with MySQL?

What's the best way to structure a MySQL table for storing admin settings? Like this? Setting _|_ Value setting1 | a setting2 | b setting3 | c setting4 | d setting5 | e Or like…
Cam
  • 13,963
  • 16
  • 70
  • 121
24
votes
5 answers

Combine and run multiple R scripts from another script

Essentially, I have constructed a sizable predictive model in R with about 10~15 separate script files for collecting, sorting, analyzing and presenting my data. Rather than just put everything into one gigantic script file, I would like to maintain…
Kris
  • 241
  • 1
  • 2
  • 5
24
votes
13 answers

How to stay DRY? Do Not Repeat Yourself!

I find that one of the most frustrating aspects to software development is finding a solution to a problem, forgetting it, then being faced with the same issue in the future only to forgot how you previously solved it. Or to write a useful bit of…
hagope
  • 5,123
  • 6
  • 32
  • 49
24
votes
1 answer

Git - Include files from other repositories

With Git, I'd like to include some common JS/CSS library and/or utility methods (i.e. specific files from another repo) in my project, and I'd like it so they're always up-to-date. I don't really want the entire remote repository(s). Bonus if I…
drzaus
  • 21,536
  • 14
  • 123
  • 183
21
votes
1 answer

How do you organize your Backbone files?

I'm looking to implement backbone into a large web project with multiple "apps" that will be using it and I'm trying to figure out a good way to organize my files. The two I've come up with so far are: js +- models | +- search | | +- result.js | …
JaredMcAteer
  • 17,451
  • 4
  • 45
  • 60
21
votes
1 answer

Repository Disabled

I have been a member of a certain organization on Github. For the past year, I was able to access all the private repositories tagged to my account, until today. When I open the private repos, I was given this message: Repository Disabled This…
Kimpoy
  • 1,954
  • 2
  • 21
  • 37
21
votes
4 answers

How do you organize your code workspace and home folder?

How do you organize your personal workspace for your code projects in your home folder? And how do you keep the workspace efficient for handling multiple projects at the same time? The most important aspect of my question is above. You can stop…
Gordon Potter
  • 5,624
  • 7
  • 38
  • 60
19
votes
3 answers

How to organize files in Haskell programs?

I've just started playing around in Haskell. After years of Ruby, I got used to a file organization that's used by Ruby on Rails or Rugui. Are there any guidelines, best practices, or maybe even frameworks about file-organization in Haskell…
davidbe
  • 850
  • 5
  • 16
18
votes
5 answers

fork as organization after already forking in github

Is it possible to 'fork again' in github? I had forked a public repository, but then I became owner of an organization and I'd like to fork the same original repository again (not my fork). However, it seems that in order to choose to fork as an…
Ben
  • 14,789
  • 19
  • 67
  • 115
18
votes
1 answer

Do Traffic Graphs for a GitHub Project include Pages traffic?

Do the traffic graphs for a given project include the traffic data for the associated Pages site? I.e. does https://github.com/blackberry/Alice/graphs/traffic include traffic to http://github.com/blackberry/Alice If not, is that information…
Pelegri
  • 490
  • 3
  • 9
18
votes
7 answers

Ansible best practice do not repeat common role

On the Ansible best practices page: http://docs.ansible.com/ansible/playbooks_best_practices.html#top-level-playbooks-are-separated-by-role it shows an example where the master playbook site.yml includes a couple of other top-level playbooks…
user1087973
  • 518
  • 1
  • 6
  • 19
17
votes
1 answer

Convert delimited string into hierarchical JSON with JQuery

I have an array of strings that describe the parent/child relationship by being delimited with dashes. So, if Bob's boss was Jim and Jim's boss was Fred, Bob's entry in the array would be "Fred-Jim-Bob" and Jim's entry would be "Fred-Jim." I don't…
Munzilla
  • 3,595
  • 5
  • 26
  • 35
17
votes
4 answers

How to organize "projects" and "solutions" in Eclipse?

I've been told that an Eclipse workspace is the equivalent of a Visual Studio solution. But I've also been told that people commonly use a single workspace for all their work. Are these apparently conflicting statements correct? If yes, how do we…
Frederick The Fool
  • 31,355
  • 20
  • 78
  • 112
17
votes
4 answers

Best way to organize MATLAB classes?

MATLAB has two ways of organizing classes: @-directories: @ClassName\ ClassName.m Method1.m Method2.m Single files: ClassName.m: classdef ClassName methods % all methods included here end end The first style existed…
jjkparker
  • 20,115
  • 6
  • 26
  • 29
1
2
3
52 53