64 bit rant of the day
-
Ugh, required dll's that only run in 32 bit address space. I never thought I would have to be so sensitive to RAM!
Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost "All users always want Excel" --Ennis Lynch
-
Ugh, required dll's that only run in 32 bit address space. I never thought I would have to be so sensitive to RAM!
Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost "All users always want Excel" --Ennis Lynch
Bah, 2GB ought to be enough for anybody
"The ones who care enough to do it right care too much to compromise." Matthew Faithfull
-
Ugh, required dll's that only run in 32 bit address space. I never thought I would have to be so sensitive to RAM!
Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost "All users always want Excel" --Ennis Lynch
Ennis Ray Lynch, Jr. wrote:
I never thought I would have to be so sensitive
Who would have thought that you're the sensitive type?
It was broke, so I fixed it.
-
Bah, 2GB ought to be enough for anybody
"The ones who care enough to do it right care too much to compromise." Matthew Faithfull
lol, actually I could probably do everything in under a few megs. Unf. Time vs. Ram.
Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost "All users always want Excel" --Ennis Lynch
-
Ugh, required dll's that only run in 32 bit address space. I never thought I would have to be so sensitive to RAM!
Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost "All users always want Excel" --Ennis Lynch
No, 0x534B435553205449 is a 64 bit rant:
string s = "IT SUCKS";
byte[] bytes = System.Text.Encoding.ASCII.GetBytes(s);
long rant = BitConverter.ToInt64(bytes, 0);
Console.WriteLine("0x{0:X8}", rant);The universe is composed of electrons, neutrons, protons and......morons. (ThePhantomUpvoter)
-
Ugh, required dll's that only run in 32 bit address space. I never thought I would have to be so sensitive to RAM!
Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost "All users always want Excel" --Ennis Lynch
I bet you could get some ideas from "VST bridge" software. This has been a long-time issue in the audio recording industry, where 64-bit host applications have to host a mix of 32-bit and 64-bit plugins. It's a big enough problem that a bunch of different people have made bridge software.