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.

learn more… | top users | synonyms

0
votes
0answers
15 views

WorkSheet Data Auto-Management (reorganization)

Sub Organize() With Worksheets("Sheet3") For i = 2 To 916 Step 3 .Range("G" & i - 1).Value = .Range("C" & i).Value .Range("C" & i).Value = "" ...
5
votes
3answers
150 views

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 ...
0
votes
1answer
28 views

Best practises for managing two repositories in one directory

When I create a new project, I usually do a git init in the project directory and then download the source of whatever framework I'm using (FuelPHP, django, etc) and copy it over to the project ...
0
votes
0answers
20 views

RequireJS to split up very large modules

This is an organization question. I have a very large module that I want to break up into separate sections for example into [ init , UI setup , canvas functions , etc... ] Right now they are all part ...
0
votes
1answer
22 views

Liferay auto assign users to an organization on register

how to auto assign user to an organization when they register to a liferay portal. Thanks and Regards, S.Ponraj
1
vote
0answers
57 views

How to organize a Python module with lots of constants and exceptions?

I'm writing a Python module that has only about twenty interesting types and global methods, but lots of constants and exceptions (about 70 constants for locales, 60 constants for encodings, 20 ...
0
votes
1answer
25 views

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 ...
-1
votes
2answers
29 views

Copy Files from folders to folder tree in php [closed]

I have a large number of books that I need to categorize by language and libraryID. The file-names are structured like this and spread out in many folders: ENG_FILENAME_LIBRARYNAME1.pdf ...
-1
votes
1answer
27 views

Difference between computer architecture, oganization, and structure? [closed]

Please explain the difference between the three terms. Thanks in advance!
1
vote
1answer
36 views

Microsoft Excel Column Search and Return

Lets say i have 2 sheets one containing: Data for some info on products for emails, p159 Ben54@ya g456 Jo32@gm k455 Jack45@ro t888 Sally12@k And a second sheet containing the code and ...
2
votes
4answers
54 views

Applescript: Highlight most recent file from group

I'd like to know how you'd go about creating an action where you could highlight a group of files and get the modification date from them, then have it highlight/select/label the file with the most ...
-1
votes
1answer
58 views

Using get methods or storing references for each object for references to objects [closed]

I am writing a relatively large game server program that has multiple large objects to handle different functions I have had experience in modifying a hybrid statically written server where I could ...
0
votes
1answer
45 views

iOS Multiple versions of View with single View Controller?

I have an app with a signup screen, which is basically just a form with a bunch of textfields and a few buttons. However, there are several distinct types of users, and some fields are either ...
1
vote
0answers
29 views

What are good solutions for managing multiple GitHub Repo Issues?

I read this blog entry and was looking for how to turn this feature on; being able to see all issues for my organization in one place. Anyone know? I also found this, but I need it for our internal ...
1
vote
1answer
40 views

Improving cleaning of CMake build directory

I'm trying to figure out a way to configure my CMake build to include a "clean" target that will remove all files in the build directory except for those in a subdirectory named "modules". Why, you ...
0
votes
1answer
85 views

File organization powershell script

Im trying to monitor a directory and its subdirectory for new files. I want to look at the file extension and move it to its appropriate folder based on the file extension. For example, If i have a ...
0
votes
3answers
123 views

How to logically organize source files in C++ [closed]

My source file pane is quickly growing (in terms of the number of files in my project) and it is getting a bit cumbersome to quickly locate the specific source file I need to access at any given time. ...
0
votes
3answers
74 views

How to flexibly change PYTHONPATH

To specify the classpath in Java, I use the -cp or -classpath option to java. What is the equivalent option in Python? I know I can set the OS variable PYTHONPATH but there shouldn't be one ...
0
votes
1answer
19 views

ckanext-harvest 2.0: automatically add harvested records to an organization

https://github.com/okfn/ckanext-harvest/blob/release-v2.0/README.rst#the-ckan-harvester mentions that you can specify a "default_groups" config option in order to have all harvested records added to a ...
0
votes
1answer
112 views

Is it possible to install components via bower to two different directories?

When using Sass and JS components, is it possible, or even, does it make sense to install them to different directories? . |-- app |-- scripts |-- components # js components go ...
2
votes
1answer
86 views

Where should layout functions live in an Angular app?

In the absence of proper CSS3 support, I have a javascript function that keeps our layout looking nice. var handleWindowResize = function() { // Code omitted because i don't think it's relevant ...
0
votes
1answer
29 views

iOS: Where to handle showing an account choice modal?

I'm writing a basic Twitter application (for teaching myself iOS/Objective-C) and I've run into a slight road bump. I asked a question related to it previously which received no answer and after ...
1
vote
2answers
52 views

Outputting 2 lists of data, but keeping them organised IN VB

This will hopefully be my last question for a while and with what i have gained from yourselves will help me really get on with this project! So... i currently have variosu combo boxes and text boxes ...
1
vote
1answer
88 views

DAO naming conventions

I'm developing an app that needs to establish a connection with a DB. To operate through this connection I'm using DAO pattern. My question is related with the organization of the code and the name of ...
0
votes
0answers
28 views

Python DB Data Organization

This is code from my table in sqlalchemy. This is a table that will store data on MLB games. h_i1 is how many runs the home team scored in inning one, a_i1 is how many runs the away team scored in ...
1
vote
1answer
28 views

Open windows in specific coordinates using Matlab?

My code opens 4 text file using : system('open 1.txt'); %using MAC OS system('open 2.txt'); system('open 3.txt'); system('open 4.txt'); and shows them as stacked order : But I would like to ...
0
votes
0answers
21 views

Proper MySQL table organization for indexing large bodies of text?

I will be processing large bodies of text on a regular bases and storing information about them. My original plan was to make a table with each source of where the bodies of text will come from, ...
0
votes
1answer
45 views

What is a good Visual studio source code layout for cross-project inheritance hierarchies

I develop similar calculation packages for different clients (Bob, Rick, Sue, Eve). The calculation packages consist of several calculation modules (A, B, C, D, ...), which are organized in a "Chain ...
-4
votes
1answer
42 views

How do I shorten my code? [closed]

I currently have a huge code for regenerating some things in a game a made. The code is very big and I think it can be compressed but I don't know how to do it. This is the code Private Sub ...
0
votes
1answer
43 views

Using BASH to Organize Files Using “_” Delimiter in File Name

I feel like what I want to do is simple enough, but I'm a novice at shell scripting so I'd appreciate any help you can give me. QUESTION: I have a folder of files of various file types (i.e. ".jpg", ...
0
votes
2answers
54 views

What is the typical convention for organization with Win32?

I've been working a lot with Win32 lately, but I'm pretty new to it, and need some advice concerning organization. In C++, although it works syntactically to declare global variables, I was always ...
0
votes
1answer
72 views

PHP sort multidimensional array

I have an array that looks like this: Array ( [13] => Array ( [name] => Blah blah [description] => Blah blah blah [parent_group_id] => 8 ...
0
votes
1answer
38 views

PHP rearrange items in an array by categories

I have a file that looks like this, that takes data from a JSON file and outputs it: <?php $game = "Test"; $itemsArray = json_decode(file_get_contents("http://test.com/stamps.json"), true); echo ...
0
votes
0answers
20 views

Categorial file system

In order to better organize numerous files I would like to have categorial file system. It is inspired by wikipedia category tree. The following features would be useful: each file can be situated ...
3
votes
1answer
42 views

Validating a LaTeX file, java

So I have this text file \begin{document} {\Large \begin{center} Homework Problems \end{center}}\begin{itemize}\item\end{itemize} \begin{enumerate} \begin{proof} ...
0
votes
1answer
56 views

I need help understanding some finer points of Visual Studio 2010

This question is a followup to an earlier question and subsequent questions raised by research on MSDN per the links provided in the answer. Here's an image of the solution explorer I've set up so ...
1
vote
2answers
74 views

How can I set Vim up to search for and sort all lines containing a certain string?

I am using vim to manage a to-do list, and would like to set a hotkey to do the following: Find all lines which contain the word under the cursor. The world is always a tag formatted as: #mytaghere ...
1
vote
2answers
81 views

Organising classes in a JavaScript game

I need some help working out the class hierarchy for a game I'm developing with JavaScript. The game is a top-down space shooter with (at its basic level) a background, player, bullets and enemies. ...
5
votes
4answers
126 views

guidelines for where to put classes in Rails apps that don't fit anywhere

I'm wondering if there are any best practices about where to put non-standard Ruby files in Rails apps, those that don't fit in any of the default directories (controllers/models etc.). I'm talking ...
4
votes
4answers
158 views

Submodule libraries in git to minimize redundancy

I'm very new to using git, and previously haven't really tried to "organize" any projects I've worked on. I just recently purchased a development server for personal use, however, and I wanted to ...
2
votes
2answers
255 views

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 ...
0
votes
1answer
64 views

Batch to delete empty directories (and state which directories aren't empty?)

I'm using: for /f "tokens=*" %%d in ('dir /ad/b/s ^| sort /R') do rd "%%d" pause which returns: The directory is not empty. for any nonempty directories. Is there any way for it to list ...
0
votes
1answer
33 views

R: Organization of data with metadata

I have a dataframe that contains two columns X-data and Y-data. This represents some experimental data. Now I have a lot of additional information that I want to associate with this data, such as ...
0
votes
1answer
129 views

Organizing Source Code for a Java based game

Even though I am not an expert on java, I decided to make a small game. Problem is, I have no idea how to organize my code into folders, and where to put specific classes. Up until now, I have only ...
0
votes
0answers
83 views

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 ...
0
votes
1answer
35 views

Are there any known Java class packages for representing a corporation?

Curious if there are any pre-built, well-known/standard, data models for representing a large corporation in Java. Something that shows a hierarchy as well as "dotted-line" type relationships along ...
0
votes
2answers
42 views

Ruby organization with multiple source files

I am trying to figure out the best way to organize a bunch of Ruby scripts to make it easier on the next person. One key thing is that there are multiple constant variables that need to be used across ...
1
vote
1answer
81 views

Organization of games in an express.js app

I have a server that runs several multi-player web games. It is built in Node.js+Express.js, with a standard folder structure (e.g. Jade files under "views", Javascript client files under ...
0
votes
1answer
63 views

How to organize my pages by genre or category? Should I be using a mysql database?

I am very new to the concept of mySQL DBs and am not sure if this is what I require to organize my website content. I am putting together a site that has a database of movies and I want to be able to ...
1
vote
2answers
100 views

Is there a good justification of MVC folder structure vs. alternative?

In most of the MVC / MV* type frameworks I've played with they want you to have your source organized something like this: model/ FooModel.xyz BarModel.xyz view/ FooView.xyz ...

1 2 3 4 5 8