data

ICD-9 Code List in XML, CSV, or Database format

I am looking for a complete list of ICD-9 Codes (Medical Codes) for Diseases and Procedures in a format that can be imported into a database and referenced programmatically. My question is basically exactly the same as http://stackoverflow.com/questions/1520257/looking-for-resources-for-icd-9-codes, but the original poster neglected to m...

Saving in pygtk

Im writing an app using pygtk and i was wondering how would my app be able to save data on the users computer. I plan go distribute this across windows and unix. What would be the best way to go about this? ...

best way to store "doodle" data?

On one of the applications that I am writing, I was asked to provide the feature for "pencil and eraser" to allow the user to doodle randomly on a document (for proofreading, note-taking, etc.) What would be the best way to store such data? I was thinking of using an image with transparency for each doodle (so that I can also support m...

Dynamic Data: Filter non-primary key field on the List.apx page

Student Table UserId Name Surname Results Table ID UserId Year Symbol Student has many results. There is a one-to-many relationship on the UserId fields. I am using Dynamic data for my admin section. When I go to the list page for students in dynamic data, I want to be able to click on a Student and then view that Student's resul...

[C++] Data type problems

I'm pretty sure i'm the one who's just dumb and don't know my data structures... None the less, i'm going to post it here for you brilliant guys, so one of you may explain to me why this doesn't work: #include <iostream> using namespace std; double data_convert(int n); int main(void) { cout << data_convert(sizeof(int)); } double...

Errors in Gnuplot PDF output

I'm trying to plot data with Gnuplot where all data values are positive. However, when plotting to PDF some of the output values appear negative under the x-axis: http://tinypic.com/r/14iztbs/7 This does not happen when plotting to PNG. Reducing the line width helps to mitigate this issue, but this is not really a solution. How can i ...

WinForms Remote Data Access

VS2010: What is the best way to access a remote database over the internet from a WinForms application? By that I don't mean talking to the database (SQL Server) directly, but rather through a service. Best if I could use http as a protocol to avoid firewall issues. ...

Antivirus alogorithm in DataStructure

Hello i want to make a Antivirus Software in DataStructure using C#.So help neended for the Algorithm. ...

Display months in xAxis with Dojo

Hi all, I have this data : { "identifier": "id", "idAttribute":"id", "label": "date", "items": [ { "id":1, "name":"index", "point":[{"id":1,"num":17, "date":"2009-02-01"}, {"id":2,"num":10, "date":"2009-06-01"} ]}, { "id":2, "name...

How to extract specific values from auto-correlated data in MATLAB?

I have been working on extracting the peak values from a graph (see previous question) which looks like this: but I have noticed that for some of the xcorr graphs I have been working on the values do not turn out as expected and they normally turn out looking more like this: and this: Instead of trying to pick the peak values li...

is it possible to migrate Data from iPhone to any Desktop SQL Data Base?

Hi I'm developing an app that stores data in the iPhone, but I need to know if it's possible to export the data (as an entities, tables, .txt or xls) to a desktop because I need the data to be readable on my Computer OR do I need to create a web site to do it??? by the way.. I'm still not sure what method is more effective for this kind ...

How do I allow the user to easily choose how much memory to allocate in a Java Swing app?

We have a Swing app that processes relatively large amounts of data. For instance we currently process csv files with millions of rows of data. For the reasons of performance and simplicity we just keep all of the data in memory. However different users will have different amounts of data they need to process as well as different amou...

Data model, cyclic references

I have the following data structure for storing meridians and parallels. Each cartographic point stores: A] geographic and spatial coordinates, cartographic distortions, etc. B] pointer to north/south/east/west node. It allows to store relationships between points, first of all their affiliation to the meridian/parallel... class...

How to export indices data from collada to as3 drawtriangles method

In Blender 2.5, I UV mapped the default cube and exported it as a collada file and saved it here: http://codepaste.net/4ffqhw I am trying to export the vertictes and indices information for the cube but I cannot figure out which of the data structures contains the indices values. The ultimate goal it to get this data to provide it to t...

Use of a separate class to connect to a service when using MVP for a form

Consider a case of a form that is getting its data from a service and is implemented using the MVP pattern. Do I need to isolate the service access in a separate class or it can be kept in the Model class itself. In my particular case, the model class only acts as a pass through to the data access class that eventually calls the service....

Should/can one change their Public and Private API keys on a regular basis for security purposes?

I run a site that is an implementation of a proprietary hosting+cms solution. This solution offers a nicely doc'd API that I have had several contracted programmers interface with in order to build custom extensions of the site functionality. As such, I have had to share my API keys several times. The methods called by the API can ope...

sending images over stream socket

Hi, Could anyone direct me as to whether there is a special way of sending images (specifically .jpeg files) across a tcp socket? So far I am developing a webserver that seems to send all the text data well. When it comes to jpeg images, the headers are sent however, the Cygwin console just freezes when it comes to sending the actual da...

How to add text to a C# datagrid from a textbox using a button click

How to add text to a C# datagrid from a textbox using a button click ...

Best work around to fix DateTimeOffset over WCF Data Service issue

I try to create a WCF Data Service for an Entity Framework model, which contains some attributes of type DateTimeOffeset. However the WCF Data Service does not support the type DateTimeOffset as I found out after googling the exception text "The property 'CreationTime' on type 'Task' is of type 'DateTimeOffset' which is not a supported p...

MySql.Is it a way to export/import data from date to date?

In my way.I just want to export the data of a week and used it to update somewhere else. I am new to MySql. So . Can I do it by the PHP code written by myself or using other software? Thank you in advanced!! ...