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, 3 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