The data tag has no wiki summary.
2
votes
0answers
17 views
Looking for session/event analytics analysis tool
I have data that is basically made up of a set of sessions filled with events.
For example:
Session1 - [Event1] [Event2] [Event3]...[Event64]
Session2 - [Event1] [Event3] [Event4]...[Event64]
The ...
-1
votes
1answer
65 views
Data aggregation like polyvore.com [closed]
I'm creating a website that is going to aggregate women shoes from across the web into one website. Kinda like polyvore.com does with all their products but mine is only going to be shoes. Which ...
0
votes
2answers
142 views
Design pattern for data privileges
I'm designing a financial system that should grant access to data based on roles and privileges. For example, a manager can see the financial transaction of users under his domain but not information ...
1
vote
4answers
148 views
Best Practices for Maintaining Uppercase vs Proper Case Data
We have several years of customer data that has been collected over time. I'd guess that 95% of the data (Names, Business Names & Addresses) is in all UPPERCASE format.
The data entry tool used ...
0
votes
0answers
34 views
mapping data with a spike to a heat map [migrated]
I have the following data set that I need to display on the heat map:
[ 30, 15, 66, 7, 9999, 78, 42, 132 ]
So if I map the values to the color scale using a linear function I only see the spike ...
3
votes
1answer
129 views
How to process an endless XML data stream
There is an endless data stream of XML messages (and "heartbeats"), that I receive via a telnet connection and through a site-to-site VPN IPsec tunnel.
I'm still pondering. What is the best/most ...
0
votes
0answers
35 views
Extracting data point locations from a postscript/pdf plot [closed]
There are a number of tools available for manually extracting the x/y coordinates of points in a data plot, such as WebPlotDigitizer and digitize.
They work well when there are only a few ...
-1
votes
2answers
100 views
How would I create a program in python that would pull data from the web [closed]
Like my title says I'm wondering how to do so. I have a little idea by using the Requests library. I also want to know is this a little ambitious of a programmer with little experience.
8
votes
3answers
217 views
Is a single object to be preferred over multiple variables?
It was quite hard to put what I meant into a title, but it's easy to put into code.
C++
Is this
int offset_x = 10;
int offset_y = 40;
...
element.move(offset_x, offset_y);
To be preferred over ...
3
votes
2answers
84 views
What's a good format for documenting hundreds of data feeds?
Several governments are starting to publish open data: datasets generated by the goverment, made freely available for citizens to use for value-added app development, analysis, and feedback. For ...
8
votes
2answers
321 views
Why build data models in a dynamic language?
Background
This question stems out of an architectural discussion we had at work.
For the current project we are using Python and an object oriented database. There are input services that we ...
8
votes
11answers
3k views
Why do “data types” in computers exist, if it's really all just bits? [closed]
I am confused with the wide array of ways to implement existing data types in hardware as it all seems a bit illusory.
For example:
There's no such thing as a software stack or a hardware stack; a ...
3
votes
2answers
95 views
Design strategies for storing and validating serial numbers
We are writing software to track Foo Widgets. Each Foo Widget has a serial number. The serial number is an 32-character alphanumeric string. The string is separated into five sets. Each set is ...
1
vote
1answer
113 views
Storing 'sensitive' data in settings file
I'm writing a small utility in AutoIt that connects to Twitter. I would like to store the username and password in the programs setting file, but I know that it needs to be encrypted obviously. ...
1
vote
1answer
27 views
Multiple Display of a Document and persist each viewer change in a single document
i have a scenario where i have to make available a document for viewing and editing to multiple users, the users can edit and view the document at the same time. Now the problem arises here if for ...