A representation of something, typically showing a single aspect of a larger whole.
301
votes
11answers
16k views
How to make a great R reproducible example?
When discussing performance with colleagues, teaching, sending a bug report or searching for guidance on mailing lists and here on SO, a reproducible example is often asked and always helpful.
What ...
222
votes
7answers
21k views
Good Haskell source to read and learn from [closed]
What are some open source programs that use Haskell and can be considered to be good quality modern Haskell? The larger the code base, the better.
I want to learn from their source code. I feel I'm ...
132
votes
0answers
19k views
Where can I find good examples of Rails applications? [closed]
I would like to get source for a small, well written rails app to modify and "play with" as I learn how to program. I have found hundreds of open-source apps, but I don't know which are any good.
...
85
votes
12answers
28k views
Split List into Sublists with LINQ
I believe this is another easy one for you LINQ masters out there.
Is there any way I can separe a List into several separate lists of SomeObject, using the item index as the delimiter of each split?
...
63
votes
10answers
119k views
Sorting a list using Lambda/Linq to objects
I have the name of the "sort by property" in a string. I will need to use Lambda/Linq to sort the list of objects.
Ex:
public class Employee
{
public string FirstName {set; get;}
public string ...
55
votes
12answers
16k views
Split a collection into n parts with LINQ?
Is there a nice way to split a collection into 'n' parts with LINQ ?
Not necessarily even of course
39
votes
2answers
16k views
android: What is the purpose of Looper and how to use it?
I am new to Android. I want to know what the Looper class does and also how to use it. I have read the Android Looper class documentation but I am unable to completely understand.
I have seen it in a ...
38
votes
11answers
15k views
What does 'foo' really mean?
I hope this qualifies as a programming question, as in any programming tutorial, you eventually come across 'foo' in the code examples. (yeah, right?)
what does 'foo' really mean?
If it is meant to ...
33
votes
4answers
887 views
Concrete example showing that monads are not closed under composition (with proof)?
It is well-known that applicative functors are closed under composition but monads are not. However, I have been having trouble finding a concrete counterexample showing that monads do not always ...
32
votes
3answers
21k views
Linq - SelectMany Confusion
From what I understand from the documentation of SelectMany, one could use it to produce a (flattened) sequence of a 1-many relationship.
I have following classes
public class Customer
{
...
26
votes
2answers
1k views
What are lifted operators?
I was looking at this article and am struggling to follow the VB.NET example that explains lifted operators. There doesn't seem to be an equivalent C# example or tutorial. I don't have much experience ...
25
votes
13answers
4k views
What is the best rails example app? [closed]
What is the best available non-trivial example app for rails with uptodate source, test suite and adherence to best practices?
[I am looking for an example of a full fledged application - with ...
24
votes
4answers
3k views
Y-Combinator Practical Example
I've been reading a bit lately about functional programming and I am trying to grok the Y-Combinator. I understand that you can use the Y-Combinator to effectively implement recursion in a language ...
23
votes
6answers
70k views
Select Multiple Fields from List in Linq
In ASP.NET C# I have a struct:
public struct Data
{
public int item1;
public int item2;
public int category_id;
public string category_name;
}
and I have a List of those. I want to ...
23
votes
3answers
7k views
Best way to throw exceptions in JNI code?
I'd like a consistent and simple way to throw exceptions in JNI code; something that handles chained exceptions (implicitly from the env->ExceptionOccurred method, or explicitly by parameters, either ...
22
votes
7answers
15k views
How to get duplicate items from a list using LINQ ?
I'm having a List<string> like:
List<String> list = new List<String>{"6","1","2","4","6","5","1"};`
I need to get the duplicate items in the list into a new list. Now i'm using ...
21
votes
6answers
23k views
what is the function __construct used for?
I have been noticing __construct a lot with classes. I did a little reading and surfing the web, but I couldn't find an explanation I could understand. I am just beginning with OOP.
I was wondering ...
21
votes
10answers
4k views
Normalization in plain English
I sort of understand the concept of database normalization, but always have a hard time explaining it in plain English - especially for a job interview. I have read the wikipedia post, but still find ...
19
votes
16answers
4k views
Does anyone use template metaprogramming in real life? [closed]
I discovered template metaprogramming more than 5 years ago and got a huge kick out of reading Modern C++ Design but I never found an opertunity to use it in real life.
Have you ever used this ...
18
votes
2answers
3k views
Contact Bubble EditText
I am trying to create contact bubbles in the MultiAutoCompleteTextView similiar to how it is implemented in the Google+ app. Below is a screen shot:
.
I have tried to extend the ...
17
votes
3answers
7k views
What is dynamic intialization of object in c++?
What is dynamic initialization of objects in c++?
Please explain with an simple example...
17
votes
4answers
12k views
Remove specific commit
I was working with a friend on a project, and he edited a bunch of files that shouldn't have been edited. Somehow I merged his work into mine, either when I pulled it, or when I tried to just pick the ...
16
votes
3answers
543 views
How to create example data set from private data (replacing variable names and levels with uninformative place holders)?
To provide a reproducible example of an approach, a data set must often be provided. Instead of building an example data set, I wish to use some of my own data. However this data can not be ...
16
votes
2answers
45k views
Example: Android bi-directional network socket using AsyncTask
Most of the network socket examples I found for Android were one directional only. I needed a solution for a bi-directional data stream. I eventually learned of the AsyncTask. This example shows how ...
15
votes
3answers
3k views
Should std::sort work with lambda function in c++0x/c++11?
I tried to use lamda function with sort, but was getting "Segmentation fault" errors. I managed to simplify the code to the following:
#include <iostream>
#include <algorithm>
int main()
...
14
votes
5answers
5k views
python optparse, how to include additional info in usage output?
Using python's optparse module I would like to add extra example lines below the regular usage output. My current help_print() output looks like this:
usage: check_dell.py [options]
options:
-h, ...
13
votes
1answer
1k views
Is there a comprehensive example or tutorial for iBATIS 3 with annotations?
Is there a comprehensive example or tutorial for iBATIS 3 with annotations?
I am specifically interested in moving away from an XML-based mapper configuration to using pure Java annotations where the ...
12
votes
16answers
19k views
What's a good example for class inheritance?
I'm writing documentation for an object-oriented language, and I wonder what kind of classes would be a good example for inheritance.
Some common examples:
class Person {
}
class Employee extends ...
12
votes
7answers
32k views
Looking for android Facebook SDK examples
I've looked all over the internet and can't seem to find what i'm looking for...
I'm just trying to find a site with some examples on how to use the OFFICIAL facebook android SDK ...
12
votes
1answer
3k views
Fat Models, skinny ViewModels and dumb Views, the best MVVM approach?
Through generous help on this question, I put together the following MVVM structure which displays the changes of a model in real time in XAML (current date/time), very nice.
A cool advantage of ...
12
votes
4answers
5k views
Is there a rich domain model example?
I'm looking for a simple example to illustrate the benefits of using a rich domain model. Ideally, I'd like a before and after code listing (which should be as short as possible).
The before code ...
11
votes
22answers
7k views
Good Examples of Hungarian Notation? [closed]
This question is to seek out good examples of Hungarian Notation, so we can bring together a collection of these.
Edit: I agree that Hungarian for types isn't that necessary, I'm hoping for more ...
10
votes
3answers
10k views
A very simple thread pool using pthreads in C++
I'm trying to understand some of the basics of using POSIX pthreads. The kind of thing I need to do (eventually) is parallelize some computations, using a thread pool model. At present I want to ...
9
votes
3answers
9k views
Coding CUDA with C#?
I've been looking for some information on coding CUDA (the nvidia gpu language) with C#. I have seen a few of the libraries, but it seems that they would add a bit of overhead (because of the ...
9
votes
4answers
1k views
What is a good example for functional style web programming using javascript?
I'm doing javascript on a daily basis at the moment. I'm coming from an OO background and most of the code I have contact with is somewhat procedural/OO style. I'm looking for good examples that ...
9
votes
1answer
4k views
Can someone help me understand Guava CacheLoader?
I'm new to Google's Guava library and am interested in Guava's Caching package. Currently I have version 10.0.1 downloaded. After reviewing the documentation, the JUnit tests source code and even ...
9
votes
2answers
15k views
Android Bluetooth Example
Can anybody give me android bluetooth communication tutorial link or hint?
Plz dont tell me to refer BluetoothChat example I can only understand how to discover and connect to devices but dont know ...
8
votes
2answers
6k views
Python: next() function
I'm learning Python from a book, and I came across this example:
M = [[1,2,3],
[4,5,6],
[7,8,9]]
G = (sum(row) for row in M) # create a generator of row sums
next(G) # Run the iteration ...
8
votes
6answers
8k views
Number of occurrences of a character in a string
I am trying to get the number of occurrences of a certain character such as & in the following string.
string test = "key1=value1&key2=value2&key3=value3";
How do I determine that there ...
8
votes
4answers
2k views
An algorithm to calculate probability of a sum of the results happening
The algorithm I'm talking about using would allow you to present it with x number of items with each having a range of a to b with the result being y. I would like to have an algorithm which would, ...
8
votes
3answers
5k views
SimpleCursorTreeAdapter and CursorLoader for ExpandableListView
I am trying to asynchronously query a provider by using a CursorLoader with a SimpleCursorTreeAdapter
Here is my Fragment class which implements the CursorLoader
public class ...
7
votes
10answers
699 views
Impressing Ruby example
in some days I am giving a talk about a Rails project at university and I want to introduce the audience to Ruby.
I want to show them one or two really nice code examples to demonstrate how awesome ...
7
votes
3answers
9k views
Understanding .get() method in python
sentence = "The quick brown fox jumped over the lazy dog."
characters = {}
for character in sentence:
characters[character] = characters.get(character,0) + 1
print(characters)
I don't ...
7
votes
3answers
231 views
Does it make any sense to use pattern matching in Scala with really simple cases?
In 'Programming in Scala, Second Edition' at page 410 you can find class Simulation which have the following method:
private def next() {
(agenda: @unchecked) match {
case item :: rest =>
...
7
votes
4answers
14k views
Tesseract Example for Iphone
I have compiled tesseract for using it in xcode following: http://iphone.olipion.com/cross-compilation/tesseract-ocr
I obtain the .a file, import it as framework in the iphone project, and update the ...
7
votes
2answers
380 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 ...
7
votes
2answers
804 views
C# 5 and async timers
Is there a new Timer API somewhere that allows me to do this?
await timer.wait(500);
Basically, to sleep for X ms and then resume execution of the rest of a function
7
votes
2answers
3k views
Writing/Using C++ Libraries
I am looking for basic examples/tutorials on:
How to write/compile libraries in C++ (.so files for Linux, .dll files for Windows).
How to import and use those libraries in other code.
7
votes
2answers
154 views
Practical examples of use for Clojure's new some-> macro
Clojure 1.5 adds new threading macros, including:
some->
some->>
The changelog has this contrived example to illustrate how some-> works:
user=> (defn die [x] (assert false))
...
7
votes
2answers
489 views
Learning Django - Good starter project [closed]
I am presently embarking to learn Python and Django together and I have gained a fair bit of theoretical knowledge to help me out.
However, I'm after a good project that I can dig into which will ...

