562 reputation
311
bio website zlynx.org
location Greenwood Village, CO
age 38
visits member for 3 years, 9 months
seen May 2 at 6:05
stats profile views 106

Nothing interesting about me. This is not the user you are looking for. Move along. Move along.


Apr
15
comment How important is having 64-bit programs on 64-bit OS?
@Joshua: System drivers really depend on the OS and the machine arch. Some 64-bit CPUs don't have modes, just added 64-bit instructions. x86_64 has an expensive mode switch to get from 64 to 32 and back, so drivers are almost always required to be 64-bit.
Apr
1
comment Limiting CPU speed in a virtual machine?
Yeah, this could have a real bad effect on timing loops. It all depends on if it runs full speed up to 45% then cuts out, or if it tries to actually run at 45%.
Mar
28
comment Which TAR to install - IA-64 or X86 64bit?
Not exactly "mainframe." I've got two Itanium systems, one is 4U the other is 1U. Got them off eBay.
Mar
24
comment SandForce SSD encryption - security and support
The full-disk encryption slowdown only applies to Sandforce controllers which rely on compression for their speed.
Mar
17
comment Recommendations for hard drive performance boost
You can get 64GB X-25E for an even higher price.
Mar
16
comment Compress and then encrypt, or vice-versa?
@AbiusX: Right. Patterns. And the fewer patterns, the more entropy. Which means that compression which replaces all repeated patterns with a single copy increases entropy.
Mar
16
comment Compress and then encrypt, or vice-versa?
But it is information entropy so it is all about meaning. Randomness doesn't mean anything so it doesn't apply. An English sentence can have letters changed and still mean the same thing so it has low entropy. A compressed English sentence might be unreadable if a single bit changes so it has the most. Or so I think.
Mar
16
comment Compress and then encrypt, or vice-versa?
Wait, don't you have that backwards? I thought entropy increased as redundancy decreased. Therefore compression should increase entropy.
Mar
11
comment Why aren't all applications 'portable'?
Exactly. How could the OS find the EXE or DLL to load without a fixed location? "Set oExcelApp = CreateObject("EXCEL.APPLICATION")" needs to work somehow.
Mar
4
comment Is it safe to keep speakers behind a monitor
Big speakers would also erase your credit cards if you set a wallet on one. :-)
Feb
18
comment How do you retrieve the current time on a server?
Network latency alone will prohibit true millisecond accuracy.
Feb
11
comment How to tell a Ethernet cable is conventional or crossover
Okay. It is optional, although I've never run into a system that didn't have it. See standards.ieee.org/getieee802/download/802.3-2008_section3.pdf section 40.4.4: "Implementation of an automatic MDI/MDI-X configuration is optional for 1000BASE-T devices." Sorry about that. My confusion.
Feb
11
comment How to tell a Ethernet cable is conventional or crossover
I'll try to find a reference source, but I am almost certain auto-MDIX is a requirement of the Gigabit Ethernet specification. I've used a lot of 100 Mbit equipment that will not work without the correct cable so I don't know about "most modern 100BaseT."
Feb
11
comment How to tell a Ethernet cable is conventional or crossover
This happens to be a requirement of Gigabit Ethernet. 100 Mbit will not do it though.
Jan
29
comment Does NAT provide security?
@Zoredache: You are actually wrong. NAT does not require state tracking. Early versions of NAT assigned an incoming port based on outgoing traffic and simply maintained that association until a timeout was reached. This port assignment did not need to filter incoming source IPs either, but would accept any incoming traffic and route it to the internal network. Why people continue to downvote me for this, I don't know.
Jan
26
comment Does NAT provide security?
@BillThor: Nope. You're thinking of the firewall. Why do you think a pure NAT box would not route to internal servers?
Jan
13
comment Do the Intel Core-i series processors not have pins?
@martineau: It makes sense: the motherboard is usually cheaper than the CPU anyway.
Dec
29
comment Would I notice the difference between a 7200 rpm and a 5400 rpm laptop hard drive?
Good point on the space. I use a Macbook with 250 GB and I still have room.
Jun
22
comment Want Visual Studio 2010 stop using the drive when there's lots of RAM in Windows 7 64 bit
I have also seen VS making the disk write and I have 6 GB that isn't full. I think VS may be using the flags that force data to disk storage. It must think the output files are valuable stuff!
Oct
20
comment Any other bourne shell port on Linux?
Do you mean ports of what? Original Version 7 code? There are a ton of bourne-compatible shells: bash, dash, ash, and the one included with BusyBox.