Tagged Questions
The example tag has no wiki summary.
161
votes
7answers
15k views
Good Haskell source to read and learn from
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 ...
97
votes
13answers
12k views
Where can I find good examples of Rails applications?
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.
...
87
votes
6answers
2k 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 ...
33
votes
33answers
1k views
Teach dynamic polymorphism with simple example
I teach in a classroom of physics, and I need to teach dynamic polymorphism in c++ using virtual functions. The problem is that I can't find a good example.
I don't like the Shape example, because ...
20
votes
13answers
3k views
What is the best rails example app?
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 ...
18
votes
2answers
440 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 ...
18
votes
4answers
2k 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 ...
16
votes
13answers
5k 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 ...
15
votes
16answers
3k views
Does anyone use template metaprogramming in real life?
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 ...
13
votes
1answer
1k views
What is dynamic intialization of object in c++?
What is dynamic initialization of objects in c++?
Please explain with an simple example...
13
votes
1answer
2k 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 ...
12
votes
34answers
1k views
Example of code generator you made from scratch?
What are some examples of code generators you have used? I think it's a cool idea, but I have trouble thinking of things they can do besides make a class based on an object's attributes/database ...
12
votes
11answers
1k views
Understanding Generators in Python?
Reading the Python cookbook at the minute and currently looking at generators. I'm finding it hard to get my head round.
As I come from a Java background, is there a Java equivelant? The book was ...
10
votes
6answers
18k 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 ...
10
votes
1answer
669 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 ...
8
votes
5answers
2k 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, ...
7
votes
3answers
195 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
1answer
62 views
What is a good example of a program written using aspect-oriented techniques?
I'm not necessarily looking for an example of code written on an AOP language, but some code that thoroughly and effectively divides into aspects, rather than components, so I could read it and see ...
7
votes
4answers
251 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, ...
7
votes
3answers
3k 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 ...
7
votes
10answers
507 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
3k 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 ...
6
votes
3answers
224 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()
...
6
votes
4answers
801 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 ...
6
votes
14answers
9k 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 ...
6
votes
8answers
705 views
Where is a good open source python project to be used as example? [closed]
I'm looking for a python project to use as example to learning python.
The project should have these features:
is almost fully unit tested
use consistently the code convention recommended by PEP 8
...
6
votes
2answers
1k 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.
5
votes
1answer
63 views
Is there a collection of old security issues with description and exercising code for the Java platform?
I'm wondering if there is an educational collection of examples on how security on the JVM was compromised in old versions.
After reading a bit of the articles on the IKVM blog, I have the feeling ...
5
votes
2answers
125 views
Examples for external technical DSL
We are in the process of evaluating how far we can use external DSL's in the process to describe, model and generate a multi Platform Application. I personally don't see many applications to describe ...
5
votes
1answer
576 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 ...
5
votes
2answers
208 views
c++ stl-compliant iterator of iterators
What I'm trying to do
I have a method that partitions things. This method does not sort the array entirely; it simply partitions the array so that all elements on one side (of some pre-determined ...
5
votes
3answers
105 views
Explain unit testing please
I'm a little confused about unit testing. I see the value in things like automated testing. I think perhaps a good example would be the best way to help me understand. Lets say I have a binary search ...
5
votes
2answers
286 views
Understanding Clojure concurrency example
I just go through various documentation on Clojure concurrency and came accross the example on the website (http://clojure.org/concurrent_programming).
(import '(java.util.concurrent Executors))
...
5
votes
6answers
9k 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 ...
4
votes
3answers
127 views
Do you know of any examples of elegant solutions in dynamically typed languages?
Imagine two languages which (apart from the type information) do have exactly the same syntax, but one is statically typed while the other one uses dynamic typing. Then, for every program written in ...
4
votes
1answer
295 views
Example from: “Javascript - The Good Parts”
What "ugliness" does the following solve? There's something I'm not getting, and I'd appreciate help understanding what it is.
For example, by augmenting Function.prototype, we can make a method ...
4
votes
3answers
7k 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 ...
4
votes
2answers
1k views
Zend_ProgressBar: is there a god example / tutorial on how to use it?
I'm trying to use Zend_ProgressBar in my project (made using MVC in Zend Framework).
Unfortunately, I cannot find any full example on how to use it. Zend Programmer's Reference Guide has only some ...
4
votes
5answers
558 views
Tinyurl API Example - Am i doing it right :D
we use super-long Hashes for the Registration of new Users in our Application. The Problem is that these Hashes break in some Email Clients - making the Links unusable.
I tried implementing the ...
4
votes
8answers
646 views
Real-world examples of nested functions
I asked previously how the nested functions work, but unfortunately I still don't quite get it. To understand it better, can someone please show some real-wold, practical usage examples of nested ...
4
votes
2answers
1k 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 ...
4
votes
7answers
1k views
Examples of outdated software development tools and techologies
I'm writing a paper on software process improvement. As i lack experience from actual software development companies, i made up a company that I'll use for the paper. However I need some examples on ...
4
votes
3answers
591 views
Is anyone aware of any .NET OpenID Provider sample code that might exist?
I need to implement an OpenID Provider in .Net and wondered....Is there's any OpenSource code already written and available?
3
votes
1answer
81 views
Learning Django - Good starter project
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 ...
3
votes
3answers
66 views
python3 multiprocessing example crashed my pc :(
I am new to multiprocessing
I have run example code for two 'highly recommended' multiprocessing examples given in response to other stackoverflow multiprocessing questions. Here is an example of one ...
3
votes
1answer
245 views
How does someone use Guava's CacheLoader asynchronously
The question says it all I'd like to use CacheBuilder, but my values are pulled in asynchronously. This worked previously with MapMaker as the CacheLoader wasn't a requirement. Now I'd like to know if ...
3
votes
4answers
79 views
DYnamic SQL examples
I have lately learned what is dynamic sql and one of the most interesting features of it to me is that we can use dynamic columns names and tables. But I cannot think about useful real life examples. ...
3
votes
1answer
729 views
Examples for using Nvidia FXAA (shader antialiasing) in XNA 4.0 winforms?
I'm using this example project's XNA 4.0 form control in an application I'm writing: http://creators.xna.com/en-US/sample/winforms_series1
If you are unfamiliar with FXAA, check out the creator's ...
3
votes
1answer
137 views
Can this MSpec test be improved?
As a BDD and MSpec beginner I am still not so sure about best practises and good habits related to BDD in general and specifically to MSpec.
Can the following example be improved? Does it follow best ...
3
votes
3answers
456 views
NoSQL and eventual consistency - real world examples
I'm looking for good examples of NoSQL apps that portray how to work with lack of transactionality as we know it in relational databases. I'm mostly interested in write-intensive code, as for mostly ...