Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Member Avatar for khess

Is it true that, if you speak up for GNU/Linux on the Desktop, you get flamed? I just had a virtual conversation with someone who claims that this assertion is fact. I've never experienced this anti-Desktop Linux sentiment or maybe my memory has failed me. I don't think the Linux …

Member Avatar for AtomFusion
-2
1K
Member Avatar for max1million

I have a method that takes an object as an argument. The method needs to identify the type of object. This is easily accomplished for simple types like String and Double[], etc. I simply access the myObject.GetType().Name property. But for generics like List<String[]>, etc. the Name property is always "List`1". …

Member Avatar for nick.crane
0
94
Member Avatar for max1million

At [URL="http://www.random.org/analysis/"]http://www.random.org/analysis/[/URL] About half-way down the page they present a bitmap representation of a true random sequence and a pseudo-random process. What is the pattern repeat interval for the .net Random() function? I realize I could write a program to determine this but does anyone know already?

0
52
Member Avatar for max1million

I need to bit reverse 8-bit integers. eg 208 (11010000) becomes 11 (00001011) This works but it's too slow: [CODE] private short MyReverse(short a) { int[] order = new int[8]; for (int i = 0; i < 8; i++) { if ((a & Convert.ToInt32((Math.Pow(2, i)))) != 0) { order[7-i] = …

Member Avatar for ddanbe
0
213