Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
207 views

Splitting Code into Files in Perl

I just started with Perl a couple of days ago and my scripts are getting too long now. How do I split my code (procedural subs) into multiple Perl files and tell the interpreter to make sense of them? ...
4
votes
4answers
1k views

Putting separate python packages into same namespace?

I'm developing a python framework that would have "addons" written as separate packages. I.e.: import myframework from myframework.addons import foo, bar Now, what I'm trying to arrange is so that ...
3
votes
3answers
49 views

Different .gitconfig for a given subdirectory?

I use two different git emails, one for work and one for public projects. Initially I thought that I could create a separate .gitconfig with a different email in a folder where all my public repos are ...
3
votes
2answers
118 views

separate procedure in ada

I have a very big project, and I'm trying to start using GPS (Gnat Programming Studio) instead of what I have. The naming conventions of the proj are as following: something.1.ada for a spec ...
3
votes
3answers
400 views

Software engineering with Ada: stubs; separate and compilation units

I'm with a mechanical engineering background but I'm interested to learn good software engineering practice with Ada. I have a few queries. Q1. If I understand correctly then someone can just write a ...
3
votes
4answers
336 views

How can I set distance between elements ordered vertically?

I have code like that: JPanel myPanel = new JPanel(); myPanel.setLayout(new BoxLayout(myPanel, BoxLayout.Y_AXIS)); JButton button = new JButton("My Button"); JLabel label = new ...
3
votes
3answers
2k views

FLOT: How to make different colored points in same data series, connected by a line?

I think I may have stumbled onto a limitation of Flot, but I'm not sure. I'm trying to represent a single data series over time. The items' "State" is represented on the Y-Axis (there are 5 of them), ...
2
votes
3answers
105 views

Independent CSS for Fancybox

I have a page from which I call fancybox which contains some html template (something like an email template). The problem is that all CSS from the main page affects the content in the fancybox and ...
2
votes
3answers
39 views

How can i separate a string in 3 shorts and the rest in one string(this string as white spaces in it) C

The title cuts it. How can i separate a string that has white spaces between the 3 shorts and between the rest of the string to 4 different strings. Example: "123 402 10 aaa bbb cc". What i want ...
2
votes
1answer
86 views

XSLT: How to separate deliminated values into unique elements

I'm working in a database that doesn't really support subelements. To get around this, we've been using squiggly brackets }} in a string of values to indicate separations between subelements. When ...
2
votes
2answers
828 views

App Store handling of separate iphone/iPad builds

I have to builds of the same app for iphone and ipad, both are tested on the simulator and devices. Target device family is set to "iphone" resp. "ipad". I intend to submit these builds to the App ...
2
votes
1answer
75 views

Keep Model and Repository in separate projects

I have a Visual Studio solution with multiple projects. I am not 100% settled about the project structure and its benefits. For example: I have a Project called DOMAIN. Here I have several folders ...
2
votes
3answers
233 views

Separate string using array

I have a string that contains a name followed by a town. So like John Smith Smithville. I need to separate this out into two variables (name, town) or an array. I have an array of town names to ...
2
votes
1answer
252 views

jquery gettings variables from img src rather than window.location.href

I found this snippet of code, which works a treat: $.urlParam = function(name){ var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(window.location.href); if (!results) { ...
2
votes
3answers
2k views

Render partial from another model

I have a rails application that models a house. There is a house model that has many parameters and it has_many rooms. A room has a house_id and a name. I've also used ...
1
vote
1answer
12 views

Efficiency involving sprites in two directions

Is it better to mirror sprites and load them as separate images or to mirror them at runtime when necessary? For example, in a platformer, when the character turns left or right, should there be two ...
1
vote
3answers
45 views

Separate lists of format M=[(a,x), (b,y)] into M1=[a,b] and M2=[x,y]

I have a list M below which came from an external file (This is a large list in reality, len(M)>10000). M=[(1, 100), (2, 200), (3, 300), (4, 400)] However, I want to separate it into ...
1
vote
4answers
154 views

GWT : I need spaces between generated HTML elements

Hullo, I encounter a problem, simple but stupidly blocking. I build a GWT (Google Web Toolkit) Web HMI. In a panel, I create a bunch of CheckBoxes. Each of these gives me a span element which ...
1
vote
1answer
48 views

Plug in Separated names by commas/spaces into <li> 's created via jQuery

So basically, I have a few actor names separated by commas, and I am trying to get each name in that list and plug it into a dynamically created li of its own under a ul while capitalizing the first ...
1
vote
4answers
272 views

Find between with seperated date fields(year,month,day)

i have the following dates in my table in separated fields. how can i write a query to show the values between two dates. for example: values between 2/1/2011 and 2/6/2011 day month ...
1
vote
1answer
345 views

Android TabWidget different xml files for different tabs

I want to implement tabwidget with several tabs, each one of them represents data from single data source which can change dynamicaly, so i cant use several activities, because as far as i understand ...
1
vote
5answers
548 views

Separating file extensions using python os.path module

I'm working in python with os.path.splitext() and curious if it is possible to separate filenames from extensions with multiple "."? e.g. "foobar.aux.xml" using splitext. Filenames vary from ...
1
vote
1answer
324 views

IIS7: Separate IP Addresses Vs Same IP Address with Separate Ports

I am setting up multiple sites on IIS7. What are the pros and cons of: Setting up all the sites on the same IP address but different ports versus Setting up all the sites on different IP addresses. ...
1
vote
5answers
154 views

PHP> echo string separated by lines of 3 words each?

I need make something that includes a function that uses explode to create an array. I have seen several examples, but near the end I really get confused! Is there a simple readable way for this? ...
1
vote
1answer
103 views

Android Service Connections

I am developing an android application that runs a service off the main thread. It then runs another activity that exists in a seperate apk file. This apk needs to be able to spawn its own service and ...
1
vote
2answers
274 views

Mvc and separate projects

I am new to MVC. I'd like to have my data objects in a separate project from my main MVC project. Would I just move ALL the classes and files from my 'models' folder to my new all project, and then ...
1
vote
5answers
150 views

Seperate code in single Form [C#]

I've got a WinForm application with separate groupboxes and objects, but the code isn't sorted by groupbox and pretty messed up. Can the code be split in 2 files or something with the objects on the ...
1
vote
3answers
239 views

C++ namespaces and defining classes in separate files

I want to make a namespace that will contain several classes as part of a "package". Do I have to declare all of the classes within the namespace? For example, if I have a "2dEngine.h" which defines ...
1
vote
1answer
175 views

Phone number transformation. Separate prefix in brackets

There is an element: <phone>(987) 123-45-67</phone>. It is necessary to transform it in: <span><small>(987)</small>&#160;123-45-67</span>. How it can be made? ...
1
vote
1answer
320 views

How divide a GWT module into some separate javascript files?

I've a big GWT module which comprised of many java classes (& of course it's impossible to break it down into several modules). My GWT application consists of some forms, but the users usually ...
1
vote
3answers
480 views

Put a GUI control on a different thread?

I'm assuming it's possibly to do so as programs like google chrome have gone one better and put each tab on a separate process. So how can i put a GUI control such as a datagridview on a separate ...
1
vote
4answers
805 views

Java Swing: separating UI component from logic behaviour - how do you approach this?

What I do, in NetBeans for example: create a UI component class, suffixed with Swing component type, e.g. JPanel, e.g. MyUIWidgetJPanel create a logic/behaviour class to handle the behaviour/logic, ...
1
vote
1answer
80 views

Combine Separate Git Repository Branches

I have two separate git repositories. One is mine, and has "Branch A", the other was developed by someone else and has "Branch B". They both have the same master branch. How do I import his branch ...
1
vote
4answers
86 views

Git for game server configuring?

I was wondering if git is suitable for this. So here is the scenario: We are thinking about hosting a game server. However it is not the case of just downloading files and running the server. It ...
1
vote
2answers
334 views

How to store datetime in database if time portion is optional?

Should I store it in a single timestamp/datetime field or separate date and time fields? I prefer to store it as a single timestamp field but I need to know when a user didn't enter a time portion. ...
0
votes
1answer
15 views

Rails getting started wizard in separate controller from users controller?

I have a Rails site that requires a lot of form fields that need to be filled out after the user first signs up (using a large jQuery wizard). At first, I wrapped all the "getting started" (executed ...
0
votes
1answer
82 views

Split comma separated values into individual rows

I want to create separate rows which will contain one word in each cell. These words are currently stored in several cells in one column. Below is the format that I have A play, games, online, ...
0
votes
0answers
15 views

Use separate touchable views at the same time in Android

I have to custom views in my layout file, and I'd like to use both at the same time. For instance, when I lay a finger on View1, and another on View2 afterwards, the second finger is detected by ...
0
votes
4answers
56 views

SQL SELECT multiple with sum

I'm trying to do a select SUM while doing other selects at the same, literally this is my first experience with SQL. My current script: SELECT Orders.OrderID,SUM(Trackingnumbers.Shipment_Cost) AS ...
0
votes
1answer
20 views

How to separate the sentences into boxes/frame - word by word?

i tried something like //Putting the sentence into array NSString *list = (@"A book costs £50., Ken has saved £45., How much more does he need to save to buy the book?"); NSArray *listItems = ...
0
votes
2answers
17 views

how to separate coordinates to groups of nearby coordinates

I have coordinates (lattitude and longitude) of some cities and I want to create groups of nearby cities. You can see illustration at separated coordinates. Do you know some tips, how can I do it? Any ...
0
votes
1answer
101 views

combining two jquery functions for use on the same html page

I have been trying to get this to work for a while now, and I can't figure it out by myself :( How can I combine these two jQuery functions ? or the .js . Trying to put them together in the same page ...
0
votes
1answer
35 views

VB.net Set x,y,z values from text file into separate arrays

I have been trying to find out how to do this for days now, so I am finally asking how. I am newish to programming. Here is my problem. I am trying to extract x,y,z coordinates from a text file ...
0
votes
1answer
26 views

one file sound?

I am making an application for the android platform, its a 2d game. I have some sounds for example, coins, hit, shooting, reload etc. I have them all in one file named sounds. My question is, can i ...
0
votes
2answers
52 views

.htaccess URL rewrite (break single entity into two)

Have tried several suggestions from this site, Google searching, and other sources to no avail. I would like to have a re-write rule that takes a url like this: http://somesite.com/abc123 and ...
0
votes
2answers
23 views

Separate by blank lines in bash

I have an input like this: Block 1: line1 line2 line3 line4 Block 2: line1 line2 Block 3: line1 line2 line3 This is an example, is there an elegant way to print Block 2 and its lines only without ...
0
votes
1answer
141 views

javascript copy input file and get full file path

i got two questions about javascript My first question is: - is it possible to copy from 1 file input data to another file input data? what i mean is: i got this input : <input type="file" ...
0
votes
1answer
133 views

CSS - Non-overlapping / no-double borders with border-collapse: separate;

Before you get confused on me trying to explain it please check out the example(my current setup). All that I need is a way to add a non-overlapping / no-double borders in the table(this needs to be a ...
0
votes
1answer
63 views

Split file in place - is it possible?

Okay, I have a weird problem. I have a file, say 100MB in size. I need to split it into (for example) 4 different parts. Let's say first file from 0-20MB, second 20-60MB, third 60-70MB and last ...
0
votes
0answers
226 views

How to process 3d gaussian convolution with a 3d array or matrix in OpenCV

I have a 3d array like this. int sz[] = {240, 240, 240}; Mat accumarray(3, sz, CV_32S, Scalar::all(0)) ; And I want to process a 3d gaussian convolution on this array to blur the array. To make ...

1 2