The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
49 views

Select from list by index, but keep other associated items in list

If I have a 2dlist of points like this... myList=[['ab','0_3','-1','1'],['bm','2_1','-3','2'],['am','4_1','-1','3'],...]] where '-1','1' for example are x, y coordinates (the last 2 columns) and I ...
-2
votes
2answers
48 views

Ruby .detect alternative

I am looking for an alternative that would solve the following issue: with .detect if I am looking for stringvalue and the value given is 132stringvalue, it will still return true. I need an ...
1
vote
1answer
50 views

enumerateKeysAndObjectsUsingBlock - order of entries in dictionary?

Does anyone know if the order of enumeration using enumerateKeysAndObjectsUsingBlock on a NSDictionary is defined? My experiments suggest that it's the same order as stuff was added, but I can't be ...
1
vote
0answers
12 views

mdwlist enumerate changes from Roman to Arabic after suspend [migrated]

In LaTeX, I am using the enumerate and mdwlist packages to create an enumerated list with a pause in the middle, using the suspend/resume commands. I want Roman numerals counting the list items, which ...
4
votes
6answers
76 views

Python: finding distances between list fields

Hi I need to calculate distances between every numbers pair in list, including the distance between the last and the first (it's a circle). Naively i can do something like that: l = [10,-12,350] ret ...
3
votes
4answers
69 views

Why do list and tuple change the output of enumerate?

I was surprised at the following behavior: >>> a=['a','b','c','d','e','f','g'] >>> en=enumerate(a) >>> list(en) [(0, 'a'), (1, 'b'), (2, 'c'), (3, 'd'), (4, 'e'), (5, 'f'), ...
0
votes
1answer
80 views

Read csv, then enumerate

At the moment, I have a list directly in my code and am using enumerate so I can use the list index numbers for the user to select one of the items. Looks like this (just header row included) fmpList ...
0
votes
2answers
71 views

Classes used in a project

Is there an elegant way to get a list of classes used in a project? I am aware of objc_getClassList(...) which gets all the classes in Objective-C, and I am trying to avoid using ...
0
votes
1answer
47 views

Read LINQ results

I'm writing a small application that will download a .csv file via FTP and read that into Excel in a particular format. I found the LINQ code snippet below on this site that will read the .csv file ...
0
votes
1answer
13 views

Enumerator assignment

I have to convert a float passed into a constructor into a string based off the value of the float (call it R) using an enumerator. It looks something like this: static void Main(string[] args) { ...
0
votes
4answers
74 views

function does not take 1 arguments error

I've tried many times to fix this error but I'm not sure what to do. For both the addBooks and displayBooks functions I am getting a "function does not take 1 arguments" error, though the vector ...
-2
votes
1answer
24 views

Create object names though “for loop” enumeration?

I'd like to use the increasing integer in a "for loop" to create 5 UIImages with custom names (e.g. UIImage *image1, *image2, etc.). I've named my images programmatically - "foto1.jpg", "foto2.jpg", ...
0
votes
3answers
350 views

powershell get-childitem to csv with details

I am trying to create a CSV file for a file share that has deep folder structure. I want the CSV to look like: filename, filepath, file type, folderStructure So far I have the following: ...
1
vote
2answers
71 views

MySQL query enumerate rows depending on another field

I have this structure: table1 table2 id_t1 id_t2 id_t2 Now, I need to enumerate the rows within table2 but by the id_t2 in a single query. Example of the output: ennum id_t1 id_t2 1 ...
1
vote
1answer
215 views

android enumerate USB application

I have an application that uses USB accessory. The app is setup to auto detect the device using the intent filter when the device is plugged in and then starts the application. My manifest follows ...
0
votes
1answer
132 views

C++ builder - enumerate components on TPanel

It is quite simple to enumerate Form components for (int i=0;i<ComponentCount;i++) { ShowMessage(Components[i]->Name); //..... } but the ...
1
vote
2answers
60 views

Enumerate NSArray starting at givven index searching both ways (wrap around)

Example. I've got an array with 15 objects. I want to start enumerating from a given index. Say start at index 5 and then the index above, the index under, above, under etc... I do want it to wrap ...
0
votes
0answers
162 views

Java JGraphT: Enumerate all subgraphs with max. number of edges of a given Graph

I'm working with graphs in java for the first time. I'm using JGraphT to model my graphs. My problem is the following: I have an undirected graph given in advance. Now I want to extract all possible ...
2
votes
2answers
55 views

Python bug? Lazy objects have hidden state

Consider this (Python 3.3): a=enumerate([2,3,5]) print(list(a)) print(list(a)) Do you really expect two print calls to print different things? Neither did I. The same thing happens if you replace ...
1
vote
1answer
82 views

Inno setup enumerator

I'm trying to enumerate the Properties_ property of the IIsWebServer using the WbemScripting.SWbemLocator object. My goal is to use PascalScript code to retrieve the server-bindings of a website. In ...
6
votes
3answers
222 views

Python's enumerate in Ruby?

def enumerate(arr): (0..arr.length - 1).to_a.zip(arr) Is something built in for this? It doesn't need to have it's members immutable, it just needs to be in the standard library. I don't want to ...
0
votes
2answers
137 views

Replacing words in string with items in a list using Python

I'm working on creating a word cloud program in Python and I'm getting stuck on a word replace function. I am trying to replace a set of numbers in an html file (so I'm working with a string) with ...
0
votes
1answer
122 views

Getting values when NSDictionary contains a list

I am being passed a dictionary: aDictionary When I log it out the dictionary has the following format: { value1 = "subValue1 {label=value1, info1=, info2=}"; value2 = "subValue2 {label=value2, ...
0
votes
1answer
198 views

How do I enumerate duplicate rows in excel?

I have data that looks like this: Monkey Donkey Elephant Panda Donkey Donkey Monkey I want to differentiate the rows by a number, counting up for every duplicate: Monkey 1 Donkey 1 ...
0
votes
0answers
29 views

How to enumerate controls on a WindowsForms form when initializing another control at design time?

I'm developing a new add-in component with auto-filter functionality for our WindowsForms grid control. When this add-in control is placed on a form at design time, it should enumerate all controls on ...
4
votes
4answers
155 views

Variable 'yield'?

I'd like to be able to yield a variable number of items which would allow a generator function something like the following to be written: x = [1, 2, 3] y = [4, 5, 6] z = [7, 8, 9] def ...
2
votes
3answers
137 views

Python - Difference between getting a value in dictionary using those two methods

I'm beginner in Python, and making a words game. And have a dictionary of {"player 1":0, "player 2":0} that keeps track of the two players score. I have a play again option so i need to always store ...
0
votes
0answers
60 views

remove from enumerated lists [closed]

Okay so I am trying to remove an item from an enumerated lists but it wont seem to go away no matter where I put the "If" statement it wont execute it can i get some assistance? this is the code using ...
2
votes
1answer
332 views

powershell script to call a list of variables to input into current script

So below is my script on how to call recursive members in groups across a trusted domain. what i need help with is to convert this from looking up a single group to multiple groups. At the line ...
0
votes
0answers
63 views

LaTeX, enumerate environment: Suppressing if only one \item [closed]

I've created a lot of enumuerate lists. I was wondering whether there is a way to suppress the first item in a list if there is only one item. So \begin{enumerate} \item This is a solitary item. ...
4
votes
6answers
289 views

Only index needed: enumerate or (x)range?

If I want to use only the index within a loop, should I better use the range/xrange function in combination with len() a = [1,2,3] for i in xrange(len(a)): print i or enumerate? Even if I ...
1
vote
2answers
75 views

find the integer points in a polyhedron

Hello we have a polyhedron with the linear inequalities of its boundaries in n dimensions. how to find the number of integer points in this polyhedron (exactly or approximately). how to find the ...
1
vote
1answer
284 views

Iterate over numpy matrix of unknown dimension

I have a multidimensional numpy array I'd like to iterate over. I want to be able to access not only the values, but also their indices. Unfortunately, for idx,val in enumerate(my_array): doesn't ...
0
votes
1answer
233 views

Visual Studio errors and getting a device GUID and path name?

Evening everyone I wondered if some could answer me 2 quick questions. I made an app to communicate with arm device which works fine, however when I move PC etc, I need to reconfigure the device ...
-2
votes
3answers
84 views

Using enumerate to select random member of list

Lets say mylist is list of 70 elements, I would like to random select 0,12,5 elements from mylist. I get syntax error at "rand:" rand = [0, 12, 5] LL=[] for x in enumerate(mylist) if i in rand: ...
1
vote
4answers
89 views

How do I keep the index of the duplicate element unchanged

Here is a input list: ['a', 'b', 'b', 'c', 'c', 'd'] The output I expect should be: [[0, 'a'], [1, 'b'], [1, 'b'], [2, 'c'], [2, 'c'], [3, 'd']] I try to use map() >>> map(lambda ...
0
votes
1answer
164 views

How to read a specific row and column from a text file and base decision on numeric value with python?

I have a number of text files in the form: alpha 89687 beta 9564 delta 10000 I only want to look at each line individually and evaluate each value in the second column. If the value is not within ...
0
votes
0answers
103 views

Is there an efficient way to list all threads of a given process?

My question is - is there a quick way of viewing all threads a current process has opened , given the PID ? I know of toolhelp snapshots , but enumerating through all of the threads in the system ...
0
votes
1answer
39 views

Enumerated values with a single array of numbers without looping

I am writing some functionality for a visual node based CAD program that will not allow for me to loop so I need a workaround to enumerate a list of numbers. I am an architect with very little ...
5
votes
1answer
311 views

Getting driver files for a particular device

I would like to know how I can get all the driver files for a particular device just like the Device Manager does? I have the following code: procedure TdlgMain.Test(const DeviceIndex: Integer); var ...
1
vote
2answers
93 views

Turning two lists into 1 without tuples involved

I have two lists and am trying to use zip in a weird way to make them one list. I have a list of names, say names = ['nathan', 'julian', 'ramy', 'jack'] and a list of occurrences from the previous ...
1
vote
1answer
312 views

Error: Illegal characters in path

I am using enumeratefiles to list all the files in a directory. Its throws an exception when it encounters a filename containing illegal characters and then stops the foreach loop that is listing the ...
1
vote
3answers
117 views

Splitting filename, updating date, joining filename back together, python

Given that a list of file names are: shortname = [H04_IF_FigF2_LCC_05Apr12_mm, H04_BS_IF_FigF2_LCC_05Apr12_mm_2, HH_IF_FigF2_SS_05Apr12_mm, D01_BS_IF_FigF2_LCC_05Apr12_mm_1, ...
3
votes
3answers
606 views

(Python) Counting lines in a huge (>10GB) file as fast as possible

I have a really simple script right now that counts lines in a text file using enumerate(): i = 0 f = open("C:/Users/guest/Desktop/file.log", "r") for i, line in enumerate(f): pass print i + 1 ...
0
votes
1answer
45 views

return codes for net registry enumerate ? while trying to access samba's registry from linux

I'm trying to read the value of a samba's registry using the command net registry enumerate 'Path\To\The\Value' $? -bash: 255: command not found and the command is returning a 255, i executed the ...
2
votes
2answers
168 views

Are A and B drives reserved by Windows?

I am doing a hard disk scan in my program, and I remember the bad old days when scanning B drive would freeze my machine. Can I skip A and B drives for those users that still have floppies? Are A or B ...
5
votes
2answers
587 views

Zip or enumerate in R?

What are the R equivalents for these Python list comprehensions: [(i,j) for i,j in zip(index, Values)] [(i,j) for i,j in enumerate(Values)] [(i,j) for i,j in enumerate(range(10,20))] %MWE, indexing ...
0
votes
3answers
533 views

Copy 1 file from multiple subdirectories to another directory

I've searched Google and forums for days trying to figure out how to accomplish building a batch file that will parse a directory tree and copy 1 file from each subdirectory to a new folder. I've got ...
1
vote
3answers
2k views

Enumerating the delims of a FOR /F statement

I have a FOR /F statement which I want it to enumerate the delims the command is parsing. For example: FOR /F "delims=," %%A IN ("This,is,a,comma,delimited,sentence") DO ( some command to ...
4
votes
1answer
1k views

Enumerate registry subkeys in delphi

I'm attempting to install a driver on a client machine based on which version of MySQL is installed on the server and to do that I'd like to check the version on the server via registry key. That ...

1 2 3