Data is any form of information that can be used by a process, service, or application.

learn more… | top users | synonyms

83
votes
4answers
93k views

How do you post to an iframe?

How do you post data to an iframe?
52
votes
1answer
18k views

jQuery Data vs Attr?

Would someone be able to clarify the usage of $.data() over $.attr() when using data-someAttribute ? My understanding is that if I want to use $.data() the storage and retrieval is within the $.cache ...
163
votes
7answers
65k views

What's the difference between identifying and non-identifying relationships?

I haven't been able to fully grasp the differences. Can you describe both concepts and use real world examples?
76
votes
12answers
12k views

Workflow for statistical analysis and report writing [closed]

Does anyone have any wisdom on workflows for data analysis related to custom report writing? The use-case is basically this: Client commissions a report that uses data analysis, e.g. a population ...
51
votes
5answers
25k views

iOS: How to store username/password within an app?

I have a login-screen in my iOS app. The username and password will be saved in the NSUserDefaults and be loaded into the login-screen again when you anter the app again (of course, NSUserDefaults are ...
89
votes
14answers
20k views

Tools for Generating Mock Data?

I'm looking for recommendations of a good, free tool for generating sample data for the purpose of loading into test databases. By analogy, something that produces "lorem ipsum" text for any RDBMS. ...
42
votes
4answers
42k views

how to post data to specific URL using WebClient in C#

I need to use "HTTP Post" with WebClient to post some data to a specific URL I have. Now, I know this can be accomplished with WebRequest but for some reasons I wanna use WebClient instead. is that ...
31
votes
2answers
5k views

How does jQuery .data() work?

My Javascript knowledge is pretty limited. Instead of asking several javascript questions I got the "message" from Stack overflow and started using jQuery right away in order to save me some time. ...
15
votes
7answers
13k views

PHP - Redirect and send data via POST

I have an online gateway which requires an HTML form to be submitted with hidden fields. I need to do this via a PHP script without any HTML forms (I have the data for the hidden fields in a DB) To ...
52
votes
20answers
4k views

Where can I find free and open data?

Sooner or later, coders will feel the need to have access to "open data" in one of their projects, from knowing a city's zip to a more obscure information such as the axial tilt of Pluto. I know ...
64
votes
12answers
63k views

How do you truncate all tables in a database using TSQL?

I have a test environment for a database that I want to reload with new data at the start of a testing cycle. I am not interested in rebuilding the entire database- just simply "re-setting" the data. ...
23
votes
8answers
18k views

Peak detection of measured signal

We use a data acquisition card to take readings from a device that increases its signal to a peak and then falls back to near the original value. To find the peak value we currently search the array ...
15
votes
6answers
15k views

Client/JS Framework for “Unsaved Data” Protection?

Hey all- we have a typical web application that is essentially a data entry application with lots of screens some of which have some degree of complexity. We need to provide that standard capability ...
14
votes
7answers
7k views

Data Auditing in NHibernate and SqlServer

I'm using NHibernate on a project and I need to do data auditing. I found this article on codeproject which discusses the IInterceptor interface. What is your preferred way of auditing data? Do you ...
22
votes
8answers
25k views

Android eclipse DDMS - Can't access data/data/ on phone to pull files

While testing my apps, I use emulators and my own phone to see if everything is working ok. My apps are also writing data to shared preferences and a text file. I can pull the data from my emulators ...
16
votes
3answers
542 views

How to create example data set from private data (replacing variable names and levels with uninformative place holders)?

To provide a reproducible example of an approach, a data set must often be provided. Instead of building an example data set, I wish to use some of my own data. However this data can not be ...
10
votes
6answers
5k views

Seeing if data is normally distributed in R

Can someone please help me fill in the following function in R: #data is a single vector of decimal values normally.distributed <- function(data) { if(data is normal) return(TRUE) else return(NO) ...
12
votes
6answers
3k views

Embed data in a C++ program

I've got a C++ program that uses SQLite. I want to store the SQL queries in a separate file -- a plain-text file, not a source code file -- but embed that file in the executable file like a resource. ...
3
votes
2answers
8k views

Setting up a plist to store application data (not settings) for an iPhone game

I am writing an iPhone game and have it working well with my level data hard coded but I would like to store the level data in a plist a load it at launch. I have never used plists and am having ...
3
votes
7answers
9k views

Table like java data structure

I need to implement some kind table-like data structure that stores info like this in Java: +--------+-------+-----+ | sij | i | j | +--------+-------+-----+ | 45 | 5 | 7 | ...
8
votes
7answers
4k views

Class vs Struct for data only?

Is there any advantage over using a class over a struct in cases such as these? (note: it will only hold variables, there will never be functions) class Foo { private: struct Pos { int x, y, ...
1
vote
7answers
1k views

what is the best way to put a translation system in php website?

I'm deevelopping a website in PHP and I'd like to give the user to switch from german to english easily. So, a translation politic must be considered: Should I store the data and its translation in ...
17
votes
8answers
2k views

Persisting data suited for enums

Most projects have some sort of data that are essentially static between releases and well-suited for use as an enum, like statuses, transaction types, error codes, etc. For example's sake, I'll just ...
12
votes
5answers
15k views

jQuery loop through data() object

Is it possible to loop through a data() object? Suppose this is my code: $('#mydiv').data('bar','lorem'); $('#mydiv').data('foo','ipsum'); $('#mydiv').data('cam','dolores'); How do I loop ...
5
votes
3answers
9k views

How do I filter the returned data from jQuery.ajax?

When using the jQuery.ajax method, I am struggling to filter the data that is returned to get exactly what I need. I know this is easy using .load and probably the other jQuery ajax methods but I need ...
2
votes
1answer
17k views

ListView adapter data change without ListView being notified

I've written a ListActivity that has a custom list adapter. The list is being updated from a ContentProvider when onCreate is run. I also have a service that gets started when I run the app and it ...
4
votes
5answers
2k views

Download large data for Hadoop

I need a large data (more than 10GB) to run Hadoop demo. Anybody known where i can download it. Please let me know. Thanks for your help.
13
votes
5answers
5k views

Is there any guarantee of alignment of address return by C++'s new operation?

Most of experienced programmer knows data alignment is important for program's performance. I have seen some programmer wrote program that allocate bigger size of buffer than they need, and use the ...
8
votes
6answers
7k views

Need to write at beginning of file with PHP

I'm making this program and I'm trying to find out how to write data to the beginning of a file rather than the end. "a"/append only writes to the end, how can I make it write to the beginning? ...
6
votes
4answers
2k views

finding the best trade-off point on a curve

Say I had some data, for which I want to fit a parametrized model over it. My goal is to find the best value for this model parameter. I'm doing model selection using a AIC/BIC/MDL type of criterion ...
5
votes
2answers
8k views

Android: Pass data from Activity to Service using an Intent

How do I get data within an Android Service that was passed from an invoking Activity?
4
votes
2answers
2k views

Data URI scheme and Internet Explorer 9 Errors

I'm having a problem using the RFC 2397 data url scheme with IE versions 6-9. My sample code below works without problem when using current versions of Safari, FF, Opera and Chrome. ...
6
votes
4answers
7k views

Help smoothing data from a sensor

Just found this site Well, I have a 3d sensor, wich mesures v(x,y,z) data, I'm only using the x and y data for my purpose, with help smoothing only x or y would be enough. If I use a log to show ...
31
votes
6answers
17k views

What's the longest possible worldwide phone number I should consider in SQL varchar(length) for phone

What's the longest possible worldwide phone number I should consider in SQL varchar(length) for phone. considerations: + for country code () for area code x + 6 numbers for Extension extension (so ...
28
votes
1answer
16k views

Unable to set data attribute using jQuery Data() API

I've got the following field on an MVC view: @Html.TextBoxFor(model => model.Course.Title, new { data_helptext = "Old Text" })</span> In a seperate js file, I want to set the data-helptext ...
21
votes
11answers
16k views

List of Cities by Country

Where does Facebook get their list of cities from? Is there a service that provides an up-to-date feed of cities based on country?
8
votes
5answers
2k views

Matching records based on Person Name

Are there any tools or methods that can be used for matching by a person's name between two different data sources? The systems have no other common information and the names have been entered ...
4
votes
4answers
37k views

jQuery - Post array of multiple checkbox values to php

Why is only one value of the "db" checkbox values array being sent to the server side script? JQUERY: $(".db").live("change", function() { ...
9
votes
3answers
5k views

Process a continuous stream of JSON

The page http://stream.twitter.com/1/statuses/sample.json returns a continuous and endless stream of JSON data. I'd like to process it using jQuery (or JavaScript, but preferably jQuery) inside my own ...
3
votes
1answer
6k views

JSF Command button inside a JSF data Table

I am using a JSF data table. One of the columns in the table is a Command button. When this button is clicked I need to pass few parameters (like a value of the selected row) using the Expression ...
1
vote
1answer
9k views

How to Read and Write from the Serial Port in C#

I just start to learn How to communicate send data and receive data from my hardware through C# GUI. I already try to learn from Online but still can not understand the concept. can anyone write a ...
3
votes
4answers
5k views

Manually parse raw HTTP data with PHP

I can't seem to find a real answer to this problem so here I go: How do you parse raw HTTP request data in PHP? I know that raw POST is automatically parsed if formatted correctly, but the data I'm ...
3
votes
13answers
609 views

Returning local data from functions in C and C++ via pointer

I have argument with my friend. He says that I can return a pointer to local data from a function. This is not what I have learned but I can't find a counterargument for him to prove my knowledge. ...
0
votes
2answers
140 views

Create report and upload to server for download

I have a CSV file thats 300MB and has over 1/2 million entries. I want to run reports and make these reports available for download. Here's the data structure: A;B;C;D;E;F;G What I'd like to do is ...
3
votes
1answer
11k views

PHPMailer AddAddress()

ok, i don't know how the data should be formatted for AddAddress PHPMailer function; i need the email to be sent to multiple recipients so i tried $to = "me@domain.com,you@domain.net,she@domain.it"; ...
2
votes
1answer
5k views

Android: How to send and receive data SMS messages

I've found a few tutorials on how to send/receive text SMS messages, but none on how to send/receive data SMS messages. I have a very small amount of data I would like the users of my app to be able ...
2
votes
2answers
2k views

jqGrid caching the grid data

I have a button onclick it should go to a another page containing jqGrid..but if user want to go and see the data it should be cached and show instead of making a call to the server.... form values ...
1
vote
3answers
2k views

How to read output from Excel file into Fortran?

I have an excel sheet with the following columns for a stock chart: Open High Low Close Day Average How do i use Fortran to pull only the "Day Average" from the excel file? I am new to Fortran ...
1
vote
2answers
1k views

Extracting data between two tags in HTML file (MATLAB)

I've got a HUUUGE HTML file here saved on my system, which contains data from a product catalogue. The data is structured such that for each product record the name is between two tags (name) and ...
20
votes
21answers
11k views

Where can I find data on used car makes and models? [closed]

I'm looking into developing a used cars web app, but I've searched and I cannot find any avaliable database for download (paid or free) that contains all the makers and models of automobiles. How ...

1 2 3 4 5 13