1
vote
2answers
84 views
List in a dictionary, looping in Python.
I have the following code:
TYPES = {'hotmail':{'type':'hotmail', 'lookup':'mixed', 'dkim': 'no', 'signatures':['|S|Return-Path: postmaster@hotmail.com','|R|^Return-Path:\s*[^@ …
0
votes
4answers
56 views
Iterating through a list of lists?
I have Items from a certain source (populated from somewhere else):
public class ItemsFromSource{
public ItemsFromSource(string name){
this.SourceName = name;
Items …
0
votes
2answers
11 views
How to make a list of unique items from a column w/ repeats in PHP SQL
Say I have a table that has a column which goes
Column B
apple
apple
apple
orange
apple
orange
orange
grapes
grapes
mango
mango
orange
And I want to query it in such a way that …
0
votes
4answers
62 views
Canadian to US English
Does there exist something like Canadian to US english e-dictionary which I can use in my application ?
1
vote
6answers
175 views
How do I do a “for each” , starting at a certain index of a list (Python)?
Suppose I have this list:
thelist = ['apple','orange','banana','grapes']
for fruit in thelist:
This would go through all the fruits.
However, what if I wanted to start at orang …
0
votes
2answers
27 views
searching and listing WPF resource dictionaries in a folder
I'm making a WPF application that is going to have multiple skins branded in by our build system. Ideally we would like the application to list off the skins available as some bui …
0
votes
3answers
39 views
Reorder files and folders
Hi,
I got a list of files and folders using dirent & stat in C, but they are not in the order I want. I want it will list the directories first then files.
Ex:
.
..
[dir1]
[d …
1
vote
1answer
57 views
How to find the position of an element in a list , in Python?
for s in stocks_list:
print s
how do I know what "position" s is in? So that I can do stocks_list[4] in the future?
4
votes
7answers
170 views
What is the best List implementation for Large lists in java
Hi,
I have to create a large list of n elements (could be up to 100,000). each element in the list is an integer equivalent to the index of the list. After this I have to call C …
0
votes
4answers
46 views
Adding Lists Elements to ‘Mega List’
Let's say I have a list somewhere called majorPowers which contain these two lists:
axis=["germany","italy","japan"]
allies=["russia","uk","us"]
I'd like to insert each of the e …
0
votes
2answers
50 views
Java Queue Merge, Beginner
I'm trying to write a method that will take in two Queues (pre-sorted Linked Lists) and return the merged, in ascending order, resulting Queue object. I pasted the Queue class, th …
1
vote
4answers
59 views
Readonly wrapper of a LinkedList. HowTo?
Hello.
.NET v2
When the List has a very useful (4 me) method AsReadOnly()
the LinkedList does not have such a method.
Is there a way to "quickly" interface an internal LinkedLis …
0
votes
3answers
78 views
Whats a quick way to convert an IEnumerable<Foo> to List<Foo> in C# 2.0?
we all know the slow way:
foreach..
0
votes
3answers
46 views
Traversing an unordered list using jQuery
This should be an easy one, but I'm not finding much online:
I have an unordered list <ul>, with a few list items underneath it <li>, and I'd like to address each one …
4
votes
2answers
95 views
Is it possible to match with decomposed sequences in F#?
I seem to remember an older version of F# allowing structural decomposition when matching sequences just like lists. Is there a way to use the list syntax while keeping the sequen …
