Small part of or a selection from something (code , logs , data and etc.), intended to show the structure, style, or nature of the whole.

learn more… | top users | synonyms

28
votes
16answers
25k views

Good Databases with sample data

Does anybody know of any sample databases I could download, preferably in CSV or some similar easy to import format so that I could get more practice in working with different types of data sets? The ...
16
votes
9answers
3k views

Learning about Computer Vision

I am really intrigued by the field of computer vision and the potential it has. Are there any examples (preferably implemented in .NET) which I can study along with a reference book?
5
votes
4answers
3k views

Needed: A Windows Service That Executes Jobs from a Job Queue in a DB; Wanted: Example Code

Needed: A Windows Service That Executes Jobs from a Job Queue in a DB Wanted: Example Code, Guidance, or Best Practices for this type of Application Background: A user will click on an ...
46
votes
4answers
27k views

python multithreading for dummies

trying to find a simple example that clearly shows a single task being divided for multi-threading. Quite frankly... many of the examples are overly sophisticated thus.... making the flow tougher ...
3
votes
3answers
992 views

Choosing n numbers with fixed sum

In some code I want to choose n random numbers in [0,1) which sum to 1. I do so by choosing the numbers independently in [0,1) and normalizing them by dividing each one by the total sum: numbers = ...
29
votes
4answers
18k views

Google Maps Android API v2 - Sample Code crashes

I'm trying to get the sample code of Android 'Google Maps Android API v2' working. I get the project built without errors. However, when I try to run the app on my Galaxy Nexus (connected with usb to ...
13
votes
8answers
41k views

spring MVC sample web app

I'm looking for an example Spring MVC 2.5 web app that I can easily: Setup as a project in Eclipse Deploy to a local app server (using Ant/Maven) There are a couple of example applications ...
4
votes
4answers
67k views

Sample using MSCHART in C#

Anybody know where to find an sample form using MSChart in C#? I made an example. //name program.cs using System; using System.Collections.Generic; using System.Windows.Forms; namespace ...
1
vote
6answers
15k views

Android Nfc Sample Demo - reads only fake information from the Tag

I just installed the Nfc Demo from google, but it doesn´t read the information from the Tag.-> It just provides some fakeTag information. Has anybody an idea, where I can change the sample to read ...
17
votes
4answers
10k views

.NET DDD Example [closed]

Can somebody point me towards a 'complete' DDD example developed on the .NET platform. Most of the examples I find feel 'incomplete'. I'd really like to see the DDD principles in action.
7
votes
1answer
4k views

Looking for Webstart Maven Plugin sample application

I am looking for source code for a complete application that uses the Webstart Maven Plugin. Any ideas?
3
votes
1answer
3k views

Android: Mixing multiple AudioTrack instances?

I need to run two instances of AudioTrack at the same time. They must run separately because I'm playing them at different, variable sample rates. I found that if I run them in the same thread, they ...
22
votes
5answers
27k views

How do i open a sample Android SDK app in Eclipse

I have created a basic program in Eclipse for Android 2.1. then I wanted to look at some of the samples, and import sample projects which are in the SDK directory. I have tried opening a new project ...
13
votes
3answers
3k views

jQuery-Mobile Meteor sample integration and/or integration guidelines

I'm impressed by Meteor and would like to use it with jQuery-Mobile. I'd like to know if somebody has already built a sample integration app. If not, some guidelines would be great. Regards, Cédric
1
vote
4answers
4k views

Android work multitouch button

Hi i want to create 2 Button and i want to multitouch ?? i tryed to do but no example in internet.. So if you got one can you share or can you give me opinion ?? my code is this but not support ...
3
votes
1answer
2k views

Good/Simple shopping cart example using asp.net mvc and jquery

Is there a Good/Simple shopping cart example using asp.net mvc and jquery? Any suggestion...
21
votes
4answers
8k views

Sample app for Rails 3?

Can someone point me to a solid sample app that shows how to use the new features and syntax of Rails 3? It's been answered before for earlier versions ...
13
votes
3answers
892 views

Haskell, Step by Step, Tutorial, Developing a Whole Application

Is there a (or more; the more, the better) tutorial for Haskell, developing a whole application (of any kind: web, windows, console)? I mean something like NerdDinner or MVC Music Store for ASP.NET ...
3
votes
2answers
1k views

Simplest way to capture raw audio from audio input for real time processing on a mac

What is the simplest way to capture audio from the built in audio input and be able to read the raw sampled values (as in a .wav) in real time as they come in when requested, like reading from a ...
10
votes
6answers
9k views

Run NetBeans project just with ant

I have a sample code that was built with Netbeans. It has a build.xml file so I downloaded ant and try to run it. I've got this error message: ...... nbproject\build-impl.xml:76: Platform is not ...
4
votes
3answers
4k views

Random sample of rows from subset of an R dataframe

Is there a good way of getting a sample of rows from part of a dataframe? If I just have data such as gender <- c("F", "M", "M", "F", "F", "M", "F", "F") age <- c(23, 25, 27, 29, 31, 33, ...
4
votes
2answers
3k views

Native OpenCV Samples for Android throws UnsatisfiedLinkError

I try to run the opencv android samples on the emulator. The samples with native code e.g. sample "Tutorial 2 Advanced - 1. Add Native OpenCV" fails. I have a Win7 x86 System. I can build the native ...
14
votes
2answers
1k views

MediaScannerConnection produces android.app.ServiceConnectionLeaked

I'm using the MediaScannerConnection example code from the API Demos The snippet I'm using is: MediaScannerConnection.scanFile(context, new String[] { permFile.getAbsolutePath() }, ...
3
votes
2answers
67 views

Sampling from Oracle, Need exact number of results (Sample Clause)

I am trying to pull a random sample of a population from a Peoplesoft Database. The searches online have lead me to think that the Sample Clause of the select statement may be a viable option for us ...
0
votes
4answers
1k views

PCM algorithm for upsampling

I have 8k16bit pcm audio and I want to upsample it to 16k16bit. I have to do this manually. Can someone tell me the algorithm for linear interpolation? Should I interpolate between each two bytes? ...
0
votes
4answers
1k views

wpf/silverlight mvvm sample app request

could you guys point me to some really simple silverlight or wpf sample project where the usage of the MVVM is showed
8
votes
2answers
667 views

64-bit Quicktime Question

Does anyone out there know if there is a way to pull raw, still-compressed audio and video samples out of a Quicktime .mov file using an Apple API / Framework targeting the Mac that can be compiled ...
4
votes
9answers
5k views

Where can I find a good FFT sample implementation/tutorial? [closed]

I've been looking everywhere for a sample Fast Fourier Transform implementation/tutorial in (preferably) C#. However, every one I've found has been poor at explaining what's going on, and/or poorly ...
3
votes
2answers
7k views

Sample database schema for Oracle

Is there are any sample database for Oracle like AdventureWorks for MS SQL? I've searched Oracle site but didn't found any sample database.
2
votes
2answers
940 views

asp.net mvc - extending the registration page (membership) versus new user table (profile) - are they the same thing?

I want to store additional information on my users (address, phone). Should I extend the registration page on the sample mvc template or should I set up a separate "profile" table and have that be a ...
1
vote
1answer
3k views

Android Bluetooth Chat sample app - multiple connections

Is it possible to set up the Android Bluetooth Chat sample app to connect more than one person at a time, and have a mini chat room? What would that entail?
0
votes
3answers
106 views

Android. Support4Demos crashes

I have runtime errors while executing Support4Demos sample. I'm trying to launch Support4Demos sample (both on emulator and device). There are no errors in Eclipse and it's launched well. As you know ...
0
votes
1answer
653 views

OpenCV samples get “Failed to create BuildConfig class”

I am currently trying to run the OpenCV samples for Android found here (I have tried with more recent versions, but I followed the suggestion from this question's answer) and am running into the error ...
0
votes
2answers
649 views

iphone - Check if an app is installed

I want to bring the list of what apps are installed in my iPhone. I hear this code sample is in this website but I can't find it. Code Sample: Check if an app is installed - iDevKit: ...