Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
268 views

How can I simplify “for x in a for y in b for z in c …” with the unordered?

#!/usr/bin/python # # Description: I try to simplify the implementation of the thing below. # Sets, such as (a,b,c), with irrelavant order are given. The goal is to # simplify the messy "assignment", ...
3
votes
1answer
372 views

Need to speed up C++ code involving Boost multi-index and lookups to unordered_multimap

I'm looking for strategies to speed up an agent-based model that's based on objects of class Host, pointers to which are stored in a Boost multi-index container. I've used Shark to determine that the ...
3
votes
2answers
69 views

How to remove opposite rows from SQL table

I have the following SQL table: A|B --- w|x x|w y|z z|y Can I construct a query which will yield the following result: A|B --- w|x y|z To summarize, I would like to treat the two columns as an ...
3
votes
3answers
152 views

Possible to retrieve an arbitrary unordered set of named groups in one swoop with Python's re module?

This is super handy for some problems: >>> re.search('(?P<b>.b.).*(?P<i>.i.)', 'abcdefghijk').groupdict() {'i': 'hij', 'b': 'abc'} But what if I don't know what order to expect ...
3
votes
3answers
68 views

How to use CSS to control the style of an HTML unordered list?

Basically I want to control the margin on the left of the list. Here's how I have it structured: <li> <a href="http://link.com">Main</a> <ul> <li> <a ...
2
votes
3answers
68 views

Link Inside <li> No Working

Pretty simple nut I'm trying to crack. I'm doing image rollovers with CSS only. When I plugged in my a href link, it just does not work. By not work I mean, it does not act like it's a link and as a ...
1
vote
6answers
151 views

Sort List C# in arbitrary order

I have a C# List I.E. List<Food> x = new List<Food> () ; This list is populated with this class public class Food { public string id { get; set; } public string ...
1
vote
1answer
73 views

CSS - Custom List while keeping default decimal counter

I am making a custom ol>li to look like this 1 | List content 2 | List content 3 | List content I have referenced this post: HTML + CSS: Ordered List without the Period? But, I cannot get the ...
1
vote
3answers
98 views

Difference between two unordered delimited strings in PL/SQL

Is there a simple elegant method to return the difference between two unordered, delimited strings in Oracle using PL/SQL? Example: String A: "a1, b4, g3, h6, t8, a0" String B: "b4, h6, a0, t8, a1" ...
1
vote
3answers
338 views

Text indentation in unordered lists with CSS

I have an unordered HTML list and am using CSS to style everything. When the text has multiple lines, it starts before the bullet point. Is there a way to make it start after the bullet point ...
1
vote
1answer
1k views

JQuery - Add css class to List

I have the following HTML : <li> <a class="meuble-tab" href="#">Meuble</a> </li> i need to achieve the following: <li class="active"> <a class="meuble-tab" ...
0
votes
1answer
32 views

IE with unordered list emty element

In my *.ascx file I have a following code: <ul> <li><ctl:CustomControl id="ctl1" runat="server"/></li> <li><ctl:CustomControl id="ctl2" ...
0
votes
3answers
72 views

Center Unordered Lists In DIV

Well I'm in the mix of redesigning my website AlternativeApps.TK so the user gets the best experience. I have a div called devices which has images of the Windows icon, Linux, Mac, Android, and iOS ...
0
votes
1answer
200 views

unordered_multimap<string, string> to map<string, string> soft search, How to do such thing and how to preprocessed maps for faster search?

We have a map<boost::shared_ptr<service>, rules> service_map where rules is struct rules { boost::unordered_multimap<string, string> set_of_rules_1; ...
0
votes
2answers
294 views

CSS3 box-shadow on <li> element not working

I have a grid of 12 boxes created from an unordered list as below. Border radius works fine, but IU can't get the shadow to appear. Does the box-shadow property only work on divs, but not display ...
0
votes
2answers
694 views

Get all textbox values from list (jQuery Sortable)?

I have an unordered list, each list item has an id (id="6~OriginalName") - when I do a toArray on this list, I get a nice array and each item looks like "6~OriginalName" that I can parse later on. ...
0
votes
2answers
162 views

ASP.NET - Is it possible to render a TreeViewControl as an unordered list instead of a table?

Is it possible to render a TreeViewControl as an unordered list instead of a table?
0
votes
4answers
471 views

css, unordered list not displaying icon in right place

I'm really frustrated with this one. A few weeks ago I got it working in both firefox and ie just fine. Went back today to do some testing and found a problem with the display in firefox and I've ...
0
votes
1answer
250 views

Resolving Problems with jQuery and Unordered List Loading

I'm building a very simplistic unordered list tree in XHTML with multiple levels deep. The way it works is that you click a parent node, and it uses the jQuery .load() API to make an AJAX call back to ...
0
votes
4answers
3k views

PHP Array to List

How do I go from this multidimensional array: Array ( [Camden Town] => Array ( [0] => La Dominican [1] => A Lounge ) [Coastal] => Array ( [0] => Royal Hotel ) ...
0
votes
1answer
87 views

How do I sort the result of an SQL join by a single column in PHP

I have a database with a list of locations e.g.: C_ID | Name 1 | Italy 2 | Germany 3 | France 4 | Spain and in a seperate table, a list of people who are from those ...
-1
votes
2answers
15 views

XHTML insert images into an unordered list?

Does anyone know how to insert images into an unordered list using XHTML?
-2
votes
1answer
66 views

XHTML Transitional 1.o Highlight single word within unordered ul tag

I have an unordered list and each item is a sentence. I would like to highlight a word or two within the sentence but the font color tag <font color="CC9966">highlighted words </font> ...