Tagged Questions

0
votes
1answer
97 views

Stop bing maps simplifying polygons

Bing maps currently simplifies each polygon shape that gets put on the map. While that's good for most things, I need to show the full resolution polygons and I'll sort out the si …
2
votes
7answers
323 views

Simplifying FOR loops

I have a function that essentially reads values in from a vector of doubles, appends these to a string (while ensuring a space between each and setting their precisions) and return …
1
vote
5answers
208 views

Most elegant combinations of elements in F#

One more question about most elegant and simple implementation of element combinations in F#. It should return all combinations of input elements (either List or Sequence). First …
1
vote
5answers
273 views

All picks of a list in F# - more elegant and simple

Could someone propose better and/or more elegant implementation of this: let each xs = let rec each' acc left right = match right with | [] -> acc | …
0
votes
6answers
109 views

Simplify jQuery Selector

I have a selector, "td > a.leftmenuitem:last, div > a.leftmenuitem:last", and I'd like to simplify it a little. I've tried "* > a.leftmenuitem:last", "td, div > a.leftm …
0
votes
5answers
120 views

insertAt in F# simpler and/or better

I would like to start some questions about simplifying different expressions in F#. Anyone have ideas for better and/or simpler implementation of insertAt (parameters could be reo …
0
votes
4answers
182 views

Simplifying Data with a for loop (Python)

Hi, I was trying to simplify the code: header = [] header.append(header1) header.append(header2) header.append(h …
1
vote
4answers
87 views

How to make a build (java) as “CM-independent” as possible? (CM=Configuration Manager)

I have been thinking of making one of the project builds I handle, as "independent" of me(CM)as I possibly can. By this I dont just mean automation via scripts/tools - although it …
1
vote
8answers
486 views

How best to switch from template mess to clean classes architecture (C++)?

Assuming a largish template library with around 100 files containing around 100 templates with overall more than 200,000 lines of code. Some of the templates use multiple inheritan …