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
16
votes
6 answers

Managing jQuery Plugins

Often, when working with jQuery, the need arises to include multiple plugins. This can quickly become messy work, especially when some plugins require additional components (images and CSS files). What are some of the "recommended" ways to: a.…
gpmcadam
  • 5,406
  • 2
  • 28
  • 35
16
votes
3 answers

Scala project organization

How does one organise code in a Scala project? After years of developing with Java (most of the times using Spring), we're trying to come up with a quick prototype in Scala. One of the first questions that popped up is: will we just basically use…
user1241320
  • 453
  • 3
  • 7
  • 16
16
votes
2 answers

Folder and file organization for Python development

What is the best way to organize code that belongs to the same project in a Python development environment? What are the do and donts of Python project organization? Do you separate each class in a file? Project A Classes "subsystem1" …
George Silva
  • 3,266
  • 9
  • 34
  • 60
15
votes
2 answers

Personal GIT repository

I use BitKeeper at work, and I would like to have a basic code backup for myself at home (considering I back up very rarely) // I have never used git before so I need lots of help I thought it might be a good idea to have a git repository on my home…
Alex Angelini
  • 381
  • 1
  • 3
  • 12
15
votes
1 answer

What's the difference between Organizations & Groups in CKAN?

What are Groups? You can use CKAN Groups to create and manage collections of datasets. This could be to catalogue datasets for a particular project or team, or on a particular theme, or as a very simple way to help people find and search…
Techie
  • 42,101
  • 38
  • 144
  • 232
14
votes
3 answers

What is the proper way to structure/organize javascript for a large application?

Let's say you are building a large application, and you expect to have tons of javascript on the site. Even if you separated the javascript into 1 file per page where javascript is used, you'd still have about 100 javascript files. What is the best…
egervari
  • 21,108
  • 30
  • 115
  • 171
14
votes
1 answer

autocmd FileType vs ftplugin

What is the difference between placing: autocmd FileType ruby setlocal ts=2 in my ~/.vimrc and placing: setlocal ts=2 in ~/.vim/ftplugin/ruby.vim? If there is no difference, where should I place commands that are specific to one filetype?
Zameer Manji
  • 2,908
  • 4
  • 28
  • 39
14
votes
3 answers

Why can't sub-packages see package private classes?

Okay so, I have this project structure: package A.B class SuperClass (this class is marked package private) package A.B.C class SubClass (inherits from super class) I'd rather not make SuperClass publicly visible... It is really just a utility…
Polaris878
  • 33,681
  • 35
  • 107
  • 140
13
votes
3 answers

Where can I learn about proper C# project architecture design?

I'm a homegrown programmer and have been coding most of my recent applications in C#. These applications are usually small tools that help me with my day to day tasks. I do tend to use good design patterns, but since my projects are usually on a…
Joe Jack
  • 175
  • 1
  • 1
  • 6
12
votes
9 answers

What do you use the svn tags directory for anyways?

Ok so we all know the standard SVN set-up of trunk\ branches\ tags\ And I realize that the recommendation is that tags should have "special" commits in it. I've never really used the tags directory however and I don't see why I ever would. My…
George Mauer
  • 103,465
  • 117
  • 349
  • 581
12
votes
1 answer

Organizing a database using folders in phpMyAdmin

Right now I have a database in phpMyAdmin, and off the the side of the screen, it shows the database name, and a list of tables inside the database. It's fine if it's only a couple of tables, but when there's dozens of tables, it gets hard to find…
Skillet
  • 217
  • 1
  • 4
  • 15
12
votes
1 answer

Eclipse organization: workspaces, working sets, projects, folders, multiple source folders, ....!

There is quite a tier of organization in Eclipse. You can have multiple workspaces, each of which can have projects, these projects can be assigned to working sets, and then each project can have source folders.... How do you use all this…
Ricket
  • 31,028
  • 28
  • 106
  • 137
12
votes
2 answers

jQuery code organization and performance

After doing some research on the subject, I've been experimenting a lot with patterns to organize my jQuery code (Rebecca Murphy did a presentation on this at the jQuery Conference for example). Yesterday I checked the (revealing) module pattern.…
north
  • 595
  • 7
  • 22
12
votes
4 answers

How do I import a third party lib into git?

I'm looking at how to import some third part code into a git repository. The third party code is the "stm32f10x_stdperiph_lib" that is provided by ST. The lib is actually a bunch of normal c-files (and header-files) that you just include and build…
Johan
  • 18,177
  • 25
  • 89
  • 107
12
votes
2 answers

efficient way of cuda file organization: .cpp .h .cu .cuh .curnel files

What is the most easy to understand/efficient etc. code organization for cuda. After some investigation i found that cuda function declarations should be in .cuh file and implementations reside in .cu file and kernel function implementations in…
Ian Decks
  • 211
  • 1
  • 5
  • 13
1 2
3
52 53