1
2
3
4
private static HumanResource CompressTimesheetItems(HumanResource employee)
{
	List<TimesheetItemObject> CompressedTimesheetItems = new List<TimesheetItemObject>();
...

C# Merging similar objects

by Greg Buehler, August 05, 2010 14:10, 2 refactorings, tagged with C#, optimize

Our reporting program uses ...

C3b0b8da886396ca8d5a28ad397c404d Talk
1
2
3
4
	int width = iplImage->width;
	int height = iplImage->height;
...

C++ exchanging 2 values

by trusmis.blogspot.com, April 01, 2010 06:43, 1 refactoring, tagged with C++, Qt, optimize

I am working with OpenCV an...

Avatar Talk
1
2
3
4
private static void Log(object message, MessageType type)
		{
			string str = message.ToString();
...

C# Line splitting optimization

by xeon06.myopenid.com, December 07, 2009 20:59, 3 refactorings, tagged with optimize, speed, C#, xna, lines

This is a console logging f...

Avatar Talk
1
2
3
4
package engine;

import junit.framework.Assert;
...

Java Refactor, fix and optimize ...

by programmer-offsite, April 20, 2009 14:15, 4 refactorings, tagged with optimize, strings, refactor, java, character

While tuning the applicatio...

6f0a7377a1c0faa24f9b60e24ab2af4a Talk
1
2
3
4
def haar_1d(a)
	r = []
	(Math.log(a.length) / Math.log(2) - 1).to_i.downto(0) { |j|
...

Ruby Fast Haar Wavelet Transform

by data.map.myopenid.com, January 26, 2009 03:33, 4 refactorings, tagged with haar, wavelet, optimize, fast, speed

Anyone want to help me opti...

Avatar Talk