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

learn more… | top users | synonyms

2
votes
1answer
248 views

Where can I find a RESTful list of bars and restaurants close to a user?

I want to create a mobile application that finds restaurants, bars, and other interesting places close to a user. However, I don't know how to find a list of all these restaurants and other places, ...
0
votes
3answers
81 views

storing occurrences for reporting

What is the best way to store occurrences of an event in a database so you can quickly pull reports on it? ie (total number of occurrences, number of occurrences between date range). right now I ...
5
votes
2answers
559 views

Fast graphing library

I've been using Incanter for my graphing needs, which was adequate but slow for my previous needs. Now I need to embed a graph in a JPanel. Users will need to interact with the graph (e.g. clicking ...
7
votes
2answers
99 views

Triply grouped-by tabular data - how to display?

I need to display a bunch of data in a table on a website as part of a report. The problem is there's a bunch of it, and it needs to be visually grouped. Each piece of data is a "usage" of an item, ...
4
votes
4answers
382 views

Implement Scrolling text in C

Hii , I was asked this question in one of my interviews with a MNC recently . The question was " We need to display a screen in which a text scrolls at the bottom of the screen and the remaining ...
1
vote
1answer
1k views

Could not find Assembly System.ComponentModel

I'm using Silverlight 4. I need to do grouping in my DataGrid. So i need to add add reference to System.ComponentModel. I could not find System.ComponentModel in "Add Reference". I added reference to ...
0
votes
1answer
61 views

What is a good way to regenerate HTML table on jQuery event, instead of appending to div element?

My plan was to use jQuery's .data() method to store my table row information in a hidden div element. Then, upon clicking an Add or Remove row button, I would modify the jQuery data in the hidden ...
2
votes
2answers
259 views

Organizing an EF4 data layer?

I am new to Entity Framework 4, and I am wondering, what's the best way to organize my data layer--the code that accesses EF4? At this point, my data layer is set up like this: DataStore class: ...
0
votes
3answers
274 views

Visual C# - What is the best way to handle a large table of data?

I've been playing with Visual C# lately and have formulated a project idea now. I'd like to be able to read in a .csv file and display easy-to-read reports based on the data contained within. As I'm ...
2
votes
2answers
5k views

Using Apex Data Loader to load records into object with master details relationship

I need to load data into two objects. I am able to load data into one object using the data loader. The second object has a master-details relationship with the first object so I need to have the ...
1
vote
2answers
1k views

What's the best way to cache binary data?

I pre-generate 20+ million gzipped html pages, store them on disk, and serve them with a web server. Now I need this data to be accessible by multiple web servers. Rsync-ing the files takes too long. ...
0
votes
3answers
102 views

php parse file not sure what format

I have an piece of hardware that returns tempature data etc. I am not sure what format this is though. I would like to parse it with php any suggestions on the best or easiest way to parse the data. I ...
3
votes
3answers
1k views

Generating a list of people's names

I am building a program that will eventually be populated with thousands of users, but I want to be able to test it using a large dataset while developing. What I want to do is get a list of several ...
0
votes
1answer
143 views

Is it able to setup a “data breakpoint” on return value

The scenario is: there is a deep call hierarchy and each call will return HRESULT. If something bad happens, function will return S_FALSE or S_ERROR, and if a call return error, the caller will ...
1
vote
1answer
874 views

Unit test problem with DataSource attribute [C#]

I try make my first simpel Data Driven Test. I created db (UnitTestsDb) with MS SQL Managmet studio, and also I created one db table (UsersTab). I try use this db in unit test. Code is here: ...
4
votes
1answer
685 views

How to handle large data sets for server-side simulation --> client browser

Sorry for the somewhat confusing title. Not sure really how to title this. My situation is this- I have an academic simulation tool, that I in the process of developing a web front-end for. While ...
1
vote
1answer
109 views

Passing Alphanumeric variables to JQuery Ajax

I've got the following JQuery code, which works fine if the VendorDropDown.ClientID is an integer, or a string that can be converted to an integer, but breaks if I try to use a string value like ...
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?
1
vote
1answer
234 views

Data service in roaming on blackberry phones

Can i chack in my application that data serivice is available in roaming? Can i use PhoneState.isDataServiceAvailable() for this situation or use another solution?
1
vote
3answers
440 views

JSON or XML or other data format with jQuery ajax()?

For a data send, where the return data contains potential updates for hundreds of elements on a page, is XML or JSON or another data format better, for usage with jQuery's various parsing formats ...
0
votes
2answers
735 views

Core Data app don't load data from persistent store

I've any problems for app I'm developing... I'm using Core Data and I just write initial code... But one of my problem is: Core Data won't load data stored in persistent store... This is my code! ...
0
votes
2answers
1k views

Error with cURL - “Could not resolve host: www.bbb.org(; No data record of requested type”

I am trying to access data of http://www.bbb.org/us/Find-Business-Reviews/ with cURL. Now I used HTTPFox to see what data does this site send and accordingly made an array to "POST" to the page. But I ...
2
votes
4answers
145 views

Listing data from mysql tables

recipe_category cid | category 1 | desserts 2 | cakes 3 | biscuits recipe_name id | recipe_name | cid | iid 1 | black forest cake | 1,2 | 1,2,3,4 2 | angel cake | 2 | 1,2,4 ...
8
votes
3answers
2k views

How do I plot a data series in F#?

Over on FSHUB, LethalLavaLand said, Let me plot my values! So the question is, how can I plot a data series in F# using built-in .NET 4.0 controls?
2
votes
2answers
902 views

I don't understand this Huffman algorithm implementation

template<class T> void huffman(MinHeap<TreeNode<T>*> heap, int n) { for(int i=0;i<n-1;i++) { TreeNode<T> *first = heap.pop(); ...
8
votes
4answers
3k views

Fastest data structure for contains() in Java?

What's the data structure in Java that has the fastest operation for contains() ? e.g. i have a set of numbers { 1, 7, 12, 14, 20... } Given another arbitrary number x, what's the fastest way (on ...
1
vote
1answer
256 views

Shared data in base class in asp.net

I have a set of aspx pages which are made of up usercontrols. Each usercontrol inherits from a base class. In that base class I want to put some common data objects (via EF) that I need access to in ...
4
votes
3answers
1k views

Best Server-Side Data Storage Method for Simple Data

I'm coding a website that involves storing very simple data, just a very long list of names with no additional data, on the server. As this data is so simple, I don't really want to use MySQL (it ...
1
vote
2answers
36 views

Tab formatter tool to prepare array data

Is there a tool that can take this: Attack,Decay,Sustain,Release 45,-1,26,55 "VERY LONG TEXT",false,true,true 0,0,1,1 and output it in a tabbed-format like this: Attack, Decay, ...
7
votes
2answers
1k views

In R, how can I parse csv data from a character vector to extract a data frame?

The read.table and read.csv functions in R are used to parse a file or URL containing delimited data and produce an R data frame. However, I already have a character vector that contains the CSV ...
1
vote
4answers
3k views

SQL Server - Copy stored procedure's from one database to other

I am trying to copy a database with huge data from SQL Server 2005 to SQL Server 2008. I tried using the Copy Database Wizard but could not use the wizard because they are two different server 2005 ...
3
votes
1answer
664 views

How to create notes in iphone notes app programmatically

I have some data in my local database in my iPhone app. I want to programmatically create a note in iPhones notes app and store this data. Does anyone know how to do it?
0
votes
2answers
57 views

Parse weird formatted data to XML?

Okay sample output data is below, it looks something like JSON, but it's not formatted exactly like JSON. So I am wondering, how can I get this data looking like XML, preferably with php? Thanks! [{ ...
0
votes
1answer
223 views

I load a new component in a as3 file and I want to pass to it some data, knowing only it's a IVisualElement

[FLEX 4 / AS3] I load a new component in a as3 file and I want to pass to it some data, knowing only it's a UIComponent. ex: // class1 // ... _UIClass = getDefinitionByName(_basePath + _UIPath + '.' ...
6
votes
3answers
451 views

Flash memory data format

I'm looking for a storage library for storing data in flash memory in an embedded system. I'm on the verge of writing a custom one for want of a format with the right mix of features and simplicity. ...
3
votes
3answers
767 views

Design suggestions for real-time data aggregation?

I'm looking to build some data aggregation stuff in C#, and I'd like something akin to a real-time pivot table, or some sort of continuously updating SQL query, with support for select, sum, average, ...
5
votes
3answers
6k views

jQuery .data vs eventData

When setting up a event handler (submit, click, keypress, whatever) what is the fastest and most efficient way to get data to the handler and use it in the handler? Should I be doing something like: ...
3
votes
5answers
145 views

Is PHP serialization a good choice for storing data of a small website modified by a single person

I'm planning a PHP website architecture. It will be a small website with few visitors and small set of data. The data is modified exclusively by a single user (administrator). To make things easier, ...
0
votes
2answers
386 views

Data Cleanup, post conversion from ALLCAPS to Title Case

Converting a database of people and addresses from ALL CAPS to Title Case will create a number of improperly capitalized words/names, some examples follow: MacDonald, PhD, CPA, III Does anyone know ...
0
votes
1answer
402 views

Flex: Extending x-axis on LineChart for unknown future data

How do you display data on a LineChart that cuts off where there is no more data? For example, if I am showing a chart of company revenue for 2010, the chart should only show up to July now (with ...
1
vote
1answer
422 views

Qt getting reference of custom data type of QStandardItemModel to change it!

It's getting a little weird I can't see a method to actually change the "data" of a QStandardItemModel. For example: struct TestStruct { std::vector<int> testVector; void addNumber(int ...
18
votes
5answers
904 views

What are the risks of PHP sessions?

So everyone says that sessions have security risks, I want to know what kind of risks are these? What can hackers do with sessions? This is not about knowing how to avoid attacks, I want to know how ...
0
votes
1answer
123 views

open source data base to handle 10 k transactions per sec? [closed]

I am trying to design data base to store 1 terabyte of data, that is able to handle 10K transactions per second I would like to use open source.What kind of architecture i can use.I am new to ...
3
votes
2answers
557 views

Calculating percent difference between elements in a list with functional programming in Mathematica?

This stems from a related discussion, How to subtract specific elements in a list using functional programming in Mathematica? How does one go about easily calculating percent differences between ...
2
votes
1answer
225 views

Tools and processes for application configuration management

My question has to do with best practices and tools used for promoting application configuration data to a new environment as part of a typical testing cycle. The latter includes three environments, ...
2
votes
2answers
2k views

How to build a real-time streaming data silverlight application

I'm curious to get some feedback and ideas on how one could go about building a realtime data streaming application. We can keep the source data generic for this exercise ... throughput info, stock ...
4
votes
5answers
432 views

Does putting data into std::vector in C++ create a copy of the data?

I am interested if creating a new std::vector (or calling its assign method) creates a copy of the data? For example, void fun(char *input) { std::vector<char> v(input, ...
2
votes
3answers
156 views

How would I visualize the amount of time that's passed between dates?

If I had a product and wanted to visualize the amount of time that has passed between releases of that product, what type of graph would I use? What I'm trying to show is the average amount of time ...
0
votes
4answers
389 views

Why won't my UITableView show the data?

Here is my issue. I have a screen in a tab bar application that display's a search bar, and a UITableView. When you first open the tab, the UITableView is empty. After you enter a search, the iphone ...
0
votes
4answers
1k views

Insert value into a column in PostgreSQL

I am trying to figure out how to insert the same value into the entire column of a table? The table already exists and I have an empty column into which I would like to insert a certain value, for ...

1 132 133 134 135 136 158