Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
55
votes
7answers
16k views

Good examples of MVVM Template

I am currently working with the Microsoft MVVM template and find the lack of detailed examples frustrating. The included ContactBook example shows very little Command handling and the only other ...
32
votes
15answers
45k views

Where can I find iPad Sample Code

I know the iPhone has a site with sample apps and code for the iPhone. Are there any resources out there for the iPad? I would like iPad specific examples like using split view, etc.
29
votes
6answers
25k views

Multiple pages tutorial in Google Web Toolkit (GWT)

I just started learning Google Web Toolkit (GWT). How do I make different HTML pages in my GWT application? For example, I want to create an application for a book store. In this application I'll ...
24
votes
7answers
747 views

Examples of good JavaScript code in open source web apps

I'm struggling to find a way of writing good JavaScript code that would be efficient, widely accepted by other developers and not very ugly. Until recently, what I used were just literal objects and ...
24
votes
7answers
2k views

Simple state machine example in C#?

Update: Again thanks for the examples, they have been very helpful and with the following I don't mean to take anything away from them. Aren't the currently given examples, as far as I understand ...
13
votes
1answer
355 views

Eteration - explanation and example

Can someone explain what exactly is Eteration and show an example? source: Long running tasks YUI blog by Douglas Crockford
10
votes
4answers
3k views

Real World ASP.NET MVC Applications with Source Code?

I think all of the tutorials and stuff are great on blogs, but sometimes when you actually build an application the way you would code or interact with a system is quite different. I was wondering if ...
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
3answers
316 views

Advanced multithreading - Java [closed]

I don't come across work that requires much experience with multi-threading. So I was wondering if anyone know of site (open source project) where I could take look at real world examples of some ...
7
votes
5answers
2k views

WCF Duplex Callback Sample failing

In an effort to hone some example services to be used as reference for our internal scenarios, I've created this WCF Duplex Channel example, pulling together several examples found through the years. ...
6
votes
3answers
223 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
6answers
547 views

What can create a lexical error in C?

Besides not closing a comment /*..., what constitutes a lexical error in C?
6
votes
3answers
265 views

Demos, samples and proof-of-concept code in D

I've been looking at the D programming language recently and I'm curious if there are any demos, sample applications, or proof-of-concept code written in it. I want some code that demonstrates ...
5
votes
2answers
2k views

ASP.NET full website examples with code

One of the most obnoxious things about developing a website from scratch is dealing with all incidental menuing, layout and all of that. I am looking for the following: Open source C# ASP.NET website ...
5
votes
1answer
3k views

Monodroid samples/ widgets with source code

I am a .NET developer and I am interested in developing android application in C# and I got monodroid. Is there any source from where I can get the monodroid sample applications [with source code] ...
5
votes
4answers
3k views

Display big image from SD card in Android

In Android, how do you display an image (of any size) from the SD card, without getting an out of memory error? Is it necessary to put the image in the Media Store first? A pseudo-code example ...
5
votes
4answers
972 views

Objective C examples sought

I'm trying to add scrollbars to an IKImageView. Basically at the moment, I need some examples of a program that loads an image into a view, and if the window is too small, sets up scrollbars that do ...
5
votes
6answers
270 views

In what case would I use a tuple as a dictionary key?

I was studying the difference between lists and tuples (in Python). An obvious one is that tuples are immutable (the values cannot be changed after initial assignment), while lists are mutable. A ...
5
votes
1answer
2k views

Example code of libssh2 being used for port forwarding

I'm looking for an example of how to use libssh2 to setup ssh port forwarding. I've looked at the API, but there is very little in the way of documentation in the area of port forwarding. For ...
5
votes
5answers
2k views

Open source C# examples of good code/spagetti code

I'm looking for some code projects/examples that would be considered really good C# code and some that would be considered really bad/spaghetti deluxe code. All links and ideas on where to find these ...
5
votes
17answers
534 views

What is your favorite first exercise?

When you are learning a new language, what is your favorite first (or close to first) exercise that you do to get the hang of it? And why? EDIT: Preferably looking for things that are more ...
4
votes
8answers
155 views

java projects for beginners

Do you know about any resources (blog, webpage, forum, book) which contain problems to be solved in java? I'm in the learning stage of java, and I'd like to practice. Also, I'd like to check my code ...
4
votes
4answers
258 views

Golang template examples [closed]

What website has some good, up to date resources on using golang html/templates, especially in regard to parsing html files and handling lists? I came across the Hoka Poka website, but it seems to be ...
4
votes
1answer
156 views

Writing a code example

I would like to have your feedback regarding code examples. One of the most frustrating experiences I sometimes have when learning a new technology is finding useless examples. I think an example ...
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
4answers
597 views

First version of Linux

I've heard many times that Linus Torvalds is a genius when it comes to writing good code. I also wish to write good code and I'd like to see how the first version of Linux was written. Does anyone ...
4
votes
5answers
1k views

Java: Code Examples for Tutoring

Are there any tips you have for preparing useful example code ?
4
votes
2answers
465 views

Seeking contrived example code: continuations!

So I believe I understand continuations now, at least on some level, thanks to the community scheme wiki and Learn Scheme in Fixnum Days. But I'd like more practice -- that is, more example code I ...
3
votes
3answers
232 views

Tautology Checker for GNU Prolog

I am looking for open-source implementations of tautology checkers written in GNU Prolog (implementation for SWI-Prolog is acceptable as well, but GNU Prolog is preferred). I'd like to feed program ...
3
votes
2answers
87 views

Good references for the syscalls

I need some reference but a good one, possibly with some nice examples. I need it because I am starting to write code in assembly using the NASM assembler. I have this reference: ...
3
votes
1answer
299 views

Basic Scala Actors: examples from books not “acting” at all

I'm very new to Scala, and too rusty in Java to consider myself anything else than a complete newbie. So I'm taking easy steps to learn it. When looking at actors, I tried a few things, but faced ...
3
votes
2answers
296 views

Does anyone have experience using Backbone.js and Pylons/Pyramid ? any sample to look at?

Does anyone have experience using Backbone.js and Pylons/Pyramid ? any sample to look at ?
3
votes
3answers
214 views

Looking for the smallest possible amount of code needed to use OpenGL ES as simple drawing surface in Windows

I confess, I have only looked through parts of the entire ocean of GL questions here to find this. Please comment if you find a duplicate. I'm looking for a very small tutorial or if possible a ready ...
3
votes
4answers
2k views

java.util.concurrent , examples, tutorial and code

I've been ask to build a multithreaded java application using the java.util.concurrent. I'm not familiar with this library, but have a good understanding of problems with multi-threaded code. I'm ...
3
votes
6answers
568 views

Is Kohana worth giving up on due to lack of Documentation & Examples? [closed]

I've recently chose Kohana for a new project I'm doing And quite frankly, it's going a bit slow due to lack of resources. I've stumbled again and again on problems that I can't find a solution to ...
2
votes
2answers
117 views

When is CUDA's __shared__ memory useful?

Can someone please help me with a very simple example on how to use shared memory? The example included in the Cuda C programming guide seems cluttered by irrelevant details. For example, if I copy a ...
2
votes
2answers
128 views

Chrome extension - start point

Where I can find an example code of chrome extension which shows the current address in a popup? Thanks. Ron
2
votes
4answers
85 views

Coming from an OOP background, what would be some C programs/libraries to help me get the “C way”?

I have been doing OOP (C++/Java/PHP/Ruby) for a long time and really have a hard time imagining how large programs and libraries such as Linux or Apache can be written entirely in an imperative style. ...
2
votes
2answers
314 views

Good example Go code with standard library usage

One of the rather daunting things for me in picking up a new language is the standard library: is it large? What does it have in it? How often is it used? What conventions does it use? I've been ...
2
votes
2answers
98 views

easy way for typing code examples in html

How do you write code examples in html? Do you replace all characters by entities when necessary? Do you have a special editor that does it for you? Other? An example would be PHP code in html code ...
2
votes
1answer
393 views

Good examples of Android projects covered by tests?

Could you point some good examples of Android projects that have unit testing in action? It would be great to learn by example from those.
2
votes
3answers
1k views

Python Closures Example Code

I am learning Python using "Dive Into Python 3" book. I like it, but I don't understand the example used to introduce Closures in Section 6.5. I mean, I see how it works, and I think it's really ...
2
votes
4answers
301 views

Good Wordpress Theme/plugin for showing off code examples and scripts

I have an ancient version of Wordpress and its WYSIWYG editor really mucks up code examples in my blogs (removing lines and whitespace when saved, etc). I wish to upgrade and install a theme/plugin ...
2
votes
3answers
2k views

Neural Network Example Source-code (preferably Python)

I wonder if anyone has some example code of a Neural network in python. If someone know of some sort of tutorial with a complete walkthrough that would be awesome, but just example source would be ...
1
vote
2answers
26 views

Implement Java/C++ library in Javascript - looking for examples

I am converting my existing Java and C++ API into javascript and am looking for good API examples which contain both methods and also objects(preferable hierarchy of objects), all wrapped within ...
1
vote
1answer
33 views

Can anyone demonstrate fl_filename_list?

I can't figure out how to use the fl_filename_list function in the FL/filename.h module. I also cannot find any good examples or tutorial on the internet. Can anyone provide a good example?
1
vote
2answers
246 views

Backbone.js + ASP.Net MVC3

I am looking for good examples of web applications using ASP.Net MVC3 on the server-side and jQuery+Backbone.js on the client side. There are plenty of backbone-only tutorials out there, but none ...
1
vote
0answers
56 views

Any examples of event-based jQuery programming structure?

I've built a program that I think could benefit from a shift toward using jQuery's events (bind() and trigger()) instead of the typical function-calling programming structure. For example, instead of: ...
1
vote
0answers
108 views

How to use AST in our own C program? [closed]

We are about to write dead-code remover in C. For that we have to use AST. We doesn't know, how AST parse the C file,and how to retrieve those tokens in our dead-code remover. We came to know CLANG ...

1 2 3