Data is any form of information that can be used by a process, service, or application.
0
votes
3answers
22 views
python how to transpose lines to column for only 7 rows at a time in file
I am a very novice python user so please pardon if I am violating any user ettiquette. Please help, I have a text file that looks something like this:
ID: 000001
Name: John Smith
Email: ...
0
votes
1answer
14 views
Does JPA allow to create the same table structures but different name of tables?
I have a simple JPA (Spring data Jpa) use case for simple forums.
This project is done by Spring MVC, Spring Data Jpa with hibernate as a jpa vendor and it consists of forum/forum_comment pojo ...
0
votes
0answers
7 views
Create Unique value for data
I am measuring Sales against Lead numbers. Sometimes Sales come through with no lead number included, and the lead number shows zero. When I consolidate my data, the ‘0’ leads all get counted as one ...
0
votes
5answers
63 views
Formula to calculate average number on expanding data array
Say, if I had a final array of numbers, say:
{1, 5, 7, 2}
the average for them will be:
(1 + 5 + 7 + 2) / 4; //Or, sum of all elements, divided by their number
But what if my array is ...
0
votes
0answers
2 views
Mining data associated with specific dates
I downloaded historical prices from the S&P and am looking to get specific closing prices based on their dates. I want to have the macro return every year after an associated date. I tried ...
0
votes
1answer
47 views
Pivoting tables in pandas
Below is an extract of a dataframe which I have created my merging multiple query log dataframes:
keyword hits date average time
1 the cat ...
0
votes
1answer
13 views
Magento : Add data to quote item object in an observer
This is what I want to do :
1) When I add a product to the cart, I catch the event
2) In the associated observer, I want to add a data to the current quote item and save it.
3) In the shopping cart, I ...
0
votes
2answers
76 views
Is this an ugly/bad design for a data-structure? (Java)
Is this data structure a bad design choice somehow?
Basically every map is a user, which has a bunch of different kinds of fields. Every kind of field is a key in the map, and has a List of the ...
0
votes
2answers
28 views
Best way to Store continuous data in android
In my android application, There will be one service which will be generating some data(statistics) like (int, time, long, boolean).
So question is what is the best and optimal way to save that ...
0
votes
2answers
25 views
Extracting rows for a Pandas dataframe in Python
I have imported a simple query log into a pandas dataframe in Python (see image), and would like to know what the most efficient way is to extract all of the rows that contain any given keyword that ...
0
votes
1answer
26 views
jquery accessing data() of window.parent from iframe
in the parent window I have:
<input type=text size=100 id="picker1" data-listoption="1" data-type="size">
then within the iframe I have
<script>
$(document).ready(function(){
...
0
votes
0answers
9 views
Ajax call Server return data length limited in IE
I got a problem that if ajax call in Chrome, the return data is all from end server. But in IE, the return data is not all.
Does anyone also have this problems? How to solve it?
0
votes
1answer
66 views
How to read data from USB port using C
I have sensor node connected to USB port that sense temperature, humidity and light and send the data to PC.
What piece of code will help me to read that data from the usb port in normal C.
...
1
vote
3answers
64 views
Can you store data inside a .jar?
I'm learning java and am currently trying to develop a simple application. My question is can you store data about settings, etc in a text file internal to a .jar? If so how would you go about ...
-1
votes
0answers
6 views
is there anyway to restore text from file?
i was working on a page called products and have finished a lot of work but because of power shortage suddenly all data in this php file was erased and it's which is sooo hard to work on it again it ...
0
votes
0answers
10 views
transform existing mysql table to first normal form
I have a huge mysql database (table with > 100mio rows) and need to migrate the data to a new schema. one of the changes in the new db will be to transform a table to first normal form, e.g.:
table ...
1
vote
1answer
26 views
OrderedDictionary and Dictionary
I was looking for a way to have my Dictionary enumerate its KeyValuePair in the same order that they were added. Now, Dictionary's doc clearly state that:
For purposes of enumeration, each item in ...
0
votes
0answers
15 views
Using VS2010 Data Connection Tool for Users
since the code for this small ui is free, I'm trying to use it for a connection test tool.
Its working not bad, but unfortunately, it just builds the standard connections.
I add all, which can be ...
0
votes
1answer
50 views
multy databases for clients [closed]
I need help with databases MySQL.
I am building a Customer Management System where more than 1000 users will use this system and each user will have their own clients which in turn they can have more ...
1
vote
1answer
24 views
Alternative to Matlab cell data-structure in Python
I have a Matlab cell array, each of whose cells contains an N x M matrix. The value of M varies across cells.
What would be an efficient way to represent this type of a structure in Python using ...
0
votes
1answer
15 views
iOS — What is the best way to save data for a table within a table?
I have gone through the tutorial on apple's developer website called 'Your Second iOS Application' in which I learned how to make my master detail application. I went on to learn how to save the data ...
0
votes
2answers
62 views
Same data in multiple views using AngularJS
Maybe there is someone who can help me a little bit. I have to share data between multiple views. Because it is a school project, I have to use AngularJS, but I am new to it and I don't know where to ...
4
votes
2answers
134 views
C++ getchar() is there data still waiting to be read
I am implementing a key reader program in c/c++. I am using linux. I know that the unbuffered getchar function will return little data values of keys. For all ASCII keys (a-z, A-Z, 1-9, punctuation, ...
1
vote
1answer
43 views
C# data bound ListBox
I have the following two Access tables:
Employee table:
EmployeeID
Name
etc.
Project table:
ProjectID
EmployeeID
ProjectDescription
Each Employee can manage zero or more projects.
I know how to ...
-5
votes
0answers
15 views
Encryption: Is there software that encrypts data from local netowrk and transfers to cloud? [closed]
I need an application that I can install on desktops that can:
1. Listen for data coming from a local ip address (XAMPP file)
2. Encrypt data
3. Send to my server
Ideally, users would only need to ...
0
votes
3answers
36 views
Unable to fetch data from textfield using $_POST
I have been not able to fetch data from the textfield 'current_reading'. What can be the issue? every other text and $_POST method are working fine
index page
...
1
vote
2answers
96 views
Parse Data with Many Attributes in Scala
I've been doing some self directed learning with weather data in Scala, because the data is free, big, and feeds into lots of other stuff I would like to do. Immediately I ran into trouble with how ...
0
votes
0answers
16 views
Python Socket Multithreading with Variable/Object Sharing Between Parent and Child? [closed]
I need to build a Socket server in Python that must be multi-threaded in order to support large number of requests however I'm a bit confused about multi-threading
I need to know if a thread in ...
1
vote
1answer
22 views
Data consolidation from different cells depending on variable in Excel
I'm sure there is a simple answer, but I have literally looked for hours, to no avail. Here's the scenario...
If I have 20 marbles:
Column A is 20 rows long, each cell containing the value 1.
Column ...
1
vote
1answer
34 views
R: merge data frames for cohen's kappa
I'm trying to analyze some date using R but I'm not very familiar with R (yet) and therefore I'm totally stuck.
What I try to do is manipulate my input data so I can use it to calculate Cohen's ...
1
vote
1answer
27 views
Magento displays same page inside the visible page when trying to send/receive data from another php
I'm trying to make a new functionality on a custom back-end module that I've created a few weeks ago. The new functionality consists in making a query in order to list in a 'select-option' some data ...
0
votes
1answer
33 views
Serialize multiple data from database of same column
I'm new to PHP and using serialized data,
I have a Database which has a 2 tables, user & character.
characterId has a relation with userId.
An user has 2 characters, so I wanted to get the data ...
0
votes
4answers
39 views
How to get data from html page using java?
How to get data from XML/HTML page?
I'd like to make an android app, in which users get a notification of a school-lesson that fell out.
This is what the website looks like:
...
0
votes
0answers
6 views
How do I show google spreadsheet data as text?
I'm using Google Sites to build a website that will show information from a spreadsheet. I don't want to embed the spreadsheet, or even a section of cells. I want the page to extract the data from a ...
0
votes
1answer
38 views
Actual employee working hours from payroll system?
I am working on a project which involves a payroll system for Employees. My main goal is to retrieve the actual work hours for each employee, however I am a bit confused about how I should proceed ...
-1
votes
1answer
19 views
DataGrids or Tabular Data? [closed]
Are developers calling returned data in rows (fields) "grids" or "tabular data"? Is the word "table" or "Tabular" used anymore? Twitter BootStrap is calling grids for something that's related to ...
0
votes
1answer
32 views
Transform data from cumulative for year to date to daily
I am trying to convert data that show sales as cumulative total sales for the year to date. I want to show sales as they occur by day, not the cumulative figure.
Here is an example of the data:
...
-1
votes
1answer
21 views
Python: Write data to HDF5 file
I'm trying to write data into a HDF5 file using the script below.
The terminal window I'm running the code in gives the correct output, and the output HDF5 file is created, but no data in the tables ...
-1
votes
0answers
154 views
No insights update since may 13 for all my pages [closed]
I noticed that the insights for all my pages are stuck on may 13 (datas && graphs).
The page posts datas however is updated.
Is there something I can do or is it a bug ?
Thanks, and sorry if ...
0
votes
0answers
10 views
Storing Amazon's product API data in database
I am trying to build an application with retail data from US but experiment in India. I want to put in new features like group shopping and also analyze user behavior like buying, sharing etc.
But, I ...
1
vote
0answers
28 views
Linking two CheckedListBoxes to populate one based off the other
I am trying to link two checkedListboxes so that when you check an item on the first (which is a list of types), it will then populate the second with a list of categories within that type. This will ...
-4
votes
0answers
22 views
Private medical data breach by hackers [closed]
I want to do an academic study about medical data breaches by hacker.
I would like to find if there are patient data retrieved by hacking from medical institutions and available online.
I would also ...
-1
votes
0answers
16 views
Windows 7 doesn't loads after Solaris attempted install [migrated]
I got two hard disks, one of 40gb and another one with 1tb.
The 40gb has windows 7 installed on it, taking all the space of this hdd, and in the 1tb disk i got few logic and extended partitions; in ...
0
votes
1answer
40 views
Handles data response from JSF Ajax in Javascript
I have the follow Managed Bean class:
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
import java.io.Serializable;
@ManagedBean
@SessionScoped
public class ...
0
votes
3answers
19 views
Checking for new data on server
I have an application that downloads data via NSURLConnection in the form of a JSON object; it then displays the data to the user. As new data may be created on the server at any point, what is the ...
-1
votes
0answers
26 views
Python - problems writing data to HDF5 [closed]
I'm trying to write data into a HDF5 file using the script below.
The terminal window I'm running the code in gives the correct output, and the output HDF5 file is created, but no data in the tables ...
0
votes
0answers
22 views
Debugging theISSUE with 24 symmetric operators. in MATLAB
I am sorry but I have written the following code to calculate the disorientation between two points in a large dataset using 24 crystal symmetry operators. The code seems to work fine though the end ...
1
vote
3answers
23 views
Mysql Error Output: Column count doesn't match value count at row 1
SQL Query:
INSERT INTO probid_users
(username, password, email, reg_date, payment_mode, balance, max_credit, salt, tax_account_type, tax_company_name, tax_reg_number, tax_apply_exempt, name, ...
1
vote
0answers
23 views
WPF databound Combobox
I need to create a usercontrol that behaves like a combobox.
Instances of this combobox will be databound to a certain collection at runtime. (i.e a collection of strings, to keep this question as ...
0
votes
1answer
23 views
How to refresh or reload data
Ciao,
I would like to refresh any 60 sec only the values given back from the following code inside a widget, without reload the entire page:
<?php
// display Who's Online
if ...



