list

List all applications - output as text file

Hello, I was just wondering how someone would go about finding all the applications that are installed on Mac OS X 10.5 using preferably applescript and output all their application names to a text file. ...

Is Dictionary<TKey, TValue> faster than LINQ on a List<T>?

I generally use List<T> for collections. But if I need a fast lookup on a collection, then e.g. in the following example I would use a Dictionary so I could look it up quickly by id: Dictionary<int, Customer> But since I can use LINQ to query the List<T> anyway, as below, is there any reason to go through the trouble of using a Dictio...

Python list / sublist selection -1 weirdness

So I've been playing around with python and noticed something that seems a bit odd. The semantics of -1 in selecting from a list don't seem to be consistent. So I have a list of numbers ls = range(1000) The last element of the list if of course ls[-1] but if I take a sublist of that so that I get everything from say the midpoint to t...

inline list li:last-child:after { content: ", "} Can I get rid of the extra space it creates???

http://forumgallery.rollinleonard.com/artists.php I can't seem to get rid of the SPACE before the COMMA in my list. It makes no sense! Here is the relevant part of my CSS .artistlist { margin: 0px; padding: 0; } li.artistlist { display: inline; margin: 0; padding: 0; font-size: .75em; line-height: 1.5...

Alternative to mailman that is compatible with Google Apps?

Hi, I'm looking for some mailing list software that's compatible with Google Apps. Anyone have any recommendations? ...

Create List<T> using GetType()

Is it possible to create a List or IEnumerable using GetType(). // If T is Type of Contact I want to Return List<Contact> Test(typeof(Contact));//return List<Type> public static IEnumerable<T> Test<T>(T t) { return new List<T>(); //return List<Type> } ...

Finding the difference between the list

Hi i have a List<my_Custom_Class> and List<string>. My custom class has various items in which one is DCN number and list<string> contains only DCN number. So I need to check the List<Custom_Class> contains any dcn from List<string>. For example suppose List1 = List<Custom_Class> and List2 = List<String>. If List1 has 2000 items and ...

how to sort data in ssrs for sharepoint list in query

I have sharepoint list query http://schemas.microsoft.com/sharepoint/soap/GetListItems {F17A7ACF-C419-45B0-B0B8-1788D7EC462E} * I want to sort data as per my requirnment in this query how can I do that? ...

C#, sorting objects in list by Name

Hello, how could i sort objects in list by their name? Example: mapPart_1_0 mapPart_1_2 mapPart_1_4 mapPart_1_6 mapPart_1_8 mapPart_1_10 mapPart_1_12 mapPart_1_24 mapPart_2_1 mapPart_2_11 Big list continues... (somewhere in that list are missing that aper in sorted one) Into: mapPart_1_0 mapPart_1_1 mapPart_1_2 mapPart_1_3 mapPart_1_...

Create List of Single Item Repeated n Times in Python

I know a list comprehension will do this, but I was wondering if there is an even shorter (and more Pythonic?) approach. I want to create a series of lists, all of varying length. Each list will contain the same element e, repeated n times (where n = length of the list). How do I create the lists, without doing [e for number in xrange(...

Flex 4.1: <mx:List> had rowCount properly for the limit the displayed items. <s:List> doesn't.

Hi I'm using flex 4.1 to write an application. i read in the documents that has the rowCount property to set how many items to display. the does not have that property. how can I limit the list to display 3 items ? ...

Fluid inline list and row alignment

I have a fluid grid built with <li> elements. eg: <ul> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> </ul>​ li { border:solid 1px green; width: 100px; min-height:50px; display: inline; margin: 10px; float: left; }​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​ so this looks...

How can I create an order form?

I am new to Android, and am trying to develop an app that presents a list of choices with a textfield next to each that allows the user to enter in quantity information related to each item. What would be the best way to impliment this? Currently my app is using a buttonlist with checkboxes next to each item to select it. I'd like to ...

Custom text field with syntax highlighting for c# in a sharepoint list

Hi, i need a text field in a sharepoint 2007 list that displays C# code with syntax highlighting. Do i have to develop it on my own or knows somebody a control that meets my needs? Thanks a lot ...

Right-align legal-styled numbers and left-align text in ordered lists using CSS

While composing documentation, I created an outline using ordered lists within ordered lists and applied a pseudo-legal-style row numbering using CSS. The default behavior of lists is to right-align numbers and left align text; however, the CSS2 snippet I'm using is changing that behavior so that numbers are left-aligned and text, thoug...

inline list size issue

I am using an inline-block list as a horizontal navigation bar with drop down menus. But I can't seem to get it to fill up the entire width of the screen. To make it more frustraiting, when I change the zoom level of the browser screen, the list resizes at a different rate from everything else. Thus, on some zooms it is too long and wrap...

How do I check for a IN condition against a dynamic list in Oracle?

EDIT: changed the title to fit the code below. I'm trying to retrieve a list of acceptable values from an Oracle table, then performing a SELECT against another while comparing some fields against said list. I was trying to do this with cursors (like below), but this fails. DECLARE TYPE gcur IS REF CURSOR; TYPE list_record IS ...

Finding and filtering elements in a MATLAB cell array

Hi, I have a list (cell array) of elements with structs like this: mystruct = struct('x', 'foo', 'y', 'bar', 's', struct('text', 'Pickabo')); mylist = {mystruct <more similar struct elements here>}; Now I would like to filter mylist for all structs from which s.text == 'Pickaboo' or some other predefines string. What is the best way ...

Get difference between two lists

I have two lists in Python, like these: temp1 = ['One', 'Two', 'Three', 'Four'] temp2 = ['One', 'Two'] I need to create a third list with items from the first list which aren't present in the second one. From the example I have to get: temp3 = ['Three', 'Four'] Are there any fast ways without cycles and checking? ...

Choosing data from a list of tuples in Haskell.

Hey, I have a list of tuples of tuples of type :: [((a, b), (a, b), (a, b))], in Haskell. For some context, the 3 points (a, b) represent a (time, value) pair on a U shaped curve with the first point, at the initial time t1 having a maximum value on the curve x1, the third point with a greater time t3=t1+dt and a value x3 I would like...