data

Embed pickle (or arbitrary) data in python script

In Perl, the interpreter kind of stops when it encounters a line with __END__ in it. This is often used to embed arbitrary data at the end of a perl script. In this way the perl script can fetch and store data that it stores 'in itself', which allows for quite nice opportunities. In my case I have a pickled object that I want to stor...

Dynamic data entities web application

Hi I use dynamic data entities web application.......I want in list.aspx page all the columns of my DB but when I insert new item, I want that in the page insert.aspx aren´t visible the Id and the dateCreated (this 2 value, create in automatic) Please help me ...

Velodyne LIDAR 3D point cloud visualization

VELODYNE'S HDL-64E is A HIGH DEFINITION LIDAR SENSOR FOR 3-D APPLICATIONS. I have a task of generating a surface from point data set.Is there any code just to visualize the point cloud , like the one shown here ...

read in data file from MATLAB to Dev C++

Here's what I want to do: Take 2x101 matrix for x and y coordinates and import that data in Dev C++ in program and use it for that code. Right now my Dev code has double Cord[NCargo][2] = {{x0,y0},{x1,y2},{...},{x100,y100}} You get the idea. I want my .mat file matrix read into and put into this Cord Matrix. The name of my C+...

Binding Data to a TextBlock using Domain Data Source

I have a map with hotspots for each state (done in Expression Blend). I capture each MouseEnter of the state (1 thru 50). I pass that into my Domain Data Source: Dim activebox As Path = TryCast(sender, Path) activebox.Fill = mouseOverColor Dim StateID As Integer = CInt(Right(activebox.Name, 2)) Dim _StateContext As N...

Multidimensional data feedback

This is hardly a programming question, so if you're a purest feel free to read no further. Are there any good examples on how to display multidimensional data on a computer screen? I don't know how many dimensions there will be, though anything more than 10 I suspect will be rare. I can think of the obvious solution, but I don't know if...

Migrating Rails app to Grails - Can I easily use an int for the ID field of all the domain classes?

If so how do I do it? I tried just using a declaration id type: 'int' but it got an error when calling Find on the class. ...

Parse error help, PHP unexpected T_STRING (probably something simple)

It's probably something simple I am not seeing because I've stared at it too long. Any ideas? It's throwing on line 119, I've indicated it below Parse error: syntax error, unexpected T_STRING in /home6/cleanai4/public_html/act.php on line 119 I'm just trying to format a phone number. Thanks for the help in advance. if(isset($s...

Data Grid to administer mySQL data (ajax?)

Hi, we have been using TurboDBAdmin (an ajax tool) so users of CMS websites can administer their data (it saves us writing a CRUD application each time) and is very easy to install and users like the Excel type interface however it has several limitations and is not now supported. Tools like this are a bit more modern and have further f...

How much is too much data for and XML file, and what are some file based database alternatives?

I'm writing an application that keep track of a library of music, and I need a way to store the list of tracks, albums and other data. Usually for something like this I would use an XML file to save the data. And then I would use an ADO.NET DataTable to manipulate the data. But this program could potentially be saving a large number of d...

form builders for mobile devices

hi all, We're going to build survey apps for rural development(in India) using cellphones, including some Nokia and Android devices. For building and capturing user info, we're looking at OpenXdata( which is open source J2ME solution) and exZact, (which works on iPhone/iPod Touch). We're also looking at ODK. What tools/framework have ...

Reasonably secure way to allow table name access on client side

We have a need coming up in an application where the following is true: A web page uses AJAX to request data from a server. The specification of the data (e. g. table name) requested from the server will not be known until run-time. The configuration of the data view is itself data-driven, and configurable by an administrator. Data upd...

.NET MVC + Sensitive Data

I am iterating through a List of custom data objects and outputing the data to the screen in a pageable format. Each item needs to offer the ability to edit the details (a redirect to another view) and to remove the data. In order to do this I will need to pass an id of some sort to identify the record that is going to be updated or dele...

Is there a non-Adobe equivalent of Axiis?

I want something like Axiis, but without using Flex or other Adobe products. ...

How to use python, PyLab, NumPy, etc for my Physics lab class over excel

Hey all, I took a scientific programming course this semester that I really enjoyed and experimented with a lot. We used python, and all the related modules. I am taking a physics lab next semester and I just wanted to hear from some of you how python can help me in ways that excel can't or in ways that are better than excel's capabili...

Writing XDocument to XLS

I am having my xml data in XDocument (LINQ). I want to write this data into excel data. I am using console application. I dont want to use excel com object. ...

ASP.Net MVC Client/Server validation

Im trying to use the example from this site to do client site validation. Im trying to use the html form tag instead of the "Html.BeginForm()" but doing that disables the client side validation. Does EnableClientValidation only work with Html.BeginForm. What is the difference? <%@ Page Language="C#" Inherits="ViewPage<ProductVi...

Admin interface to manage two related data sources

In the project there are two data sources: one is project's own database, another is (semi-)legacy web service. The problem is that admin part has to keep them in sync and manage both so that user doesn't have to know they're separate (or, do know, but they do not care). Here's an example: there's list of languages. Both apps - project ...

problem installing the WCF data services

I am trying to install the WCF data services from http://www.microsoft.com/downloads/details.aspx?familyid=79d7f6f8-d6e9-4b8c-8640-17f89452148e&amp;displaylang=en However, I only get the error message: "the update is not applicable to your computer". I am using Windows 7 with .NET 3.5 SP1/.NET 4.0 installed. Do you have the same proble...

Preserving data while expanding/merging Core Data models

Two separate but related questions regarding the use of Core Data: 1) I add an entity/attribute/relationship to my Core Data model in Xcode. Is there a way to have it recognize the information in the existing storedata file and augment it, instead of simply saying that it is incompatible with the existing model? For example, if I have...