A representation of something, typically showing a single aspect of a larger whole.
0
votes
1answer
114 views
How do I program android to look for a particular network? (Issues Following Simple Tutorial)
I'm attempting to use the following example:
How do I program android to look for a particular network?
But I'm unable to execute it due to issues stemming from the line:
WifiManager wifiManager = ...
3
votes
1answer
62 views
Lambda Calculus Expression Test-bed?
I would like to test out the Lambda Calculus interpreter that I've written against a fairly large test set of Lambda Calculus expressions. Does anyone know of a Lambda Calc expression generator I can ...
0
votes
2answers
101 views
Connecting perceptrons with output of previous ones?
Because of the help I received and researched here I was able to create a simple perceptron in C#, code of which goes like:
int Input1 = A;
int Input2 = B;
//weighted sum
...
1
vote
1answer
55 views
Add item to GUI jCombo box
I have a Java program with a model and a GUI. On my Frame (that implements Observer) I have put a jcombobox with a list of registration from my model (that extends Observable).
When I click on a ...
3
votes
2answers
66 views
Has anyone implement DITA 1.2 Subject scheme in their work?
I would like to know if there is anyone who has implemented the subjectscheme maps of DITA1.2 in their work? If yes, can you please break-up the example to show:
how to do it?
when not to use it?
...
0
votes
1answer
63 views
using python sched module and enterabs to make a function run at a certain time
I cannot seem to find a simple example of how to schedule an event in Python.
I want to be able to pass a date and time string as an argument into a function.
For example:
String: "m/d/Y HH:MM" ...
0
votes
1answer
61 views
Example of directshow transform filter for wince
I wrote a DirectShow filter for win7 and I have problems to port it to wince6.
Are there any examples for transform filter to wince? I didn't find any.
7
votes
2answers
384 views
What would be a “Hello, World!” example for “std::ref”?
Can somebody give a simple example which demonstrates the functionality of std::ref? I mean an example in which some other constructs (like tuples, or data type templates) are used only if it is ...
0
votes
1answer
35 views
Is this a correct unit test?
I am trying to get the basics of unit tests and all the tutorials are using huge examples. Also I have written the following code and the test and would like to know if this is correct:
class Foo
{
...
0
votes
1answer
60 views
“example” heading in twitter bootstrap
I've been looking at "example" heading in twitter bootstrap but that's not what i wanted.
What I would like to do is to change the content dynamically.
Regarding to this example ...
2
votes
1answer
113 views
Beginners issue in polynomial curve fitting [Part 1]
I have just started understanding modeling techniques based on regression models and was going through MATLAB curve fitting toolbox and the SO. I have fundamental doubts and unable to proceed further. ...
0
votes
0answers
45 views
What is happening in LocationResult?
I've been searching around on how to implement a way to get a user's location in Android and I came across this SO question:
What is the simplest and most robust way to get the user's current ...
-2
votes
3answers
94 views
What does << do? [duplicate]
Before tellimg me to google, please note that Google will not me search "<<" characters.
I have found the following:
data is a byte array.
int ResultChannel = data[1] + (data[2] << ...
0
votes
0answers
40 views
Worse is better approach examples? [closed]
Just wonder does anybody know good article or can give me an example of using "worse is better" approach versus MIT approach?
The question was closed so I will try to reformulate it:
I would like ...
1
vote
1answer
306 views
missing examples for Zend Framework 2 tutorial “Learning Dependency Injection”
(After some very (!) useful links to articles about DI and a basic example) In the chapter "Simplest usage case (2 classes, one consumes the other)" the Zend Framework 2 tutorial "Learning Dependency ...
0
votes
1answer
67 views
Are there any examples of commutative encryption in Java? [closed]
I am looking into using commutative encryption in Java, but I can't find any libraries or reference material I could use for this task. Are there any available?
0
votes
1answer
101 views
New Product Or Category with php Pretsashop
I am learning developing to prestashop and i like to add category or product to prestashop with php script.
I know that there is possible way with writing it to database, but i thing that with using ...
1
vote
2answers
93 views
How to clean up memory in WT?
UPDATE 3/27/2013
It would appear that I am not leaking memory, it is just WT not keeping a persistent session every time F5 is hit, or a new user connects. Basically the old session gets deleted, and ...
0
votes
0answers
186 views
Cassandra with hadoop
I am new to hadoop i tried wordcount using cassandra database? i get this error.can u pls ....
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/hadoop/mapred/InputFormat
at ...
0
votes
0answers
161 views
Kendo UI Bar charts to read from SQL Server
I was wondering if anyone has any examples or links for Kendo UI Bar Charts reading data from SQL Server? The sample that I downloaded from Kendo UI Demos website does not have this feature, and I ...
1
vote
4answers
128 views
What is a singleton, in plain English?
I've been Googling for about and hour now and I still don't have a clear idea of that a singleton is. Can anyone make it a bit more clear to me and perhaps post a code example?
All I know if that you ...
1
vote
2answers
418 views
What is a web application client id for Google Cloud Endpoints?
I am trying to get the sample android client to work.
I am stuck on step 4 of the setup instructions:
Update the value of AUDIENCE in src/com/google/devrel/samples/ttt/ClientCredentials.java, ...
5
votes
2answers
120 views
Need an example of Ypsilon usage
I started to mess with Ypsilon, which is a C++ implementation of Scheme.
It conforms R6RS, features fast garbage collector, supports multi-core CPUs and Unicode but has a LACK of documentation, C++ ...
2
votes
1answer
283 views
Error compile in “Use Facebook Login” SDK
I have followed the Facebook "use Facebook Login" tutorial
However, when I load the app and click on "Login" I get the "com.facebook.FacebookException: Cannot use SessionLoginBehavior ...
2
votes
0answers
98 views
Configuration + Code example of using Atmosphere with Wicket?
This question has an answer which points to a non-working example and the
conversation on the mailing list is very vague. Is there any working example of using Wicket 6.5.0 with Atmosphere?
Or is ...
0
votes
0answers
89 views
gunicorn doesn't process simultaneous requests concurrently
I am trying to serve long running requests using gunicorn and its async workers but I can't find any examples that I can get to work. I used the example here but tweaked to add a fake delay (sleep for ...
0
votes
1answer
786 views
Errors on running hadoop example code
I am trying to run the sample pi map-red example code. upon running in pseudo distributed mode the following error is occurring. I have done all the setup as instructed in the hadoop site. I have ssh ...
0
votes
0answers
185 views
SimpleCursorTreeAdapter and CursorLoader for ExpandableListView with my layouts
I am trying to create SimpleCursorTreeAdapter and CursorLoader for ExpandableListView with my layouts.
Here is my Fragment class which implements the CursorLoader
public class ContactFragmentNew ...
1
vote
1answer
103 views
Can you give me a good example of using a predicate that does not involve a collection, list, enumerator or IEnumerable?
The title pretty much asks what I want -- an example of using predicates that don't involve iterating over a collection, using IEnumerable, or anything like that.
I don't care what language you use, ...
1
vote
2answers
132 views
Is this Ada textbook example rubbish?
Here are the sources for the example programs of "Ada for software engineers":
http://www.springer.com/cda/content/document/cda_downloaddocument/978-1-84882-313-6_programs.zip
after extracting go to ...
1
vote
4answers
680 views
C# classes - basic example [closed]
This is basically my first attempt to understand the classes in C#. I've went through several tutorials on the internet, but the thing I'm missing the most and what I haven't found anywhere yet, is a ...
1
vote
0answers
203 views
OpenCV : Difficulty in working with cvBlobs Library
I am a beginner in OpenCV2.3 on Windows7 and Visual Studio2010 and finding a tough time(confused rather due to several version available in google) in installing the blob library. I am aware that ...
-3
votes
1answer
164 views
Changing AppDelegate file of example I want to use in my app
Hi all I'm new in creating app for iOS , so sorry if the question stupid a little .
I'm trying to build app where log in to Facebook and getting friend list is only a part, so I want to use the ...
0
votes
3answers
187 views
Better example of incorrect statement coverage meaning?
I am trying to demonstrate that 100% statement coverage does not mean much in terms of proving and testing. I cannot think of any easy example, this is my best attempt:
TestObject t = null;
...
2
votes
3answers
3k views
Spring MVC with Hibernate Example
Did anyone come across an example that uses the following?
Spring MVC 3.x
Hibernate 3.x
Involving All Layers
Controllers (I guess its a layer in the MVC)
Service
Model (?)
DAO
...
-3
votes
1answer
102 views
Can someone give me some examples where different distance measures are used in k-means? [closed]
So I'm thinking of using different distance metrics for k-means like Euclidean distance, Manhattan distance, cosine distance, Chebyshev distance among others. I just want to know the use cases of ...
0
votes
2answers
93 views
Captcha don't change with new version of GWAN
Why this page captcha.c isn't changing with the new version of gwan ? (the picture doesn't change)
This example worked fine in older versions!
3
votes
3answers
259 views
simple examples of filter function, recursive option specifically
I am seeking some simple (i.e. - no maths notation, long-form reproducible code) examples for the filter function in R
I think I have my head around the convolution method, but am stuck at ...
0
votes
4answers
56 views
Git - Where can I find some drills on how to do just slightly complex things with Git? [closed]
I want to learn how to do more complex operations using Git. Currently I use GitHub and I can:
clone a repository
init a new repository
add and remove files from a repository
make commits
push ...
0
votes
0answers
205 views
Java Annotation Processors Netbeans simple example
please i like to write a simple example of Java Annotation processor using NetBeans 7.2.1... a very very simple test :)
I follow this useful guide ...
-3
votes
2answers
95 views
(c++) how to loop chars? [closed]
in C++ How would you make an program to give output :
A
AA
AAA
AAAA
with using loops
i tried doing it myself many times but kept failing. it would be good if you could explain how you do ...
0
votes
1answer
72 views
Why is Hello World used in programming examples? [duplicate]
Possible Duplicate:
Where does ‘Hello world’ come from?
Why are most all programming examples written to print the specific phrase Hello World? Sometimes you see derivatives like ohai world ...
-5
votes
1answer
66 views
Most ugly web applications around [closed]
What are some ugly web applications around (other than StackOverflow, obviously :) )?
By ugly I mean the graphic look of the app (or deep UX flaws).
Just looking for some examples.
1
vote
2answers
419 views
find example of mapsforge for android
I've read in mapsforge wiki that it have an example page '/trunk/Applications/Android/Samples'. It seem died now.
Where can I get it?
0
votes
2answers
36 views
Why in many examples fuctions are called foo
Maybe it;s wrong site, but I'm really curious why in so many examples in different languages they use foo as a name for functions or methods?
1
vote
1answer
156 views
Real examples of a API Client class
Trying to find real examples of a PHP class to access a distributed API. The API of course has tons of Methods and I don't feel like writing a class method for each because it goes against DRY.
...
1
vote
2answers
385 views
AutoCompleteTextView behaves differently in different versions of android
I am not clear whether this is an issue with different versions of Android, or different screen sizes, but I am getting some unpredictable behavior.
I am testing the UI of the dropdown of a ...
0
votes
1answer
76 views
FragmentActivity generated integer resources are large integers
I have used a constant
private int SOME_GEN_ID = 1;
startActivityForResult(intent , SOME_GEN_ID);
instead of using a integer defined in /res/values/integers.xml as an argument to ...
0
votes
3answers
153 views
inline function and __thiscall __cdecl Bjarne String example
I have implementation of String class as in Bjarne "C++...". I want to have read() and other accessor functions inlined, so I marked them inline. It's ok, but defining hash function that do a read on ...
0
votes
1answer
153 views
can we use java socketchannel to communicate with c based TCP server
can we use socketchannel to communicate with c++ based TCP server






