The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
18 views

Separating attr_accessible using two different models with the same table

I want to separate validation and attr_accessible using two different models, which refers to the same table and includes the same mixin. require 'rfc822' class UserForAdmin < ActiveRecord::Base ...
-2
votes
1answer
71 views

how can i split one variable programmatically? [closed]

i have a nsstring like that: Variable1 = x;\n Variable2 = y;\n variable3 = z;\n variable4 = t to make a clear question i am showing nslog of my nsstring: NSLog(@"%@",myNsString); at ...
1
vote
1answer
68 views

Separating hand written numbers on a squared paper form its background

I am new in matlab and I am trying to write a code that can separate hand written numbers form a squared page background. I have tried using kmeans to differ the numbers from the lines and the ...
1
vote
1answer
28 views

How to customize list item images separately in css

I am trying to customize my ul li images separately using css but it just isn't working for me. I have tried putting id's on my images and putting classes on my li's but every time I do anything of ...
0
votes
1answer
30 views

MySQL aggregation and separation at the same time

I have this quite complex problem I guess. My Mysql DB looks like that: Trips: id mileage car id driver id Drivers: id name Cars: id model What I ...
1
vote
2answers
109 views

Delimiter-separated string to TreeView C#

I have an input stream something like this: John Peter Vanesa Vanesa.New Josh Josh.New Josh.New.Under ... I need to Add Nodes to TreeView Someting like this: +Customers +John +Peter ...
1
vote
1answer
37 views

seven-digit number + 1-2 letters (if given) to take out in Oracle SQL

I don`t know if it is possible. I wanted only the seven-digit number + 1-2 letters (if given) to take out. e.g.: 1300165A panadol 5mg panadol 1% *1370100 panadol 2 mg, CL: 1300232 1330186AA Would ...
0
votes
4answers
69 views

How to obtain elements from String separated by comas Java

I'm trying to obtain the values of a String, which is separated by comas. somthing like this: String str = "item1, item2,0 item3, item4, 0 item5 ...." This strange String it's because I have a KML ...
0
votes
1answer
52 views

data from txt file to NSArray

As I was searching through stackoverflow, I did not came across an answer. What I would like to do is the following: I'm using XCode 4.6.1, building an iOS App I have an textfile (.txt) that ...
0
votes
0answers
28 views

How to separate words by numbers from a string in C

I have a text file called commands.txt which contains some commands followed by some arguments. Example: STOP 1 2 4 START 5 2 1 8 MOVE CUT 0 9 I want to read every line from this text file and to ...
2
votes
2answers
52 views

PHP Separate two different sections in one input

I'm working on a PHP based application extension that will extend a launcher style app via the TVRage API class to return results to a user wherever they may be. This is done via Alfred App ...
-1
votes
2answers
47 views

Separate string with 2 characters [closed]

Supose i have this - This file called data.php - : <?php $adm[name]="Frank"; $adm[phone]="555555"; $adm[state]="Maryland"; ?> And i want separate each field value ...
4
votes
4answers
146 views

What is a robust way of template specialization in C++ for separated header/source

In moderate-sized or even big complex projects separating template declaration and definition is useful to reduce compilation time. However, in a complex code small programmer mistakes may lead to ...
0
votes
1answer
89 views

Separate pages from PDF into images or HTML

For a project i need to create a webtool where users can upload PDF documents that can be displayed in a browser with some page flip jQuery stuff. In order to do so, I need to separate the PDF into ...
0
votes
0answers
37 views

Playing multiple audio files in an order Xcode 4.3

Hey all I'm trying to play multiple audio files in a certain order and when I run my code it plays all of them at once. I know where the problem is I just can't figure out how to separate each file. ...
0
votes
1answer
78 views

How to separate/decouple git repository into a different location

My request may look strange but it'd make more sense after I explain why I'm doing it. So I have my person projects under /path/to/myprojects. Underneath maybe C, Perl, Shell, Tcl, etc. Now I want ...
0
votes
0answers
23 views

how to give a separate uiview for each orientation

I want to support all the orientation, but I want the portrait view to be different from the landscape, for that and in my xib file, I created two view: one for the portrait mode and the other for the ...
0
votes
2answers
240 views

How to separate data being received over bluetooth in android

This is my first question on StackOverflow, and I'm a beginner when it comes to programming for Android, but I'll do my best. I've spent hours searching and reading with no progress. I have modified ...
0
votes
4answers
81 views

Get image link and text from string

I have this string <div><img width="100px" src="http://www.mysite.com/Content/dataImages/news/small/some-pic.png" /><br />This is some text that I need to get.</div> and i ...
0
votes
1answer
181 views

Separate chain Hashing for avoiding Hash collision

My knowledge of hash tables is limited and I am currently learning it. I have a question on Hash collision resolution by open hashing or separate chain hashing. I understand that the hash buckets in ...
0
votes
1answer
58 views

Git - separate folder for each branch. Setting it up

I have a need to keep 3 branches in 3 separate folders. (I know this is not a git way of doing things. But I need to do this for a reason). Lets say the repo name is my_proj_repo.git I have created a ...
0
votes
1answer
91 views

separate numbers with space

I want to separate numbers with space like this: 1 200,12 500 or 2 000 000 instead 2000000... function show_price($id) { global $currency_a; if(get_option("defaultcurrency")) { $curr ...
1
vote
2answers
69 views

How to separate each column of matrix for every 100 numbers each time in MATLAB

In MATLAB I have a matrix with of 80000*20 numbers. I would like to calculate the mean, maximum and minumum for the first 100 numbers in column 1 (0-100), the next (second) 100 numbers (101-200) in ...
-4
votes
2answers
91 views

How to separate numbers into digits and store them in a list?

I'm working on a school project in which we need to create a solution for 8-puzzle problems using the a* algorithm. Anyways, I would like to ask a user for an input say: 123 456 7 8 How do I ...
0
votes
1answer
68 views

Can't play AVMutableComposition with sound

I'm currently working on an iPhone App, that only plays the Audio Track of an .mp4. The Player starts playing, but I can't hear any sound. Here is the Code: NSURL *videoUrl = [NSURL ...
0
votes
1answer
74 views

Error in separating components from NSArray

I have imported some stock market data from a website but I am having problems in separating them. In a part of the code it's working fine, but just at the end it is not. Here is the code: NSURL *url ...
0
votes
2answers
49 views

How to solve separate questions in iOS without warning?

The following code does work, but it still makes me frustated because in the else block the deprecated method call leads to a warning. if ([self.navigationController ...
0
votes
1answer
53 views

Storing separated strings

So I'm trying to write this program that takes a string, seperates the strings into words and puts the seperated words into a format like "word1+word2+word3..." I've written a C program that gets a ...
0
votes
0answers
23 views

separate rows in a textview in android

I am currently working for an android app (a notepad), and I would like to make my notes (which are represented by a TextView) to have the lines/rows separated by a simple thin line. Is there any way ...
6
votes
2answers
182 views

Using regular expression to comma separate a large number in south asian numbering system

I am trying to find a regular expression to comma separate a large number based on the south asian numbering system. A few examples: 1,000,000 (Arabic) is 10,00,000 (Indian/Hindu/South Asian) ...
0
votes
0answers
672 views

Install and Run separate,second Google Chrome

I wanted to have a multiple Chrome application for different uses. The simplest way i could determine to install/run a second, separate chrome application, is the following solution, using CMD (so, ...
1
vote
1answer
86 views

Separate scrollbar of different UI component within a view iOS

I am creating an iPad app that has single view. the left part of the view is a tableView and the right part is a webView. When user clicks on a cell in the table, the webView to the right load the web ...
0
votes
1answer
69 views

onClick event in separate document

I've done a webpage and I would like to keep all my onClick events in a seperate JS document, as I do with the rest of the Javascripts I'm using. The snippets I'm using atm in the HTML I would like ...
0
votes
0answers
40 views

How can I separate an array that has MPMediaitems using predicate?

I have an array that contains MPMediaItems and I tried to separate this array using predicate. Here is the code: return [arrA filteredArrayUsingPredicate:predicate]; arrA is an array that has size ...
1
vote
0answers
202 views

separate chaining vs linear probing

a set of objects with keys: 12, 44, 13, 88, 23, 94, 11, 39, 20, 16, 5 Write the hash table where M=N=11 and collisions are handled using separate chaining. h(x) = | 2x + 5 | mod M So I did it ...
0
votes
1answer
74 views

separate compilation in C gives error if function is declared in header file

I have a problem compiling separate module in C with gcc: basically, i have my header, common.h: #ifndef COMMON_M #include<stdio.h> #define COMMON_M void print_array(int *a,int n); ...
0
votes
0answers
32 views

Json Decode,Access, show and separate names with ID, every 9 names

Hello :) I give you the Json Decode below. http://pastebin.com/XqhTMWCS It presents my last 10 games. I need to get my 4 teamates for every game,and my 5 enemies.(names) When someone is a teamate,his ...
-3
votes
3answers
121 views

Java, Take a number from a string, and assign it to a separate Variable - Java

Okay, so I'm making a program and I want to take an input for a license plate # (Numbers and Letters) and what I'm looking to do is, take the input in one line, and be able to separate the Numbers and ...
0
votes
0answers
124 views

How to use moments to distinguish coins from other objects

I'm writing a program in python using opencv, that distinguishes coins from other objects present in an image. I'm trying to use circularity to distinguish coins from non-circular objects. I've ...
1
vote
1answer
390 views

how do I separate contours of touching objects using erode?

I'm getting this problem: http://img38.imageshack.us/img38/5856/questao.png I'm using python and opencv. I'm trying to separate the contours of the touching coins using erode I thresholded the image ...
1
vote
2answers
162 views

Drupal node 2-page content split

My employer requires certain pages on the website have a two page feature. What this means is that some default content show up on the node_view page as normal but the second part should show up when ...
3
votes
5answers
105 views

separating list elements in python

So given the list (listEx) in the following code, I am trying to separate the string and integer and float types, and put them all in their own respective lists. So basically if I wanna extract ...
0
votes
2answers
76 views

Triggering a Web page javascript function from a .Net application - separate process

Trying to determine if this is even possible first. Have a need to be able to trigger a javascript function on a client webpage from our .Net application (WinForms - C#). I.E. -> WebPage -> ...
0
votes
2answers
209 views

Finding vertices in graph that are separated by one vertex

Do you know some algorithm(better than brute-force) which can find vertex in the graph that are separated by one vertex and aren't connected between each other. Example: In this graph found paths ...
0
votes
1answer
164 views

Orbeon, OpenSSO and session expiration

We are using Orbeon 3.9 in separate deployment (cross context), application security is with OpenSSO, server is glassfish. Note: Orbeon submissions (backrequests) is handled with another ...
0
votes
1answer
120 views

Grails Separated date and time to one bean with property registrar

In my model, I have a date property and in the view, I want to use a property editor to bind a date in the format "dd.MM.yyyy". To create a custom date format with a registrar, I used ...
0
votes
3answers
85 views

Separating a single string into multiple stacks

this is for an assignment I am currently working on, and I feel like a solution is so close but I just can't quite grasp it. Any help would be much appreciated! What I am trying to do is take a ...
0
votes
1answer
359 views

Separated cells in UITableView

I want UITableView to show cells in section separated (have distance, blank space, between them). So I've come up with this: InventoryViewController.m - (NSInteger)tableView:(UITableView ...
0
votes
2answers
186 views

Seperate text in java with backslash-zero as delimiter

Suppose I have a binary file that has this content: abc\0def\0ghi\0 The content is already read and stored in a string variable s. How should I extract the components "abc", "def", "ghi" into ...
0
votes
6answers
101 views

how to split a string using : “\\” or “\”?

I have this string: char *path = " one\\\two\\\five\\\six"; I want to separate it to an array when every cell is the string. I'm using strtok, buy my problem is in calculating how much space to ...

1 2 3 4