Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

46
votes
8answers
22k views

Merging dictionaries in C#

What's the best way to merge 2 or more dictionaries (Dictionary<T1,T2>) in C#? (3.0 features like LINQ are fine). I'm thinking of a method signature along the lines of: public static ...
17
votes
8answers
21k views

Best way to combine two or more byte arrays in C#

I have 3 byte arrays in C# that I need to combine into one. What would be the most efficient method to complete this task?
16
votes
5answers
5k views

How to combine several C/C++ libraries into one?

I'm tired of adding ten link libraries into my project, or requiring eight of them to use my own. I'd like to take existing libraries like libpng.a, libz.a, libjpeg.a, and combine them into one single ...
10
votes
6answers
925 views

Minifying and combining files in .net

I am looking at implementing some performance optimization around my javascript/css. In particular looking to achieve the minification and combining of such. I am developing in .net/c# web ...
10
votes
2answers
1k views

Needed - Visual Studio Custom Build Actions To Minify JS and CSS

I've been using Combres in my applications to compress, combine and minify my javascript and css at run time. This works extremely well and satisfies YSlow perfectly. Now I'm rethinking the whole ...
9
votes
2answers
323 views

JSF2 Static Resource Management — Combined, Compressed

Is anyone aware of a method to dynamically combine/minify all the h:outputStylesheet resources and then combine/minify all h:outputScript resources in the render phase? The comined/minified resource ...
7
votes
5answers
463 views

Does the ORDER of javascript files matter at all, when combined into one files?

Floating in futuristic API era, where almost all popular javascripts are externally loaded from other servers, or where handwritten locally (sometimes combined to save httprequests) javascripts are ...
6
votes
3answers
175 views

Delphi - How to use more defined values in conditional compilation

Can I combine some IFDEFS in my source? For example: {$IFDEF INCOMING or OUTGOING} ... {$ENDIF} Thanks for your help: dd
6
votes
5answers
349 views

Javascript - To combine or not combine, that is the question

Ok, so I know that it's obvious to combine all of a pages Javascript into a single external file for efficiency purposes, but that's not quite the question here. Say I have Default.htm with a search ...
6
votes
4answers
7k views

How to combine requests for multiple javascript files into one http request?

This concept is a new one for me -- I first came across it at the YUI dependency configurator. Basically, instead of having multiple requests for many files, the files are chained into one http ...
5
votes
1answer
226 views

Complete solution to Combine, Minify and GZIP your Styles AND Scripts on Asp.Net MVC3 using Razor

Sorry for my bad English, but i guess it won't be a problem. I just wan't to share a nice Helper Class that i made to combine, minify and gzip our scripts and styles using the Microsoft Ajax Minifier. ...
5
votes
3answers
148 views

array combine three or more arrays with php

ok, assuming I have 5 arrays, all just indexed arrays, and I would like to combine them, this is the best way I can figure, is there a better way to handle this? function mymap_arrays(){ ...
5
votes
1answer
358 views

Cmake and gcc combine

I have many source files in source directory. For example a.c, b.c, c.c and want to compile it by gcc with -combine option. set(CMAKE_C_FLAGS "-combine") set(SRC a.c b.c c.c) add_executable(a.out ...
5
votes
3answers
725 views

How to rebase one Git repository onto another one?

I had one Git repository (A) which contains the development of a project until a certain point. Then I lost the USB stick this repo A was on. Luckily I had a backup of the latest commit, so I could ...
5
votes
1answer
442 views

How can I add new root element to a C# XmlDocument?

I have, outside of my control, an XmlDocument which has a structure like the following: <parent1> ...minor amount of data... </parent1> I have another XmlDocument, also outside of my ...
4
votes
4answers
45 views

Using Array Keys to create a New Array

Given: $data = array( "some" => "163", "rand" => "630", "om" => "43", "words" => "924", "as" => "4", "keys" => "54" ); I want a new array using ...
4
votes
2answers
109 views

Easy way to combine multiple CSS files into one?

I have multiple different skins for a site and am expecting to do additional skinning soon. It's set up very verbosely currently like so: /theme1/myCss.css /theme2/myCss.css ...
4
votes
2answers
98 views

Ways to Combine CSS

I have multiple CSS files (the designer made several, bad iterations) that I need to combine to a single file. However, I don't want to just cat them together. I want to merge the properties for like ...
4
votes
3answers
194 views

How to combine all the packages of the eclipse?

As I need to develop java, php, c++, I use several eclipse packages. so I try to simple to copy several packages into one, and then I use these option to start the eclipse: 1. -clean 2. ...
4
votes
3answers
471 views

R: merge unequal dataframes and replace missing rows with 0

I have two data.frames, one with only characters and the other one with characters and values. df1 = data.frame(x=c('a', 'b', 'c', 'd', 'e')) df2 = data.frame(x=c('a', 'b', 'c'),y = c(0,1,0)) ...
4
votes
2answers
331 views

How to get Chirpy to update mashed files when edits are made

I've just begun using Chirpy, and it's frigging amazing. One problem I'm having is that I'm unable to get it to update the mashed file(s) when an edit is made in one of the "sub" files. IE: If I have ...
4
votes
4answers
773 views

How do I combine two MySQL rows into one and display them in a table using PHP?

I have a table "exercise_results". People put in their results at the beginning and then two months later put in their results to see how much they improved. Their beginning set has the ...
4
votes
3answers
154 views

Merging 3 dictionaries into single dictionary

I have the following Dictionary<string,string> dict1 has 3 items "A"="1.1" "B"="2.1" "C"="3.1" Dictionary<string,string> dict2 has 3 items "A"="1.2" "B"="2.2" "C"="3.2" ...
4
votes
3answers
959 views

Deep combine NSDictionaries

I need to merge two NSDictionarys into one provided that if there are dictionaries within the dictionaries, they are also merged. More or less like jQuery's extend function.
4
votes
3answers
1k views

jquery combine event functions

instead of example: $(".myfield").blur(function() { // validate }) $(".myfield").keyup(function() { // validate }) is there a way to combine these two?
4
votes
4answers
5k views

combining two png files in android

I have two png image files that I would like my android app to combine programmatically into one png image file and am wondering if it is possible to do so? if so, what I would like to do is just ...
4
votes
1answer
2k views

Combining 2 columns into 1 column many times in a very large dataset in R

Combining 2 columns into 1 column many times in a very large dataset in R The clumsy solutions I am working on are not going to be very fast if I can get them to work and the true dataset is ~1500 X ...
4
votes
4answers
401 views

What is the best way to combine two uints into a ulong in c#

What is the best way to combine two uints into a ulong in c#, setting the high/low uints. I know bitshifting can do it, but I don't know the syntax, or there maybe other APIs to help like ...
4
votes
5answers
1k views

De / Interleave array fast in C#

I am looking for the fastest way to de/interleave a buffer. To be more specific, I am dealing with audio data, so I am trying to optimize the time I spend on splitting/combining channels and FFT ...
4
votes
2answers
8k views

Create a UIImage from two other UIImages on the iPhone

I'm trying to write an animation on the iPhone, without much success, getting crashes and nothing seems to work. What I wanna do appears simple, create a UIImage, and draw part of another UIImage ...
4
votes
5answers
1k views

Python - How to calculate equal parts of two dictionaries?

I have a problem with combining or calculating common/equal part of these two dictionaries. In my dictionaries, values are lists: d1 = {0:['11','18','25','38'], 1:['11','18','25','38'], ...
4
votes
5answers
1k views

Generate combinations ordered by an attribute

I'm looking for a way to generate combinations of objects ordered by a single attribute. I don't think lexicographical order is what I'm looking for... I'll try to give an example. Let's say I have a ...
3
votes
5answers
80 views

Combine output of two command in unix system

I need to combine output of two commands. For example: If I input ls -l && file * it will give me -rw-rw-r-- 1 user user 1356 2012-01-21 07:45 string.c -rwxrwxr-x 1 user user 7298 ...
3
votes
4answers
83 views

How to combine a Partial Class Object in C#?

I defined a class: public class Sample{ public string name {get;set;} public int price {get;set} } Then Sample sampleA = new Sample(); sampleA.name = "test"; Sample sampleB = new ...
3
votes
3answers
77 views

How to combine these two JavaScript arrays

I have two JavaScript arrays below that both have the same number of entries, but that number can vary. [{"branchids":"5006"},{"branchids":"5007"},{"branchids":"5009"}] ...
3
votes
2answers
89 views

How to Combine Images without loading them into RAM in Java

I have a very large (around a gigapixel) image I am trying to generate, and so far I can only create images up to around 40 megapixels in a BufferedImage before I get an out of memory error. I want to ...
3
votes
3answers
137 views

How can I combine JQuery selectors and variables to shorten code for easier scaleability?

I have this piece of javascript that is working. var footerColour = $.color.extract($("div#one.footer"), 'background-color'); var newrgba = $.color.parse(footerColour).add('a', -0.5).toString() ...
3
votes
1answer
164 views

Re-arrange multiple columns in a data set into one column using R

I would like to combine three columns in one of my data sets into one with variable name "al_anim" and remove any duplicates, rank the values (animal ids) from lowest to highest, and re-number each ...
3
votes
3answers
74 views

How to combine dictionary + list to form one sorted list

Okay I have a dictionary that looks like this z = {'J': 50, 'Q': 30, 'F': 10) And a list that looks like this l = [('J', 20), ('Q', 10), ('F', 2)] How do I combine these into either a dictionary ...
3
votes
1answer
180 views

In R, how to combine component-wise two lists which components have the same names?

here are my data: l1 <- list(a=1, b=2) l2 <- list(a=10, b=20) I want to combine them in a component-wise manner. For instance, if I want to add the values of each component of l1 to the ...
3
votes
3answers
126 views

VIM: combine two searches

Often I do a search for something (using hotkeys, menu command or commandline) and after that I want to keep the first search and add another search.. p.e. - First I search doubles spaces in my text. ...
3
votes
3answers
489 views

R: merge or combine by rownames

I have a question about merging datasets together. In the example below I have two datasets (Z and A). I want to merge or combine these sets by the ILMN numbers. If there is no match, fill in NA. z ...
3
votes
4answers
418 views

pair lists to create tuples in order

I'd like to combine two lists. If I have the following two lists: {a,b,c,d} and {1,2,3,4} what do I need to do so that I get {{a,1}, {b,2}, {c,3}, {d,4}}?
3
votes
2answers
93 views

combining camlp4 and camlp5 in -pp string for ocamlopt?

I want to combine BOLT, SEXP and ocamlViz for a large project. The problem is, that SEXP and BOLT are using CamlP4 and ocamlviz is using camlp5. But how could I combine the calls to one chain for the ...
3
votes
2answers
506 views

WPF combine two collections in one DataGrid

I have two collections that I want to display together in one table. I intend to use a horizontal DataGrid for this, and I'm trying to figure out what the best way is to expose the collections to the ...
3
votes
4answers
287 views

PHP, combine two arrays into a new array, using the first array's values as the keys

I have two arrays I want to combine. I need to take the values from the first array, use these values as the keys to match from the second array, and combine them into a third array (the one I'll ...
3
votes
1answer
329 views

JS Combine Arrays

Im trying to combine 2 arrays in javascript into one. var lines = new Array("Line1","Line2","Line3"); lines = new Array("Line5","Line6","Line7"); This is a quick example, i want to be able to ...
3
votes
2answers
238 views

php array combine

I have the next array: Array ( [0] => Array ( [id] => 160 [payment_period] => Monthly [plan_payment_type_id] => 171 ...
3
votes
2answers
404 views

Is there an easy way to blend two System.Drawing.Color values?

Is there an easy way to blend two System.Drawing.Color values? Or do I have to write my own method to take in two colors and combine them? If I do how might one go about that?
3
votes
2answers
152 views

What is the most 'pythonic' way to logically combine a list of booleans?

I have a list of booleans I'd like to logically combine using and/or. The expanded operations would be: vals = [True, False, True, True, True, False] # And-ing them together result = True for item ...

1 2 3 4 5 7