A representation of something, typically showing a single aspect of a larger whole.

learn more… | top users | synonyms

0
votes
1answer
20 views

WPF Multiple Buttons to Navigate multiple pages with one frame

I have buttonA and buttonB. I have FrameA and Page1 Page2. Question: ' If I clicked buttonA how would I show Page1 through FrameA? Then I clicked buttonB how would I show Page2 through FrameA? ...
3
votes
0answers
2k views

AutoCompleteTextView backed by CursorLoader

So I am having trouble extending the MultiAutoCompleteTextView and backing it with a CursorLoader, while simultaneously using a custom Tokenizer. The issue rises specifically with the ...
0
votes
0answers
14 views

css only conditional form works in firefox, but not chrome. Can you look over this codepen?

I was trying to be clever with this conditional hiding and showing of a text-field based on its adjacent radio being selected. It works in firefox just fine, but not chrome. Can someone confirm that ...
-1
votes
0answers
17 views

How to read data from excel file (.xls) using java only? [closed]

I need sample code for reading data from excel file using Java (i.e. without using any third party jars eg: Apache POI ). Is it possible? if possible means please share the java code to me. Thanks ...
0
votes
1answer
27 views

Example of unit testing in sikuli [closed]

Please bear with me as a newbie, who is self-teaching on a number of fronts here. I need some simple examples that would help in learning how to do unit testing in sikuli. Could someone help me out ...
298
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 ...
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? ...
0
votes
1answer
18 views

rspec - how to have examples without both 'describe' and 'it'

Given the following working code: require 'rspec' require_relative 'dec_to_hex' describe "Should convert 20 to 32" do it "should convert correctly" do converter("20").should == 32 end end ...
-2
votes
0answers
23 views

Encrypting a File with AES in C#.net [closed]

I am looking for a good and performant example to encrypt a File in C# dotnet. Can anyone provide a nice clean example.
0
votes
0answers
13 views

Java Pet Store alternative with no Javascript or AJAX [closed]

I'm looking for a small Java EE example application that is similar to the Java Pet Store or Duke's Bookstore. I'm trying to find and evaluate web crawlers that can access content which is hidden ...
0
votes
1answer
21 views

Example project or agencies that use JMapViewer [closed]

I am in the process of building a desktop application for a client. It will use open street map with JMapViewer for the Display Engine. The client is generally on board with pursuing the open source ...
0
votes
0answers
27 views

starting new activity from json listview

I am new to android and I'm trying to make an application to my website. I have a webservice json that shows items in a list view in android. This list shows only 3 items. I need to implement this ...
0
votes
1answer
19 views

Qt: Simple DOM Model Example Memory Leak

I think that the Simple DOM Model Example in Qt has a memory leak. The following code is used to create the wrapped DomItem objects that are used to track the QDomNodes. DomItem *DomItem::child(int ...
4
votes
1answer
599 views

Complete example for use of volatile key word in java?

I need a simple example of use of the volatile keyword in java, behaving inconsistently as a result of not using volatile. The theory part of volatile usage is already clear to me.
7
votes
2answers
789 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
0
votes
1answer
38 views

How do I seed a directory or file using python-libtorrent?

After several hours of looking for the answer I've had no luck. Can anyone point me to an example of how to create a torrent and seed that brand new torrent in python? So far I can download just ...
1
vote
2answers
44 views

Qt example: no mutex lock when reading, why?

I am looking at this example, and it raises a queston for me: when looking at this file a mutex is being used when accessing the global variable m_abort when its being changed. But when the run method ...
0
votes
0answers
27 views

libpd with python2.7 and mac os x

I have installed pure data libpd in python 2.7 on mac osx 10.7. when I try to run the example provided in libpd for python, none of the example is giving sound. test.py is dumping some text, no sound ...
7
votes
2answers
150 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)) ...
0
votes
0answers
23 views

Workflow Foundation - Advice on a simple process

I am starting on Workflow Foundation 4 and i've been asked to do a simple example to show to a client (unfortunatly in a tight timeframe) and i could use some help on how to start with it. The ...
0
votes
1answer
50 views

What are some examples of Dynamically loaded content changed by onClick events with images? [closed]

So, I'm struggling to articulate the nature of what I'm looking for concisely. I feel certain I've seen it done, but essentially I'm looking for a set-up or example by which one has a series of images ...
0
votes
0answers
23 views

Android - Help me with collision detect(with Paint Example xD)

I have problems with the collision detect, or rather, I can check whether the collision occurs, but can not prevent the images overlap. Because of my English maybe I can not explain well my problem, ...
3
votes
1answer
60 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 ...
62
votes
10answers
118k 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 ...
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 ...
2
votes
2answers
1k views

Amazon Product Advertising API C#

Can somebody tell me C# excample of using Amazon Product Advertising API, for example to lookup item. All i found is not working now because of changes. Thanks! edit: the most popular error is ...
0
votes
1answer
47 views

How to add node in existing xml using php simpleXML?

I have a xml file like the bellow, and I need to add a new node with some child node and attribute. <custscales> <custscale sclNo="1" type="lin"> <scaleName>Custom Scale ...
0
votes
3answers
2k views

How do I pass a Boolean value between classes?

My name is Panda and I am completely blanking on what i believe to be simple Java syntax. Here is an example of my first class: Public ExampleClass{ public boolean exampleBool = false; ...
3
votes
3answers
896 views

Javascript Sandbox Pattern example implementation

On Page 101 of Stoyan Stefanov's great book "JavaScript Patterns" he explains the sandbox pattern. I liked his book much but I really missed some real life examples here and then to better understand ...
5
votes
1answer
239 views

Sinatra + websocket + Celluloid

Hi does anybody know how to put in place a quick code example of a Sinatra app running on top of Celluloid:IO and using websocket? I know of the existance of Reel for Celluloid ("Reel is a fast, ...
0
votes
0answers
16 views

Android drag as possible, only away from the collision

hi all as the title I wanted to know how to make sure that once the collision occurred, the drag and drop function is applicable only in the opposite direction to the collision, to avoid that the two ...
0
votes
0answers
19 views

What examples are there for the “closest pair of points”?

I'm looking for a motivational example for the "closest pair of points problem" http://en.wikipedia.org/wiki/Closest_pair_of_points_problem In itself it's a pretty self explanatory problem, but I ...
2
votes
2answers
3k views

How to move the DataContext definition from code-behind to XAML?

I defined an object which contains properties in code-behind and, want to set the object to datacontext in xaml. namespace WpfApplication4 { public partial class MainWindow : Window { ...
0
votes
1answer
89 views

How to data-bind a label

How to bind the content of a label to the class2 property PropName? Class2 is not directly being used in Mainwindlow.xmal.cs. Class1 is being used in Mainwindow.xmal.cs And Class2 is being used in ...
0
votes
1answer
51 views

Equivalence partitioning, it this an incorrect example in a book?

I am trying to understand this topic and starting with the very basic one (not discrete domain), I believe this is not correct. I cannot post images yet so the description goes like this: Income ...
0
votes
1answer
496 views

How Can I update a row in WPF's datagrid when I 'm implementing MVVM ? ( without any Button)

I've already made a WPF application without MVVM and I do update my rows by using some event such CellEditEnding, but Now I want to do the same thing in MVVM so I'm not going to use any event and I ...
3
votes
1answer
63 views

How to GroupBy interest rates?

I have the following table that i want to consolidate the interest rates using group by. Lower Limit, Upper Limit , Interest rates 0 to 5000 , 0.02 5001 to 10000 , 0.02 ...
5
votes
2answers
1k views

Big smart ViewModels, dumb Views, and any model, the best MVVM approach?

The following code is a refactoring of my previous MVVM approach (Fat Models, skinny ViewModels and dumb Views, the best MVVM approach?) in which I moved the logic and INotifyPropertyChanged ...
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 ...
1
vote
0answers
203 views

cucumber jvm selenium example

I am using standart exsample: cucumber-jvm-selenium-example When I run test: ------------------------------------------------------- T E S T S ...
2
votes
6answers
171 views

How to find duplicate items in list<>?

I have: List<string> list = new List<string>() { "a", "a", "b", "b", "r", "t" }; How can I get only "a","b"? I tried to do like this: List<string> list = new ...
0
votes
2answers
57 views

Group by Time(Only hrs part) in linq

I have a datatable that has following columns CallTime CallType 15:45:00 Voice 15:30:54 Voice 00:12:14 SMS 01:13:47 Voice 05:48:23 SMS 12:00:47 Voice Now what i want Using Linq ...
0
votes
5answers
55 views

Linq, unable to list only distinct results

I have three tables, car_type, car_manufacturer and car_model. When the user click on the particular vehicle type they want to browse, I'd like to show them a list of available manufacturers. The ...
0
votes
1answer
38 views

LINQ GroupBy to get Name and A Count

I'm a little confused on how to use a GroupBy in Linq. I need to display the name of a Product and Count it's offers, I've come up with this var context = new Model.Entities(); var query = from p in ...
0
votes
4answers
99 views

C# determine if all characters in a string are the same

I have a situation where I need to try and filter out fake SSN numbers. From what I've seen so far if they are fake they're all the same number or 123456789. I can filter for the last one, but is ...
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 ...
3
votes
2answers
36 views

How to Select the Token and Index from a Comma Separated String in Linq

Given a comma delimited string "a,b,c" I would like to split the string and select the token and its respective index into a list. In other words, I want "a,b,c".Split(',') to return a list of: a, 1 ...
3
votes
2answers
62 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
5answers
133 views

Merge 2 arrays using LINQ [duplicate]

I have two simple array and I would like to merge using join linq: int[] num1 = new int[] { 1, 55, 89, 43, 67, -3 }; int[] num2 = new int[] { 11, 35, 79, 23, 7, -10 }; var result = from n1 in num1 ...
1
vote
2answers
1k views

How to merge several arrays in a List using Linq?

I have List<Product[]> and I need to join them into one Product[].

1 2 3 4 5 11