data

Regarding sharepoint and SQL data store

Hi, I am using a dropdown box in sharepoint designer, I want the data to be populated from the database. What control in sharepoint designer should I use. I cannot use sql data source as it says it is not supported in sharepoint enviroment. Please let me know your thoughts thanking you all ...

Strategy for updating data in databases (Oracle)

We have a product using Oracle, with about 5000 objects in the database (tables and packages). The product was divided into two parts, the first is the hard part: client, packages and database schema, the second is composed basically by soft data representing processes (Workflow) that can be configured to run on our product. Well, the b...

Accessing data with balance between performance and persistence

Generally, in-memory data structures such as B-Tree or STL map usually has good performance on both lookup and update. However, the contained data are lost once the process is closed or power is shutdown. On the other hand, on-disk data structures such as embedded database and file mapping persist data, at the cost of low performance bec...

Historical aggregate Twitter data

Hi, I want to graph the number of tweets and the number of followers over the last three months, but I haven't been able to find a way to do that either through the API or any ready-made tool. I tried TwitterCounter, but the data they provided was basically the result of some sort of interpolation function, not based on actual historic...

Netflix: Fetching new remote data when it becomes readily available.

Hi there, I hope this is an appropriate question: I'm using the Netflix API and I'm wondering what the best way one would be able to automatically recieve new data when presented (in this case, recently watched films when a Netflix user finishes watching one) The only way I can think of is spamming requests in intervals to query their f...

Why do we need Deque data structures in the real world?

Can anyone give me an example of situation where a Deque data structure is needed? Please don't explain what a deque is... ...

JsTree: Load custom metadata from an external xml source

I have an existing data structure which is stored as an xml doc. It is essentially a sitemap. Every node has some associated metadata (e.g., keywords and description associated with the node). I would like to be able to use the xml_data plugin to be able to load directly from that source. From a quick look at both the documentation a...

Data provider class for sql database

I need to write a data provider class to pull data from a sql database for use in a webpage that will display a bing map. Does anyone have a link they could provide with a tutorial on how to do this? I have very little experience using a db to provide dynamic data for a web page so any help is appreciated. The Database is a sql Azur...

Data modelling tools for Mac?

Hi! Can someone recommend me some data modelling, data warehouse tool for Mac? ...

android receive Data_Sms

My android app sends a Data sms. All the phones are able to receive that message except my android. I have added a broadcast receiver in the manifest: <receiver android:name=".SMSReceiver"> <intent-filter android:priority="10"> <action android:name="android.intent.action.DATA_SMS_RECEIVED" /> <data android:sc...

persistent content when visiting other page in (persistent toggle) jQuery

When I change content of a site using toggle, or which ever other function, the state is not saved. So, if this is my page: <div id='test'></div> <input type='submit' value='test'> <a href='http://www.stackoverflow.com'&gt;link to elsewhere</a>​ and this is in my ready-code: $(':submit').click( function() { $('#test').text( 'this i...

Turn research data into a barcode for inclusion in a thesis?

I would like to include my research data in my thesis. I have investigated sweave but I just can't get it working properly. I then had the bright idea of including the data as a barcode and then printing that in the thesis. Perhaps using QR code. Has anyone done such a thing or have any ideas? My data is in R and my thesis is written i...

Excel Custom Data Format

I'm using NPOI to generate XLS spreadsheets. NPOI is an Excel Spreadsheet generation library/API that is available on codeplex, enables you to create workbooks, formatting, formulae and so on and so forth....I use it to create workbooks with multiple sheets that contain the output of the various calculations. I've used the following cus...

wxPython How to control a frame from another frame?

Hello. I'm writing a small app which has 2 separate frames. The first frame is like a video player controller. It has Play/Stop/Pause buttons etc. It's named controller.py. The second frame contains OpenGL rendering and many things inside it, but everything is wrapped inside a Frame() class as the above. It's named model.py. I'm up to...

Where find a free GPS coordinates database?

Hi to all for my app need to have a list of mayor woldwide cities with relative GPS coordinates for proximity search, anyone know how is possible to find a db of this type? (not API) ...

Non-BTree data structure where inserts are done in a sorted manner but i can later remove objects from random places

i want to find an object with O(logN) and also remove with O(log N) - but no go to balanced tree implementation.. any idea's for that? ...

Accessing non-static DAL methods

Hi, I am fairly new to .net and am creating a web app for learning purposes. I have a DAL with non static methods in it. My question is, how should i be accessing these methods in the business layer? I'm not sure if this is a good or a bad way but currently i use this class to create instances of the DAL methods: public DataAccess { ...

change dtype of a single column in a 2d numpy array

I am creating a 2d array full of zeros with the following line of code: MyNewArray=zeros([4,12],float) However, the first column will need to be populated with string-type textual data, while all the other columns will need to be populated with numerical data that can be manipulated mathematically. How can I edit the code above so th...

Dynamically Storing and retriving 3,000,000+words in c#.NET using Collections

How to Store and retrieve 3,000,000+ words in Dynamically without using SQL.. Get a word form a document then check whether the word is available or not. if available, then increment it in corresponding document count... if not available i.e, New word then create a new column then increment the document count and put Zero ...

data is null when I retrieve from ajax call but working in IE

Hi I am using jquery ajax method to retrieve data. It is working in IE but I am getting data as null in FF and Google chrome. I think the problem is, mozilla cant get 'data', because alert(data) returns null. even I debug in firebug It is showing data is null My code is $.ajax({ type: "POST", url: "http://myserv...