Small part of or a selection from something (code , logs , data and etc.), intended to show the structure, style, or nature of the whole.
0
votes
2answers
128 views
Android Deleted Sample Projects
I created one of the sample projects that come with the android sdk. When I was done using it I deleted the project and checked "Delete contents from disk". Now when I try to create a new android ...
2
votes
1answer
384 views
Debugging sample Pygame code?
A simple question: Why does this the first code work but the seemingly identical second code freezes up when the pygame window comes?
# Moving Pan
# Demonstrates mouse input
from livewires import ...
1
vote
2answers
296 views
Apple Code Sample: TouchCells, How Does it Work?
I've been working on custom UITableViewCells and came across the TouchCells example from apple: TouchCells Example Project
I can't figure out how the application loads. If you look at AppDelegate.m, ...
0
votes
3answers
245 views
PhotoPicker sample app, MyViewController
I recently downloaded the PhotoPicker sample code app from developer.apple.com as I am relatively new to iOS.
Why is there no initialization for MyViewController anywhere in the other code or in ...
0
votes
0answers
523 views
Unable to open the sample Android API demos in eclipse
I'm new here, so any help would be greatly appreciated. I'm having a problem with eclipse's android API's and granting myself with full control did not help.
I still get the same annoying message: ...
2
votes
2answers
248 views
sampling from a contingency table
I've managed as far as the code below in writing a function to sample from a contingency table - proportional to the frequencies in the cells.
It uses expand.grid and then table to get back to the ...
1
vote
3answers
5k views
Any sample for iCloud?
iCloud is coming to us.
As iOS developer, after reading this, I just wonder if there are any samples for this new tech. Thanks
0
votes
1answer
149 views
Error in Build - Missing SDK
I downloaded some Application samples from a website.
It used to work but when I went back to Xcode (After a couple of months) I tried them and it gives me this error.
error: There is no SDK with ...
1
vote
2answers
2k views
Are there any samples available for Google Shopping API?
Is there any sample code available for Google Shopping API for java? I have tried to search but could not find anything. I have no idea from where to start coding for my Android project.
Any pointers ...
0
votes
1answer
2k views
Extending Dynamics CRM 2011 Service
I need to create a WCF service to extend what Dynamics CRM 2011 offers and be able to go beyond simple CRUD calls. Are there any good tutorials or code samples covering this topic ?
1
vote
2answers
904 views
Sample star schema dataset
I'm looking for some OLAP data preferably in star schema (or snowflake) for testing a new tool. I've already got the Foodmart database that Mondrian provides. Type of data is not important as long as ...
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 ...
0
votes
1answer
127 views
Sampling mysql results in django
I am running django raw sql. Lets say if it returns 250 records. I want sample the results based on the input percentage given by the user on the form (In template). How can we achieve this? I can get ...
2
votes
3answers
221 views
Periodic function generator for Linux
In my work I need samples of mathematical functions in the form of text streams. For example, I need a program which generates values of sine function at discrete time points and prints them into ...
1
vote
2answers
422 views
Simple problem of loop coding
I am a new user of R and I have tried to write a script for similuting species invasion and community stability. I have almost finished it and I have only one tiny problem in a loop.
I have a pool ...
1
vote
1answer
207 views
Upsampling PCMU
Is there an algorithm for upsampling PCMU without having to convert it to PCM first?
Are the standard interpolation algorithms applicable to PCMU encoded samples?
2
votes
2answers
1k views
R - Select rows for random sample of column values?
How can I select all of the rows for a random sample of column values?
I have a dataframe that looks like this:
tag weight
R007 10
R007 11
R007 9
J102 11
J102 9
J102 13
...
3
votes
2answers
2k views
Any sample project that shows how to use gamekit (server-client model) WITHOUT(!) GKPeerPickerController and more than 2 devices?
is there any sample project that shows how to use gamekit without gkpeerpicker? And is there any sample that uses bonjour (but without any internet connection and no wireless router)?
Some ...
2
votes
1answer
716 views
Improve performance of “Accelerate your Widgets with OpenGL” Qt Sample?
I have been studying the Qt Quarterly article about QGraphicsScene and OpenGL for the purpose of using it in a project. I have already decided to use Qt, given its all-round excellence, but have gone ...
0
votes
1answer
999 views
Opening Android samples in Eclipse
My machine
Windows 7
Problem
I'm having trouble opening samples for the Android SDK.
I have successfully ran a "Hello Android".
Steps I'm doing:
Make new project -> Create from sample -> (some ...
2
votes
1answer
94 views
Where to get samples of various PDF versions?
I need sample PDFs of various versions (say 1.3 - 1.7) for testing purposes. Is there a place where I can download such samples?
Thanks!
1
vote
5answers
284 views
Side by side C, x86 programs
Is there anywhere I can find side-by-side examples of dead simple C and x86 programs? The examples I've found so far on the Internet seem to jump straight from "here's Hello World in x86" to "write ...
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() }, ...
1
vote
2answers
311 views
Where are Microsoft.Samples.DirectX.UtilityToolkit for Managed DirectX?
I found this page speaking about DirectX user control:
http://msdn.microsoft.com/en-us/library/bb153289(v=vs.85).aspx
I download several DirectX SDK and the code should be here but I can't find it:
...
1
vote
4answers
5k views
wpf intro tutorial for themes/templates
Hi there
I have looked high and low for some decent tutorials on how to:
1. Free WPF themes/templates
2. How to apply them and see an actual working demos of this
I have an old Winforms application ...
2
votes
3answers
1k views
Some doubts about RESTful web services?
I am new to the arena of RESTful services. I have been going through the articles about REST. And I have a lots of doubts. Please help me to clear these doubts. Thanks in advance.
1) For all RESTful ...
3
votes
3answers
729 views
How to select random DBPedia nodes from SPARQL?
How can I select random sample from DBpedia using the sparql endpoint?
This query
SELECT ?s WHERE { ?s ?p ?o . FILTER ( 1 > bif:rnd (10, ?s, ?p, ?o) ) } LIMIT 10
(found here)
seems to work ok ...
0
votes
1answer
95 views
Beginner C++ Windows D2D1Circle Sample from MSDN Problem
So I was just going through the basic Windows Programming guide over at MSDN and attempted to do the D2D1Circle Sample in Module 3. The problem I encountered was an error my VC++ 2008 was throwing.
" ...
3
votes
3answers
995 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 = ...
1
vote
2answers
108 views
Modified Bootstrapping
I'm interested in developing a modified bootstrap that samples some vector of length x, with replacement, but must meet a number of number of criteria before stopping the sampling. I'm attempting to ...
1
vote
6answers
80 views
What is a good starting application other than a blog?
So I want to create a sample for a framework, but I am tired of the "blog" being the defacto project to build as a sample. Anybody have any other ideas for sample projects?
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
2answers
213 views
Android: question from hobby programmer concerning sample “Snake”
Thanks if anybody will answer this (maybe?) ridiculous question:
Why is a "public SnakeView" in SnakeView.java defined TWICE (once directly after the first time!), adding the second time an arg "int ...
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 ...
0
votes
1answer
5k views
Objective-C Calendar Tutorial
I’ve looked all over the net and in several objective-c tutorial books but am unable to find exactly what I need.
I am looking for a tutorial that shows how to implement a calendar into a objective c ...
0
votes
2answers
709 views
Facebook C# SDK Silverlight Sample App doesnt work
Hallo,
I am new to silverlight development and I would like to run a sample from facebooksdk.codeplex.com called CSSilverightinBrowser. It works (It gets an authorization and it logs me into the ...
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?
0
votes
2answers
86 views
is there another samples of php foreach?
I looking for another samples of php foreach code that similar to the code as following:
foreach ($this->ask->post['books'] as $book) {
if ($book['qty']) {
...
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 ...
0
votes
2answers
2k views
Audio samples per second?
I am wondering on the relationship between a block of samples and its time equivalent. Given my rough idea so far:
Number of samples played per second = total filesize / duration.
So say, I have a ...
0
votes
1answer
310 views
Synthesizing sampled sound
I am trying to convert an array of integers into a sound representation. Currently, I'm playing each value as an individual short tone but I would like to create a single sampled wave from the ...
2
votes
2answers
919 views
Does “Create project from existing source” modify existing sample?
Does "Create project from existing sample" modify anything in the original sample project files?
If so, what is the best way to "Create project from existing sample" without modifying anything in the ...
0
votes
2answers
1k views
sample project documentations
i am a fresher as developer in java. I was assigned a full real project(bug trackin project).Now i have to prepare the UML diagrams for my project. I know abt UML diagrams but i wish to see as many ...
1
vote
0answers
191 views
Programatically create faded 30-second MP3 samples
Is there a .NET library (or Interop Runtime) to create shorter, 30-second samples from full length MP3 tracks with fade-in and out effects?
Related question suggests SoX, which is a command-line ...
0
votes
0answers
478 views
Sample program (or) reference page link details (pdf or doc) for XSOM using parse XSD
Pls provide any sample program for XSOM using parse XSD (Java platform)
or
any reference page link details (pdf or doc) for XSOM using parse XSD?
I need to get the attributes and elements(including ...
1
vote
3answers
6k views
Android-NDK build system (building hello-gl2)
I downloaded and installed Android-NDK on my Archlinux, using this package.
Got no issues building (and running) the sample hello-jni following the guide on this page, but if I try to do the same ...
2
votes
3answers
277 views
C++: Where is a good place for sample C++ codes to be used by a teacher?
I am a teacher of programming. For the C++ course, I need a good reference to provide educational example problems and their solutions. I know some popular problems but I like to see them all in a one ...
2
votes
1answer
2k views
Android Searchable Dictionary word loading question
I'm stepping through the android Searchable Dictionary example, and I can't find the place where it actually loads the words into the sqlite db. I would think it happens in the onCreate method of ...
0
votes
2answers
184 views
Error in NHibernate Session and HttpModule implementation
Hello is nice to be a new member of the community and thanks for your help in advance.
I am starting to use NHibernate for my projects and is interesting. I found this sample that i managed to make ...
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 ...

