list

Split list of names into alphabetic dictionary, in Python.

List. ['Chrome', 'Chromium', 'Google', 'Python'] Result. {'C': ['Chrome', 'Chromium'], 'G': ['Google'], 'P': ['Python']} I can make it work like this. alphabet = dict() for name in ['Chrome', 'Chromium', 'Google', 'Python']: character = name[:1].upper() if not character in alphabet: alphabet[character] = list() alphabet[...

how to allow TCP response packets enter network and how to configure it in access-list?

What is TCP response packets? How to meet this requirement in access-list on a router? ...

How to insert a large number of list entries into sqlite statements

Ok, I am using apsw with sqlite, and have a large list of entries.Each entry contains a new row to be inserted. The number of entries is sometimes 20, sometimes 21. Since apsw supports multiple sql statements in curser.execute(), I was wondering if there would be a less confusing way of inserting all my list entries into the database tha...

Converting hash table to list of pairs (key,value) in OCaml

Hi guys, Is there a way of converting a hash table into a list of (key,pair) values in OCaml? I'm aware that, given a hash table ht we can do BatList.of_enum (BatHashtbl.enum ht) using the batteries library. This would convert the table to an enumeration and then convert the enum to a list. But I'm looking for a solution that doesn'...

Logically Handling Lists

I have a large number of facts within my program, listing developers and designers in a company, as well as previous projects, like so.. % project(Project Name,Year) project(efnet, 2007). % designer(Project Name, Name, Role) designer(efnet, jane_cole, lead). % developer(Project Name, Name, Role) developer(efnet, alex_tobbs, architect). ...

Prolog - get the first list from a list of lists

I've got a list consisting of smaller lists inside of it, each list consisting of 2 items: [[a,1],[b,2],[c,3]] I'm using a function called take(1,L,R) to take the first item from list L and return the item R. The code for the take function is here: take(0,X,X). take(N,[H|T],[H|R]):- N>0, M is N-1, take(M,T,R). At t...

Read other items in a python list while iterating through it

Possible Duplicate: Python: Looping through all but the last item of a list Is there a better way of iterating through a list when you also need the next item (or any other arbitrary item) in the list? I use this, but maybe someone can do better... values = [1, 3, 6, 7 ,9] diffs = [] for i in range(len(values)): try: diff...

jquery checkbox with li

I have a series of checkboxes, and everything works except their default behavior has been altered unintentionally so I can no longer check them which is odd since the reason I was using this bit of jquery was to highlight the li around them when they got checked in the first place. Any ideas? //Tag cloud $(".tag-cloud li").toggle( f...

Problem with reading file in Python

I have a file: Alus.txt File content: (each name in new line) Margus Mihkel Daniel Mark Juri Victor Marek Nikolai Pavel Kalle Problem: While programm reads this file, there are \n after each name (['Margus\n', 'Mihkel\n', 'Daniel\n', 'Mark\n', 'Juri\n', 'Victor\n', 'Marek\n', 'Nikolai\n...

List versus ArrayList

Ok so I know that Set, List and Map are interfaces but what makes the first line of code any better than the second line? List myArr = new ArrayList(); ArrayList myArr = new ArrayList(); Thanks. ...

Problem with Hello, Views: List View tutorial

I've just started Android development with Eclipse, so I've been going through all the "Hello" tutorials on the Android Developers site. I have come unstuck, however, on the List View tutorial. I have tried many times to correct the problems, but I am inexperienced and whatever I do doesn't seem to work. I have copied and pasted the code...

Python: Cannot pop from empty list? When list is clearly not empty?

I'm obviously missing something here. Same project I've been working on for a number of days. Stepping through it bit by bit, seemed to be working fine. I added in a portion of the main() function to actually create the comparison lists, and suddenly starts throwing out cannot pop from empty list error at me, even through a print functio...

How to eliminate all levels of lists in LISP

Hello. This is my second quick-and-silly question about LISP, but I am kind of stuck. I need to access all the nodes in a list with several levels. I need something like: >> (get-symbols '(A (B (C D) E ))) (A B C D E) I don't care about the order. How would you do that? I prefer code intuitivity rather than efficency. Thanks ...

Erlang - simple function to find ALL text in listCtrl

Hi I have a program that displays a simple list in report view ListCtrl = wxListCtrl:new(Tab, [{winid, ?ANYl}, {style, ?wxLC_REPORT bor ?wxLC_SINGLE_SEL},{size, {695, 500}}]), So A list is generated with this code and then I input data using setItem. Then when someone clicks on an item in the list (row is highlighted) I can get the S...

ERlang list Ctrl changing colors

Hi I am trying to change an individual item in a listCtrl in erlang. I initialize listCtrl then I goto set the item as follows: wxListCtrl:setItem(ListCtrl, Row, 1, io_lib:format("~.2f",[VolumeB + 0.00 ])), wxListCtrl:setItemBackgroundColour(ListCtrl, 1, ?wxRED), Problem is the background color of the entire row is red, I only w...

Python/Numpy: Convert list of bools to unsigned int

What is the fastest (or most "Pythonic") way to convert x = [False, False, True, True] into 12? (If there is such a way.) What if x were instead a numpy.array of bools? Is there a special command for that? I have a large m-by-n array of booleans, where each n-element row represents a single low-dimensional hash of a high-dimensiona...